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