The list_in_scope pointer needs to be initialized to point to a
[deliverable/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 char *sub;
1167 char *subend;
1168 short temp;
1169
1170 if (dip -> at_ordering != ORD_row_major)
1171 {
1172 /* FIXME: Can gdb even handle column major arrays? */
1173 SQUAWK (("array not row major; not handled correctly"));
1174 }
1175 if ((sub = dip -> at_subscr_data) != NULL)
1176 {
1177 (void) memcpy (&temp, sub, sizeof (short));
1178 subend = sub + sizeof (short) + temp;
1179 sub += sizeof (short);
1180 type = decode_subscr_data (sub, subend);
1181 if (type == NULL)
1182 {
1183 type = alloc_utype (dip -> dieref, NULL);
1184 TYPE_CODE (type) = TYPE_CODE_ARRAY;
1185 TYPE_TARGET_TYPE (type) = builtin_type_int;
1186 TYPE_LENGTH (type) = 1 * TYPE_LENGTH (TYPE_TARGET_TYPE (type));
1187 }
1188 else
1189 {
1190 type = alloc_utype (dip -> dieref, type);
1191 }
1192 }
1193 }
1194
1195 /*
1196
1197 LOCAL FUNCTION
1198
1199 read_subroutine_type -- process TAG_subroutine_type dies
1200
1201 SYNOPSIS
1202
1203 static void read_subroutine_type (struct dieinfo *dip, char thisdie,
1204 char *enddie)
1205
1206 DESCRIPTION
1207
1208 Handle DIES due to C code like:
1209
1210 struct foo {
1211 int (*funcp)(int a, long l); (Generates TAG_subroutine_type DIE)
1212 int b;
1213 };
1214
1215 NOTES
1216
1217 The parameter DIES are currently ignored. See if gdb has a way to
1218 include this info in it's type system, and decode them if so. Is
1219 this what the type structure's "arg_types" field is for? (FIXME)
1220 */
1221
1222 static void
1223 DEFUN(read_subroutine_type, (dip, thisdie, enddie),
1224 struct dieinfo *dip AND
1225 char *thisdie AND
1226 char *enddie)
1227 {
1228 struct type *type;
1229
1230 type = decode_die_type (dip);
1231 type = lookup_function_type (type);
1232 type = alloc_utype (dip -> dieref, type);
1233 }
1234
1235 /*
1236
1237 LOCAL FUNCTION
1238
1239 read_enumeration -- process dies which define an enumeration
1240
1241 SYNOPSIS
1242
1243 static void read_enumeration (struct dieinfo *dip, char *thisdie,
1244 char *enddie)
1245
1246 DESCRIPTION
1247
1248 Given a pointer to a die which begins an enumeration, process all
1249 the dies that define the members of the enumeration.
1250
1251 NOTES
1252
1253 Note that we need to call enum_type regardless of whether or not we
1254 have a symbol, since we might have an enum without a tag name (thus
1255 no symbol for the tagname).
1256 */
1257
1258 static void
1259 DEFUN(read_enumeration, (dip, thisdie, enddie),
1260 struct dieinfo *dip AND
1261 char *thisdie AND
1262 char *enddie)
1263 {
1264 struct type *type;
1265 struct symbol *sym;
1266
1267 type = enum_type (dip);
1268 if ((sym = new_symbol (dip)) != NULL)
1269 {
1270 SYMBOL_TYPE (sym) = type;
1271 }
1272 }
1273
1274 /*
1275
1276 LOCAL FUNCTION
1277
1278 enum_type -- decode and return a type for an enumeration
1279
1280 SYNOPSIS
1281
1282 static type *enum_type (struct dieinfo *dip)
1283
1284 DESCRIPTION
1285
1286 Given a pointer to a die information structure for the die which
1287 starts an enumeration, process all the dies that define the members
1288 of the enumeration and return a type pointer for the enumeration.
1289
1290 At the same time, for each member of the enumeration, create a
1291 symbol for it with namespace VAR_NAMESPACE and class LOC_CONST,
1292 and give it the type of the enumeration itself.
1293
1294 NOTES
1295
1296 Note that the DWARF specification explicitly mandates that enum
1297 constants occur in reverse order from the source program order,
1298 for "consistency" and because this ordering is easier for many
1299 compilers to generate. (Draft 5, sec 3.9.5, Enumeration type
1300 Entries). Because gdb wants to see the enum members in program
1301 source order, we have to ensure that the order gets reversed while
1302 we are processing them.
1303 */
1304
1305 static struct type *
1306 DEFUN(enum_type, (dip), struct dieinfo *dip)
1307 {
1308 struct type *type;
1309 struct nextfield {
1310 struct nextfield *next;
1311 struct field field;
1312 };
1313 struct nextfield *list = NULL;
1314 struct nextfield *new;
1315 int nfields = 0;
1316 int n;
1317 char *scan;
1318 char *listend;
1319 long ltemp;
1320 short stemp;
1321 struct symbol *sym;
1322
1323 if ((type = lookup_utype (dip -> dieref)) == NULL)
1324 {
1325 /* No forward references created an empty type, so install one now */
1326 type = alloc_utype (dip -> dieref, NULL);
1327 }
1328 TYPE_CODE (type) = TYPE_CODE_ENUM;
1329 /* Some compilers try to be helpful by inventing "fake" names for
1330 anonymous enums, structures, and unions, like "~0fake" or ".0fake".
1331 Thanks, but no thanks... */
1332 if (dip -> at_name != NULL
1333 && *dip -> at_name != '~'
1334 && *dip -> at_name != '.')
1335 {
1336 TYPE_NAME (type) = obconcat ("enum", " ", dip -> at_name);
1337 }
1338 if (dip -> at_byte_size != 0)
1339 {
1340 TYPE_LENGTH (type) = dip -> at_byte_size;
1341 }
1342 if ((scan = dip -> at_element_list) != NULL)
1343 {
1344 if (dip -> short_element_list)
1345 {
1346 (void) memcpy (&stemp, scan, sizeof (stemp));
1347 listend = scan + stemp + sizeof (stemp);
1348 scan += sizeof (stemp);
1349 }
1350 else
1351 {
1352 (void) memcpy (&ltemp, scan, sizeof (ltemp));
1353 listend = scan + ltemp + sizeof (ltemp);
1354 scan += sizeof (ltemp);
1355 }
1356 while (scan < listend)
1357 {
1358 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1359 new -> next = list;
1360 list = new;
1361 list -> field.type = NULL;
1362 list -> field.bitsize = 0;
1363 (void) memcpy (&list -> field.bitpos, scan, sizeof (long));
1364 scan += sizeof (long);
1365 list -> field.name = savestring (scan, strlen (scan));
1366 scan += strlen (scan) + 1;
1367 nfields++;
1368 /* Handcraft a new symbol for this enum member. */
1369 sym = (struct symbol *) obstack_alloc (symbol_obstack,
1370 sizeof (struct symbol));
1371 (void) memset (sym, 0, sizeof (struct symbol));
1372 SYMBOL_NAME (sym) = create_name (list -> field.name, symbol_obstack);
1373 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1374 SYMBOL_CLASS (sym) = LOC_CONST;
1375 SYMBOL_TYPE (sym) = type;
1376 SYMBOL_VALUE (sym) = list -> field.bitpos;
1377 add_symbol_to_list (sym, list_in_scope);
1378 }
1379 /* Now create the vector of fields, and record how big it is. This is
1380 where we reverse the order, by pulling the members of the list in
1381 reverse order from how they were inserted. If we have no fields
1382 (this is apparently possible in C++) then skip building a field
1383 vector. */
1384 if (nfields > 0)
1385 {
1386 TYPE_NFIELDS (type) = nfields;
1387 TYPE_FIELDS (type) = (struct field *)
1388 obstack_alloc (symbol_obstack, sizeof (struct field) * nfields);
1389 /* Copy the saved-up fields into the field vector. */
1390 for (n = 0; (n < nfields) && (list != NULL); list = list -> next)
1391 {
1392 TYPE_FIELD (type, n++) = list -> field;
1393 }
1394 }
1395 }
1396 return (type);
1397 }
1398
1399 /*
1400
1401 LOCAL FUNCTION
1402
1403 read_func_scope -- process all dies within a function scope
1404
1405 DESCRIPTION
1406
1407 Process all dies within a given function scope. We are passed
1408 a die information structure pointer DIP for the die which
1409 starts the function scope, and pointers into the raw die data
1410 that define the dies within the function scope.
1411
1412 For now, we ignore lexical block scopes within the function.
1413 The problem is that AT&T cc does not define a DWARF lexical
1414 block scope for the function itself, while gcc defines a
1415 lexical block scope for the function. We need to think about
1416 how to handle this difference, or if it is even a problem.
1417 (FIXME)
1418 */
1419
1420 static void
1421 DEFUN(read_func_scope, (dip, thisdie, enddie, objfile),
1422 struct dieinfo *dip AND
1423 char *thisdie AND
1424 char *enddie AND
1425 struct objfile *objfile)
1426 {
1427 register struct context_stack *new;
1428
1429 if (entry_point >= dip -> at_low_pc && entry_point < dip -> at_high_pc)
1430 {
1431 entry_scope_lowpc = dip -> at_low_pc;
1432 entry_scope_highpc = dip -> at_high_pc;
1433 }
1434 if (STREQ (dip -> at_name, "main")) /* FIXME: hardwired name */
1435 {
1436 main_scope_lowpc = dip -> at_low_pc;
1437 main_scope_highpc = dip -> at_high_pc;
1438 }
1439 new = push_context (0, dip -> at_low_pc);
1440 new -> name = new_symbol (dip);
1441 list_in_scope = &local_symbols;
1442 process_dies (thisdie + dip -> dielength, enddie, objfile);
1443 new = pop_context ();
1444 /* Make a block for the local symbols within. */
1445 finish_block (new -> name, &local_symbols, new -> old_blocks,
1446 new -> start_addr, dip -> at_high_pc);
1447 list_in_scope = &file_symbols;
1448 }
1449
1450 /*
1451
1452 LOCAL FUNCTION
1453
1454 read_file_scope -- process all dies within a file scope
1455
1456 DESCRIPTION
1457
1458 Process all dies within a given file scope. We are passed a
1459 pointer to the die information structure for the die which
1460 starts the file scope, and pointers into the raw die data which
1461 mark the range of dies within the file scope.
1462
1463 When the partial symbol table is built, the file offset for the line
1464 number table for each compilation unit is saved in the partial symbol
1465 table entry for that compilation unit. As the symbols for each
1466 compilation unit are read, the line number table is read into memory
1467 and the variable lnbase is set to point to it. Thus all we have to
1468 do is use lnbase to access the line number table for the current
1469 compilation unit.
1470 */
1471
1472 static void
1473 DEFUN(read_file_scope, (dip, thisdie, enddie, objfile),
1474 struct dieinfo *dip AND
1475 char *thisdie AND
1476 char *enddie AND
1477 struct objfile *objfile)
1478 {
1479 struct cleanup *back_to;
1480 struct symtab *symtab;
1481
1482 if (entry_point >= dip -> at_low_pc && entry_point < dip -> at_high_pc)
1483 {
1484 startup_file_start = dip -> at_low_pc;
1485 startup_file_end = dip -> at_high_pc;
1486 }
1487 if (dip -> at_producer != NULL)
1488 {
1489 processing_gcc_compilation =
1490 STREQN (dip -> at_producer, GCC_PRODUCER, strlen (GCC_PRODUCER));
1491 }
1492 numutypes = (enddie - thisdie) / 4;
1493 utypes = (struct type **) xmalloc (numutypes * sizeof (struct type *));
1494 back_to = make_cleanup (free, utypes);
1495 (void) memset (utypes, 0, numutypes * sizeof (struct type *));
1496 start_symtab (dip -> at_name, NULL, dip -> at_low_pc);
1497 decode_line_numbers (lnbase);
1498 process_dies (thisdie + dip -> dielength, enddie, objfile);
1499 symtab = end_symtab (dip -> at_high_pc, 0, 0, objfile);
1500 /* FIXME: The following may need to be expanded for other languages */
1501 switch (dip -> at_language)
1502 {
1503 case LANG_C89:
1504 case LANG_C:
1505 symtab -> language = language_c;
1506 break;
1507 case LANG_C_PLUS_PLUS:
1508 symtab -> language = language_cplus;
1509 break;
1510 default:
1511 ;
1512 }
1513 do_cleanups (back_to);
1514 utypes = NULL;
1515 numutypes = 0;
1516 }
1517
1518 /*
1519
1520 LOCAL FUNCTION
1521
1522 process_dies -- process a range of DWARF Information Entries
1523
1524 SYNOPSIS
1525
1526 static void process_dies (char *thisdie, char *enddie,
1527 struct objfile *objfile)
1528
1529 DESCRIPTION
1530
1531 Process all DIE's in a specified range. May be (and almost
1532 certainly will be) called recursively.
1533 */
1534
1535 static void
1536 DEFUN(process_dies, (thisdie, enddie, objfile),
1537 char *thisdie AND char *enddie AND struct objfile *objfile)
1538 {
1539 char *nextdie;
1540 struct dieinfo di;
1541
1542 while (thisdie < enddie)
1543 {
1544 basicdieinfo (&di, thisdie);
1545 if (di.dielength < sizeof (long))
1546 {
1547 break;
1548 }
1549 else if (di.dietag == TAG_padding)
1550 {
1551 nextdie = thisdie + di.dielength;
1552 }
1553 else
1554 {
1555 completedieinfo (&di);
1556 if (di.at_sibling != 0)
1557 {
1558 nextdie = dbbase + di.at_sibling - dbroff;
1559 }
1560 else
1561 {
1562 nextdie = thisdie + di.dielength;
1563 }
1564 switch (di.dietag)
1565 {
1566 case TAG_compile_unit:
1567 read_file_scope (&di, thisdie, nextdie, objfile);
1568 break;
1569 case TAG_global_subroutine:
1570 case TAG_subroutine:
1571 if (di.has_at_low_pc)
1572 {
1573 read_func_scope (&di, thisdie, nextdie, objfile);
1574 }
1575 break;
1576 case TAG_lexical_block:
1577 read_lexical_block_scope (&di, thisdie, nextdie, objfile);
1578 break;
1579 case TAG_structure_type:
1580 case TAG_union_type:
1581 read_structure_scope (&di, thisdie, nextdie, objfile);
1582 break;
1583 case TAG_enumeration_type:
1584 read_enumeration (&di, thisdie, nextdie);
1585 break;
1586 case TAG_subroutine_type:
1587 read_subroutine_type (&di, thisdie, nextdie);
1588 break;
1589 case TAG_array_type:
1590 dwarf_read_array_type (&di);
1591 break;
1592 default:
1593 (void) new_symbol (&di);
1594 break;
1595 }
1596 }
1597 thisdie = nextdie;
1598 }
1599 }
1600
1601 /*
1602
1603 LOCAL FUNCTION
1604
1605 decode_line_numbers -- decode a line number table fragment
1606
1607 SYNOPSIS
1608
1609 static void decode_line_numbers (char *tblscan, char *tblend,
1610 long length, long base, long line, long pc)
1611
1612 DESCRIPTION
1613
1614 Translate the DWARF line number information to gdb form.
1615
1616 The ".line" section contains one or more line number tables, one for
1617 each ".line" section from the objects that were linked.
1618
1619 The AT_stmt_list attribute for each TAG_source_file entry in the
1620 ".debug" section contains the offset into the ".line" section for the
1621 start of the table for that file.
1622
1623 The table itself has the following structure:
1624
1625 <table length><base address><source statement entry>
1626 4 bytes 4 bytes 10 bytes
1627
1628 The table length is the total size of the table, including the 4 bytes
1629 for the length information.
1630
1631 The base address is the address of the first instruction generated
1632 for the source file.
1633
1634 Each source statement entry has the following structure:
1635
1636 <line number><statement position><address delta>
1637 4 bytes 2 bytes 4 bytes
1638
1639 The line number is relative to the start of the file, starting with
1640 line 1.
1641
1642 The statement position either -1 (0xFFFF) or the number of characters
1643 from the beginning of the line to the beginning of the statement.
1644
1645 The address delta is the difference between the base address and
1646 the address of the first instruction for the statement.
1647
1648 Note that we must copy the bytes from the packed table to our local
1649 variables before attempting to use them, to avoid alignment problems
1650 on some machines, particularly RISC processors.
1651
1652 BUGS
1653
1654 Does gdb expect the line numbers to be sorted? They are now by
1655 chance/luck, but are not required to be. (FIXME)
1656
1657 The line with number 0 is unused, gdb apparently can discover the
1658 span of the last line some other way. How? (FIXME)
1659 */
1660
1661 static void
1662 DEFUN(decode_line_numbers, (linetable), char *linetable)
1663 {
1664 char *tblscan;
1665 char *tblend;
1666 long length;
1667 long base;
1668 long line;
1669 long pc;
1670
1671 if (linetable != NULL)
1672 {
1673 tblscan = tblend = linetable;
1674 (void) memcpy (&length, tblscan, sizeof (long));
1675 tblscan += sizeof (long);
1676 tblend += length;
1677 (void) memcpy (&base, tblscan, sizeof (long));
1678 base += baseaddr;
1679 tblscan += sizeof (long);
1680 while (tblscan < tblend)
1681 {
1682 (void) memcpy (&line, tblscan, sizeof (long));
1683 tblscan += sizeof (long) + sizeof (short);
1684 (void) memcpy (&pc, tblscan, sizeof (long));
1685 tblscan += sizeof (long);
1686 pc += base;
1687 if (line > 0)
1688 {
1689 record_line (current_subfile, line, pc);
1690 }
1691 }
1692 }
1693 }
1694
1695 /*
1696
1697 LOCAL FUNCTION
1698
1699 locval -- compute the value of a location attribute
1700
1701 SYNOPSIS
1702
1703 static int locval (char *loc)
1704
1705 DESCRIPTION
1706
1707 Given pointer to a string of bytes that define a location, compute
1708 the location and return the value.
1709
1710 When computing values involving the current value of the frame pointer,
1711 the value zero is used, which results in a value relative to the frame
1712 pointer, rather than the absolute value. This is what GDB wants
1713 anyway.
1714
1715 When the result is a register number, the global isreg flag is set,
1716 otherwise it is cleared. This is a kludge until we figure out a better
1717 way to handle the problem. Gdb's design does not mesh well with the
1718 DWARF notion of a location computing interpreter, which is a shame
1719 because the flexibility goes unused.
1720
1721 NOTES
1722
1723 Note that stack[0] is unused except as a default error return.
1724 Note that stack overflow is not yet handled.
1725 */
1726
1727 static int
1728 DEFUN(locval, (loc), char *loc)
1729 {
1730 unsigned short nbytes;
1731 auto int stack[64];
1732 int stacki;
1733 char *end;
1734 long regno;
1735
1736 (void) memcpy (&nbytes, loc, sizeof (short));
1737 end = loc + sizeof (short) + nbytes;
1738 stacki = 0;
1739 stack[stacki] = 0;
1740 isreg = 0;
1741 offreg = 0;
1742 for (loc += sizeof (short); loc < end; loc += sizeof (long))
1743 {
1744 switch (*loc++) {
1745 case 0:
1746 /* error */
1747 loc = end;
1748 break;
1749 case OP_REG:
1750 /* push register (number) */
1751 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1752 isreg = 1;
1753 break;
1754 case OP_BASEREG:
1755 /* push value of register (number) */
1756 /* Actually, we compute the value as if register has 0 */
1757 offreg = 1;
1758 (void) memcpy (&regno, loc, sizeof (long));
1759 if (regno == R_FP)
1760 {
1761 stack[++stacki] = 0;
1762 }
1763 else
1764 {
1765 stack[++stacki] = 0;
1766 SQUAWK (("BASEREG %d not handled!", regno));
1767 }
1768 break;
1769 case OP_ADDR:
1770 /* push address (relocated address) */
1771 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1772 break;
1773 case OP_CONST:
1774 /* push constant (number) */
1775 (void) memcpy (&stack[++stacki], loc, sizeof (long));
1776 break;
1777 case OP_DEREF2:
1778 /* pop, deref and push 2 bytes (as a long) */
1779 SQUAWK (("OP_DEREF2 address %#x not handled", stack[stacki]));
1780 break;
1781 case OP_DEREF4: /* pop, deref and push 4 bytes (as a long) */
1782 SQUAWK (("OP_DEREF4 address %#x not handled", stack[stacki]));
1783 break;
1784 case OP_ADD: /* pop top 2 items, add, push result */
1785 stack[stacki - 1] += stack[stacki];
1786 stacki--;
1787 break;
1788 }
1789 }
1790 return (stack[stacki]);
1791 }
1792
1793 /*
1794
1795 LOCAL FUNCTION
1796
1797 read_ofile_symtab -- build a full symtab entry from chunk of DIE's
1798
1799 SYNOPSIS
1800
1801 static struct symtab *read_ofile_symtab (struct partial_symtab *pst)
1802
1803 DESCRIPTION
1804
1805 */
1806
1807 static struct symtab *
1808 DEFUN(read_ofile_symtab, (pst),
1809 struct partial_symtab *pst)
1810 {
1811 struct cleanup *back_to;
1812 long lnsize;
1813 int foffset;
1814 bfd *abfd = pst->objfile->obfd;
1815
1816 /* Allocate a buffer for the entire chunk of DIE's for this compilation
1817 unit, seek to the location in the file, and read in all the DIE's. */
1818
1819 diecount = 0;
1820 dbbase = xmalloc (DBLENGTH(pst));
1821 dbroff = DBROFF(pst);
1822 foffset = DBFOFF(pst) + dbroff;
1823 baseaddr = pst -> addr;
1824 if (bfd_seek (abfd, foffset, 0) ||
1825 (bfd_read (dbbase, DBLENGTH(pst), 1, abfd) != DBLENGTH(pst)))
1826 {
1827 free (dbbase);
1828 error ("can't read DWARF data");
1829 }
1830 back_to = make_cleanup (free, dbbase);
1831
1832 /* If there is a line number table associated with this compilation unit
1833 then read the first long word from the line number table fragment, which
1834 contains the size of the fragment in bytes (including the long word
1835 itself). Allocate a buffer for the fragment and read it in for future
1836 processing. */
1837
1838 lnbase = NULL;
1839 if (LNFOFF (pst))
1840 {
1841 if (bfd_seek (abfd, LNFOFF (pst), 0) ||
1842 (bfd_read (&lnsize, sizeof(long), 1, abfd) != sizeof(long)))
1843 {
1844 error ("can't read DWARF line number table size");
1845 }
1846 lnbase = xmalloc (lnsize);
1847 if (bfd_seek (abfd, LNFOFF (pst), 0) ||
1848 (bfd_read (lnbase, lnsize, 1, abfd) != lnsize))
1849 {
1850 free (lnbase);
1851 error ("can't read DWARF line numbers");
1852 }
1853 make_cleanup (free, lnbase);
1854 }
1855
1856 process_dies (dbbase, dbbase + DBLENGTH(pst), pst -> objfile);
1857 do_cleanups (back_to);
1858 return (symtab_list);
1859 }
1860
1861 /*
1862
1863 LOCAL FUNCTION
1864
1865 psymtab_to_symtab_1 -- do grunt work for building a full symtab entry
1866
1867 SYNOPSIS
1868
1869 static void psymtab_to_symtab_1 (struct partial_symtab *pst)
1870
1871 DESCRIPTION
1872
1873 Called once for each partial symbol table entry that needs to be
1874 expanded into a full symbol table entry.
1875
1876 */
1877
1878 static void
1879 DEFUN(psymtab_to_symtab_1,
1880 (pst),
1881 struct partial_symtab *pst)
1882 {
1883 int i;
1884
1885 if (!pst)
1886 {
1887 return;
1888 }
1889 if (pst->readin)
1890 {
1891 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1892 pst -> filename);
1893 return;
1894 }
1895
1896 /* Read in all partial symtabs on which this one is dependent */
1897 for (i = 0; i < pst -> number_of_dependencies; i++)
1898 if (!pst -> dependencies[i] -> readin)
1899 {
1900 /* Inform about additional files that need to be read in. */
1901 if (info_verbose)
1902 {
1903 fputs_filtered (" ", stdout);
1904 wrap_here ("");
1905 fputs_filtered ("and ", stdout);
1906 wrap_here ("");
1907 printf_filtered ("%s...", pst -> dependencies[i] -> filename);
1908 wrap_here (""); /* Flush output */
1909 fflush (stdout);
1910 }
1911 psymtab_to_symtab_1 (pst -> dependencies[i]);
1912 }
1913
1914 if (DBLENGTH(pst)) /* Otherwise it's a dummy */
1915 {
1916 pst -> symtab = read_ofile_symtab (pst);
1917 if (info_verbose)
1918 {
1919 printf_filtered ("%d DIE's, sorting...", diecount);
1920 fflush (stdout);
1921 }
1922 sort_symtab_syms (pst -> symtab);
1923 }
1924 pst -> readin = 1;
1925 }
1926
1927 /*
1928
1929 LOCAL FUNCTION
1930
1931 dwarf_psymtab_to_symtab -- build a full symtab entry from partial one
1932
1933 SYNOPSIS
1934
1935 static void dwarf_psymtab_to_symtab (struct partial_symtab *pst)
1936
1937 DESCRIPTION
1938
1939 This is the DWARF support entry point for building a full symbol
1940 table entry from a partial symbol table entry. We are passed a
1941 pointer to the partial symbol table entry that needs to be expanded.
1942
1943 */
1944
1945 static void
1946 DEFUN(dwarf_psymtab_to_symtab, (pst), struct partial_symtab *pst)
1947 {
1948
1949 if (!pst)
1950 {
1951 return;
1952 }
1953 if (pst -> readin)
1954 {
1955 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1956 pst -> filename);
1957 return;
1958 }
1959
1960 if (DBLENGTH(pst) || pst -> number_of_dependencies)
1961 {
1962 /* Print the message now, before starting serious work, to avoid
1963 disconcerting pauses. */
1964 if (info_verbose)
1965 {
1966 printf_filtered ("Reading in symbols for %s...", pst -> filename);
1967 fflush (stdout);
1968 }
1969
1970 psymtab_to_symtab_1 (pst);
1971
1972 #if 0 /* FIXME: Check to see what dbxread is doing here and see if
1973 we need to do an equivalent or is this something peculiar to
1974 stabs/a.out format. */
1975 /* Match with global symbols. This only needs to be done once,
1976 after all of the symtabs and dependencies have been read in. */
1977 scan_file_globals ();
1978 #endif
1979
1980 /* Finish up the debug error message. */
1981 if (info_verbose)
1982 {
1983 printf_filtered ("done.\n");
1984 }
1985 }
1986 }
1987
1988 /*
1989
1990 LOCAL FUNCTION
1991
1992 init_psymbol_list -- initialize storage for partial symbols
1993
1994 SYNOPSIS
1995
1996 static void init_psymbol_list (int total_symbols)
1997
1998 DESCRIPTION
1999
2000 Initializes storage for all of the partial symbols that will be
2001 created by dwarf_build_psymtabs and subsidiaries.
2002 */
2003
2004 static void
2005 DEFUN(init_psymbol_list, (total_symbols), int total_symbols)
2006 {
2007 /* Free any previously allocated psymbol lists. */
2008
2009 if (global_psymbols.list)
2010 {
2011 free (global_psymbols.list);
2012 }
2013 if (static_psymbols.list)
2014 {
2015 free (static_psymbols.list);
2016 }
2017
2018 /* Current best guess is that there are approximately a twentieth
2019 of the total symbols (in a debugging file) are global or static
2020 oriented symbols */
2021
2022 global_psymbols.size = total_symbols / 10;
2023 static_psymbols.size = total_symbols / 10;
2024 global_psymbols.next = global_psymbols.list = (struct partial_symbol *)
2025 xmalloc (global_psymbols.size * sizeof (struct partial_symbol));
2026 static_psymbols.next = static_psymbols.list = (struct partial_symbol *)
2027 xmalloc (static_psymbols.size * sizeof (struct partial_symbol));
2028 }
2029
2030 /*
2031
2032 LOCAL FUNCTION
2033
2034 dwarf_start_psymtab -- allocate and fill a partial symtab entry
2035
2036 DESCRIPTION
2037
2038 Allocate and partially fill a partial symtab. It will be completely
2039 filled at the end of the symbol list.
2040
2041 SYMFILE_NAME is the name of the symbol-file we are reading from, and
2042 ADDR is the address relative to which its symbols are (incremental)
2043 or 0 (normal). FILENAME is the name of the compilation unit that
2044 these symbols were defined in, and they appear starting a address
2045 TEXTLOW. DBROFF is the absolute file offset in SYMFILE_NAME where
2046 the full symbols can be read for compilation unit FILENAME.
2047 GLOBAL_SYMS and STATIC_SYMS are pointers to the current end of the
2048 psymtab vector.
2049
2050 */
2051
2052 static struct partial_symtab *
2053 DEFUN(dwarf_start_psymtab,
2054 (objfile, addr, filename, textlow, texthigh, dbfoff, curoff,
2055 culength, lnfoff, global_syms, static_syms),
2056 struct objfile *objfile AND
2057 CORE_ADDR addr AND
2058 char *filename AND
2059 CORE_ADDR textlow AND
2060 CORE_ADDR texthigh AND
2061 int dbfoff AND
2062 int curoff AND
2063 int culength AND
2064 int lnfoff AND
2065 struct partial_symbol *global_syms AND
2066 struct partial_symbol *static_syms)
2067 {
2068 struct partial_symtab *result;
2069
2070 result = (struct partial_symtab *)
2071 obstack_alloc (psymbol_obstack, sizeof (struct partial_symtab));
2072 (void) memset (result, 0, sizeof (struct partial_symtab));
2073 result -> addr = addr;
2074 result -> objfile = objfile;
2075 result -> filename = create_name (filename, psymbol_obstack);
2076 result -> textlow = textlow;
2077 result -> texthigh = texthigh;
2078 result -> read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
2079 sizeof (struct dwfinfo));
2080 DBFOFF (result) = dbfoff;
2081 DBROFF (result) = curoff;
2082 DBLENGTH (result) = culength;
2083 LNFOFF (result) = lnfoff;
2084 result -> readin = 0;
2085 result -> symtab = NULL;
2086 result -> read_symtab = dwarf_psymtab_to_symtab;
2087 result -> globals_offset = global_syms - global_psymbols.list;
2088 result -> statics_offset = static_syms - static_psymbols.list;
2089
2090 result->n_global_syms = 0;
2091 result->n_static_syms = 0;
2092
2093 return result;
2094 }
2095
2096 /*
2097
2098 LOCAL FUNCTION
2099
2100 add_enum_psymbol -- add enumeration members to partial symbol table
2101
2102 DESCRIPTION
2103
2104 Given pointer to a DIE that is known to be for an enumeration,
2105 extract the symbolic names of the enumeration members and add
2106 partial symbols for them.
2107 */
2108
2109 static void
2110 DEFUN(add_enum_psymbol, (dip), struct dieinfo *dip)
2111 {
2112 char *scan;
2113 char *listend;
2114 long ltemp;
2115 short stemp;
2116
2117 if ((scan = dip -> at_element_list) != NULL)
2118 {
2119 if (dip -> short_element_list)
2120 {
2121 (void) memcpy (&stemp, scan, sizeof (stemp));
2122 listend = scan + stemp + sizeof (stemp);
2123 scan += sizeof (stemp);
2124 }
2125 else
2126 {
2127 (void) memcpy (&ltemp, scan, sizeof (ltemp));
2128 listend = scan + ltemp + sizeof (ltemp);
2129 scan += sizeof (ltemp);
2130 }
2131 while (scan < listend)
2132 {
2133 scan += sizeof (long);
2134 ADD_PSYMBOL_TO_LIST (scan, strlen (scan), VAR_NAMESPACE, LOC_CONST,
2135 static_psymbols, 0);
2136 scan += strlen (scan) + 1;
2137 }
2138 }
2139 }
2140
2141 /*
2142
2143 LOCAL FUNCTION
2144
2145 add_partial_symbol -- add symbol to partial symbol table
2146
2147 DESCRIPTION
2148
2149 Given a DIE, if it is one of the types that we want to
2150 add to a partial symbol table, finish filling in the die info
2151 and then add a partial symbol table entry for it.
2152
2153 */
2154
2155 static void
2156 DEFUN(add_partial_symbol, (dip), struct dieinfo *dip)
2157 {
2158 switch (dip -> dietag)
2159 {
2160 case TAG_global_subroutine:
2161 record_misc_function (dip -> at_name, dip -> at_low_pc, mf_text);
2162 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2163 VAR_NAMESPACE, LOC_BLOCK, global_psymbols,
2164 dip -> at_low_pc);
2165 break;
2166 case TAG_global_variable:
2167 record_misc_function (dip -> at_name, locval (dip -> at_location),
2168 mf_data);
2169 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2170 VAR_NAMESPACE, LOC_STATIC, global_psymbols,
2171 0);
2172 break;
2173 case TAG_subroutine:
2174 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2175 VAR_NAMESPACE, LOC_BLOCK, static_psymbols,
2176 dip -> at_low_pc);
2177 break;
2178 case TAG_local_variable:
2179 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2180 VAR_NAMESPACE, LOC_STATIC, static_psymbols,
2181 0);
2182 break;
2183 case TAG_typedef:
2184 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2185 VAR_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2186 0);
2187 break;
2188 case TAG_structure_type:
2189 case TAG_union_type:
2190 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2191 STRUCT_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2192 0);
2193 break;
2194 case TAG_enumeration_type:
2195 if (dip -> at_name)
2196 {
2197 ADD_PSYMBOL_TO_LIST (dip -> at_name, strlen (dip -> at_name),
2198 STRUCT_NAMESPACE, LOC_TYPEDEF, static_psymbols,
2199 0);
2200 }
2201 add_enum_psymbol (dip);
2202 break;
2203 }
2204 }
2205
2206 /*
2207
2208 LOCAL FUNCTION
2209
2210 scan_partial_symbols -- scan DIE's within a single compilation unit
2211
2212 DESCRIPTION
2213
2214 Process the DIE's within a single compilation unit, looking for
2215 interesting DIE's that contribute to the partial symbol table entry
2216 for this compilation unit. Since we cannot follow any sibling
2217 chains without reading the complete DIE info for every DIE,
2218 it is probably faster to just sequentially check each one to
2219 see if it is one of the types we are interested in, and if so,
2220 then extract all the attributes info and generate a partial
2221 symbol table entry.
2222
2223 NOTES
2224
2225 Don't attempt to add anonymous structures or unions since they have
2226 no name. Anonymous enumerations however are processed, because we
2227 want to extract their member names (the check for a tag name is
2228 done later).
2229
2230 Also, for variables and subroutines, check that this is the place
2231 where the actual definition occurs, rather than just a reference
2232 to an external.
2233 */
2234
2235 static void
2236 DEFUN(scan_partial_symbols, (thisdie, enddie), char *thisdie AND char *enddie)
2237 {
2238 char *nextdie;
2239 struct dieinfo di;
2240
2241 while (thisdie < enddie)
2242 {
2243 basicdieinfo (&di, thisdie);
2244 if (di.dielength < sizeof (long))
2245 {
2246 break;
2247 }
2248 else
2249 {
2250 nextdie = thisdie + di.dielength;
2251 /* To avoid getting complete die information for every die, we
2252 only do it (below) for the cases we are interested in. */
2253 switch (di.dietag)
2254 {
2255 case TAG_global_subroutine:
2256 case TAG_subroutine:
2257 case TAG_global_variable:
2258 case TAG_local_variable:
2259 completedieinfo (&di);
2260 if (di.at_name && (di.has_at_low_pc || di.at_location))
2261 {
2262 add_partial_symbol (&di);
2263 }
2264 break;
2265 case TAG_typedef:
2266 case TAG_structure_type:
2267 case TAG_union_type:
2268 completedieinfo (&di);
2269 if (di.at_name)
2270 {
2271 add_partial_symbol (&di);
2272 }
2273 break;
2274 case TAG_enumeration_type:
2275 completedieinfo (&di);
2276 add_partial_symbol (&di);
2277 break;
2278 }
2279 }
2280 thisdie = nextdie;
2281 }
2282 }
2283
2284 /*
2285
2286 LOCAL FUNCTION
2287
2288 scan_compilation_units -- build a psymtab entry for each compilation
2289
2290 DESCRIPTION
2291
2292 This is the top level dwarf parsing routine for building partial
2293 symbol tables.
2294
2295 It scans from the beginning of the DWARF table looking for the first
2296 TAG_compile_unit DIE, and then follows the sibling chain to locate
2297 each additional TAG_compile_unit DIE.
2298
2299 For each TAG_compile_unit DIE it creates a partial symtab structure,
2300 calls a subordinate routine to collect all the compilation unit's
2301 global DIE's, file scope DIEs, typedef DIEs, etc, and then links the
2302 new partial symtab structure into the partial symbol table. It also
2303 records the appropriate information in the partial symbol table entry
2304 to allow the chunk of DIE's and line number table for this compilation
2305 unit to be located and re-read later, to generate a complete symbol
2306 table entry for the compilation unit.
2307
2308 Thus it effectively partitions up a chunk of DIE's for multiple
2309 compilation units into smaller DIE chunks and line number tables,
2310 and associates them with a partial symbol table entry.
2311
2312 NOTES
2313
2314 If any compilation unit has no line number table associated with
2315 it for some reason (a missing at_stmt_list attribute, rather than
2316 just one with a value of zero, which is valid) then we ensure that
2317 the recorded file offset is zero so that the routine which later
2318 reads line number table fragments knows that there is no fragment
2319 to read.
2320
2321 RETURNS
2322
2323 Returns no value.
2324
2325 */
2326
2327 static void
2328 DEFUN(scan_compilation_units,
2329 (filename, thisdie, enddie, dbfoff, lnoffset, objfile),
2330 char *filename AND
2331 char *thisdie AND
2332 char *enddie AND
2333 unsigned int dbfoff AND
2334 unsigned int lnoffset AND
2335 struct objfile *objfile)
2336 {
2337 char *nextdie;
2338 struct dieinfo di;
2339 struct partial_symtab *pst;
2340 int culength;
2341 int curoff;
2342 int curlnoffset;
2343
2344 while (thisdie < enddie)
2345 {
2346 basicdieinfo (&di, thisdie);
2347 if (di.dielength < sizeof (long))
2348 {
2349 break;
2350 }
2351 else if (di.dietag != TAG_compile_unit)
2352 {
2353 nextdie = thisdie + di.dielength;
2354 }
2355 else
2356 {
2357 completedieinfo (&di);
2358 if (di.at_sibling != 0)
2359 {
2360 nextdie = dbbase + di.at_sibling - dbroff;
2361 }
2362 else
2363 {
2364 nextdie = thisdie + di.dielength;
2365 }
2366 curoff = thisdie - dbbase;
2367 culength = nextdie - thisdie;
2368 curlnoffset = di.has_at_stmt_list ? lnoffset + di.at_stmt_list : 0;
2369 pst = dwarf_start_psymtab (objfile, baseaddr, di.at_name,
2370 di.at_low_pc,
2371 di.at_high_pc,
2372 dbfoff, curoff, culength, curlnoffset,
2373 global_psymbols.next,
2374 static_psymbols.next);
2375 scan_partial_symbols (thisdie + di.dielength, nextdie);
2376 pst -> n_global_syms = global_psymbols.next -
2377 (global_psymbols.list + pst -> globals_offset);
2378 pst -> n_static_syms = static_psymbols.next -
2379 (static_psymbols.list + pst -> statics_offset);
2380 /* Sort the global list; don't sort the static list */
2381 qsort (global_psymbols.list + pst -> globals_offset,
2382 pst -> n_global_syms, sizeof (struct partial_symbol),
2383 compare_psymbols);
2384 /* If there is already a psymtab or symtab for a file of this name,
2385 remove it. (If there is a symtab, more drastic things also
2386 happen.) This happens in VxWorks. */
2387 free_named_symtabs (pst -> filename);
2388 /* Place the partial symtab on the partial symtab list */
2389 pst -> next = partial_symtab_list;
2390 partial_symtab_list = pst;
2391 }
2392 thisdie = nextdie;
2393 }
2394 }
2395
2396 /*
2397
2398 LOCAL FUNCTION
2399
2400 new_symbol -- make a symbol table entry for a new symbol
2401
2402 SYNOPSIS
2403
2404 static struct symbol *new_symbol (struct dieinfo *dip)
2405
2406 DESCRIPTION
2407
2408 Given a pointer to a DWARF information entry, figure out if we need
2409 to make a symbol table entry for it, and if so, create a new entry
2410 and return a pointer to it.
2411 */
2412
2413 static struct symbol *
2414 DEFUN(new_symbol, (dip), struct dieinfo *dip)
2415 {
2416 struct symbol *sym = NULL;
2417
2418 if (dip -> at_name != NULL)
2419 {
2420 sym = (struct symbol *) obstack_alloc (symbol_obstack,
2421 sizeof (struct symbol));
2422 (void) memset (sym, 0, sizeof (struct symbol));
2423 SYMBOL_NAME (sym) = create_name (dip -> at_name, symbol_obstack);
2424 /* default assumptions */
2425 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2426 SYMBOL_CLASS (sym) = LOC_STATIC;
2427 SYMBOL_TYPE (sym) = decode_die_type (dip);
2428 switch (dip -> dietag)
2429 {
2430 case TAG_label:
2431 SYMBOL_VALUE (sym) = dip -> at_low_pc;
2432 SYMBOL_CLASS (sym) = LOC_LABEL;
2433 break;
2434 case TAG_global_subroutine:
2435 case TAG_subroutine:
2436 SYMBOL_VALUE (sym) = dip -> at_low_pc;
2437 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
2438 SYMBOL_CLASS (sym) = LOC_BLOCK;
2439 if (dip -> dietag == TAG_global_subroutine)
2440 {
2441 add_symbol_to_list (sym, &global_symbols);
2442 }
2443 else
2444 {
2445 add_symbol_to_list (sym, list_in_scope);
2446 }
2447 break;
2448 case TAG_global_variable:
2449 if (dip -> at_location != NULL)
2450 {
2451 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2452 add_symbol_to_list (sym, &global_symbols);
2453 SYMBOL_CLASS (sym) = LOC_STATIC;
2454 SYMBOL_VALUE (sym) += baseaddr;
2455 }
2456 break;
2457 case TAG_local_variable:
2458 if (dip -> at_location != NULL)
2459 {
2460 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2461 add_symbol_to_list (sym, list_in_scope);
2462 if (isreg)
2463 {
2464 SYMBOL_CLASS (sym) = LOC_REGISTER;
2465 }
2466 else if (offreg)
2467 {
2468 SYMBOL_CLASS (sym) = LOC_LOCAL;
2469 }
2470 else
2471 {
2472 SYMBOL_CLASS (sym) = LOC_STATIC;
2473 SYMBOL_VALUE (sym) += baseaddr;
2474 }
2475 }
2476 break;
2477 case TAG_formal_parameter:
2478 if (dip -> at_location != NULL)
2479 {
2480 SYMBOL_VALUE (sym) = locval (dip -> at_location);
2481 }
2482 add_symbol_to_list (sym, list_in_scope);
2483 if (isreg)
2484 {
2485 SYMBOL_CLASS (sym) = LOC_REGPARM;
2486 }
2487 else
2488 {
2489 SYMBOL_CLASS (sym) = LOC_ARG;
2490 }
2491 break;
2492 case TAG_unspecified_parameters:
2493 /* From varargs functions; gdb doesn't seem to have any interest in
2494 this information, so just ignore it for now. (FIXME?) */
2495 break;
2496 case TAG_structure_type:
2497 case TAG_union_type:
2498 case TAG_enumeration_type:
2499 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2500 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
2501 add_symbol_to_list (sym, list_in_scope);
2502 break;
2503 case TAG_typedef:
2504 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2505 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2506 add_symbol_to_list (sym, list_in_scope);
2507 break;
2508 default:
2509 /* Not a tag we recognize. Hopefully we aren't processing trash
2510 data, but since we must specifically ignore things we don't
2511 recognize, there is nothing else we should do at this point. */
2512 break;
2513 }
2514 }
2515 return (sym);
2516 }
2517
2518 /*
2519
2520 LOCAL FUNCTION
2521
2522 decode_mod_fund_type -- decode a modified fundamental type
2523
2524 SYNOPSIS
2525
2526 static struct type *decode_mod_fund_type (char *typedata)
2527
2528 DESCRIPTION
2529
2530 Decode a block of data containing a modified fundamental
2531 type specification. TYPEDATA is a pointer to the block,
2532 which consists of a two byte length, containing the size
2533 of the rest of the block. At the end of the block is a
2534 two byte value that gives the fundamental type. Everything
2535 in between are type modifiers.
2536
2537 We simply compute the number of modifiers and call the general
2538 function decode_modified_type to do the actual work.
2539 */
2540
2541 static struct type *
2542 DEFUN(decode_mod_fund_type, (typedata), char *typedata)
2543 {
2544 struct type *typep = NULL;
2545 unsigned short modcount;
2546 unsigned char *modifiers;
2547
2548 /* Get the total size of the block, exclusive of the size itself */
2549 (void) memcpy (&modcount, typedata, sizeof (short));
2550 /* Deduct the size of the fundamental type bytes at the end of the block. */
2551 modcount -= sizeof (short);
2552 /* Skip over the two size bytes at the beginning of the block. */
2553 modifiers = (unsigned char *) typedata + sizeof (short);
2554 /* Now do the actual decoding */
2555 typep = decode_modified_type (modifiers, modcount, AT_mod_fund_type);
2556 return (typep);
2557 }
2558
2559 /*
2560
2561 LOCAL FUNCTION
2562
2563 decode_mod_u_d_type -- decode a modified user defined type
2564
2565 SYNOPSIS
2566
2567 static struct type *decode_mod_u_d_type (char *typedata)
2568
2569 DESCRIPTION
2570
2571 Decode a block of data containing a modified user defined
2572 type specification. TYPEDATA is a pointer to the block,
2573 which consists of a two byte length, containing the size
2574 of the rest of the block. At the end of the block is a
2575 four byte value that gives a reference to a user defined type.
2576 Everything in between are type modifiers.
2577
2578 We simply compute the number of modifiers and call the general
2579 function decode_modified_type to do the actual work.
2580 */
2581
2582 static struct type *
2583 DEFUN(decode_mod_u_d_type, (typedata), char *typedata)
2584 {
2585 struct type *typep = NULL;
2586 unsigned short modcount;
2587 unsigned char *modifiers;
2588
2589 /* Get the total size of the block, exclusive of the size itself */
2590 (void) memcpy (&modcount, typedata, sizeof (short));
2591 /* Deduct the size of the reference type bytes at the end of the block. */
2592 modcount -= sizeof (long);
2593 /* Skip over the two size bytes at the beginning of the block. */
2594 modifiers = (unsigned char *) typedata + sizeof (short);
2595 /* Now do the actual decoding */
2596 typep = decode_modified_type (modifiers, modcount, AT_mod_u_d_type);
2597 return (typep);
2598 }
2599
2600 /*
2601
2602 LOCAL FUNCTION
2603
2604 decode_modified_type -- decode modified user or fundamental type
2605
2606 SYNOPSIS
2607
2608 static struct type *decode_modified_type (unsigned char *modifiers,
2609 unsigned short modcount, int mtype)
2610
2611 DESCRIPTION
2612
2613 Decode a modified type, either a modified fundamental type or
2614 a modified user defined type. MODIFIERS is a pointer to the
2615 block of bytes that define MODCOUNT modifiers. Immediately
2616 following the last modifier is a short containing the fundamental
2617 type or a long containing the reference to the user defined
2618 type. Which one is determined by MTYPE, which is either
2619 AT_mod_fund_type or AT_mod_u_d_type to indicate what modified
2620 type we are generating.
2621
2622 We call ourself recursively to generate each modified type,`
2623 until MODCOUNT reaches zero, at which point we have consumed
2624 all the modifiers and generate either the fundamental type or
2625 user defined type. When the recursion unwinds, each modifier
2626 is applied in turn to generate the full modified type.
2627
2628 NOTES
2629
2630 If we find a modifier that we don't recognize, and it is not one
2631 of those reserved for application specific use, then we issue a
2632 warning and simply ignore the modifier.
2633
2634 BUGS
2635
2636 We currently ignore MOD_const and MOD_volatile. (FIXME)
2637
2638 */
2639
2640 static struct type *
2641 DEFUN(decode_modified_type,
2642 (modifiers, modcount, mtype),
2643 unsigned char *modifiers AND unsigned short modcount AND int mtype)
2644 {
2645 struct type *typep = NULL;
2646 unsigned short fundtype;
2647 DIEREF dieref;
2648 unsigned char modifier;
2649
2650 if (modcount == 0)
2651 {
2652 switch (mtype)
2653 {
2654 case AT_mod_fund_type:
2655 (void) memcpy (&fundtype, modifiers, sizeof (short));
2656 typep = decode_fund_type (fundtype);
2657 break;
2658 case AT_mod_u_d_type:
2659 (void) memcpy (&dieref, modifiers, sizeof (DIEREF));
2660 if ((typep = lookup_utype (dieref)) == NULL)
2661 {
2662 typep = alloc_utype (dieref, NULL);
2663 }
2664 break;
2665 default:
2666 SQUAWK (("botched modified type decoding (mtype 0x%x)", mtype));
2667 typep = builtin_type_int;
2668 break;
2669 }
2670 }
2671 else
2672 {
2673 modifier = *modifiers++;
2674 typep = decode_modified_type (modifiers, --modcount, mtype);
2675 switch (modifier)
2676 {
2677 case MOD_pointer_to:
2678 typep = lookup_pointer_type (typep);
2679 break;
2680 case MOD_reference_to:
2681 typep = lookup_reference_type (typep);
2682 break;
2683 case MOD_const:
2684 SQUAWK (("type modifier 'const' ignored")); /* FIXME */
2685 break;
2686 case MOD_volatile:
2687 SQUAWK (("type modifier 'volatile' ignored")); /* FIXME */
2688 break;
2689 default:
2690 if (!(MOD_lo_user <= modifier && modifier <= MOD_hi_user))
2691 {
2692 SQUAWK (("unknown type modifier %u", modifier));
2693 }
2694 break;
2695 }
2696 }
2697 return (typep);
2698 }
2699
2700 /*
2701
2702 LOCAL FUNCTION
2703
2704 decode_fund_type -- translate basic DWARF type to gdb base type
2705
2706 DESCRIPTION
2707
2708 Given an integer that is one of the fundamental DWARF types,
2709 translate it to one of the basic internal gdb types and return
2710 a pointer to the appropriate gdb type (a "struct type *").
2711
2712 NOTES
2713
2714 If we encounter a fundamental type that we are unprepared to
2715 deal with, and it is not in the range of those types defined
2716 as application specific types, then we issue a warning and
2717 treat the type as builtin_type_int.
2718 */
2719
2720 static struct type *
2721 DEFUN(decode_fund_type, (fundtype), unsigned short fundtype)
2722 {
2723 struct type *typep = NULL;
2724
2725 switch (fundtype)
2726 {
2727
2728 case FT_void:
2729 typep = builtin_type_void;
2730 break;
2731
2732 case FT_pointer: /* (void *) */
2733 typep = lookup_pointer_type (builtin_type_void);
2734 break;
2735
2736 case FT_char:
2737 case FT_signed_char:
2738 typep = builtin_type_char;
2739 break;
2740
2741 case FT_short:
2742 case FT_signed_short:
2743 typep = builtin_type_short;
2744 break;
2745
2746 case FT_integer:
2747 case FT_signed_integer:
2748 case FT_boolean: /* Was FT_set in AT&T version */
2749 typep = builtin_type_int;
2750 break;
2751
2752 case FT_long:
2753 case FT_signed_long:
2754 typep = builtin_type_long;
2755 break;
2756
2757 case FT_float:
2758 typep = builtin_type_float;
2759 break;
2760
2761 case FT_dbl_prec_float:
2762 typep = builtin_type_double;
2763 break;
2764
2765 case FT_unsigned_char:
2766 typep = builtin_type_unsigned_char;
2767 break;
2768
2769 case FT_unsigned_short:
2770 typep = builtin_type_unsigned_short;
2771 break;
2772
2773 case FT_unsigned_integer:
2774 typep = builtin_type_unsigned_int;
2775 break;
2776
2777 case FT_unsigned_long:
2778 typep = builtin_type_unsigned_long;
2779 break;
2780
2781 case FT_ext_prec_float:
2782 typep = builtin_type_long_double;
2783 break;
2784
2785 case FT_complex:
2786 typep = builtin_type_complex;
2787 break;
2788
2789 case FT_dbl_prec_complex:
2790 typep = builtin_type_double_complex;
2791 break;
2792
2793 case FT_long_long:
2794 case FT_signed_long_long:
2795 typep = builtin_type_long_long;
2796 break;
2797
2798 case FT_unsigned_long_long:
2799 typep = builtin_type_unsigned_long_long;
2800 break;
2801
2802 }
2803
2804 if ((typep == NULL) && !(FT_lo_user <= fundtype && fundtype <= FT_hi_user))
2805 {
2806 SQUAWK (("unexpected fundamental type 0x%x", fundtype));
2807 typep = builtin_type_void;
2808 }
2809
2810 return (typep);
2811 }
2812
2813 /*
2814
2815 LOCAL FUNCTION
2816
2817 create_name -- allocate a fresh copy of a string on an obstack
2818
2819 DESCRIPTION
2820
2821 Given a pointer to a string and a pointer to an obstack, allocates
2822 a fresh copy of the string on the specified obstack.
2823
2824 */
2825
2826 static char *
2827 DEFUN(create_name, (name, obstackp), char *name AND struct obstack *obstackp)
2828 {
2829 int length;
2830 char *newname;
2831
2832 length = strlen (name) + 1;
2833 newname = (char *) obstack_alloc (obstackp, length);
2834 (void) strcpy (newname, name);
2835 return (newname);
2836 }
2837
2838 /*
2839
2840 LOCAL FUNCTION
2841
2842 basicdieinfo -- extract the minimal die info from raw die data
2843
2844 SYNOPSIS
2845
2846 void basicdieinfo (char *diep, struct dieinfo *dip)
2847
2848 DESCRIPTION
2849
2850 Given a pointer to raw DIE data, and a pointer to an instance of a
2851 die info structure, this function extracts the basic information
2852 from the DIE data required to continue processing this DIE, along
2853 with some bookkeeping information about the DIE.
2854
2855 The information we absolutely must have includes the DIE tag,
2856 and the DIE length. If we need the sibling reference, then we
2857 will have to call completedieinfo() to process all the remaining
2858 DIE information.
2859
2860 Note that since there is no guarantee that the data is properly
2861 aligned in memory for the type of access required (indirection
2862 through anything other than a char pointer), we use memcpy to
2863 shuffle data items larger than a char. Possibly inefficient, but
2864 quite portable.
2865
2866 We also take care of some other basic things at this point, such
2867 as ensuring that the instance of the die info structure starts
2868 out completely zero'd and that curdie is initialized for use
2869 in error reporting if we have a problem with the current die.
2870
2871 NOTES
2872
2873 All DIE's must have at least a valid length, thus the minimum
2874 DIE size is sizeof (long). In order to have a valid tag, the
2875 DIE size must be at least sizeof (short) larger, otherwise they
2876 are forced to be TAG_padding DIES.
2877
2878 Padding DIES must be at least sizeof(long) in length, implying that
2879 if a padding DIE is used for alignment and the amount needed is less
2880 than sizeof(long) then the padding DIE has to be big enough to align
2881 to the next alignment boundry.
2882 */
2883
2884 static void
2885 DEFUN(basicdieinfo, (dip, diep), struct dieinfo *dip AND char *diep)
2886 {
2887 curdie = dip;
2888 (void) memset (dip, 0, sizeof (struct dieinfo));
2889 dip -> die = diep;
2890 dip -> dieref = dbroff + (diep - dbbase);
2891 (void) memcpy (&dip -> dielength, diep, sizeof (long));
2892 if (dip -> dielength < sizeof (long))
2893 {
2894 dwarfwarn ("malformed DIE, bad length (%d bytes)", dip -> dielength);
2895 }
2896 else if (dip -> dielength < (sizeof (long) + sizeof (short)))
2897 {
2898 dip -> dietag = TAG_padding;
2899 }
2900 else
2901 {
2902 (void) memcpy (&dip -> dietag, diep + sizeof (long), sizeof (short));
2903 }
2904 }
2905
2906 /*
2907
2908 LOCAL FUNCTION
2909
2910 completedieinfo -- finish reading the information for a given DIE
2911
2912 SYNOPSIS
2913
2914 void completedieinfo (struct dieinfo *dip)
2915
2916 DESCRIPTION
2917
2918 Given a pointer to an already partially initialized die info structure,
2919 scan the raw DIE data and finish filling in the die info structure
2920 from the various attributes found.
2921
2922 Note that since there is no guarantee that the data is properly
2923 aligned in memory for the type of access required (indirection
2924 through anything other than a char pointer), we use memcpy to
2925 shuffle data items larger than a char. Possibly inefficient, but
2926 quite portable.
2927
2928 NOTES
2929
2930 Each time we are called, we increment the diecount variable, which
2931 keeps an approximate count of the number of dies processed for
2932 each compilation unit. This information is presented to the user
2933 if the info_verbose flag is set.
2934
2935 */
2936
2937 static void
2938 DEFUN(completedieinfo, (dip), struct dieinfo *dip)
2939 {
2940 char *diep; /* Current pointer into raw DIE data */
2941 char *end; /* Terminate DIE scan here */
2942 unsigned short attr; /* Current attribute being scanned */
2943 unsigned short form; /* Form of the attribute */
2944 short block2sz; /* Size of a block2 attribute field */
2945 long block4sz; /* Size of a block4 attribute field */
2946
2947 diecount++;
2948 diep = dip -> die;
2949 end = diep + dip -> dielength;
2950 diep += sizeof (long) + sizeof (short);
2951 while (diep < end)
2952 {
2953 (void) memcpy (&attr, diep, sizeof (short));
2954 diep += sizeof (short);
2955 switch (attr)
2956 {
2957 case AT_fund_type:
2958 (void) memcpy (&dip -> at_fund_type, diep, sizeof (short));
2959 break;
2960 case AT_ordering:
2961 (void) memcpy (&dip -> at_ordering, diep, sizeof (short));
2962 break;
2963 case AT_bit_offset:
2964 (void) memcpy (&dip -> at_bit_offset, diep, sizeof (short));
2965 break;
2966 case AT_visibility:
2967 (void) memcpy (&dip -> at_visibility, diep, sizeof (short));
2968 break;
2969 case AT_sibling:
2970 (void) memcpy (&dip -> at_sibling, diep, sizeof (long));
2971 break;
2972 case AT_stmt_list:
2973 (void) memcpy (&dip -> at_stmt_list, diep, sizeof (long));
2974 dip -> has_at_stmt_list = 1;
2975 break;
2976 case AT_low_pc:
2977 (void) memcpy (&dip -> at_low_pc, diep, sizeof (long));
2978 dip -> at_low_pc += baseaddr;
2979 dip -> has_at_low_pc = 1;
2980 break;
2981 case AT_high_pc:
2982 (void) memcpy (&dip -> at_high_pc, diep, sizeof (long));
2983 dip -> at_high_pc += baseaddr;
2984 break;
2985 case AT_language:
2986 (void) memcpy (&dip -> at_language, diep, sizeof (long));
2987 break;
2988 case AT_user_def_type:
2989 (void) memcpy (&dip -> at_user_def_type, diep, sizeof (long));
2990 break;
2991 case AT_byte_size:
2992 (void) memcpy (&dip -> at_byte_size, diep, sizeof (long));
2993 break;
2994 case AT_bit_size:
2995 (void) memcpy (&dip -> at_bit_size, diep, sizeof (long));
2996 break;
2997 case AT_member:
2998 (void) memcpy (&dip -> at_member, diep, sizeof (long));
2999 break;
3000 case AT_discr:
3001 (void) memcpy (&dip -> at_discr, diep, sizeof (long));
3002 break;
3003 case AT_import:
3004 (void) memcpy (&dip -> at_import, diep, sizeof (long));
3005 break;
3006 case AT_location:
3007 dip -> at_location = diep;
3008 break;
3009 case AT_mod_fund_type:
3010 dip -> at_mod_fund_type = diep;
3011 break;
3012 case AT_subscr_data:
3013 dip -> at_subscr_data = diep;
3014 break;
3015 case AT_mod_u_d_type:
3016 dip -> at_mod_u_d_type = diep;
3017 break;
3018 case AT_element_list:
3019 dip -> at_element_list = diep;
3020 dip -> short_element_list = 0;
3021 break;
3022 case AT_short_element_list:
3023 dip -> at_element_list = diep;
3024 dip -> short_element_list = 1;
3025 break;
3026 case AT_discr_value:
3027 dip -> at_discr_value = diep;
3028 break;
3029 case AT_string_length:
3030 dip -> at_string_length = diep;
3031 break;
3032 case AT_name:
3033 dip -> at_name = diep;
3034 break;
3035 case AT_comp_dir:
3036 dip -> at_comp_dir = diep;
3037 break;
3038 case AT_producer:
3039 dip -> at_producer = diep;
3040 break;
3041 case AT_frame_base:
3042 (void) memcpy (&dip -> at_frame_base, diep, sizeof (long));
3043 break;
3044 case AT_start_scope:
3045 (void) memcpy (&dip -> at_start_scope, diep, sizeof (long));
3046 break;
3047 case AT_stride_size:
3048 (void) memcpy (&dip -> at_stride_size, diep, sizeof (long));
3049 break;
3050 case AT_src_info:
3051 (void) memcpy (&dip -> at_src_info, diep, sizeof (long));
3052 break;
3053 case AT_prototyped:
3054 (void) memcpy (&dip -> at_prototyped, diep, sizeof (short));
3055 break;
3056 default:
3057 /* Found an attribute that we are unprepared to handle. However
3058 it is specifically one of the design goals of DWARF that
3059 consumers should ignore unknown attributes. As long as the
3060 form is one that we recognize (so we know how to skip it),
3061 we can just ignore the unknown attribute. */
3062 break;
3063 }
3064 form = attr & 0xF;
3065 switch (form)
3066 {
3067 case FORM_DATA2:
3068 diep += sizeof (short);
3069 break;
3070 case FORM_DATA4:
3071 diep += sizeof (long);
3072 break;
3073 case FORM_DATA8:
3074 diep += 8 * sizeof (char); /* sizeof (long long) ? */
3075 break;
3076 case FORM_ADDR:
3077 case FORM_REF:
3078 diep += sizeof (long);
3079 break;
3080 case FORM_BLOCK2:
3081 (void) memcpy (&block2sz, diep, sizeof (short));
3082 block2sz += sizeof (short);
3083 diep += block2sz;
3084 break;
3085 case FORM_BLOCK4:
3086 (void) memcpy (&block4sz, diep, sizeof (long));
3087 block4sz += sizeof (long);
3088 diep += block4sz;
3089 break;
3090 case FORM_STRING:
3091 diep += strlen (diep) + 1;
3092 break;
3093 default:
3094 SQUAWK (("unknown attribute form (0x%x), skipped rest", form));
3095 diep = end;
3096 break;
3097 }
3098 }
3099 }
This page took 0.113954 seconds and 5 git commands to generate.