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