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