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