* ch-exp.y (decode_integer_value, match_character_literal,
[external/binutils.git] / gdb / mdebugread.c
1 /* Read a symbol table in ECOFF format (Third-Eye).
2    Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994
3    Free Software Foundation, Inc.
4    Original version contributed by Alessandro Forin (af@cs.cmu.edu) at
5    CMU.  Major work by Per Bothner, John Gilmore and Ian Lance Taylor
6    at Cygnus Support.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
23
24 /* This module provides the function mdebug_build_psymtabs.  It reads
25    ECOFF debugging information into partial symbol tables.  The
26    debugging information is read from two structures.  A struct
27    ecoff_debug_swap includes the sizes of each ECOFF structure and
28    swapping routines; these are fixed for a particular target.  A
29    struct ecoff_debug_info points to the debugging information for a
30    particular object file.
31
32    ECOFF symbol tables are mostly written in the byte order of the
33    target machine.  However, one section of the table (the auxiliary
34    symbol information) is written in the host byte order.  There is a
35    bit in the other symbol info which describes which host byte order
36    was used.  ECOFF thereby takes the trophy from Intel `b.out' for
37    the most brain-dead adaptation of a file format to byte order.
38
39    This module can read all four of the known byte-order combinations,
40    on any type of host.  */
41
42 #include "defs.h"
43 #include "symtab.h"
44 #include "gdbtypes.h"
45 #include "gdbcore.h"
46 #include "symfile.h"
47 #include "objfiles.h"
48 #include "obstack.h"
49 #include "buildsym.h"
50 #include "stabsread.h"
51 #include "complaints.h"
52
53 #if !defined (SEEK_SET)
54 #define SEEK_SET 0
55 #define SEEK_CUR 1
56 #endif
57
58 /* These are needed if the tm.h file does not contain the necessary
59    mips specific definitions.  */
60
61 #ifndef MIPS_EFI_SYMBOL_NAME
62 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
63 #include "coff/sym.h"
64 #include "coff/symconst.h"
65 typedef struct mips_extra_func_info {
66         long    numargs;
67         PDR     pdr;
68 } *mips_extra_func_info_t;
69 #ifndef RA_REGNUM
70 #define RA_REGNUM 0
71 #endif
72 #endif
73
74 #ifdef USG
75 #include <sys/types.h>
76 #endif
77
78 #include <sys/param.h>
79 #include <sys/file.h>
80 #include <sys/stat.h>
81 #include <string.h>
82
83 #include "gdb-stabs.h"
84
85 #include "bfd.h"
86
87 #include "coff/ecoff.h"         /* COFF-like aspects of ecoff files */
88
89 #include "libaout.h"            /* Private BFD a.out information.  */
90 #include "aout/aout64.h"
91 #include "aout/stab_gnu.h"      /* STABS information */
92
93 #include "expression.h"
94 #include "language.h"           /* Needed inside partial-stab.h */
95
96 /* Provide a default mapping from a ecoff register number to a gdb REGNUM.  */
97 #ifndef ECOFF_REG_TO_REGNUM
98 #define ECOFF_REG_TO_REGNUM(num) (num)
99 #endif
100
101 /* Each partial symbol table entry contains a pointer to private data
102    for the read_symtab() function to use when expanding a partial
103    symbol table entry to a full symbol table entry.
104
105    For mdebugread this structure contains the index of the FDR that this
106    psymtab represents and a pointer to the BFD that the psymtab was
107    created from.  */
108
109 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
110 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
111 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
112 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
113 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
114 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
115
116 struct symloc
117 {
118   int fdr_idx;
119   bfd *cur_bfd;
120   const struct ecoff_debug_swap *debug_swap;
121   struct ecoff_debug_info *debug_info;
122   struct mdebug_pending **pending_list;
123   EXTR *extern_tab;             /* Pointer to external symbols for this file. */
124   int extern_count;             /* Size of extern_tab. */
125   enum language pst_language;
126 };
127
128 /* Things we import explicitly from other modules */
129
130 extern int info_verbose;
131
132 /* Various complaints about symbol reading that don't abort the process */
133
134 static struct complaint bad_file_number_complaint =
135 {"bad file number %d", 0, 0};
136
137 static struct complaint index_complaint =
138 {"bad aux index at symbol %s", 0, 0};
139
140 static struct complaint aux_index_complaint =
141 {"bad proc end in aux found from symbol %s", 0, 0};
142
143 static struct complaint block_index_complaint =
144 {"bad aux index at block symbol %s", 0, 0};
145
146 static struct complaint unknown_ext_complaint =
147 {"unknown external symbol %s", 0, 0};
148
149 static struct complaint unknown_sym_complaint =
150 {"unknown local symbol %s", 0, 0};
151
152 static struct complaint unknown_st_complaint =
153 {"with type %d", 0, 0};
154
155 static struct complaint block_overflow_complaint =
156 {"block containing %s overfilled", 0, 0};
157
158 static struct complaint basic_type_complaint =
159 {"cannot map ECOFF basic type 0x%x for %s", 0, 0};
160
161 static struct complaint unknown_type_qual_complaint =
162 {"unknown type qualifier 0x%x", 0, 0};
163
164 static struct complaint array_index_type_complaint =
165 {"illegal array index type for %s, assuming int", 0, 0};
166
167 static struct complaint bad_tag_guess_complaint =
168 {"guessed tag type of %s incorrectly", 0, 0};
169
170 static struct complaint block_member_complaint =
171 {"declaration block contains unhandled symbol type %d", 0, 0};
172
173 static struct complaint stEnd_complaint =
174 {"stEnd with storage class %d not handled", 0, 0};
175
176 static struct complaint unknown_mdebug_symtype_complaint =
177 {"unknown symbol type 0x%x", 0, 0};
178
179 static struct complaint stab_unknown_complaint =
180 {"unknown stabs symbol %s", 0, 0};
181
182 static struct complaint pdr_for_nonsymbol_complaint =
183 {"PDR for %s, but no symbol", 0, 0};
184
185 static struct complaint pdr_static_symbol_complaint =
186 {"can't handle PDR for static proc at 0x%lx", 0, 0};
187
188 static struct complaint bad_setjmp_pdr_complaint =
189 {"fixing bad setjmp PDR from libc", 0, 0};
190
191 static struct complaint bad_fbitfield_complaint =
192 {"can't handle TIR fBitfield for %s", 0, 0};
193
194 static struct complaint bad_continued_complaint =
195 {"illegal TIR continued for %s", 0, 0};
196
197 static struct complaint bad_rfd_entry_complaint =
198 {"bad rfd entry for %s: file %d, index %d", 0, 0};
199
200 static struct complaint unexpected_type_code_complaint =
201 {"unexpected type code for %s", 0, 0};
202
203 static struct complaint unable_to_cross_ref_complaint =
204 {"unable to cross ref btTypedef for %s", 0, 0};
205
206 static struct complaint illegal_forward_tq0_complaint =
207 {"illegal tq0 in forward typedef for %s", 0, 0};
208
209 static struct complaint illegal_forward_bt_complaint =
210 {"illegal bt %d in forward typedef for %s", 0, 0};
211
212 static struct complaint bad_linetable_guess_complaint =
213 {"guessed size of linetable for %s incorrectly", 0, 0};
214
215 static struct complaint bad_ext_ifd_complaint =
216 {"bad ifd for external symbol: %d (max %d)", 0, 0};
217
218 static struct complaint bad_ext_iss_complaint =
219 {"bad iss for external symbol: %ld (max %ld)", 0, 0};
220
221 /* Macros and extra defs */
222
223 /* Puns: hard to find whether -g was used and how */
224
225 #define MIN_GLEVEL GLEVEL_0
226 #define compare_glevel(a,b)                                     \
227         (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) :                 \
228          ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
229 \f
230 /* Things that really are local to this module */
231
232 /* Remember what we deduced to be the source language of this psymtab. */
233
234 static enum language psymtab_language = language_unknown;
235
236 /* Current BFD.  */
237
238 static bfd *cur_bfd;
239
240 /* How to parse debugging information for CUR_BFD.  */
241
242 static const struct ecoff_debug_swap *debug_swap;
243
244 /* Pointers to debugging information for CUR_BFD.  */
245
246 static struct ecoff_debug_info *debug_info;
247
248 /* Pointer to current file decriptor record, and its index */
249
250 static FDR *cur_fdr;
251 static int cur_fd;
252
253 /* Index of current symbol */
254
255 static int cur_sdx;
256
257 /* Note how much "debuggable" this image is.  We would like
258    to see at least one FDR with full symbols */
259
260 static max_gdbinfo;
261 static max_glevel;
262
263 /* When examining .o files, report on undefined symbols */
264
265 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
266
267 /* Pseudo symbol to use when putting stabs into the symbol table.  */
268
269 static char stabs_symbol[] = STABS_SYMBOL;
270
271 /* Types corresponding to btComplex, btDComplex, etc.  These are here
272    rather than in gdbtypes.c or some such, because the meaning of codes
273    like btComplex is specific to the mdebug debug format.  FIXME:  We should
274    be using our own types thoughout this file, instead of sometimes using
275    builtin_type_*.  */
276
277 static struct type *mdebug_type_complex;
278 static struct type *mdebug_type_double_complex;
279 static struct type *mdebug_type_fixed_dec;
280 static struct type *mdebug_type_float_dec;
281 static struct type *mdebug_type_string;
282
283 /* Forward declarations */
284
285 static int
286 upgrade_type PARAMS ((int, struct type **, int, union aux_ext *, int, char *));
287
288 static void
289 parse_partial_symbols PARAMS ((struct objfile *,
290                                struct section_offsets *));
291
292 static FDR
293 *get_rfd PARAMS ((int, int));
294
295 static int
296 has_opaque_xref PARAMS ((FDR *, SYMR *));
297
298 static int
299 cross_ref PARAMS ((int, union aux_ext *, struct type **, enum type_code,
300                    char **, int, char *));
301
302 static struct symbol *
303 new_symbol PARAMS ((char *));
304
305 static struct type *
306 new_type PARAMS ((char *));
307
308 static struct block *
309 new_block PARAMS ((int));
310
311 static struct symtab *
312 new_symtab PARAMS ((char *, int, int, struct objfile *));
313
314 static struct linetable *
315 new_linetable PARAMS ((int));
316
317 static struct blockvector *
318 new_bvect PARAMS ((int));
319
320 static int
321 parse_symbol PARAMS ((SYMR *, union aux_ext *, char *, int, struct section_offsets *));
322
323 static struct type *
324 parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *));
325
326 static struct symbol *
327 mylookup_symbol PARAMS ((char *, struct block *, enum namespace,
328                          enum address_class));
329
330 static struct block *
331 shrink_block PARAMS ((struct block *, struct symtab *));
332
333 static PTR
334 xzalloc PARAMS ((unsigned int));
335
336 static void
337 sort_blocks PARAMS ((struct symtab *));
338
339 static int
340 compare_blocks PARAMS ((const void *, const void *));
341
342 static struct partial_symtab *
343 new_psymtab PARAMS ((char *, struct objfile *, struct section_offsets *));
344
345 static void
346 psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *));
347
348 static void
349 add_block PARAMS ((struct block *, struct symtab *));
350
351 static void
352 add_symbol PARAMS ((struct symbol *, struct block *));
353
354 static int
355 add_line PARAMS ((struct linetable *, int, CORE_ADDR, int));
356
357 static struct linetable *
358 shrink_linetable PARAMS ((struct linetable *));
359
360 static void
361 handle_psymbol_enumerators PARAMS ((struct objfile *, FDR *, int));
362
363 static char *
364 mdebug_next_symbol_text PARAMS ((void));
365 \f
366 /* Address bounds for the signal trampoline in inferior, if any */
367
368 CORE_ADDR sigtramp_address, sigtramp_end;
369
370 /* Allocate zeroed memory */
371
372 static PTR
373 xzalloc (size)
374      unsigned int size;
375 {
376   PTR p = xmalloc (size);
377
378   memset (p, 0, size);
379   return p;
380 }
381
382 /* Exported procedure: Builds a symtab from the PST partial one.
383    Restores the environment in effect when PST was created, delegates
384    most of the work to an ancillary procedure, and sorts
385    and reorders the symtab list at the end */
386
387 static void
388 mdebug_psymtab_to_symtab (pst)
389      struct partial_symtab *pst;
390 {
391
392   if (!pst)
393     return;
394
395   if (info_verbose)
396     {
397       printf_filtered ("Reading in symbols for %s...", pst->filename);
398       gdb_flush (gdb_stdout);
399     }
400
401   next_symbol_text_func = mdebug_next_symbol_text;
402
403   psymtab_to_symtab_1 (pst, pst->filename);
404
405   /* Match with global symbols.  This only needs to be done once,
406      after all of the symtabs and dependencies have been read in.   */
407   scan_file_globals (pst->objfile);
408
409   if (info_verbose)
410     printf_filtered ("done.\n");
411 }
412 \f
413 /* File-level interface functions */
414
415 /* Find a file descriptor given its index RF relative to a file CF */
416
417 static FDR *
418 get_rfd (cf, rf)
419      int cf, rf;
420 {
421   FDR *fdrs;
422   register FDR *f;
423   RFDT rfd;
424
425   fdrs = debug_info->fdr;
426   f = fdrs + cf;
427   /* Object files do not have the RFD table, all refs are absolute */
428   if (f->rfdBase == 0)
429     return fdrs + rf;
430   (*debug_swap->swap_rfd_in) (cur_bfd,
431                              ((char *) debug_info->external_rfd
432                               + ((f->rfdBase + rf)
433                                  * debug_swap->external_rfd_size)),
434                              &rfd);
435   return fdrs + rfd;
436 }
437
438 /* Return a safer print NAME for a file descriptor */
439
440 static char *
441 fdr_name (f)
442      FDR *f;
443 {
444   if (f->rss == -1)
445     return "<stripped file>";
446   if (f->rss == 0)
447     return "<NFY>";
448   return debug_info->ss + f->issBase + f->rss;
449 }
450
451
452 /* Read in and parse the symtab of the file OBJFILE.  Symbols from
453    different sections are relocated via the SECTION_OFFSETS.  */
454
455 void
456 mdebug_build_psymtabs (objfile, swap, info, section_offsets)
457      struct objfile *objfile;
458      const struct ecoff_debug_swap *swap;
459      struct ecoff_debug_info *info;
460      struct section_offsets *section_offsets;
461 {
462   cur_bfd = objfile->obfd;
463   debug_swap = swap;
464   debug_info = info;
465
466   /* Make sure all the FDR information is swapped in.  */
467   if (info->fdr == (FDR *) NULL)
468     {
469       char *fdr_src;
470       char *fdr_end;
471       FDR *fdr_ptr;
472
473       info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack,
474                                          (info->symbolic_header.ifdMax
475                                           * sizeof (FDR)));
476       fdr_src = info->external_fdr;
477       fdr_end = (fdr_src
478                  + info->symbolic_header.ifdMax * swap->external_fdr_size);
479       fdr_ptr = info->fdr;
480       for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
481         (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
482     }
483
484   parse_partial_symbols (objfile, section_offsets);
485
486 #if 0
487   /* Check to make sure file was compiled with -g.  If not, warn the
488      user of this limitation.  */
489   if (compare_glevel (max_glevel, GLEVEL_2) < 0)
490     {
491       if (max_gdbinfo == 0)
492         printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
493                  objfile->name);
494       printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
495       gdb_flush (gdb_stdout);
496     }
497 #endif
498 }
499 \f
500 /* Local utilities */
501
502 /* Map of FDR indexes to partial symtabs */
503
504 struct pst_map
505 {
506   struct partial_symtab *pst;   /* the psymtab proper */
507   long n_globals;               /* exported globals (external symbols) */
508   long globals_offset;          /* cumulative */
509 };
510
511
512 /* Utility stack, used to nest procedures and blocks properly.
513    It is a doubly linked list, to avoid too many alloc/free.
514    Since we might need it quite a few times it is NOT deallocated
515    after use. */
516
517 static struct parse_stack
518 {
519   struct parse_stack *next, *prev;
520   struct symtab *cur_st;        /* Current symtab. */
521   struct block *cur_block;      /* Block in it. */
522
523   /* What are we parsing.  stFile, or stBlock are for files and
524      blocks.  stProc or stStaticProc means we have seen the start of a
525      procedure, but not the start of the block within in.  When we see
526      the start of that block, we change it to stNil, without pushing a
527      new block, i.e. stNil means both a procedure and a block.  */
528
529   int blocktype;
530
531   int maxsyms;                  /* Max symbols in this block. */
532   struct type *cur_type;        /* Type we parse fields for. */
533   int cur_field;                /* Field number in cur_type. */
534   CORE_ADDR procadr;            /* Start addres of this procedure */
535   int numargs;                  /* Its argument count */
536 }
537
538  *top_stack;                    /* Top stack ptr */
539
540
541 /* Enter a new lexical context */
542
543 static void
544 push_parse_stack ()
545 {
546   struct parse_stack *new;
547
548   /* Reuse frames if possible */
549   if (top_stack && top_stack->prev)
550     new = top_stack->prev;
551   else
552     new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
553   /* Initialize new frame with previous content */
554   if (top_stack)
555     {
556       register struct parse_stack *prev = new->prev;
557
558       *new = *top_stack;
559       top_stack->prev = new;
560       new->prev = prev;
561       new->next = top_stack;
562     }
563   top_stack = new;
564 }
565
566 /* Exit a lexical context */
567
568 static void
569 pop_parse_stack ()
570 {
571   if (!top_stack)
572     return;
573   if (top_stack->next)
574     top_stack = top_stack->next;
575 }
576
577
578 /* Cross-references might be to things we haven't looked at
579    yet, e.g. type references.  To avoid too many type
580    duplications we keep a quick fixup table, an array
581    of lists of references indexed by file descriptor */
582
583 struct mdebug_pending
584 {
585   struct mdebug_pending *next;  /* link */
586   char *s;                      /* the unswapped symbol */
587   struct type *t;               /* its partial type descriptor */
588 };
589
590
591 /* The pending information is kept for an entire object file, and used
592    to be in the sym_private field.  I took it out when I split
593    mdebugread from mipsread, because this might not be the only type
594    of symbols read from an object file.  Instead, we allocate the
595    pending information table when we create the partial symbols, and
596    we store a pointer to the single table in each psymtab.  */
597
598 static struct mdebug_pending **pending_list;
599
600 /* Check whether we already saw symbol SH in file FH */
601
602 static struct mdebug_pending *
603 is_pending_symbol (fh, sh)
604      FDR *fh;
605      char *sh;
606 {
607   int f_idx = fh - debug_info->fdr;
608   register struct mdebug_pending *p;
609
610   /* Linear search is ok, list is typically no more than 10 deep */
611   for (p = pending_list[f_idx]; p; p = p->next)
612     if (p->s == sh)
613       break;
614   return p;
615 }
616
617 /* Add a new symbol SH of type T */
618
619 static void
620 add_pending (fh, sh, t)
621      FDR *fh;
622      char *sh;
623      struct type *t;
624 {
625   int f_idx = fh - debug_info->fdr;
626   struct mdebug_pending *p = is_pending_symbol (fh, sh);
627
628   /* Make sure we do not make duplicates */
629   if (!p)
630     {
631       p = ((struct mdebug_pending *)
632            obstack_alloc (&current_objfile->psymbol_obstack,
633                           sizeof (struct mdebug_pending)));
634       p->s = sh;
635       p->t = t;
636       p->next = pending_list[f_idx];
637       pending_list[f_idx] = p;
638     }
639 }
640 \f
641
642 /* Parsing Routines proper. */
643
644 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
645    For blocks, procedures and types we open a new lexical context.
646    This is basically just a big switch on the symbol's type.  Argument
647    AX is the base pointer of aux symbols for this file (fh->iauxBase).
648    EXT_SH points to the unswapped symbol, which is needed for struct,
649    union, etc., types; it is NULL for an EXTR.  BIGEND says whether
650    aux symbols are big-endian or little-endian.  Return count of
651    SYMR's handled (normally one).  */
652
653 static int
654 parse_symbol (sh, ax, ext_sh, bigend, section_offsets)
655      SYMR *sh;
656      union aux_ext *ax;
657      char *ext_sh;
658      int bigend;
659      struct section_offsets *section_offsets;
660 {
661   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
662   void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) =
663     debug_swap->swap_sym_in;
664   char *name;
665   struct symbol *s;
666   struct block *b;
667   struct mdebug_pending *pend;
668   struct type *t;
669   struct field *f;
670   int count = 1;
671   enum address_class class;
672   TIR tir;
673   long svalue = sh->value;
674   int bitsize;
675
676   if (ext_sh == (char *) NULL)
677     name = debug_info->ssext + sh->iss;
678   else
679     name = debug_info->ss + cur_fdr->issBase + sh->iss;
680
681   switch (sh->sc)
682     {
683     case scText:
684       sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
685       break;
686     case scData:
687       sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA);
688       break;
689     case scBss:
690       sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS);
691       break;
692     }
693
694   switch (sh->st)
695     {
696     case stNil:
697       break;
698
699     case stGlobal:              /* external symbol, goes into global block */
700       class = LOC_STATIC;
701       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
702                              GLOBAL_BLOCK);
703       s = new_symbol (name);
704       SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
705       goto data;
706
707     case stStatic:              /* static data, goes into current block. */
708       class = LOC_STATIC;
709       b = top_stack->cur_block;
710       s = new_symbol (name);
711       if (sh->sc == scCommon)
712         {
713           /* It is a FORTRAN common block.  At least for SGI Fortran the
714              address is not in the symbol; we need to fix it later in
715              scan_file_globals.  */
716           int bucket = hashname (SYMBOL_NAME (s));
717           SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
718           global_sym_chain[bucket] = s;
719         }
720       else
721         SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
722       goto data;
723
724     case stLocal:               /* local variable, goes into current block */
725       if (sh->sc == scRegister)
726         {
727           class = LOC_REGISTER;
728           svalue = ECOFF_REG_TO_REGNUM (svalue);
729         }
730       else
731         class = LOC_LOCAL;
732       b = top_stack->cur_block;
733       s = new_symbol (name);
734       SYMBOL_VALUE (s) = svalue;
735
736     data:                       /* Common code for symbols describing data */
737       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
738       SYMBOL_CLASS (s) = class;
739       add_symbol (s, b);
740
741       /* Type could be missing in a number of cases */
742       if (sh->sc == scUndefined || sh->sc == scNil)
743         SYMBOL_TYPE (s) = builtin_type_int;     /* undefined? */
744       else
745         SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
746       /* Value of a data symbol is its memory address */
747       break;
748
749     case stParam:               /* arg to procedure, goes into current block */
750       max_gdbinfo++;
751       top_stack->numargs++;
752
753       /* Special GNU C++ name.  */
754       if (name[0] == CPLUS_MARKER && name[1] == 't' && name[2] == 0)
755         name = "this";          /* FIXME, not alloc'd in obstack */
756       s = new_symbol (name);
757
758       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
759       switch (sh->sc)
760         {
761         case scRegister:
762           /* Pass by value in register.  */
763           SYMBOL_CLASS(s) = LOC_REGPARM;
764           svalue = ECOFF_REG_TO_REGNUM (svalue);
765           break;
766         case scVar:
767           /* Pass by reference on stack.  */
768           SYMBOL_CLASS(s) = LOC_REF_ARG;
769           break;
770         case scVarRegister:
771           /* Pass by reference in register.  */
772           SYMBOL_CLASS(s) = LOC_REGPARM_ADDR;
773           svalue = ECOFF_REG_TO_REGNUM (svalue);
774           break;
775         default:
776           /* Pass by value on stack.  */
777           SYMBOL_CLASS(s) = LOC_ARG;
778           break;
779         }
780       SYMBOL_VALUE (s) = svalue;
781       SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
782       add_symbol (s, top_stack->cur_block);
783 #if 0
784       /* FIXME:  This has not been tested.  See dbxread.c */
785       /* Add the type of this parameter to the function/procedure
786                    type of this block. */
787       add_param_to_type (&top_stack->cur_block->function->type, s);
788 #endif
789       break;
790
791     case stLabel:               /* label, goes into current block */
792       s = new_symbol (name);
793       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;     /* so that it can be used */
794       SYMBOL_CLASS (s) = LOC_LABEL;     /* but not misused */
795       SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
796       SYMBOL_TYPE (s) = builtin_type_int;
797       add_symbol (s, top_stack->cur_block);
798       break;
799
800     case stProc:                /* Procedure, usually goes into global block */
801     case stStaticProc:          /* Static procedure, goes into current block */
802       s = new_symbol (name);
803       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
804       SYMBOL_CLASS (s) = LOC_BLOCK;
805       /* Type of the return value */
806       if (sh->sc == scUndefined || sh->sc == scNil)
807         t = builtin_type_int;
808       else
809         t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
810       b = top_stack->cur_block;
811       if (sh->st == stProc)
812         {
813           struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
814           /* The next test should normally be true, but provides a
815              hook for nested functions (which we don't want to make
816              global). */
817           if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
818             b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
819           /* Irix 5 sometimes has duplicate names for the same
820              function.  We want to add such names up at the global
821              level, not as a nested function.  */
822           else if (sh->value == top_stack->procadr)
823             b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
824         }
825       add_symbol (s, b);
826
827       /* Make a type for the procedure itself */
828 #if 0
829       /* FIXME:  This has not been tested yet!  See dbxread.c */
830       /* Generate a template for the type of this function.  The
831          types of the arguments will be added as we read the symbol
832          table. */
833       memcpy (lookup_function_type (t), SYMBOL_TYPE (s), sizeof (struct type));
834 #else
835       SYMBOL_TYPE (s) = lookup_function_type (t);
836 #endif
837
838       /* Create and enter a new lexical context */
839       b = new_block (top_stack->maxsyms);
840       SYMBOL_BLOCK_VALUE (s) = b;
841       BLOCK_FUNCTION (b) = s;
842       BLOCK_START (b) = BLOCK_END (b) = sh->value;
843       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
844       add_block (b, top_stack->cur_st);
845
846       /* Not if we only have partial info */
847       if (sh->sc == scUndefined || sh->sc == scNil)
848         break;
849
850       push_parse_stack ();
851       top_stack->cur_block = b;
852       top_stack->blocktype = sh->st;
853       top_stack->cur_type = SYMBOL_TYPE (s);
854       top_stack->cur_field = -1;
855       top_stack->procadr = sh->value;
856       top_stack->numargs = 0;
857       break;
858
859       /* Beginning of code for structure, union, and enum definitions.
860                They all share a common set of local variables, defined here.  */
861       {
862         enum type_code type_code;
863         char *ext_tsym;
864         int nfields;
865         long max_value;
866         struct field *f;
867
868     case stStruct:              /* Start a block defining a struct type */
869         type_code = TYPE_CODE_STRUCT;
870         goto structured_common;
871
872     case stUnion:               /* Start a block defining a union type */
873         type_code = TYPE_CODE_UNION;
874         goto structured_common;
875
876     case stEnum:                /* Start a block defining an enum type */
877         type_code = TYPE_CODE_ENUM;
878         goto structured_common;
879
880     case stBlock:               /* Either a lexical block, or some type */
881         if (sh->sc != scInfo && sh->sc != scCommon)
882           goto case_stBlock_code;       /* Lexical block */
883
884         type_code = TYPE_CODE_UNDEF;    /* We have a type.  */
885
886         /* Common code for handling struct, union, enum, and/or as-yet-
887            unknown-type blocks of info about structured data.  `type_code'
888            has been set to the proper TYPE_CODE, if we know it.  */
889       structured_common:
890         push_parse_stack ();
891         top_stack->blocktype = stBlock;
892
893         /* First count the number of fields and the highest value. */
894         nfields = 0;
895         max_value = 0;
896         for (ext_tsym = ext_sh + external_sym_size;
897              ;
898              ext_tsym += external_sym_size)
899           {
900             SYMR tsym;
901
902             (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
903
904             switch (tsym.st)
905               {
906               case stEnd:
907                 goto end_of_fields;
908
909               case stMember:
910                 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
911                   /* If the type of the member is Nil (or Void),
912                      without qualifiers, assume the tag is an
913                      enumeration. */
914                   if (tsym.index == indexNil)
915                     type_code = TYPE_CODE_ENUM;
916                   else
917                     {
918                       ecoff_swap_tir_in (bigend,
919                                          &ax[tsym.index].a_ti,
920                                          &tir);
921                       if ((tir.bt == btNil || tir.bt == btVoid)
922                           && tir.tq0 == tqNil)
923                         type_code = TYPE_CODE_ENUM;
924                     }
925                 nfields++;
926                 if (tsym.value > max_value)
927                   max_value = tsym.value;
928                 break;
929
930               case stBlock:
931               case stUnion:
932               case stEnum:
933               case stStruct:
934                 {
935 #if 0
936                   /* This is a no-op; is it trying to tell us something
937                      we should be checking?  */
938                   if (tsym.sc == scVariant);    /*UNIMPLEMENTED*/
939 #endif
940                   if (tsym.index != 0)
941                     {
942                       /* This is something like a struct within a
943                          struct.  Skip over the fields of the inner
944                          struct.  The -1 is because the for loop will
945                          increment ext_tsym.  */
946                       ext_tsym = ((char *) debug_info->external_sym
947                                   + ((cur_fdr->isymBase + tsym.index - 1)
948                                      * external_sym_size));
949                     }
950                 }
951                 break;
952
953               case stTypedef:
954                 /* mips cc puts out a typedef for struct x if it is not yet
955                    defined when it encounters
956                    struct y { struct x *xp; };
957                    Just ignore it. */
958                 break;
959
960               default:
961                 complain (&block_member_complaint, tsym.st);
962               }
963           }
964       end_of_fields:;
965
966         /* In an stBlock, there is no way to distinguish structs,
967            unions, and enums at this point.  This is a bug in the
968            original design (that has been fixed with the recent
969            addition of the stStruct, stUnion, and stEnum symbol
970            types.)  The way you can tell is if/when you see a variable
971            or field of that type.  In that case the variable's type
972            (in the AUX table) says if the type is struct, union, or
973            enum, and points back to the stBlock here.  So you can
974            patch the tag kind up later - but only if there actually is
975            a variable or field of that type.
976
977            So until we know for sure, we will guess at this point.
978            The heuristic is:
979            If the first member has index==indexNil or a void type,
980            assume we have an enumeration.
981            Otherwise, if there is more than one member, and all
982            the members have offset 0, assume we have a union.
983            Otherwise, assume we have a struct.
984
985            The heuristic could guess wrong in the case of of an
986            enumeration with no members or a union with one (or zero)
987            members, or when all except the last field of a struct have
988            width zero.  These are uncommon and/or illegal situations,
989            and in any case guessing wrong probably doesn't matter
990            much.
991
992            But if we later do find out we were wrong, we fixup the tag
993            kind.  Members of an enumeration must be handled
994            differently from struct/union fields, and that is harder to
995            patch up, but luckily we shouldn't need to.  (If there are
996            any enumeration members, we can tell for sure it's an enum
997            here.) */
998
999         if (type_code == TYPE_CODE_UNDEF)
1000           if (nfields > 1 && max_value == 0)
1001             type_code = TYPE_CODE_UNION;
1002           else
1003             type_code = TYPE_CODE_STRUCT;
1004
1005         /* Create a new type or use the pending type.  */
1006         pend = is_pending_symbol (cur_fdr, ext_sh);
1007         if (pend == (struct mdebug_pending *) NULL)
1008           {
1009             t = new_type (NULL);
1010             add_pending (cur_fdr, ext_sh, t);
1011           }
1012         else
1013           t = pend->t;
1014
1015         /* Do not set the tag name if it is a compiler generated tag name
1016            (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1017            Alpha cc puts out an sh->iss of zero for those.  */
1018         if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1019           TYPE_TAG_NAME (t) = NULL;
1020         else
1021           TYPE_TAG_NAME (t) = obconcat (&current_objfile->symbol_obstack,
1022                                         "", "", name);
1023
1024         TYPE_CODE (t) = type_code;
1025         TYPE_LENGTH (t) = sh->value;
1026         TYPE_NFIELDS (t) = nfields;
1027         TYPE_FIELDS (t) = f = ((struct field *)
1028                                TYPE_ALLOC (t,
1029                                            nfields * sizeof (struct field)));
1030
1031         if (type_code == TYPE_CODE_ENUM)
1032           {
1033             /* This is a non-empty enum. */
1034
1035             /* DEC c89 has the number of enumerators in the sh.value field,
1036                not the type length, so we have to compensate for that
1037                incompatibility quirk.
1038                This might do the wrong thing for an enum with one or two
1039                enumerators and gcc -gcoff -fshort-enums, but these cases
1040                are hopefully rare enough.  */
1041             if (TYPE_LENGTH (t) == TYPE_NFIELDS (t))
1042               TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1043             for (ext_tsym = ext_sh + external_sym_size;
1044                  ;
1045                  ext_tsym += external_sym_size)
1046               {
1047                 SYMR tsym;
1048                 struct symbol *enum_sym;
1049
1050                 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1051
1052                 if (tsym.st != stMember)
1053                   break;
1054
1055                 f->bitpos = tsym.value;
1056                 f->type = t;
1057                 f->name = debug_info->ss + cur_fdr->issBase + tsym.iss;
1058                 f->bitsize = 0;
1059
1060                 enum_sym = ((struct symbol *)
1061                             obstack_alloc (&current_objfile->symbol_obstack,
1062                                            sizeof (struct symbol)));
1063                 memset ((PTR) enum_sym, 0, sizeof (struct symbol));
1064                 SYMBOL_NAME (enum_sym) = f->name;
1065                 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1066                 SYMBOL_TYPE (enum_sym) = t;
1067                 SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE;
1068                 SYMBOL_VALUE (enum_sym) = tsym.value;
1069                 add_symbol (enum_sym, top_stack->cur_block);
1070
1071                 /* Skip the stMembers that we've handled. */
1072                 count++;
1073                 f++;
1074               }
1075           }
1076         /* make this the current type */
1077         top_stack->cur_type = t;
1078         top_stack->cur_field = 0;
1079
1080         /* Do not create a symbol for alpha cc unnamed structs.  */
1081         if (sh->iss == 0)
1082           break;
1083
1084         /* gcc puts out an empty struct for an opaque struct definitions,
1085            do not create a symbol for it either.  */
1086         if (TYPE_NFIELDS (t) == 0)
1087           {
1088             TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1089             break;
1090           }
1091
1092         s = new_symbol (name);
1093         SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE;
1094         SYMBOL_CLASS (s) = LOC_TYPEDEF;
1095         SYMBOL_VALUE (s) = 0;
1096         SYMBOL_TYPE (s) = t;
1097         add_symbol (s, top_stack->cur_block);
1098         break;
1099
1100         /* End of local variables shared by struct, union, enum, and
1101            block (as yet unknown struct/union/enum) processing.  */
1102       }
1103
1104     case_stBlock_code:
1105       /* beginnning of (code) block. Value of symbol
1106          is the displacement from procedure start */
1107       push_parse_stack ();
1108
1109       /* Do not start a new block if this is the outermost block of a
1110          procedure.  This allows the LOC_BLOCK symbol to point to the
1111          block with the local variables, so funcname::var works.  */
1112       if (top_stack->blocktype == stProc
1113           || top_stack->blocktype == stStaticProc)
1114         {
1115           top_stack->blocktype = stNil;
1116           break;
1117         }
1118
1119       top_stack->blocktype = stBlock;
1120       b = new_block (top_stack->maxsyms);
1121       BLOCK_START (b) = sh->value + top_stack->procadr;
1122       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1123       top_stack->cur_block = b;
1124       add_block (b, top_stack->cur_st);
1125       break;
1126
1127     case stEnd:         /* end (of anything) */
1128       if (sh->sc == scInfo || sh->sc == scCommon)
1129         {
1130           /* Finished with type */
1131           top_stack->cur_type = 0;
1132         }
1133       else if (sh->sc == scText &&
1134                (top_stack->blocktype == stProc ||
1135                 top_stack->blocktype == stStaticProc))
1136         {
1137           /* Finished with procedure */
1138           struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1139           struct mips_extra_func_info *e;
1140           struct block *b;
1141           int i;
1142
1143           BLOCK_END (top_stack->cur_block) += sh->value;        /* size */
1144
1145           /* Make up special symbol to contain procedure specific info */
1146           s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1147           SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
1148           SYMBOL_CLASS (s) = LOC_CONST;
1149           SYMBOL_TYPE (s) = builtin_type_void;
1150           e = ((struct mips_extra_func_info *)
1151                obstack_alloc (&current_objfile->symbol_obstack,
1152                               sizeof (struct mips_extra_func_info)));
1153           SYMBOL_VALUE (s) = (long) e;
1154           e->numargs = top_stack->numargs;
1155           add_symbol (s, top_stack->cur_block);
1156
1157           /* Reallocate symbols, saving memory */
1158           b = shrink_block (top_stack->cur_block, top_stack->cur_st);
1159
1160           /* f77 emits proc-level with address bounds==[0,0],
1161              So look for such child blocks, and patch them.  */
1162           for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1163             {
1164               struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1165               if (BLOCK_SUPERBLOCK (b_bad) == b
1166                   && BLOCK_START (b_bad) == top_stack->procadr
1167                   && BLOCK_END (b_bad) == top_stack->procadr)
1168                 {
1169                   BLOCK_START (b_bad) = BLOCK_START (b);
1170                   BLOCK_END (b_bad) = BLOCK_END (b);
1171                 }
1172             }
1173         }
1174       else if (sh->sc == scText && top_stack->blocktype == stBlock)
1175         {
1176           /* End of (code) block. The value of the symbol is the
1177              displacement from the procedure`s start address of the
1178              end of this block. */
1179           BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1180           shrink_block (top_stack->cur_block, top_stack->cur_st);
1181         }
1182       else if (sh->sc == scText && top_stack->blocktype == stNil)
1183         {
1184           /* End of outermost block.  Pop parse stack and ignore.  The
1185              following stEnd of stProc will take care of the block.  */
1186           ;
1187         }
1188       else if (sh->sc == scText && top_stack->blocktype == stFile)
1189         {
1190           /* End of file.  Pop parse stack and ignore.  Higher
1191              level code deals with this.  */
1192           ;
1193         }
1194       else
1195         complain (&stEnd_complaint, sh->sc);
1196
1197       pop_parse_stack ();       /* restore previous lexical context */
1198       break;
1199
1200     case stMember:              /* member of struct or union */
1201       f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1202       f->name = name;
1203       f->bitpos = sh->value;
1204       bitsize = 0;
1205       f->type = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1206       f->bitsize = bitsize;
1207       break;
1208
1209     case stTypedef:             /* type definition */
1210       /* Typedefs for forward declarations and opaque structs from alpha cc
1211          are handled by cross_ref, skip them.  */
1212       if (sh->iss == 0)
1213         break;
1214
1215       /* Parse the type or use the pending type.  */
1216       pend = is_pending_symbol (cur_fdr, ext_sh);
1217       if (pend == (struct mdebug_pending *) NULL)
1218         {
1219           t = parse_type (cur_fd, ax, sh->index, (int *)NULL, bigend, name);
1220           add_pending (cur_fdr, ext_sh, t);
1221         }
1222       else
1223         t = pend->t;
1224
1225       /* mips cc puts out a typedef with the name of the struct for forward
1226          declarations. These should not go into the symbol table and
1227          TYPE_NAME should not be set for them.
1228          They can't be distinguished from an intentional typedef to
1229          the same name however:
1230          x.h:
1231                 struct x { int ix; int jx; };
1232                 struct xx;
1233          x.c:
1234                 typedef struct x x;
1235                 struct xx {int ixx; int jxx; };
1236          generates a cross referencing stTypedef for x and xx.
1237          The user visible effect of this is that the type of a pointer
1238          to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1239          The problem is fixed with alpha cc.  */
1240
1241       /* However if the typedef cross references to an opaque aggregate, it
1242          is safe to omit it from the symbol table.  */
1243
1244       if (has_opaque_xref (cur_fdr, sh))
1245         break;
1246       s = new_symbol (name);
1247       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1248       SYMBOL_CLASS (s) = LOC_TYPEDEF;
1249       SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1250       SYMBOL_TYPE (s) = t;
1251       add_symbol (s, top_stack->cur_block);
1252
1253       /* Incomplete definitions of structs should not get a name.  */
1254       if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1255           && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1256               || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1257                   && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1258         {
1259           if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1260               || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1261             {
1262               /* If we are giving a name to a type such as "pointer to
1263                  foo" or "function returning foo", we better not set
1264                  the TYPE_NAME.  If the program contains "typedef char
1265                  *caddr_t;", we don't want all variables of type char
1266                  * to print as caddr_t.  This is not just a
1267                  consequence of GDB's type management; CC and GCC (at
1268                  least through version 2.4) both output variables of
1269                  either type char * or caddr_t with the type
1270                  refering to the stTypedef symbol for caddr_t.  If a future
1271                  compiler cleans this up it GDB is not ready for it
1272                  yet, but if it becomes ready we somehow need to
1273                  disable this check (without breaking the PCC/GCC2.4
1274                  case).
1275
1276                  Sigh.
1277
1278                  Fortunately, this check seems not to be necessary
1279                  for anything except pointers or functions.  */
1280             }
1281           else
1282             TYPE_NAME (SYMBOL_TYPE (s)) = SYMBOL_NAME (s);
1283         }
1284       break;
1285
1286     case stFile:                /* file name */
1287       push_parse_stack ();
1288       top_stack->blocktype = sh->st;
1289       break;
1290
1291       /* I`ve never seen these for C */
1292     case stRegReloc:
1293       break;                    /* register relocation */
1294     case stForward:
1295       break;                    /* forwarding address */
1296     case stConstant:
1297       break;                    /* constant */
1298     default:
1299       complain (&unknown_mdebug_symtype_complaint, sh->st);
1300       break;
1301     }
1302
1303   return count;
1304 }
1305
1306 /* Parse the type information provided in the raw AX entries for
1307    the symbol SH. Return the bitfield size in BS, in case.
1308    We must byte-swap the AX entries before we use them; BIGEND says whether
1309    they are big-endian or little-endian (from fh->fBigendian).  */
1310
1311 static struct type *
1312 parse_type (fd, ax, aux_index, bs, bigend, sym_name)
1313      int fd;
1314      union aux_ext *ax;
1315      unsigned int aux_index;
1316      int *bs;
1317      int bigend;
1318      char *sym_name;
1319 {
1320   /* Null entries in this map are treated specially */
1321   static struct type **map_bt[] =
1322   {
1323     &builtin_type_void,         /* btNil */
1324     0,                          /* btAdr */
1325     &builtin_type_char,         /* btChar */
1326     &builtin_type_unsigned_char,/* btUChar */
1327     &builtin_type_short,        /* btShort */
1328     &builtin_type_unsigned_short,       /* btUShort */
1329     &builtin_type_int,          /* btInt */
1330     &builtin_type_unsigned_int, /* btUInt */
1331     &builtin_type_long,         /* btLong */
1332     &builtin_type_unsigned_long,/* btULong */
1333     &builtin_type_float,        /* btFloat */
1334     &builtin_type_double,       /* btDouble */
1335     0,                          /* btStruct */
1336     0,                          /* btUnion */
1337     0,                          /* btEnum */
1338     0,                          /* btTypedef */
1339     0,                          /* btRange */
1340     0,                          /* btSet */
1341     &mdebug_type_complex,       /* btComplex */
1342     &mdebug_type_double_complex,        /* btDComplex */
1343     0,                          /* btIndirect */
1344     &mdebug_type_fixed_dec,     /* btFixedDec */
1345     &mdebug_type_float_dec,     /* btFloatDec */
1346     &mdebug_type_string,        /* btString */
1347     0,                          /* btBit */
1348     0,                          /* btPicture */
1349     &builtin_type_void,         /* btVoid */
1350     0,                          /* DEC C++:  Pointer to member */
1351     0,                          /* DEC C++:  Virtual function table */
1352     0,                          /* DEC C++:  Class (Record) */
1353     &builtin_type_long,         /* btLong64  */
1354     &builtin_type_unsigned_long, /* btULong64 */
1355     &builtin_type_long_long,    /* btLongLong64  */
1356     &builtin_type_unsigned_long_long, /* btULongLong64 */
1357     &builtin_type_unsigned_long, /* btAdr64 */
1358     &builtin_type_long,         /* btInt64  */
1359     &builtin_type_unsigned_long, /* btUInt64 */
1360   };
1361
1362   TIR t[1];
1363   struct type *tp = 0;
1364   enum type_code type_code = TYPE_CODE_UNDEF;
1365
1366   /* Handle undefined types, they have indexNil. */
1367   if (aux_index == indexNil)
1368     return builtin_type_int;
1369
1370   /* Handle corrupt aux indices.  */
1371   if (aux_index >= (debug_info->fdr + fd)->caux)
1372     {
1373       complain (&index_complaint, sym_name);
1374       return builtin_type_int;
1375     }
1376   ax += aux_index;
1377
1378   /* Use aux as a type information record, map its basic type.  */
1379   ecoff_swap_tir_in (bigend, &ax->a_ti, t);
1380   if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1381     {
1382       complain (&basic_type_complaint, t->bt, sym_name);
1383       return builtin_type_int;
1384     }
1385   if (map_bt[t->bt])
1386     {
1387       tp = *map_bt[t->bt];
1388     }
1389   else
1390     {
1391       tp = NULL;
1392       /* Cannot use builtin types -- build our own */
1393       switch (t->bt)
1394         {
1395         case btAdr:
1396           tp = lookup_pointer_type (builtin_type_void);
1397           break;
1398         case btStruct:
1399           type_code = TYPE_CODE_STRUCT;
1400           break;
1401         case btUnion:
1402           type_code = TYPE_CODE_UNION;
1403           break;
1404         case btEnum:
1405           type_code = TYPE_CODE_ENUM;
1406           break;
1407         case btRange:
1408           type_code = TYPE_CODE_RANGE;
1409           break;
1410         case btSet:
1411           type_code = TYPE_CODE_SET;
1412           break;
1413         case btTypedef:
1414           /* alpha cc uses this for typedefs. The true type will be
1415              obtained by crossreferencing below.  */
1416           type_code = TYPE_CODE_ERROR;
1417           break;
1418         default:
1419           complain (&basic_type_complaint, t->bt, sym_name);
1420           return builtin_type_int;
1421         }
1422     }
1423
1424   /* Move on to next aux */
1425   ax++;
1426
1427   if (t->fBitfield)
1428     {
1429       /* Inhibit core dumps with some cfront generated objects that
1430          corrupt the TIR.  */
1431       if (bs == (int *)NULL)
1432         {
1433           complain (&bad_fbitfield_complaint, sym_name);
1434           return builtin_type_int;
1435         }
1436       *bs = AUX_GET_WIDTH (bigend, ax);
1437       ax++;
1438     }
1439
1440   /* All these types really point to some (common) MIPS type
1441      definition, and only the type-qualifiers fully identify
1442      them.  We'll make the same effort at sharing. */
1443   if (t->bt == btStruct ||
1444       t->bt == btUnion ||
1445       t->bt == btEnum ||
1446
1447       /* btSet (I think) implies that the name is a tag name, not a typedef
1448          name.  This apparently is a MIPS extension for C sets.  */
1449       t->bt == btSet)
1450     {
1451       char *name;
1452
1453       /* Try to cross reference this type, build new type on failure.  */
1454       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1455       if (tp == (struct type *) NULL)
1456         tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1457
1458       /* DEC c89 produces cross references to qualified aggregate types,
1459          dereference them.  */
1460       while (TYPE_CODE (tp) == TYPE_CODE_PTR
1461              || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1462         tp = tp->target_type;
1463
1464       /* Make sure that TYPE_CODE(tp) has an expected type code.
1465          Any type may be returned from cross_ref if file indirect entries
1466          are corrupted.  */
1467       if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1468           && TYPE_CODE (tp) != TYPE_CODE_UNION
1469           && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1470         {
1471           complain (&unexpected_type_code_complaint, sym_name);
1472         }
1473       else
1474         {
1475
1476           /* Usually, TYPE_CODE(tp) is already type_code.  The main
1477              exception is if we guessed wrong re struct/union/enum.
1478              But for struct vs. union a wrong guess is harmless, so
1479              don't complain().  */
1480           if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1481                && type_code != TYPE_CODE_ENUM)
1482               || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1483                   && type_code == TYPE_CODE_ENUM))
1484             {
1485               complain (&bad_tag_guess_complaint, sym_name);
1486             }
1487
1488           if (TYPE_CODE (tp) != type_code)
1489             {
1490               TYPE_CODE (tp) = type_code;
1491             }
1492
1493           /* Do not set the tag name if it is a compiler generated tag name
1494               (.Fxx or .xxfake or empty) for unnamed struct/union/enums.  */
1495           if (name[0] == '.' || name[0] == '\0')
1496             TYPE_TAG_NAME (tp) = NULL;
1497           else if (TYPE_TAG_NAME (tp) == NULL
1498                    || !STREQ (TYPE_TAG_NAME (tp), name))
1499             TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1500                                                &current_objfile->type_obstack);
1501         }
1502     }
1503
1504   /* All these types really point to some (common) MIPS type
1505      definition, and only the type-qualifiers fully identify
1506      them.  We'll make the same effort at sharing.
1507      FIXME: btIndirect cannot happen here as it is handled by the
1508      switch t->bt above.  And we are not doing any guessing on range types.  */
1509   if (t->bt == btIndirect ||
1510       t->bt == btRange)
1511     {
1512       char *name;
1513
1514       /* Try to cross reference this type, build new type on failure.  */
1515       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1516       if (tp == (struct type *) NULL)
1517         tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1518
1519       /* Make sure that TYPE_CODE(tp) has an expected type code.
1520          Any type may be returned from cross_ref if file indirect entries
1521          are corrupted.  */
1522       if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1523         {
1524           complain (&unexpected_type_code_complaint, sym_name);
1525         }
1526       else
1527         {
1528           /* Usually, TYPE_CODE(tp) is already type_code.  The main
1529              exception is if we guessed wrong re struct/union/enum. */
1530           if (TYPE_CODE (tp) != type_code)
1531             {
1532               complain (&bad_tag_guess_complaint, sym_name);
1533               TYPE_CODE (tp) = type_code;
1534             }
1535           if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name))
1536             TYPE_NAME (tp) = obsavestring (name, strlen (name),
1537                                            &current_objfile->type_obstack);
1538         }
1539     }
1540   if (t->bt == btTypedef)
1541     {
1542       char *name;
1543
1544       /* Try to cross reference this type, it should succeed.  */
1545       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1546       if (tp == (struct type *) NULL)
1547         {
1548           complain (&unable_to_cross_ref_complaint, sym_name);
1549           tp = builtin_type_int;
1550         }
1551     }
1552
1553   /* Deal with range types */
1554   if (t->bt == btRange)
1555     {
1556       TYPE_NFIELDS (tp) = 2;
1557       TYPE_FIELDS (tp) = ((struct field *)
1558                           TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1559       TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1560                                               &current_objfile->type_obstack);
1561       TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1562       ax++;
1563       TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1564                                               &current_objfile->type_obstack);
1565       TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1566       ax++;
1567     }
1568
1569   /* Parse all the type qualifiers now. If there are more
1570      than 6 the game will continue in the next aux */
1571
1572   while (1)
1573     {
1574 #define PARSE_TQ(tq) \
1575       if (t->tq != tqNil) \
1576         ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1577       else \
1578         break;
1579
1580       PARSE_TQ (tq0);
1581       PARSE_TQ (tq1);
1582       PARSE_TQ (tq2);
1583       PARSE_TQ (tq3);
1584       PARSE_TQ (tq4);
1585       PARSE_TQ (tq5);
1586 #undef  PARSE_TQ
1587
1588       /* mips cc 2.x and gcc never put out continued aux entries.  */
1589       if (!t->continued)
1590         break;
1591
1592       ecoff_swap_tir_in (bigend, &ax->a_ti, t);
1593       ax++;
1594     }
1595
1596   /* Complain for illegal continuations due to corrupt aux entries.  */
1597   if (t->continued)
1598     complain (&bad_continued_complaint, sym_name);
1599  
1600   return tp;
1601 }
1602
1603 /* Make up a complex type from a basic one.  Type is passed by
1604    reference in TPP and side-effected as necessary. The type
1605    qualifier TQ says how to handle the aux symbols at AX for
1606    the symbol SX we are currently analyzing.  BIGEND says whether
1607    aux symbols are big-endian or little-endian.
1608    Returns the number of aux symbols we parsed. */
1609
1610 static int
1611 upgrade_type (fd, tpp, tq, ax, bigend, sym_name)
1612      int fd;
1613      struct type **tpp;
1614      int tq;
1615      union aux_ext *ax;
1616      int bigend;
1617      char *sym_name;
1618 {
1619   int off;
1620   struct type *t;
1621
1622   /* Used in array processing */
1623   int rf, id;
1624   FDR *fh;
1625   struct type *range;
1626   struct type *indx;
1627   int lower, upper;
1628   RNDXR rndx;
1629
1630   switch (tq)
1631     {
1632     case tqPtr:
1633       t = lookup_pointer_type (*tpp);
1634       *tpp = t;
1635       return 0;
1636
1637     case tqProc:
1638       t = lookup_function_type (*tpp);
1639       *tpp = t;
1640       return 0;
1641
1642     case tqArray:
1643       off = 0;
1644
1645       /* Determine and record the domain type (type of index) */
1646       ecoff_swap_rndx_in (bigend, &ax->a_rndx, &rndx);
1647       id = rndx.index;
1648       rf = rndx.rfd;
1649       if (rf == 0xfff)
1650         {
1651           ax++;
1652           rf = AUX_GET_ISYM (bigend, ax);
1653           off++;
1654         }
1655       fh = get_rfd (fd, rf);
1656
1657       indx = parse_type (fd, debug_info->external_aux + fh->iauxBase,
1658                          id, (int *) NULL, bigend, sym_name);
1659
1660       /* The bounds type should be an integer type, but might be anything
1661          else due to corrupt aux entries.  */
1662       if (TYPE_CODE (indx) != TYPE_CODE_INT)
1663         {
1664           complain (&array_index_type_complaint, sym_name);
1665           indx = builtin_type_int;
1666         }
1667
1668       /* Get the bounds, and create the array type.  */
1669       ax++;
1670       lower = AUX_GET_DNLOW (bigend, ax);
1671       ax++;
1672       upper = AUX_GET_DNHIGH (bigend, ax);
1673       ax++;
1674       rf = AUX_GET_WIDTH (bigend, ax);  /* bit size of array element */
1675
1676       range = create_range_type ((struct type *) NULL, indx,
1677                                  lower, upper);
1678
1679       t = create_array_type ((struct type *) NULL, *tpp, range);
1680
1681       /* We used to fill in the supplied array element bitsize
1682          here if the TYPE_LENGTH of the target type was zero.
1683          This happens for a `pointer to an array of anonymous structs',
1684          but in this case the array element bitsize is also zero,
1685          so nothing is gained.
1686          And we used to check the TYPE_LENGTH of the target type against
1687          the supplied array element bitsize.
1688          gcc causes a mismatch for `pointer to array of object',
1689          since the sdb directives it uses do not have a way of
1690          specifying the bitsize, but it does no harm (the
1691          TYPE_LENGTH should be correct) and we should be able to
1692          ignore the erroneous bitsize from the auxiliary entry safely.
1693          dbx seems to ignore it too.  */
1694
1695       *tpp = t;
1696       return 4 + off;
1697
1698     case tqVol:
1699       /* Volatile -- currently ignored */
1700       return 0;
1701
1702     case tqConst:
1703       /* Const -- currently ignored */
1704       return 0;
1705
1706     default:
1707       complain (&unknown_type_qual_complaint, tq);
1708       return 0;
1709     }
1710 }
1711
1712
1713 /* Parse a procedure descriptor record PR.  Note that the procedure is
1714    parsed _after_ the local symbols, now we just insert the extra
1715    information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1716    already been placed in the procedure's main block.  Note also that
1717    images that have been partially stripped (ld -x) have been deprived
1718    of local symbols, and we have to cope with them here.  FIRST_OFF is
1719    the offset of the first procedure for this FDR; we adjust the
1720    address by this amount, but I don't know why.  SEARCH_SYMTAB is the symtab
1721    to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1722    in question, or NULL to use top_stack->cur_block.  */
1723
1724 static void parse_procedure PARAMS ((PDR *, struct symtab *, unsigned long,
1725                                      struct section_offsets *));
1726
1727 static void
1728 parse_procedure (pr, search_symtab, first_off, section_offsets)
1729      PDR *pr;
1730      struct symtab *search_symtab;
1731      unsigned long first_off;
1732      struct section_offsets *section_offsets;
1733 {
1734   struct symbol *s, *i;
1735   struct block *b;
1736   struct mips_extra_func_info *e;
1737   char *sh_name;
1738
1739   /* Simple rule to find files linked "-x" */
1740   if (cur_fdr->rss == -1)
1741     {
1742       if (pr->isym == -1)
1743         {
1744           /* Static procedure at address pr->adr.  Sigh. */
1745           /* FIXME-32x64.  assuming pr->adr fits in long.  */
1746           complain (&pdr_static_symbol_complaint, (unsigned long) pr->adr);
1747           return;
1748         }
1749       else
1750         {
1751           /* external */
1752           EXTR she;
1753           
1754           (*debug_swap->swap_ext_in) (cur_bfd,
1755                                       ((char *) debug_info->external_ext
1756                                        + (pr->isym
1757                                           * debug_swap->external_ext_size)),
1758                                       &she);
1759           sh_name = debug_info->ssext + she.asym.iss;
1760         }
1761     }
1762   else
1763     {
1764       /* Full symbols */
1765       SYMR sh;
1766
1767       (*debug_swap->swap_sym_in) (cur_bfd,
1768                                   ((char *) debug_info->external_sym
1769                                    + ((cur_fdr->isymBase + pr->isym)
1770                                       * debug_swap->external_sym_size)),
1771                                   &sh);
1772       sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1773     }
1774
1775   if (search_symtab != NULL)
1776     {
1777 #if 0
1778       /* This loses both in the case mentioned (want a static, find a global),
1779          but also if we are looking up a non-mangled name which happens to
1780          match the name of a mangled function.  */
1781       /* We have to save the cur_fdr across the call to lookup_symbol.
1782          If the pdr is for a static function and if a global function with
1783          the same name exists, lookup_symbol will eventually read in the symtab
1784          for the global function and clobber cur_fdr.  */
1785       FDR *save_cur_fdr = cur_fdr;
1786       s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL);
1787       cur_fdr = save_cur_fdr;
1788 #else
1789       s = mylookup_symbol
1790         (sh_name,
1791          BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1792          VAR_NAMESPACE,
1793          LOC_BLOCK);
1794 #endif
1795     }
1796   else
1797     s = mylookup_symbol (sh_name, top_stack->cur_block,
1798                          VAR_NAMESPACE, LOC_BLOCK);
1799
1800   if (s != 0)
1801     {
1802       b = SYMBOL_BLOCK_VALUE (s);
1803     }
1804   else
1805     {
1806       complain (&pdr_for_nonsymbol_complaint, sh_name);
1807 #if 1
1808       return;
1809 #else
1810 /* FIXME -- delete.  We can't do symbol allocation now; it's all done.  */
1811       s = new_symbol (sh_name);
1812       SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1813       SYMBOL_CLASS (s) = LOC_BLOCK;
1814       /* Donno its type, hope int is ok */
1815       SYMBOL_TYPE (s) = lookup_function_type (builtin_type_int);
1816       add_symbol (s, top_stack->cur_block);
1817       /* Wont have symbols for this one */
1818       b = new_block (2);
1819       SYMBOL_BLOCK_VALUE (s) = b;
1820       BLOCK_FUNCTION (b) = s;
1821       BLOCK_START (b) = pr->adr;
1822       /* BOUND used to be the end of procedure's text, but the
1823          argument is no longer passed in.  */
1824       BLOCK_END (b) = bound;
1825       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1826       add_block (b, top_stack->cur_st);
1827 #endif
1828     }
1829
1830   i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST);
1831
1832   if (i)
1833     {
1834       e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1835       e->pdr = *pr;
1836       e->pdr.isym = (long) s;
1837       e->pdr.adr += cur_fdr->adr - first_off
1838         + ANOFFSET (section_offsets, SECT_OFF_TEXT);
1839
1840       /* Correct incorrect setjmp procedure descriptor from the library
1841          to make backtrace through setjmp work.  */
1842       if (e->pdr.pcreg == 0 && STREQ (sh_name, "setjmp"))
1843         {
1844           complain (&bad_setjmp_pdr_complaint, 0);
1845           e->pdr.pcreg = RA_REGNUM;
1846           e->pdr.regmask = 0x80000000;
1847           e->pdr.regoffset = -4;
1848         }
1849     }
1850 }
1851
1852 /* Relocate the extra function info pointed to by the symbol table.  */
1853
1854 void
1855 ecoff_relocate_efi (sym, delta)
1856      struct symbol *sym;
1857      CORE_ADDR delta;
1858 {
1859   struct mips_extra_func_info *e;
1860
1861   e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
1862   
1863   e->pdr.adr += delta;
1864 }
1865
1866 /* Parse the external symbol ES. Just call parse_symbol() after
1867    making sure we know where the aux are for it.
1868    BIGEND says whether aux entries are big-endian or little-endian.
1869
1870    This routine clobbers top_stack->cur_block and ->cur_st. */
1871
1872 static void parse_external PARAMS ((EXTR *, int, struct section_offsets *));
1873
1874 static void
1875 parse_external (es, bigend, section_offsets)
1876      EXTR *es;
1877      int bigend;
1878      struct section_offsets *section_offsets;
1879 {
1880   union aux_ext *ax;
1881
1882   if (es->ifd != ifdNil)
1883     {
1884       cur_fd = es->ifd;
1885       cur_fdr = debug_info->fdr + cur_fd;
1886       ax = debug_info->external_aux + cur_fdr->iauxBase;
1887     }
1888   else
1889     {
1890       cur_fdr = debug_info->fdr;
1891       ax = 0;
1892     }
1893
1894   /* Reading .o files */
1895   if (es->asym.sc == scUndefined || es->asym.sc == scNil)
1896     {
1897       char *what;
1898       switch (es->asym.st)
1899         {
1900         case stNil:
1901           /* These are generated for static symbols in .o files,
1902              ignore them.  */
1903           return;
1904         case stStaticProc:
1905         case stProc:
1906           what = "procedure";
1907           n_undef_procs++;
1908           break;
1909         case stGlobal:
1910           what = "variable";
1911           n_undef_vars++;
1912           break;
1913         case stLabel:
1914           what = "label";
1915           n_undef_labels++;
1916           break;
1917         default:
1918           what = "symbol";
1919           break;
1920         }
1921       n_undef_symbols++;
1922       /* FIXME:  Turn this into a complaint? */
1923       if (info_verbose)
1924         printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
1925                          what, debug_info->ssext + es->asym.iss,
1926                          fdr_name (cur_fdr));
1927       return;
1928     }
1929
1930   switch (es->asym.st)
1931     {
1932     case stProc:
1933     case stStaticProc:
1934       /* There is no need to parse the external procedure symbols.
1935          If they are from objects compiled without -g, their index will
1936          be indexNil, and the symbol definition from the minimal symbol
1937          is preferrable (yielding a function returning int instead of int).
1938          If the index points to a local procedure symbol, the local
1939          symbol already provides the correct type.
1940          Note that the index of the external procedure symbol points
1941          to the local procedure symbol in the local symbol table, and
1942          _not_ to the auxiliary symbol info.  */
1943       break;
1944     case stGlobal:
1945     case stLabel:
1946       /* Note that the case of a symbol with indexNil must be handled
1947          anyways by parse_symbol().  */
1948       parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets);
1949       break;
1950     default:
1951       break;
1952     }
1953 }
1954
1955 /* Parse the line number info for file descriptor FH into
1956    GDB's linetable LT.  MIPS' encoding requires a little bit
1957    of magic to get things out.  Note also that MIPS' line
1958    numbers can go back and forth, apparently we can live
1959    with that and do not need to reorder our linetables */
1960
1961 static void
1962 parse_lines (fh, pr, lt, maxlines, section_offsets)
1963      FDR *fh;
1964      PDR *pr;
1965      struct linetable *lt;
1966      int maxlines;
1967      struct section_offsets *section_offsets;
1968 {
1969   unsigned char *base;
1970   int j, k;
1971   int delta, count, lineno = 0;
1972   unsigned long first_off = pr->adr;
1973
1974   if (fh->cbLine == 0)
1975     return;
1976
1977   /* Scan by procedure descriptors */
1978   k = 0;
1979   for (j = 0; j < fh->cpd; j++, pr++)
1980     {
1981       long l;
1982       unsigned long adr;
1983       unsigned char *halt;
1984
1985       /* No code for this one */
1986       if (pr->iline == ilineNil ||
1987           pr->lnLow == -1 || pr->lnHigh == -1)
1988         continue;
1989
1990       /* Determine start and end address of compressed line bytes for
1991          this procedure.  */
1992       base = debug_info->line + fh->cbLineOffset;
1993       if (j != (fh->cpd - 1))
1994         halt = base + pr[1].cbLineOffset;
1995       else
1996         halt = base + fh->cbLine;
1997       base += pr->cbLineOffset;
1998
1999       adr = fh->adr + pr->adr - first_off
2000         + ANOFFSET (section_offsets, SECT_OFF_TEXT);
2001
2002       l = adr >> 2;             /* in words */
2003       for (lineno = pr->lnLow; base < halt; )
2004         {
2005           count = *base & 0x0f;
2006           delta = *base++ >> 4;
2007           if (delta >= 8)
2008             delta -= 16;
2009           if (delta == -8)
2010             {
2011               delta = (base[0] << 8) | base[1];
2012               if (delta >= 0x8000)
2013                 delta -= 0x10000;
2014               base += 2;
2015             }
2016           lineno += delta;      /* first delta is 0 */
2017
2018           /* Complain if the line table overflows. Could happen
2019              with corrupt binaries.  */
2020           if (lt->nitems >= maxlines)
2021             {
2022               complain (&bad_linetable_guess_complaint, fdr_name (fh));
2023               break;
2024             }
2025           k = add_line (lt, lineno, l, k);
2026           l += count + 1;
2027         }
2028     }
2029 }
2030 \f
2031 /* Master parsing procedure for first-pass reading of file symbols
2032    into a partial_symtab.  */
2033
2034 static void
2035 parse_partial_symbols (objfile, section_offsets)
2036      struct objfile *objfile;
2037      struct section_offsets *section_offsets;
2038 {
2039   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2040   const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2041   const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2042   void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
2043     = debug_swap->swap_ext_in;
2044   void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2045     = debug_swap->swap_sym_in;
2046   void (* const swap_rfd_in) PARAMS ((bfd *, PTR, RFDT *))
2047     = debug_swap->swap_rfd_in;
2048   int f_idx, s_idx;
2049   HDRR *hdr = &debug_info->symbolic_header;
2050   /* Running pointers */
2051   FDR *fh;
2052   char *ext_out;
2053   char *ext_out_end;
2054   EXTR *ext_block;
2055   register EXTR *ext_in;
2056   EXTR *ext_in_end;
2057   SYMR sh;
2058   struct partial_symtab *pst;
2059
2060   int past_first_source_file = 0;
2061
2062   /* List of current psymtab's include files */
2063   char **psymtab_include_list;
2064   int includes_allocated;
2065   int includes_used;
2066   EXTR *extern_tab;
2067   struct pst_map *fdr_to_pst;
2068   /* Index within current psymtab dependency list */
2069   struct partial_symtab **dependency_list;
2070   int dependencies_used, dependencies_allocated;
2071   struct cleanup *old_chain;
2072   char *name;
2073   enum language prev_language;
2074
2075   extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
2076                                        sizeof (EXTR) * hdr->iextMax);
2077
2078   includes_allocated = 30;
2079   includes_used = 0;
2080   psymtab_include_list = (char **) alloca (includes_allocated *
2081                                            sizeof (char *));
2082   next_symbol_text_func = mdebug_next_symbol_text;
2083
2084   dependencies_allocated = 30;
2085   dependencies_used = 0;
2086   dependency_list =
2087     (struct partial_symtab **) alloca (dependencies_allocated *
2088                                        sizeof (struct partial_symtab *));
2089
2090   last_source_file = NULL;
2091
2092   /*
2093    * Big plan:
2094    *
2095    * Only parse the Local and External symbols, and the Relative FDR.
2096    * Fixup enough of the loader symtab to be able to use it.
2097    * Allocate space only for the file's portions we need to
2098    * look at. (XXX)
2099    */
2100
2101   max_gdbinfo = 0;
2102   max_glevel = MIN_GLEVEL;
2103
2104   /* Allocate the map FDR -> PST.
2105      Minor hack: -O3 images might claim some global data belongs
2106      to FDR -1. We`ll go along with that */
2107   fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2108   old_chain = make_cleanup (free, fdr_to_pst);
2109   fdr_to_pst++;
2110   {
2111     struct partial_symtab *pst = new_psymtab ("", objfile, section_offsets);
2112     fdr_to_pst[-1].pst = pst;
2113     FDR_IDX (pst) = -1;
2114   }
2115
2116   /* Allocate the global pending list.  */
2117   pending_list =
2118     ((struct mdebug_pending **)
2119      obstack_alloc (&objfile->psymbol_obstack,
2120                     hdr->ifdMax * sizeof (struct mdebug_pending *)));
2121   memset ((PTR) pending_list, 0,
2122           hdr->ifdMax * sizeof (struct mdebug_pending *));
2123
2124   /* Pass 0 over external syms: swap them in.  */
2125   ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2126   make_cleanup (free, ext_block);
2127
2128   ext_out = (char *) debug_info->external_ext;
2129   ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2130   ext_in = ext_block;
2131   for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2132     (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2133
2134   /* Pass 1 over external syms: Presize and partition the list */
2135   ext_in = ext_block;
2136   ext_in_end = ext_in + hdr->iextMax;
2137   for (; ext_in < ext_in_end; ext_in++)
2138     {
2139       /* See calls to complain below.  */
2140       if (ext_in->ifd >= -1
2141           && ext_in->ifd < hdr->ifdMax
2142           && ext_in->asym.iss >= 0
2143           && ext_in->asym.iss < hdr->issExtMax)
2144         fdr_to_pst[ext_in->ifd].n_globals++;
2145     }
2146
2147   /* Pass 1.5 over files:  partition out global symbol space */
2148   s_idx = 0;
2149   for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2150     {
2151       fdr_to_pst[f_idx].globals_offset = s_idx;
2152       s_idx += fdr_to_pst[f_idx].n_globals;
2153       fdr_to_pst[f_idx].n_globals = 0;
2154     }
2155
2156   /* Pass 2 over external syms: fill in external symbols */
2157   ext_in = ext_block;
2158   ext_in_end = ext_in + hdr->iextMax;
2159   for (; ext_in < ext_in_end; ext_in++)
2160     {
2161       enum minimal_symbol_type ms_type = mst_text;
2162
2163       /* The Irix 5 native tools seem to sometimes generate bogus
2164          external symbols.  */
2165       if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2166         {
2167           complain (&bad_ext_ifd_complaint, ext_in->ifd, hdr->ifdMax);
2168           continue;
2169         }
2170       if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2171         {
2172           complain (&bad_ext_iss_complaint, ext_in->asym.iss,
2173                     hdr->issExtMax);
2174           continue;
2175         }
2176
2177       extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2178                  + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2179
2180       if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil)
2181         continue;
2182
2183       name = debug_info->ssext + ext_in->asym.iss;
2184       switch (ext_in->asym.st)
2185         {
2186         case stProc:
2187           break;
2188         case stStaticProc:
2189           ms_type = mst_file_text;
2190           break;
2191         case stGlobal:
2192           if (ext_in->asym.sc == scCommon)
2193             {
2194               /* The value of a common symbol is its size, not its address.
2195                  Ignore it.  */
2196               continue;
2197             }
2198           else if (ext_in->asym.sc == scData
2199               || ext_in->asym.sc == scSData
2200               || ext_in->asym.sc == scRData
2201               || ext_in->asym.sc == scPData
2202               || ext_in->asym.sc == scXData)
2203             ms_type = mst_data;
2204           else
2205             ms_type = mst_bss;
2206           break;
2207         case stLabel:
2208           if (ext_in->asym.sc == scAbs)
2209             ms_type = mst_abs;
2210           else if (ext_in->asym.sc == scText
2211                    || ext_in->asym.sc == scInit
2212                    || ext_in->asym.sc == scFini)
2213             ms_type = mst_file_text;
2214           else if (ext_in->asym.sc == scData
2215                    || ext_in->asym.sc == scSData
2216                    || ext_in->asym.sc == scRData
2217                    || ext_in->asym.sc == scPData
2218                    || ext_in->asym.sc == scXData)
2219             ms_type = mst_file_data;
2220           else
2221             ms_type = mst_file_bss;
2222           break;
2223         case stLocal:
2224           /* The alpha has the section start addresses in stLocal symbols
2225              whose name starts with a `.'. Skip those but complain for all
2226              other stLocal symbols.  */
2227           if (name[0] == '.')
2228             continue;
2229           /* Fall through.  */
2230         default:
2231           ms_type = mst_unknown;
2232           complain (&unknown_ext_complaint, name);
2233         }
2234       prim_record_minimal_symbol (name, ext_in->asym.value, ms_type, objfile);
2235     }
2236
2237   /* Pass 3 over files, over local syms: fill in static symbols */
2238   for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2239     {
2240       struct partial_symtab *save_pst;
2241       EXTR *ext_ptr;
2242
2243       cur_fdr = fh = debug_info->fdr + f_idx;
2244
2245       if (fh->csym == 0)
2246         {
2247           fdr_to_pst[f_idx].pst = NULL;
2248           continue;
2249         }
2250       pst = start_psymtab_common (objfile, section_offsets,
2251                                   fdr_name (fh),
2252                                   fh->cpd ? fh->adr : 0,
2253                                   objfile->global_psymbols.next,
2254                                   objfile->static_psymbols.next);
2255       pst->read_symtab_private = ((char *)
2256                                   obstack_alloc (&objfile->psymbol_obstack,
2257                                                  sizeof (struct symloc)));
2258       memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc));
2259
2260       save_pst = pst;
2261       FDR_IDX (pst) = f_idx;
2262       CUR_BFD (pst) = cur_bfd;
2263       DEBUG_SWAP (pst) = debug_swap;
2264       DEBUG_INFO (pst) = debug_info;
2265       PENDING_LIST (pst) = pending_list;
2266
2267       /* The way to turn this into a symtab is to call... */
2268       pst->read_symtab = mdebug_psymtab_to_symtab;
2269
2270       /* Set up language for the pst.
2271          The language from the FDR is used if it is unambigious (e.g. cfront
2272          with native cc and g++ will set the language to C).
2273          Otherwise we have to deduce the language from the filename.
2274          Native ecoff has every header file in a separate FDR, so
2275          deduce_language_from_filename will return language_unknown for
2276          a header file, which is not what we want.
2277          But the FDRs for the header files are after the FDR for the source
2278          file, so we can assign the language of the source file to the
2279          following header files. Then we save the language in the private
2280          pst data so that we can reuse it when building symtabs.  */
2281       prev_language = psymtab_language;
2282
2283       switch (fh->lang)
2284         {
2285         case langCplusplusV2:
2286           psymtab_language = language_cplus;
2287           break;
2288         default:
2289           psymtab_language = deduce_language_from_filename (fdr_name (fh));
2290           break;
2291         }
2292       if (psymtab_language == language_unknown)
2293         psymtab_language = prev_language;
2294       PST_PRIVATE (pst)->pst_language = psymtab_language;
2295
2296       pst->texthigh = pst->textlow;
2297
2298       /* For stabs-in-ecoff files, the second symbol must be @stab.
2299          This symbol is emitted by mips-tfile to signal that the
2300          current object file uses encapsulated stabs instead of mips
2301          ecoff for local symbols.  (It is the second symbol because
2302          the first symbol is the stFile used to signal the start of a
2303          file). */
2304       processing_gcc_compilation = 0;
2305       if (fh->csym >= 2)
2306         {
2307           (*swap_sym_in) (cur_bfd,
2308                           ((char *) debug_info->external_sym
2309                            + (fh->isymBase + 1) * external_sym_size),
2310                           &sh);
2311           if (STREQ (debug_info->ss + fh->issBase + sh.iss, stabs_symbol))
2312             processing_gcc_compilation = 2;
2313         }
2314
2315       if (processing_gcc_compilation != 0)
2316         {
2317           for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2318             {
2319               int type_code;
2320               char *namestring;
2321
2322               (*swap_sym_in) (cur_bfd,
2323                               (((char *) debug_info->external_sym)
2324                                + (fh->isymBase + cur_sdx) * external_sym_size),
2325                               &sh);
2326               type_code = ECOFF_UNMARK_STAB (sh.index);
2327               if (!ECOFF_IS_STAB (&sh))
2328                 {
2329                   if (sh.st == stProc || sh.st == stStaticProc)
2330                     {
2331                       long procaddr;
2332                       long isym;
2333         
2334                       sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2335                       procaddr = sh.value;
2336
2337                       isym = AUX_GET_ISYM (fh->fBigendian,
2338                                            (debug_info->external_aux
2339                                             + fh->iauxBase
2340                                             + sh.index));
2341                       (*swap_sym_in) (cur_bfd,
2342                                       ((char *) debug_info->external_sym
2343                                        + ((fh->isymBase + isym - 1)
2344                                           * external_sym_size)),
2345                                       &sh);
2346                       if (sh.st == stEnd)
2347                         {
2348                           long high = procaddr + sh.value;
2349                           if (high > pst->texthigh)
2350                             pst->texthigh = high;
2351                         }
2352                     }
2353                   continue;
2354                 }
2355 #define SET_NAMESTRING() \
2356   namestring = debug_info->ss + fh->issBase + sh.iss
2357 #define CUR_SYMBOL_TYPE type_code
2358 #define CUR_SYMBOL_VALUE sh.value
2359 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
2360   pst = save_pst
2361 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0
2362 #define HANDLE_RBRAC(val) \
2363   if ((val) > save_pst->texthigh) save_pst->texthigh = (val);
2364 #include "partial-stab.h"
2365             }
2366         }
2367       else
2368         {
2369           for (cur_sdx = 0; cur_sdx < fh->csym;)
2370             {
2371               char *name;
2372               enum address_class class;
2373
2374               (*swap_sym_in) (cur_bfd,
2375                               ((char *) debug_info->external_sym
2376                                + ((fh->isymBase + cur_sdx)
2377                                   * external_sym_size)),
2378                               &sh);
2379
2380               if (ECOFF_IS_STAB (&sh))
2381                 {
2382                   cur_sdx++;
2383                   continue;
2384                 }
2385
2386               /* Non absolute static symbols go into the minimal table.  */
2387               if (sh.sc == scUndefined || sh.sc == scNil
2388                   || (sh.index == indexNil
2389                       && (sh.st != stStatic || sh.sc == scAbs)))
2390                 {
2391                   /* FIXME, premature? */
2392                   cur_sdx++;
2393                   continue;
2394                 }
2395
2396               name = debug_info->ss + fh->issBase + sh.iss;
2397
2398               switch (sh.st)
2399                 {
2400                   long high;
2401                   long procaddr;
2402                   int new_sdx;
2403
2404                 case stStaticProc:
2405                   prim_record_minimal_symbol_and_info (name, sh.value,
2406                                                        mst_file_text, NULL,
2407                                                        SECT_OFF_TEXT, objfile);
2408
2409                   /* FALLTHROUGH */
2410
2411                 case stProc:
2412                   /* Usually there is a local and a global stProc symbol
2413                      for a function. This means that the function name
2414                      has already been entered into the mimimal symbol table
2415                      while processing the global symbols in pass 2 above.
2416                      One notable exception is the PROGRAM name from
2417                      f77 compiled executables, it is only put out as
2418                      local stProc symbol, and a global MAIN__ stProc symbol
2419                      points to it.  It doesn't matter though, as gdb is
2420                      still able to find the PROGRAM name via the partial
2421                      symbol table, and the MAIN__ symbol via the minimal
2422                      symbol table.  */
2423                   if (sh.st == stProc)
2424                     ADD_PSYMBOL_TO_LIST (name, strlen (name),
2425                                          VAR_NAMESPACE, LOC_BLOCK,
2426                                          objfile->global_psymbols,
2427                                          sh.value, psymtab_language, objfile);
2428                   else
2429                     ADD_PSYMBOL_TO_LIST (name, strlen (name),
2430                                          VAR_NAMESPACE, LOC_BLOCK,
2431                                          objfile->static_psymbols,
2432                                          sh.value, psymtab_language, objfile);
2433
2434                   /* Skip over procedure to next one. */
2435                   if (sh.index >= hdr->iauxMax)
2436                     {
2437                       /* Should not happen, but does when cross-compiling
2438                            with the MIPS compiler.  FIXME -- pull later.  */
2439                       complain (&index_complaint, name);
2440                       new_sdx = cur_sdx + 1;    /* Don't skip at all */
2441                     }
2442                   else
2443                     new_sdx = AUX_GET_ISYM (fh->fBigendian,
2444                                             (debug_info->external_aux
2445                                              + fh->iauxBase
2446                                              + sh.index));
2447                   procaddr = sh.value;
2448
2449                   if (new_sdx <= cur_sdx)
2450                     {
2451                       /* This should not happen either... FIXME.  */
2452                       complain (&aux_index_complaint, name);
2453                       new_sdx = cur_sdx + 1;    /* Don't skip backward */
2454                     }
2455
2456                   cur_sdx = new_sdx;
2457                   (*swap_sym_in) (cur_bfd,
2458                                   ((char *) debug_info->external_sym
2459                                    + ((fh->isymBase + cur_sdx - 1)
2460                                       * external_sym_size)),
2461                                   &sh);
2462                   if (sh.st != stEnd)
2463                     continue;
2464                   high = procaddr + sh.value;
2465                   if (high > pst->texthigh)
2466                     pst->texthigh = high;
2467                   continue;
2468
2469                 case stStatic:  /* Variable */
2470                   if (sh.sc == scData
2471                       || sh.sc == scSData
2472                       || sh.sc == scRData
2473                       || sh.sc == scPData
2474                       || sh.sc == scXData)
2475                     prim_record_minimal_symbol_and_info (name, sh.value,
2476                                                          mst_file_data, NULL,
2477                                                          SECT_OFF_DATA,
2478                                                          objfile);
2479                   else
2480                     prim_record_minimal_symbol_and_info (name, sh.value,
2481                                                          mst_file_bss, NULL,
2482                                                          SECT_OFF_BSS,
2483                                                          objfile);
2484                   class = LOC_STATIC;
2485                   break;
2486
2487                 case stTypedef:/* Typedef */
2488                   /* Skip typedefs for forward declarations and opaque
2489                      structs from alpha and mips cc.  */
2490                   if (sh.iss == 0 || has_opaque_xref (fh, &sh))
2491                     goto skip;
2492                   class = LOC_TYPEDEF;
2493                   break;
2494
2495                 case stConstant:        /* Constant decl */
2496                   class = LOC_CONST;
2497                   break;
2498
2499                 case stUnion:
2500                 case stStruct:
2501                 case stEnum:
2502                 case stBlock:   /* { }, str, un, enum*/
2503                   /* Do not create a partial symbol for cc unnamed aggregates
2504                      and gcc empty aggregates. */
2505                   if ((sh.sc == scInfo || sh.sc == scCommon)
2506                       && sh.iss != 0
2507                       && sh.index != cur_sdx + 2)
2508                     {
2509                       ADD_PSYMBOL_TO_LIST (name, strlen (name),
2510                                            STRUCT_NAMESPACE, LOC_TYPEDEF,
2511                                            objfile->static_psymbols,
2512                                            sh.value,
2513                                            psymtab_language, objfile);
2514                     }
2515                   handle_psymbol_enumerators (objfile, fh, sh.st);
2516
2517                   /* Skip over the block */
2518                   new_sdx = sh.index;
2519                   if (new_sdx <= cur_sdx)
2520                     {
2521                       /* This happens with the Ultrix kernel. */
2522                       complain (&block_index_complaint, name);
2523                       new_sdx = cur_sdx + 1;    /* Don't skip backward */
2524                     }
2525                   cur_sdx = new_sdx;
2526                   continue;
2527
2528                 case stFile:    /* File headers */
2529                 case stLabel:   /* Labels */
2530                 case stEnd:     /* Ends of files */
2531                   goto skip;
2532
2533                 case stLocal:   /* Local variables */
2534                   /* Normally these are skipped because we skip over
2535                      all blocks we see.  However, these can occur
2536                      as visible symbols in a .h file that contains code. */
2537                   goto skip;
2538
2539                 default:
2540                   /* Both complaints are valid:  one gives symbol name,
2541                      the other the offending symbol type.  */
2542                   complain (&unknown_sym_complaint, name);
2543                   complain (&unknown_st_complaint, sh.st);
2544                   cur_sdx++;
2545                   continue;
2546                 }
2547               /* Use this gdb symbol */
2548               ADD_PSYMBOL_TO_LIST (name, strlen (name),
2549                                    VAR_NAMESPACE, class,
2550                                    objfile->static_psymbols, sh.value,
2551                                    psymtab_language, objfile);
2552             skip:
2553               cur_sdx++;        /* Go to next file symbol */
2554             }
2555
2556           /* Now do enter the external symbols. */
2557           ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
2558           cur_sdx = fdr_to_pst[f_idx].n_globals;
2559           PST_PRIVATE (save_pst)->extern_count = cur_sdx;
2560           PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
2561           for (; --cur_sdx >= 0; ext_ptr++)
2562             {
2563               enum address_class class;
2564               SYMR *psh;
2565               char *name;
2566
2567               if (ext_ptr->ifd != f_idx)
2568                 abort ();
2569               psh = &ext_ptr->asym;
2570
2571               /* Do not add undefined symbols to the partial symbol table.  */
2572               if (psh->sc == scUndefined || psh->sc == scNil)
2573                 continue;
2574
2575               switch (psh->st)
2576                 {
2577                 case stNil:
2578                   /* These are generated for static symbols in .o files,
2579                      ignore them.  */
2580                   continue;
2581                 case stProc:
2582                 case stStaticProc:
2583                   /* External procedure symbols have been entered
2584                      into the minimal symbol table in pass 2 above.
2585                      Ignore them, as parse_external will ignore them too.  */
2586                   continue;
2587                 case stLabel:
2588                   class = LOC_LABEL;
2589                   break;
2590                 default:
2591                   complain (&unknown_ext_complaint,
2592                             debug_info->ssext + psh->iss);
2593                   /* Fall through, pretend it's global.  */
2594                 case stGlobal:
2595                   class = LOC_STATIC;
2596                   break;
2597                 }
2598               name = debug_info->ssext + psh->iss;
2599               ADD_PSYMBOL_ADDR_TO_LIST (name, strlen (name),
2600                                         VAR_NAMESPACE, class,
2601                                         objfile->global_psymbols,
2602                                         (CORE_ADDR) psh->value,
2603                                         psymtab_language, objfile);
2604             }
2605         }
2606
2607       /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
2608          empty and put on the free list.  */
2609       fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
2610                                            psymtab_include_list, includes_used,
2611                                            -1, save_pst->texthigh,
2612                                            dependency_list, dependencies_used);
2613       if (objfile->ei.entry_point >= save_pst->textlow &&
2614           objfile->ei.entry_point < save_pst->texthigh)
2615         {
2616           objfile->ei.entry_file_lowpc = save_pst->textlow;
2617           objfile->ei.entry_file_highpc = save_pst->texthigh;
2618         }
2619     }
2620
2621   /* Now scan the FDRs for dependencies */
2622   for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2623     {
2624       fh = f_idx + debug_info->fdr;
2625       pst = fdr_to_pst[f_idx].pst;
2626
2627       if (pst == (struct partial_symtab *)NULL)
2628         continue;
2629
2630       /* This should catch stabs-in-ecoff. */
2631       if (fh->crfd <= 1)
2632         continue;
2633
2634       /* Skip the first file indirect entry as it is a self dependency
2635          for source files or a reverse .h -> .c dependency for header files.  */
2636       pst->number_of_dependencies = 0;
2637       pst->dependencies =
2638         ((struct partial_symtab **)
2639          obstack_alloc (&objfile->psymbol_obstack,
2640                         ((fh->crfd - 1)
2641                          * sizeof (struct partial_symtab *))));
2642       for (s_idx = 1; s_idx < fh->crfd; s_idx++)
2643         {
2644           RFDT rh;
2645
2646           (*swap_rfd_in) (cur_bfd,
2647                           ((char *) debug_info->external_rfd
2648                            + (fh->rfdBase + s_idx) * external_rfd_size),
2649                           &rh);
2650           if (rh < 0 || rh >= hdr->ifdMax)
2651             {
2652               complain (&bad_file_number_complaint, rh);
2653               continue;
2654             }
2655
2656           /* Skip self dependencies of header files.  */
2657           if (rh == f_idx)
2658             continue;
2659
2660           /* Do not add to dependeny list if psymtab was empty.  */
2661           if (fdr_to_pst[rh].pst == (struct partial_symtab *)NULL)
2662             continue;
2663           pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
2664         }
2665     }
2666
2667   /* Remove the dummy psymtab created for -O3 images above, if it is
2668      still empty, to enable the detection of stripped executables.  */
2669   if (objfile->psymtabs->next == NULL
2670       && objfile->psymtabs->number_of_dependencies == 0
2671       && objfile->psymtabs->n_global_syms == 0
2672       && objfile->psymtabs->n_static_syms == 0)
2673     objfile->psymtabs = NULL;
2674   do_cleanups (old_chain);
2675 }
2676
2677 /* If the current psymbol has an enumerated type, we need to add
2678    all the the enum constants to the partial symbol table.  */
2679
2680 static void
2681 handle_psymbol_enumerators (objfile, fh, stype)
2682      struct objfile *objfile;
2683      FDR *fh;
2684      int stype;
2685 {
2686   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2687   void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2688     = debug_swap->swap_sym_in;
2689   char *ext_sym = ((char *) debug_info->external_sym
2690                   + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
2691   SYMR sh;
2692   TIR tir;
2693
2694   switch (stype)
2695     {
2696     case stEnum:
2697       break;
2698
2699     case stBlock:
2700       /* It is an enumerated type if the next symbol entry is a stMember
2701          and its auxiliary index is indexNil or its auxiliary entry
2702          is a plain btNil or btVoid.  */
2703       (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2704       if (sh.st != stMember)
2705         return;
2706
2707       if (sh.index == indexNil)
2708         break;
2709       ecoff_swap_tir_in (fh->fBigendian,
2710                          &(debug_info->external_aux
2711                            + fh->iauxBase + sh.index)->a_ti,
2712                          &tir);
2713       if ((tir.bt != btNil && tir.bt != btVoid) || tir.tq0 != tqNil)
2714         return;
2715       break;
2716
2717     default:
2718       return;
2719     }
2720
2721   for (;;)
2722     {
2723       char *name;
2724
2725       (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2726       if (sh.st != stMember)
2727         break;
2728       name = debug_info->ss + cur_fdr->issBase + sh.iss;
2729
2730       /* Note that the value doesn't matter for enum constants
2731          in psymtabs, just in symtabs.  */
2732       ADD_PSYMBOL_TO_LIST (name, strlen (name),
2733                            VAR_NAMESPACE, LOC_CONST,
2734                            objfile->static_psymbols, 0,
2735                            psymtab_language, objfile);
2736       ext_sym += external_sym_size;
2737     }
2738 }
2739
2740 static char *
2741 mdebug_next_symbol_text ()
2742 {
2743   SYMR sh;
2744
2745   cur_sdx++;
2746   (*debug_swap->swap_sym_in) (cur_bfd,
2747                               ((char *) debug_info->external_sym
2748                                + ((cur_fdr->isymBase + cur_sdx)
2749                                   * debug_swap->external_sym_size)),
2750                               &sh);
2751   return debug_info->ss + cur_fdr->issBase + sh.iss;
2752 }
2753
2754 /* Ancillary function to psymtab_to_symtab().  Does all the work
2755    for turning the partial symtab PST into a symtab, recurring
2756    first on all dependent psymtabs.  The argument FILENAME is
2757    only passed so we can see in debug stack traces what file
2758    is being read.
2759
2760    This function has a split personality, based on whether the
2761    symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
2762    The flow of control and even the memory allocation differs.  FIXME.  */
2763
2764 static void
2765 psymtab_to_symtab_1 (pst, filename)
2766      struct partial_symtab *pst;
2767      char *filename;
2768 {
2769   bfd_size_type external_sym_size;
2770   bfd_size_type external_pdr_size;
2771   void (*swap_sym_in) PARAMS ((bfd *, PTR, SYMR *));
2772   void (*swap_pdr_in) PARAMS ((bfd *, PTR, PDR *));
2773   int i;
2774   struct symtab *st;
2775   FDR *fh;
2776   struct linetable *lines;
2777
2778   if (pst->readin)
2779     return;
2780   pst->readin = 1;
2781
2782   /* Read in all partial symbtabs on which this one is dependent.
2783      NOTE that we do have circular dependencies, sigh.  We solved
2784      that by setting pst->readin before this point.  */
2785
2786   for (i = 0; i < pst->number_of_dependencies; i++)
2787     if (!pst->dependencies[i]->readin)
2788       {
2789         /* Inform about additional files to be read in.  */
2790         if (info_verbose)
2791           {
2792             fputs_filtered (" ", gdb_stdout);
2793             wrap_here ("");
2794             fputs_filtered ("and ", gdb_stdout);
2795             wrap_here ("");
2796             printf_filtered ("%s...",
2797                              pst->dependencies[i]->filename);
2798             wrap_here ("");     /* Flush output */
2799             gdb_flush (gdb_stdout);
2800           }
2801         /* We only pass the filename for debug purposes */
2802         psymtab_to_symtab_1 (pst->dependencies[i],
2803                              pst->dependencies[i]->filename);
2804       }
2805
2806   /* Do nothing if this is a dummy psymtab.  */
2807
2808   if (pst->n_global_syms == 0 && pst->n_static_syms == 0
2809       && pst->textlow == 0 && pst->texthigh == 0)
2810     return;
2811
2812   /* Now read the symbols for this symtab */
2813
2814   cur_bfd = CUR_BFD (pst);
2815   debug_swap = DEBUG_SWAP (pst);
2816   debug_info = DEBUG_INFO (pst);
2817   pending_list = PENDING_LIST (pst);
2818   external_sym_size = debug_swap->external_sym_size;
2819   external_pdr_size = debug_swap->external_pdr_size;
2820   swap_sym_in = debug_swap->swap_sym_in;
2821   swap_pdr_in = debug_swap->swap_pdr_in;
2822   current_objfile = pst->objfile;
2823   cur_fd = FDR_IDX (pst);
2824   fh = ((cur_fd == -1)
2825         ? (FDR *) NULL
2826         : debug_info->fdr + cur_fd);
2827   cur_fdr = fh;
2828
2829   /* See comment in parse_partial_symbols about the @stabs sentinel. */
2830   processing_gcc_compilation = 0;
2831   if (fh != (FDR *) NULL && fh->csym >= 2)
2832     {
2833       SYMR sh;
2834
2835       (*swap_sym_in) (cur_bfd,
2836                       ((char *) debug_info->external_sym
2837                        + (fh->isymBase + 1) * external_sym_size),
2838                       &sh);
2839       if (STREQ (debug_info->ss + fh->issBase + sh.iss,
2840                  stabs_symbol))
2841         {
2842           /* We indicate that this is a GCC compilation so that certain
2843              features will be enabled in stabsread/dbxread.  */
2844           processing_gcc_compilation = 2;
2845         }
2846     }
2847
2848   if (processing_gcc_compilation != 0)
2849     {
2850       char *pdr_ptr;
2851       char *pdr_end;
2852       int first_pdr;
2853       unsigned long first_off = 0;
2854
2855       /* This symbol table contains stabs-in-ecoff entries.  */
2856
2857       /* Parse local symbols first */
2858
2859       if (fh->csym <= 2)        /* FIXME, this blows psymtab->symtab ptr */
2860         {
2861           current_objfile = NULL;
2862           return;
2863         }
2864       for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2865         {
2866           SYMR sh;
2867           char *name;
2868           CORE_ADDR valu;
2869
2870           (*swap_sym_in) (cur_bfd,
2871                           (((char *) debug_info->external_sym)
2872                            + (fh->isymBase + cur_sdx) * external_sym_size),
2873                           &sh);
2874           name = debug_info->ss + fh->issBase + sh.iss;
2875           valu = sh.value;
2876           if (ECOFF_IS_STAB (&sh))
2877             {
2878               int type_code = ECOFF_UNMARK_STAB (sh.index);
2879
2880               /* We should never get non N_STAB symbols here, but they
2881                  should be harmless, so keep process_one_symbol from
2882                  complaining about them.  */
2883               if (type_code & N_STAB)
2884                 {
2885                   process_one_symbol (type_code, 0, valu, name,
2886                                       pst->section_offsets, pst->objfile);
2887                 }
2888               if (type_code == N_FUN)
2889                 {
2890                   /* Make up special symbol to contain
2891                      procedure specific info */
2892                   struct mips_extra_func_info *e =
2893                     ((struct mips_extra_func_info *)
2894                      obstack_alloc (&current_objfile->symbol_obstack,
2895                                     sizeof (struct mips_extra_func_info)));
2896                   struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
2897                   SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
2898                   SYMBOL_CLASS (s) = LOC_CONST;
2899                   SYMBOL_TYPE (s) = builtin_type_void;
2900                   SYMBOL_VALUE (s) = (long) e;
2901                   add_symbol_to_list (s, &local_symbols);
2902                 }
2903             }
2904           else if (sh.st == stLabel)
2905             {
2906               if (sh.index == indexNil)
2907                 {
2908                   /* This is what the gcc2_compiled and __gnu_compiled_*
2909                      show up as.  So don't complain.  */
2910                   ;
2911                 }
2912               else
2913                 /* Handle encoded stab line number. */
2914                 record_line (current_subfile, sh.index, valu);
2915             }
2916           else if (sh.st == stProc || sh.st == stStaticProc || sh.st == stEnd)
2917             /* These are generated by gcc-2.x, do not complain */
2918             ;
2919           else
2920             complain (&stab_unknown_complaint, name);
2921         }
2922       st = end_symtab (pst->texthigh, 0, 0, pst->objfile, SECT_OFF_TEXT);
2923       end_stabs ();
2924
2925       /* Sort the symbol table now, we are done adding symbols to it.
2926          We must do this before parse_procedure calls lookup_symbol.  */
2927       sort_symtab_syms (st);
2928
2929       /* This may not be necessary for stabs symtabs.  FIXME.  */
2930       sort_blocks (st);
2931
2932       /* Fill in procedure info next.  */
2933       first_pdr = 1;
2934       pdr_ptr = ((char *) debug_info->external_pdr
2935                  + fh->ipdFirst * external_pdr_size);
2936       pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
2937       for (; pdr_ptr < pdr_end; pdr_ptr += external_pdr_size)
2938         {
2939           PDR pr;
2940
2941           (*swap_pdr_in) (cur_bfd, pdr_ptr, &pr);
2942           if (first_pdr)
2943             {
2944               first_off = pr.adr;
2945               first_pdr = 0;
2946             }
2947           parse_procedure (&pr, st, first_off, pst->section_offsets);
2948         }
2949     }
2950   else
2951     {
2952       /* This symbol table contains ordinary ecoff entries.  */
2953
2954       /* FIXME:  doesn't use pst->section_offsets.  */
2955
2956       int f_max;
2957       int maxlines;
2958       EXTR *ext_ptr;
2959
2960       /* How many symbols will we need */
2961       /* FIXME, this does not count enum values. */
2962       f_max = pst->n_global_syms + pst->n_static_syms;
2963       if (fh == 0)
2964         {
2965           maxlines = 0;
2966           st = new_symtab ("unknown", f_max, 0, pst->objfile);
2967         }
2968       else
2969         {
2970           f_max += fh->csym + fh->cpd;
2971           maxlines = 2 * fh->cline;
2972           st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile);
2973
2974           /* The proper language was already determined when building
2975              the psymtab, use it.  */
2976           st->language = PST_PRIVATE (pst)->pst_language;
2977         }
2978
2979       psymtab_language = st->language;
2980
2981       lines = LINETABLE (st);
2982
2983       /* Get a new lexical context */
2984
2985       push_parse_stack ();
2986       top_stack->cur_st = st;
2987       top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
2988                                                 STATIC_BLOCK);
2989       BLOCK_START (top_stack->cur_block) = fh ? fh->adr : 0;
2990       BLOCK_END (top_stack->cur_block) = 0;
2991       top_stack->blocktype = stFile;
2992       top_stack->maxsyms = 2 * f_max;
2993       top_stack->cur_type = 0;
2994       top_stack->procadr = 0;
2995       top_stack->numargs = 0;
2996
2997       if (fh)
2998         {
2999           char *sym_ptr;
3000           char *sym_end;
3001
3002           /* Parse local symbols first */
3003           sym_ptr = ((char *) debug_info->external_sym
3004                      + fh->isymBase * external_sym_size);
3005           sym_end = sym_ptr + fh->csym * external_sym_size;
3006           while (sym_ptr < sym_end)
3007             {
3008               SYMR sh;
3009               int c;
3010
3011               (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
3012               c = parse_symbol (&sh,
3013                                 debug_info->external_aux + fh->iauxBase,
3014                                 sym_ptr, fh->fBigendian, pst->section_offsets);
3015               sym_ptr += c * external_sym_size;
3016             }
3017
3018           /* Linenumbers.  At the end, check if we can save memory.
3019              parse_lines has to look ahead an arbitrary number of PDR
3020              structures, so we swap them all first.  */
3021           if (fh->cpd > 0)
3022             {
3023               PDR *pr_block;
3024               struct cleanup *old_chain;
3025               char *pdr_ptr;
3026               char *pdr_end;
3027               PDR *pdr_in;
3028               PDR *pdr_in_end;
3029
3030               pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
3031
3032               old_chain = make_cleanup (free, pr_block);
3033
3034               pdr_ptr = ((char *) debug_info->external_pdr
3035                          + fh->ipdFirst * external_pdr_size);
3036               pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3037               pdr_in = pr_block;
3038               for (;
3039                    pdr_ptr < pdr_end;
3040                    pdr_ptr += external_pdr_size, pdr_in++)
3041                 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
3042
3043               parse_lines (fh, pr_block, lines, maxlines,
3044                            pst->section_offsets);
3045               if (lines->nitems < fh->cline)
3046                 lines = shrink_linetable (lines);
3047
3048               /* Fill in procedure info next.  */
3049               pdr_in = pr_block;
3050               pdr_in_end = pdr_in + fh->cpd;
3051               for (; pdr_in < pdr_in_end; pdr_in++)
3052                 parse_procedure (pdr_in, 0, pr_block->adr,
3053                                  pst->section_offsets);
3054
3055               do_cleanups (old_chain);
3056             }
3057         }
3058
3059       LINETABLE (st) = lines;
3060
3061       /* .. and our share of externals.
3062          XXX use the global list to speed up things here. how?
3063          FIXME, Maybe quit once we have found the right number of ext's? */
3064       top_stack->cur_st = st;
3065       top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
3066                                                 GLOBAL_BLOCK);
3067       top_stack->blocktype = stFile;
3068       top_stack->maxsyms
3069         = (debug_info->symbolic_header.isymMax
3070            + debug_info->symbolic_header.ipdMax
3071            + debug_info->symbolic_header.iextMax);
3072
3073       ext_ptr = PST_PRIVATE (pst)->extern_tab;
3074       for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
3075         parse_external (ext_ptr, fh->fBigendian, pst->section_offsets);
3076
3077       /* If there are undefined symbols, tell the user.
3078          The alpha has an undefined symbol for every symbol that is
3079          from a shared library, so tell the user only if verbose is on.  */
3080       if (info_verbose && n_undef_symbols)
3081         {
3082           printf_filtered ("File %s contains %d unresolved references:",
3083                            st->filename, n_undef_symbols);
3084           printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
3085                            n_undef_vars, n_undef_procs, n_undef_labels);
3086           n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
3087
3088         }
3089       pop_parse_stack ();
3090
3091       st->primary = 1;
3092
3093       /* Sort the symbol table now, we are done adding symbols to it.*/
3094       sort_symtab_syms (st);
3095
3096       sort_blocks (st);
3097     }
3098
3099   /* Now link the psymtab and the symtab.  */
3100   pst->symtab = st;
3101
3102   current_objfile = NULL;
3103 }
3104 \f
3105 /* Ancillary parsing procedures. */
3106
3107 /* Return 1 if the symbol pointed to by SH has a cross reference
3108    to an opaque aggregate type, else 0.  */
3109
3110 static int
3111 has_opaque_xref (fh, sh)
3112      FDR *fh;
3113      SYMR *sh;
3114 {
3115   TIR tir;
3116   union aux_ext *ax;
3117   RNDXR rn[1];
3118   unsigned int rf;
3119
3120   if (sh->index == indexNil)
3121     return 0;
3122
3123   ax = debug_info->external_aux + fh->iauxBase + sh->index;
3124   ecoff_swap_tir_in (fh->fBigendian, &ax->a_ti, &tir);
3125   if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
3126     return 0;
3127
3128   ax++;
3129   ecoff_swap_rndx_in (fh->fBigendian, &ax->a_rndx, rn);
3130   if (rn->rfd == 0xfff)
3131     rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
3132   else
3133     rf = rn->rfd;
3134   if (rf != -1)
3135     return 0;
3136   return 1;
3137 }
3138
3139 /* Lookup the type at relative index RN.  Return it in TPP
3140    if found and in any event come up with its name PNAME.
3141    BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
3142    Return value says how many aux symbols we ate. */
3143
3144 static int
3145 cross_ref (fd, ax, tpp, type_code, pname, bigend, sym_name)
3146      int fd;
3147      union aux_ext *ax;
3148      struct type **tpp;
3149      enum type_code type_code;  /* Use to alloc new type if none is found. */
3150      char **pname;
3151      int bigend;
3152      char *sym_name;
3153 {
3154   RNDXR rn[1];
3155   unsigned int rf;
3156   int result = 1;
3157   FDR *fh;
3158   char *esh;
3159   SYMR sh;
3160   int xref_fd;
3161   struct mdebug_pending *pend;
3162
3163   *tpp = (struct type *)NULL;
3164
3165   ecoff_swap_rndx_in (bigend, &ax->a_rndx, rn);
3166
3167   /* Escape index means 'the next one' */
3168   if (rn->rfd == 0xfff)
3169     {
3170       result++;
3171       rf = AUX_GET_ISYM (bigend, ax + 1);
3172     }
3173   else
3174     {
3175       rf = rn->rfd;
3176     }
3177
3178   /* mips cc uses a rf of -1 for opaque struct definitions.
3179      Set TYPE_FLAG_STUB for these types so that check_stub_type will
3180      resolve them if the struct gets defined in another compilation unit.  */
3181   if (rf == -1)
3182     {
3183       *pname = "<undefined>";
3184       *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3185       TYPE_FLAGS (*tpp) |= TYPE_FLAG_STUB;
3186       return result;
3187     }
3188
3189   /* mips cc uses an escaped rn->index of 0 for struct return types
3190      of procedures that were compiled without -g. These will always remain
3191      undefined.  */
3192   if (rn->rfd == 0xfff && rn->index == 0)
3193     {
3194       *pname = "<undefined>";
3195       return result;
3196     }
3197
3198   /* Find the relative file descriptor and the symbol in it.  */
3199   fh = get_rfd (fd, rf);
3200   xref_fd = fh - debug_info->fdr;
3201
3202   if (rn->index >= fh->csym)
3203     {
3204       /* File indirect entry is corrupt.  */
3205       *pname = "<illegal>";
3206       complain (&bad_rfd_entry_complaint,
3207                 sym_name, xref_fd, rn->index);
3208       return result;
3209     }
3210
3211   /* If we have processed this symbol then we left a forwarding
3212      pointer to the type in the pending list.  If not, we`ll put
3213      it in a list of pending types, to be processed later when
3214      the file will be.  In any event, we collect the name for the
3215      type here.  */
3216
3217   esh = ((char *) debug_info->external_sym
3218          + ((fh->isymBase + rn->index)
3219             * debug_swap->external_sym_size));
3220   (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
3221
3222   /* Make sure that this type of cross reference can be handled.  */
3223   if ((sh.sc != scInfo
3224        || (sh.st != stBlock && sh.st != stTypedef
3225            && sh.st != stStruct && sh.st != stUnion
3226            && sh.st != stEnum))
3227       && (sh.sc != scCommon || sh.st != stBlock))
3228     {
3229       /* File indirect entry is corrupt.  */
3230       *pname = "<illegal>";
3231       complain (&bad_rfd_entry_complaint,
3232                 sym_name, xref_fd, rn->index);
3233       return result;
3234     }
3235
3236   *pname = debug_info->ss + fh->issBase + sh.iss;
3237
3238   pend = is_pending_symbol (fh, esh);
3239   if (pend)
3240     *tpp = pend->t;
3241   else
3242     {
3243       /* We have not yet seen this type.  */
3244
3245       if (sh.iss == 0 && sh.st == stTypedef)
3246         {
3247           TIR tir;
3248
3249           /* alpha cc puts out a stTypedef with a sh.iss of zero for
3250              two cases:
3251              a) forward declarations of structs/unions/enums which are not
3252                 defined in this compilation unit.
3253                 For these the type will be void. This is a bad design decision
3254                 as cross referencing across compilation units is impossible
3255                 due to the missing name.
3256              b) forward declarations of structs/unions/enums which are defined
3257                 later in this file or in another file in the same compilation
3258                 unit.  Simply cross reference those again to get the
3259                 true type.
3260              The forward references are not entered in the pending list and
3261              in the symbol table.  */
3262
3263           ecoff_swap_tir_in (bigend,
3264                              &(debug_info->external_aux
3265                                + fh->iauxBase + sh.index)->a_ti,
3266                              &tir);
3267           if (tir.tq0 != tqNil)
3268             complain (&illegal_forward_tq0_complaint, sym_name);
3269           switch (tir.bt)
3270             {
3271             case btVoid:
3272               *tpp = init_type (type_code, 0, 0, (char *) NULL,
3273                                 current_objfile);
3274               *pname = "<undefined>";
3275               break;
3276
3277             case btStruct:
3278             case btUnion:
3279             case btEnum:
3280               cross_ref (xref_fd,
3281                          (debug_info->external_aux
3282                           + fh->iauxBase + sh.index + 1),
3283                          tpp, type_code, pname,
3284                          fh->fBigendian, sym_name);
3285               break;
3286
3287             default:
3288               complain (&illegal_forward_bt_complaint, tir.bt, sym_name);
3289               *tpp = init_type (type_code, 0, 0, (char *) NULL,
3290                                 current_objfile);
3291               break;
3292             }
3293           return result;
3294         }
3295       else if (sh.st == stTypedef)
3296         {
3297           /* Parse the type for a normal typedef. This might recursively call
3298              cross_ref till we get a non typedef'ed type.
3299              FIXME: This is not correct behaviour, but gdb currently
3300              cannot handle typedefs without type copying. But type copying is
3301              impossible as we might have mutual forward references between
3302              two files and the copied type would not get filled in when
3303              we later parse its definition.   */
3304           *tpp = parse_type (xref_fd,
3305                              debug_info->external_aux + fh->iauxBase,
3306                              sh.index,
3307                              (int *)NULL,
3308                              fh->fBigendian,
3309                              debug_info->ss + fh->issBase + sh.iss);
3310         }
3311       else
3312         {
3313           /* Cross reference to a struct/union/enum which is defined
3314              in another file in the same compilation unit but that file
3315              has not been parsed yet.
3316              Initialize the type only, it will be filled in when
3317              it's definition is parsed.  */
3318           *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3319         }
3320       add_pending (fh, esh, *tpp);
3321     }
3322
3323   /* We used one auxent normally, two if we got a "next one" rf. */
3324   return result;
3325 }
3326
3327
3328 /* Quick&dirty lookup procedure, to avoid the MI ones that require
3329    keeping the symtab sorted */
3330
3331 static struct symbol *
3332 mylookup_symbol (name, block, namespace, class)
3333      char *name;
3334      register struct block *block;
3335      enum namespace namespace;
3336      enum address_class class;
3337 {
3338   register int bot, top, inc;
3339   register struct symbol *sym;
3340
3341   bot = 0;
3342   top = BLOCK_NSYMS (block);
3343   inc = name[0];
3344   while (bot < top)
3345     {
3346       sym = BLOCK_SYM (block, bot);
3347       if (SYMBOL_NAME (sym)[0] == inc
3348           && SYMBOL_NAMESPACE (sym) == namespace
3349           && SYMBOL_CLASS (sym) == class
3350           && strcmp (SYMBOL_NAME (sym), name) == 0)
3351         return sym;
3352       bot++;
3353     }
3354   block = BLOCK_SUPERBLOCK (block);
3355   if (block)
3356     return mylookup_symbol (name, block, namespace, class);
3357   return 0;
3358 }
3359
3360
3361 /* Add a new symbol S to a block B.
3362    Infrequently, we will need to reallocate the block to make it bigger.
3363    We only detect this case when adding to top_stack->cur_block, since
3364    that's the only time we know how big the block is.  FIXME.  */
3365
3366 static void
3367 add_symbol (s, b)
3368      struct symbol *s;
3369      struct block *b;
3370 {
3371   int nsyms = BLOCK_NSYMS (b)++;
3372   struct block *origb;
3373   struct parse_stack *stackp;
3374
3375   if (b == top_stack->cur_block &&
3376       nsyms >= top_stack->maxsyms)
3377     {
3378       complain (&block_overflow_complaint, SYMBOL_NAME (s));
3379       /* In this case shrink_block is actually grow_block, since
3380                    BLOCK_NSYMS(b) is larger than its current size.  */
3381       origb = b;
3382       b = shrink_block (top_stack->cur_block, top_stack->cur_st);
3383
3384       /* Now run through the stack replacing pointers to the
3385          original block.  shrink_block has already done this
3386          for the blockvector and BLOCK_FUNCTION.  */
3387       for (stackp = top_stack; stackp; stackp = stackp->next)
3388         {
3389           if (stackp->cur_block == origb)
3390             {
3391               stackp->cur_block = b;
3392               stackp->maxsyms = BLOCK_NSYMS (b);
3393             }
3394         }
3395     }
3396   BLOCK_SYM (b, nsyms) = s;
3397 }
3398
3399 /* Add a new block B to a symtab S */
3400
3401 static void
3402 add_block (b, s)
3403      struct block *b;
3404      struct symtab *s;
3405 {
3406   struct blockvector *bv = BLOCKVECTOR (s);
3407
3408   bv = (struct blockvector *) xrealloc ((PTR) bv,
3409                                         (sizeof (struct blockvector)
3410                                          + BLOCKVECTOR_NBLOCKS (bv)
3411                                          * sizeof (bv->block)));
3412   if (bv != BLOCKVECTOR (s))
3413     BLOCKVECTOR (s) = bv;
3414
3415   BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
3416 }
3417
3418 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
3419    MIPS' linenumber encoding might need more than one byte
3420    to describe it, LAST is used to detect these continuation lines.
3421
3422    Combining lines with the same line number seems like a bad idea.
3423    E.g: There could be a line number entry with the same line number after the
3424    prologue and GDB should not ignore it (this is a better way to find
3425    a prologue than mips_skip_prologue).
3426    But due to the compressed line table format there are line number entries
3427    for the same line which are needed to bridge the gap to the next
3428    line number entry. These entries have a bogus address info with them
3429    and we are unable to tell them from intended duplicate line number
3430    entries.
3431    This is another reason why -ggdb debugging format is preferable.  */
3432
3433 static int
3434 add_line (lt, lineno, adr, last)
3435      struct linetable *lt;
3436      int lineno;
3437      CORE_ADDR adr;
3438      int last;
3439 {
3440   /* DEC c89 sometimes produces zero linenos which confuse gdb.
3441      Change them to something sensible. */
3442   if (lineno == 0)
3443     lineno = 1;
3444   if (last == 0)
3445     last = -2;                  /* make sure we record first line */
3446
3447   if (last == lineno)           /* skip continuation lines */
3448     return lineno;
3449
3450   lt->item[lt->nitems].line = lineno;
3451   lt->item[lt->nitems++].pc = adr << 2;
3452   return lineno;
3453 }
3454 \f
3455 /* Sorting and reordering procedures */
3456
3457 /* Blocks with a smaller low bound should come first */
3458
3459 static int
3460 compare_blocks (arg1, arg2)
3461      const PTR arg1;
3462      const PTR arg2;
3463 {
3464   register int addr_diff;
3465   struct block **b1 = (struct block **) arg1;
3466   struct block **b2 = (struct block **) arg2;
3467
3468   addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
3469   if (addr_diff == 0)
3470     return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
3471   return addr_diff;
3472 }
3473
3474 /* Sort the blocks of a symtab S.
3475    Reorder the blocks in the blockvector by code-address,
3476    as required by some MI search routines */
3477
3478 static void
3479 sort_blocks (s)
3480      struct symtab *s;
3481 {
3482   struct blockvector *bv = BLOCKVECTOR (s);
3483
3484   if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
3485     {
3486       /* Cosmetic */
3487       if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
3488         BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
3489       if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
3490         BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
3491       return;
3492     }
3493   /*
3494    * This is very unfortunate: normally all functions are compiled in
3495    * the order they are found, but if the file is compiled -O3 things
3496    * are very different.  It would be nice to find a reliable test
3497    * to detect -O3 images in advance.
3498    */
3499   if (BLOCKVECTOR_NBLOCKS (bv) > 3)
3500     qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
3501            BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
3502            sizeof (struct block *),
3503            compare_blocks);
3504
3505   {
3506     register CORE_ADDR high = 0;
3507     register int i, j = BLOCKVECTOR_NBLOCKS (bv);
3508
3509     for (i = FIRST_LOCAL_BLOCK; i < j; i++)
3510       if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
3511         high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
3512     BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
3513   }
3514
3515   BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
3516     BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
3517
3518   BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3519     BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3520   BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3521     BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3522 }
3523 \f
3524
3525 /* Constructor/restructor/destructor procedures */
3526
3527 /* Allocate a new symtab for NAME.  Needs an estimate of how many symbols
3528    MAXSYMS and linenumbers MAXLINES we'll put in it */
3529
3530 static struct symtab *
3531 new_symtab (name, maxsyms, maxlines, objfile)
3532      char *name;
3533      int maxsyms;
3534      int maxlines;
3535      struct objfile *objfile;
3536 {
3537   struct symtab *s = allocate_symtab (name, objfile);
3538
3539   LINETABLE (s) = new_linetable (maxlines);
3540
3541   /* All symtabs must have at least two blocks */
3542   BLOCKVECTOR (s) = new_bvect (2);
3543   BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms);
3544   BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms);
3545   BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
3546     BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3547
3548   s->free_code = free_linetable;
3549
3550   return (s);
3551 }
3552
3553 /* Allocate a new partial_symtab NAME */
3554
3555 static struct partial_symtab *
3556 new_psymtab (name, objfile, section_offsets)
3557      char *name;
3558      struct objfile *objfile;
3559      struct section_offsets *section_offsets;
3560 {
3561   struct partial_symtab *psymtab;
3562
3563   psymtab = allocate_psymtab (name, objfile);
3564   psymtab->section_offsets = section_offsets;
3565
3566   /* Keep a backpointer to the file's symbols */
3567
3568   psymtab->read_symtab_private = ((char *)
3569                                   obstack_alloc (&objfile->psymbol_obstack,
3570                                                  sizeof (struct symloc)));
3571   memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc));
3572   CUR_BFD (psymtab) = cur_bfd;
3573   DEBUG_SWAP (psymtab) = debug_swap;
3574   DEBUG_INFO (psymtab) = debug_info;
3575   PENDING_LIST (psymtab) = pending_list;
3576
3577   /* The way to turn this into a symtab is to call... */
3578   psymtab->read_symtab = mdebug_psymtab_to_symtab;
3579   return (psymtab);
3580 }
3581
3582
3583 /* Allocate a linetable array of the given SIZE.  Since the struct
3584    already includes one item, we subtract one when calculating the
3585    proper size to allocate.  */
3586
3587 static struct linetable *
3588 new_linetable (size)
3589      int size;
3590 {
3591   struct linetable *l;
3592
3593   size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
3594   l = (struct linetable *) xmalloc (size);
3595   l->nitems = 0;
3596   return l;
3597 }
3598
3599 /* Oops, too big. Shrink it.  This was important with the 2.4 linetables,
3600    I am not so sure about the 3.4 ones.
3601
3602    Since the struct linetable already includes one item, we subtract one when
3603    calculating the proper size to allocate.  */
3604
3605 static struct linetable *
3606 shrink_linetable (lt)
3607      struct linetable *lt;
3608 {
3609
3610   return (struct linetable *) xrealloc ((PTR) lt,
3611                                         (sizeof (struct linetable)
3612                                          + ((lt->nitems - 1)
3613                                             * sizeof (lt->item))));
3614 }
3615
3616 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
3617
3618 static struct blockvector *
3619 new_bvect (nblocks)
3620      int nblocks;
3621 {
3622   struct blockvector *bv;
3623   int size;
3624
3625   size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
3626   bv = (struct blockvector *) xzalloc (size);
3627
3628   BLOCKVECTOR_NBLOCKS (bv) = nblocks;
3629
3630   return bv;
3631 }
3632
3633 /* Allocate and zero a new block of MAXSYMS symbols */
3634
3635 static struct block *
3636 new_block (maxsyms)
3637      int maxsyms;
3638 {
3639   int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *);
3640
3641   return (struct block *) xzalloc (size);
3642 }
3643
3644 /* Ooops, too big. Shrink block B in symtab S to its minimal size.
3645    Shrink_block can also be used by add_symbol to grow a block.  */
3646
3647 static struct block *
3648 shrink_block (b, s)
3649      struct block *b;
3650      struct symtab *s;
3651 {
3652   struct block *new;
3653   struct blockvector *bv = BLOCKVECTOR (s);
3654   int i;
3655
3656   /* Just reallocate it and fix references to the old one */
3657
3658   new = (struct block *) xrealloc ((PTR) b,
3659                                    (sizeof (struct block)
3660                                     + ((BLOCK_NSYMS (b) - 1)
3661                                        * sizeof (struct symbol *))));
3662
3663   /* Should chase pointers to old one.  Fortunately, that`s just
3664            the block`s function and inferior blocks */
3665   if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b)
3666     SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new;
3667   for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
3668     if (BLOCKVECTOR_BLOCK (bv, i) == b)
3669       BLOCKVECTOR_BLOCK (bv, i) = new;
3670     else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b)
3671       BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new;
3672   return new;
3673 }
3674
3675 /* Create a new symbol with printname NAME */
3676
3677 static struct symbol *
3678 new_symbol (name)
3679      char *name;
3680 {
3681   struct symbol *s = ((struct symbol *)
3682                       obstack_alloc (&current_objfile->symbol_obstack,
3683                                      sizeof (struct symbol)));
3684
3685   memset ((PTR) s, 0, sizeof (*s));
3686   SYMBOL_NAME (s) = name;
3687   SYMBOL_LANGUAGE (s) = psymtab_language;
3688   SYMBOL_INIT_DEMANGLED_NAME (s, &current_objfile->symbol_obstack);
3689   return s;
3690 }
3691
3692 /* Create a new type with printname NAME */
3693
3694 static struct type *
3695 new_type (name)
3696      char *name;
3697 {
3698   struct type *t;
3699
3700   t = alloc_type (current_objfile);
3701   TYPE_NAME (t) = name;
3702   TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
3703   return t;
3704 }
3705 \f
3706 /* Read ECOFF debugging information from a BFD section.  This is
3707    called from elfread.c.  It parses the section into a
3708    ecoff_debug_info struct, and then lets the rest of the file handle
3709    it as normal.  */
3710
3711 void
3712 elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets)
3713      struct objfile *objfile;
3714      const struct ecoff_debug_swap *swap;
3715      asection *sec;
3716      struct section_offsets *section_offsets;
3717 {
3718   bfd *abfd = objfile->obfd;
3719   char *buf;
3720   struct ecoff_debug_info *info;
3721
3722   buf = alloca (swap->external_hdr_size);
3723   if (bfd_get_section_contents (abfd, sec, buf, (file_ptr) 0,
3724                                 swap->external_hdr_size) == false)
3725     perror_with_name (bfd_get_filename (abfd));
3726
3727   info = ((struct ecoff_debug_info *)
3728           obstack_alloc (&objfile->psymbol_obstack,
3729                          sizeof (struct ecoff_debug_info)));
3730
3731   (*swap->swap_hdr_in) (abfd, buf, &info->symbolic_header);
3732
3733   /* The offsets in symbolic_header are file offsets, not section
3734      offsets.  Strangely, on Irix 5 the information is not entirely
3735      within the .mdebug section.  There are parts of an executable
3736      file which are not within any ELF section at all.  This means
3737      that we must read the information using bfd_read. */
3738
3739 #define READ(ptr, count, off, size, type)                               \
3740   do                                                                    \
3741     {                                                                   \
3742       if (info->symbolic_header.count == 0)                             \
3743         info->ptr = (type) NULL;                                        \
3744       else                                                              \
3745         {                                                               \
3746           info->ptr = ((type)                                           \
3747                        obstack_alloc (&objfile->psymbol_obstack,        \
3748                                       (info->symbolic_header.count      \
3749                                        * size)));                       \
3750           if (bfd_seek (abfd, info->symbolic_header.off, SEEK_SET) < 0  \
3751               || (bfd_read ((PTR) info->ptr, size,                      \
3752                             info->symbolic_header.count, abfd)          \
3753                   != info->symbolic_header.count * size))               \
3754             perror_with_name (bfd_get_filename (abfd));                 \
3755         }                                                               \
3756     }                                                                   \
3757   while (0)
3758
3759   READ (line, cbLine, cbLineOffset, sizeof (unsigned char), unsigned char *);
3760   READ (external_dnr, idnMax, cbDnOffset, swap->external_dnr_size, PTR);
3761   READ (external_pdr, ipdMax, cbPdOffset, swap->external_pdr_size, PTR);
3762   READ (external_sym, isymMax, cbSymOffset, swap->external_sym_size, PTR);
3763   READ (external_opt, ioptMax, cbOptOffset, swap->external_opt_size, PTR);
3764   READ (external_aux, iauxMax, cbAuxOffset, sizeof (union aux_ext),
3765         union aux_ext *);
3766   READ (ss, issMax, cbSsOffset, sizeof (char), char *);
3767   READ (ssext, issExtMax, cbSsExtOffset, sizeof (char), char *);
3768   READ (external_fdr, ifdMax, cbFdOffset, swap->external_fdr_size, PTR);
3769   READ (external_rfd, crfd, cbRfdOffset, swap->external_rfd_size, PTR);
3770   READ (external_ext, iextMax, cbExtOffset, swap->external_ext_size, PTR);
3771
3772 #undef READ
3773
3774   info->fdr = NULL;
3775
3776   mdebug_build_psymtabs (objfile, swap, info, section_offsets);
3777 }
3778 \f
3779
3780 /* Things used for calling functions in the inferior.
3781    These functions are exported to our companion
3782    mips-tdep.c file and are here because they play
3783    with the symbol-table explicitly. */
3784
3785 /* Sigtramp: make sure we have all the necessary information
3786    about the signal trampoline code. Since the official code
3787    from MIPS does not do so, we make up that information ourselves.
3788    If they fix the library (unlikely) this code will neutralize itself. */
3789
3790 /* FIXME: This function is called only by mips-tdep.c.  It needs to be
3791    here because it calls functions defined in this file, but perhaps
3792    this could be handled in a better way.  */
3793
3794 void
3795 fixup_sigtramp ()
3796 {
3797   struct symbol *s;
3798   struct symtab *st;
3799   struct block *b, *b0 = NULL;
3800
3801   sigtramp_address = -1;
3802
3803   /* We have to handle the following cases here:
3804      a) The Mips library has a sigtramp label within sigvec.
3805      b) Irix has a _sigtramp which we want to use, but it also has sigvec.  */
3806   s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL);
3807   if (s != 0)
3808     {
3809       b0 = SYMBOL_BLOCK_VALUE (s);
3810       s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL);
3811     }
3812   if (s == 0)
3813     {
3814       /* No sigvec or no sigtramp inside sigvec, try _sigtramp.  */
3815       s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL);
3816     }
3817
3818   /* But maybe this program uses its own version of sigvec */
3819   if (s == 0)
3820     return;
3821
3822   /* Did we or MIPSco fix the library ? */
3823   if (SYMBOL_CLASS (s) == LOC_BLOCK)
3824     {
3825       sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
3826       sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
3827       return;
3828     }
3829
3830   sigtramp_address = SYMBOL_VALUE (s);
3831   sigtramp_end = sigtramp_address + 0x88;       /* black magic */
3832
3833   /* But what symtab does it live in ? */
3834   st = find_pc_symtab (SYMBOL_VALUE (s));
3835
3836   /*
3837    * Ok, there goes the fix: turn it into a procedure, with all the
3838    * needed info.  Note we make it a nested procedure of sigvec,
3839    * which is the way the (assembly) code is actually written.
3840    */
3841   SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
3842   SYMBOL_CLASS (s) = LOC_BLOCK;
3843   SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
3844                                st->objfile);
3845   TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = builtin_type_void;
3846
3847   /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
3848   b = new_block (1);
3849   SYMBOL_BLOCK_VALUE (s) = b;
3850   BLOCK_START (b) = sigtramp_address;
3851   BLOCK_END (b) = sigtramp_end;
3852   BLOCK_FUNCTION (b) = s;
3853   BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
3854   add_block (b, st);
3855   sort_blocks (st);
3856
3857   /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
3858   {
3859     struct mips_extra_func_info *e =
3860       ((struct mips_extra_func_info *)
3861        xzalloc (sizeof (struct mips_extra_func_info)));
3862
3863     e->numargs = 0;             /* the kernel thinks otherwise */
3864     e->pdr.frameoffset = 32;
3865     e->pdr.framereg = SP_REGNUM;
3866     /* Note that setting pcreg is no longer strictly necessary as
3867        mips_frame_saved_pc is now aware of signal handler frames.  */
3868     e->pdr.pcreg = PC_REGNUM;
3869     e->pdr.regmask = -2;
3870     /* Offset to saved r31, in the sigtramp case the saved registers
3871        are above the frame in the sigcontext.
3872        We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
3873        32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
3874        and 32 * 4 bytes for the floating point registers.  */
3875     e->pdr.regoffset = 4 + 12 + 31 * 4;
3876     e->pdr.fregmask = -1;
3877     /* Offset to saved f30 (first saved *double* register).  */
3878     e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
3879     e->pdr.isym = (long) s;
3880     e->pdr.adr = sigtramp_address;
3881
3882     current_objfile = st->objfile;      /* Keep new_symbol happy */
3883     s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3884     SYMBOL_VALUE (s) = (long) e;
3885     SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
3886     SYMBOL_CLASS (s) = LOC_CONST;
3887     SYMBOL_TYPE (s) = builtin_type_void;
3888     current_objfile = NULL;
3889   }
3890
3891   BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s;
3892 }
3893
3894 void
3895 _initialize_mdebugread ()
3896 {
3897   /* Missing basic types */
3898
3899   /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
3900      FIXME.  */
3901   mdebug_type_string =
3902     init_type (TYPE_CODE_STRING,
3903                TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3904                0, "string",
3905                (struct objfile *) NULL);
3906
3907   mdebug_type_complex =
3908     init_type (TYPE_CODE_ERROR,
3909                TARGET_COMPLEX_BIT / TARGET_CHAR_BIT,
3910                0, "complex",
3911                (struct objfile *) NULL);
3912   mdebug_type_double_complex =
3913     init_type (TYPE_CODE_ERROR,
3914                TARGET_DOUBLE_COMPLEX_BIT / TARGET_CHAR_BIT,
3915                0, "double complex",
3916                (struct objfile *) NULL);
3917
3918   /* We use TYPE_CODE_INT to print these as integers.  Does this do any
3919      good?  Would we be better off with TYPE_CODE_ERROR?  Should
3920      TYPE_CODE_ERROR print things in hex if it knows the size?  */
3921   mdebug_type_fixed_dec =
3922     init_type (TYPE_CODE_INT,
3923                TARGET_INT_BIT / TARGET_CHAR_BIT,
3924                0, "fixed decimal",
3925                (struct objfile *) NULL);
3926
3927   mdebug_type_float_dec =
3928     init_type (TYPE_CODE_ERROR,
3929                TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3930                0, "floating decimal",
3931                (struct objfile *) NULL);
3932 }