2004-01-17 Andrew Cagney <cagney@redhat.com>
[external/binutils.git] / gdb / mdebugread.c
1 /* Read a symbol table in ECOFF format (Third-Eye).
2
3    Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4    1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5    Foundation, Inc.
6
7    Original version contributed by Alessandro Forin (af@cs.cmu.edu) at
8    CMU.  Major work by Per Bothner, John Gilmore and Ian Lance Taylor
9    at Cygnus Support.
10
11    This file is part of GDB.
12
13    This program is free software; you can redistribute it and/or modify
14    it under the terms of the GNU General Public License as published by
15    the Free Software Foundation; either version 2 of the License, or
16    (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21    GNU General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 59 Temple Place - Suite 330,
26    Boston, MA 02111-1307, USA.  */
27
28 /* This module provides the function mdebug_build_psymtabs.  It reads
29    ECOFF debugging information into partial symbol tables.  The
30    debugging information is read from two structures.  A struct
31    ecoff_debug_swap includes the sizes of each ECOFF structure and
32    swapping routines; these are fixed for a particular target.  A
33    struct ecoff_debug_info points to the debugging information for a
34    particular object file.
35
36    ECOFF symbol tables are mostly written in the byte order of the
37    target machine.  However, one section of the table (the auxiliary
38    symbol information) is written in the host byte order.  There is a
39    bit in the other symbol info which describes which host byte order
40    was used.  ECOFF thereby takes the trophy from Intel `b.out' for
41    the most brain-dead adaptation of a file format to byte order.
42
43    This module can read all four of the known byte-order combinations,
44    on any type of host.  */
45
46 #include "defs.h"
47 #include "symtab.h"
48 #include "gdbtypes.h"
49 #include "gdbcore.h"
50 #include "symfile.h"
51 #include "objfiles.h"
52 #include "gdb_obstack.h"
53 #include "buildsym.h"
54 #include "stabsread.h"
55 #include "complaints.h"
56 #include "demangle.h"
57 #include "gdb_assert.h"
58 #include "block.h"
59 #include "dictionary.h"
60
61 /* These are needed if the tm.h file does not contain the necessary
62    mips specific definitions.  */
63
64 #ifndef MIPS_EFI_SYMBOL_NAME
65 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
66 extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR);
67 #include "coff/sym.h"
68 #include "coff/symconst.h"
69 typedef struct mips_extra_func_info
70   {
71     long numargs;
72     PDR pdr;
73   }
74  *mips_extra_func_info_t;
75 #ifndef RA_REGNUM
76 #define RA_REGNUM 0
77 #endif
78 #endif
79
80 #ifdef USG
81 #include <sys/types.h>
82 #endif
83
84 #include "gdb_stat.h"
85 #include "gdb_string.h"
86
87 #include "bfd.h"
88
89 #include "coff/ecoff.h"         /* COFF-like aspects of ecoff files */
90
91 #include "libaout.h"            /* Private BFD a.out information.  */
92 #include "aout/aout64.h"
93 #include "aout/stab_gnu.h"      /* STABS information */
94
95 #include "expression.h"
96 #include "language.h"           /* For local_hex_string() */
97
98 extern void _initialize_mdebugread (void);
99
100 /* Provide a way to test if we have both ECOFF and ELF symbol tables.  
101    We use this define in order to know whether we should override a 
102    symbol's ECOFF section with its ELF section.  This is necessary in 
103    case the symbol's ELF section could not be represented in ECOFF.  */
104 #define ECOFF_IN_ELF(bfd) (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
105                            && bfd_get_section_by_name (bfd, ".mdebug") != NULL)
106 \f
107
108 /* We put a pointer to this structure in the read_symtab_private field
109    of the psymtab.  */
110
111 struct symloc
112   {
113     /* Index of the FDR that this psymtab represents.  */
114     int fdr_idx;
115     /* The BFD that the psymtab was created from.  */
116     bfd *cur_bfd;
117     const struct ecoff_debug_swap *debug_swap;
118     struct ecoff_debug_info *debug_info;
119     struct mdebug_pending **pending_list;
120     /* Pointer to external symbols for this file.  */
121     EXTR *extern_tab;
122     /* Size of extern_tab.  */
123     int extern_count;
124     enum language pst_language;
125   };
126
127 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
128 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
129 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
130 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
131 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
132 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
133
134 #define SC_IS_TEXT(sc) ((sc) == scText \
135                    || (sc) == scRConst \
136                    || (sc) == scInit \
137                    || (sc) == scFini)
138 #define SC_IS_DATA(sc) ((sc) == scData \
139                    || (sc) == scSData \
140                    || (sc) == scRData \
141                    || (sc) == scPData \
142                    || (sc) == scXData)
143 #define SC_IS_COMMON(sc) ((sc) == scCommon || (sc) == scSCommon)
144 #define SC_IS_BSS(sc) ((sc) == scBss)
145 #define SC_IS_SBSS(sc) ((sc) == scSBss)
146 #define SC_IS_UNDEF(sc) ((sc) == scUndefined || (sc) == scSUndefined)
147 \f
148 /* Various complaints about symbol reading that don't abort the process */
149 static void
150 index_complaint (const char *arg1)
151 {
152   complaint (&symfile_complaints, "bad aux index at symbol %s", arg1);
153 }
154
155 static void
156 unknown_ext_complaint (const char *arg1)
157 {
158   complaint (&symfile_complaints, "unknown external symbol %s", arg1);
159 }
160
161 static void
162 basic_type_complaint (int arg1, const char *arg2)
163 {
164   complaint (&symfile_complaints, "cannot map ECOFF basic type 0x%x for %s",
165              arg1, arg2);
166 }
167
168 static void
169 bad_tag_guess_complaint (const char *arg1)
170 {
171   complaint (&symfile_complaints, "guessed tag type of %s incorrectly", arg1);
172 }
173
174 static void
175 bad_rfd_entry_complaint (const char *arg1, int arg2, int arg3)
176 {
177   complaint (&symfile_complaints, "bad rfd entry for %s: file %d, index %d",
178              arg1, arg2, arg3);
179 }
180
181 static void
182 unexpected_type_code_complaint (const char *arg1)
183 {
184   complaint (&symfile_complaints, "unexpected type code for %s", arg1);
185 }
186
187 /* Macros and extra defs */
188
189 /* Puns: hard to find whether -g was used and how */
190
191 #define MIN_GLEVEL GLEVEL_0
192 #define compare_glevel(a,b)                                     \
193         (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) :                 \
194          ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
195 \f
196 /* Things that really are local to this module */
197
198 /* Remember what we deduced to be the source language of this psymtab. */
199
200 static enum language psymtab_language = language_unknown;
201
202 /* Current BFD.  */
203
204 static bfd *cur_bfd;
205
206 /* How to parse debugging information for CUR_BFD.  */
207
208 static const struct ecoff_debug_swap *debug_swap;
209
210 /* Pointers to debugging information for CUR_BFD.  */
211
212 static struct ecoff_debug_info *debug_info;
213
214 /* Pointer to current file decriptor record, and its index */
215
216 static FDR *cur_fdr;
217 static int cur_fd;
218
219 /* Index of current symbol */
220
221 static int cur_sdx;
222
223 /* Note how much "debuggable" this image is.  We would like
224    to see at least one FDR with full symbols */
225
226 static int max_gdbinfo;
227 static int max_glevel;
228
229 /* When examining .o files, report on undefined symbols */
230
231 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
232
233 /* Pseudo symbol to use when putting stabs into the symbol table.  */
234
235 static char stabs_symbol[] = STABS_SYMBOL;
236
237 /* Types corresponding to mdebug format bt* basic types.  */
238
239 static struct type *mdebug_type_void;
240 static struct type *mdebug_type_char;
241 static struct type *mdebug_type_short;
242 static struct type *mdebug_type_int_32;
243 #define mdebug_type_int mdebug_type_int_32
244 static struct type *mdebug_type_int_64;
245 static struct type *mdebug_type_long_32;
246 static struct type *mdebug_type_long_64;
247 static struct type *mdebug_type_long_long_64;
248 static struct type *mdebug_type_unsigned_char;
249 static struct type *mdebug_type_unsigned_short;
250 static struct type *mdebug_type_unsigned_int_32;
251 static struct type *mdebug_type_unsigned_int_64;
252 static struct type *mdebug_type_unsigned_long_32;
253 static struct type *mdebug_type_unsigned_long_64;
254 static struct type *mdebug_type_unsigned_long_long_64;
255 static struct type *mdebug_type_adr_32;
256 static struct type *mdebug_type_adr_64;
257 static struct type *mdebug_type_float;
258 static struct type *mdebug_type_double;
259 static struct type *mdebug_type_complex;
260 static struct type *mdebug_type_double_complex;
261 static struct type *mdebug_type_fixed_dec;
262 static struct type *mdebug_type_float_dec;
263 static struct type *mdebug_type_string;
264
265 /* Types for symbols from files compiled without debugging info.  */
266
267 static struct type *nodebug_func_symbol_type;
268 static struct type *nodebug_var_symbol_type;
269
270 /* Nonzero if we have seen ecoff debugging info for a file.  */
271
272 static int found_ecoff_debugging_info;
273
274 /* Forward declarations */
275
276 static int upgrade_type (int, struct type **, int, union aux_ext *,
277                          int, char *);
278
279 static void parse_partial_symbols (struct objfile *);
280
281 static int has_opaque_xref (FDR *, SYMR *);
282
283 static int cross_ref (int, union aux_ext *, struct type **, enum type_code,
284                       char **, int, char *);
285
286 static struct symbol *new_symbol (char *);
287
288 static struct type *new_type (char *);
289
290 enum block_type { FUNCTION_BLOCK, NON_FUNCTION_BLOCK };
291
292 static struct block *new_block (enum block_type);
293
294 static struct symtab *new_symtab (char *, int, struct objfile *);
295
296 static struct linetable *new_linetable (int);
297
298 static struct blockvector *new_bvect (int);
299
300 static struct type *parse_type (int, union aux_ext *, unsigned int, int *,
301                                 int, char *);
302
303 static struct symbol *mylookup_symbol (char *, struct block *, domain_enum,
304                                        enum address_class);
305
306 static void sort_blocks (struct symtab *);
307
308 static struct partial_symtab *new_psymtab (char *, struct objfile *);
309
310 static void psymtab_to_symtab_1 (struct partial_symtab *, char *);
311
312 static void add_block (struct block *, struct symtab *);
313
314 static void add_symbol (struct symbol *, struct block *);
315
316 static int add_line (struct linetable *, int, CORE_ADDR, int);
317
318 static struct linetable *shrink_linetable (struct linetable *);
319
320 static void handle_psymbol_enumerators (struct objfile *, FDR *, int,
321                                         CORE_ADDR);
322
323 static char *mdebug_next_symbol_text (struct objfile *);
324 \f
325 /* Address bounds for the signal trampoline in inferior, if any */
326
327 CORE_ADDR sigtramp_address, sigtramp_end;
328
329 /* Allocate zeroed memory */
330
331 static void *
332 xzalloc (unsigned int size)
333 {
334   void *p = xmalloc (size);
335
336   memset (p, 0, size);
337   return p;
338 }
339
340 /* Exported procedure: Builds a symtab from the PST partial one.
341    Restores the environment in effect when PST was created, delegates
342    most of the work to an ancillary procedure, and sorts
343    and reorders the symtab list at the end */
344
345 static void
346 mdebug_psymtab_to_symtab (struct partial_symtab *pst)
347 {
348
349   if (!pst)
350     return;
351
352   if (info_verbose)
353     {
354       printf_filtered ("Reading in symbols for %s...", pst->filename);
355       gdb_flush (gdb_stdout);
356     }
357
358   next_symbol_text_func = mdebug_next_symbol_text;
359
360   psymtab_to_symtab_1 (pst, pst->filename);
361
362   /* Match with global symbols.  This only needs to be done once,
363      after all of the symtabs and dependencies have been read in.   */
364   scan_file_globals (pst->objfile);
365
366   if (info_verbose)
367     printf_filtered ("done.\n");
368 }
369 \f
370 /* File-level interface functions */
371
372 /* Find a file descriptor given its index RF relative to a file CF */
373
374 static FDR *
375 get_rfd (int cf, int rf)
376 {
377   FDR *fdrs;
378   FDR *f;
379   RFDT rfd;
380
381   fdrs = debug_info->fdr;
382   f = fdrs + cf;
383   /* Object files do not have the RFD table, all refs are absolute */
384   if (f->rfdBase == 0)
385     return fdrs + rf;
386   (*debug_swap->swap_rfd_in) (cur_bfd,
387                               ((char *) debug_info->external_rfd
388                                + ((f->rfdBase + rf)
389                                   * debug_swap->external_rfd_size)),
390                               &rfd);
391   return fdrs + rfd;
392 }
393
394 /* Return a safer print NAME for a file descriptor */
395
396 static char *
397 fdr_name (FDR *f)
398 {
399   if (f->rss == -1)
400     return "<stripped file>";
401   if (f->rss == 0)
402     return "<NFY>";
403   return debug_info->ss + f->issBase + f->rss;
404 }
405
406
407 /* Read in and parse the symtab of the file OBJFILE.  Symbols from
408    different sections are relocated via the SECTION_OFFSETS.  */
409
410 void
411 mdebug_build_psymtabs (struct objfile *objfile,
412                        const struct ecoff_debug_swap *swap,
413                        struct ecoff_debug_info *info)
414 {
415   cur_bfd = objfile->obfd;
416   debug_swap = swap;
417   debug_info = info;
418
419   stabsread_new_init ();
420   buildsym_new_init ();
421   free_header_files ();
422   init_header_files ();
423         
424   /* Make sure all the FDR information is swapped in.  */
425   if (info->fdr == (FDR *) NULL)
426     {
427       char *fdr_src;
428       char *fdr_end;
429       FDR *fdr_ptr;
430
431       info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack,
432                                          (info->symbolic_header.ifdMax
433                                           * sizeof (FDR)));
434       fdr_src = info->external_fdr;
435       fdr_end = (fdr_src
436                  + info->symbolic_header.ifdMax * swap->external_fdr_size);
437       fdr_ptr = info->fdr;
438       for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
439         (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
440     }
441
442   parse_partial_symbols (objfile);
443
444 #if 0
445   /* Check to make sure file was compiled with -g.  If not, warn the
446      user of this limitation.  */
447   if (compare_glevel (max_glevel, GLEVEL_2) < 0)
448     {
449       if (max_gdbinfo == 0)
450         printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
451                            objfile->name);
452       printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
453       gdb_flush (gdb_stdout);
454     }
455 #endif
456 }
457 \f
458 /* Local utilities */
459
460 /* Map of FDR indexes to partial symtabs */
461
462 struct pst_map
463 {
464   struct partial_symtab *pst;   /* the psymtab proper */
465   long n_globals;               /* exported globals (external symbols) */
466   long globals_offset;          /* cumulative */
467 };
468
469
470 /* Utility stack, used to nest procedures and blocks properly.
471    It is a doubly linked list, to avoid too many alloc/free.
472    Since we might need it quite a few times it is NOT deallocated
473    after use. */
474
475 static struct parse_stack
476   {
477     struct parse_stack *next, *prev;
478     struct symtab *cur_st;      /* Current symtab. */
479     struct block *cur_block;    /* Block in it. */
480
481     /* What are we parsing.  stFile, or stBlock are for files and
482        blocks.  stProc or stStaticProc means we have seen the start of a
483        procedure, but not the start of the block within in.  When we see
484        the start of that block, we change it to stNil, without pushing a
485        new block, i.e. stNil means both a procedure and a block.  */
486
487     int blocktype;
488
489     struct type *cur_type;      /* Type we parse fields for. */
490     int cur_field;              /* Field number in cur_type. */
491     CORE_ADDR procadr;          /* Start addres of this procedure */
492     int numargs;                /* Its argument count */
493   }
494
495  *top_stack;                    /* Top stack ptr */
496
497
498 /* Enter a new lexical context */
499
500 static void
501 push_parse_stack (void)
502 {
503   struct parse_stack *new;
504
505   /* Reuse frames if possible */
506   if (top_stack && top_stack->prev)
507     new = top_stack->prev;
508   else
509     new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
510   /* Initialize new frame with previous content */
511   if (top_stack)
512     {
513       struct parse_stack *prev = new->prev;
514
515       *new = *top_stack;
516       top_stack->prev = new;
517       new->prev = prev;
518       new->next = top_stack;
519     }
520   top_stack = new;
521 }
522
523 /* Exit a lexical context */
524
525 static void
526 pop_parse_stack (void)
527 {
528   if (!top_stack)
529     return;
530   if (top_stack->next)
531     top_stack = top_stack->next;
532 }
533
534
535 /* Cross-references might be to things we haven't looked at
536    yet, e.g. type references.  To avoid too many type
537    duplications we keep a quick fixup table, an array
538    of lists of references indexed by file descriptor */
539
540 struct mdebug_pending
541 {
542   struct mdebug_pending *next;  /* link */
543   char *s;                      /* the unswapped symbol */
544   struct type *t;               /* its partial type descriptor */
545 };
546
547
548 /* The pending information is kept for an entire object file, and used
549    to be in the sym_private field.  I took it out when I split
550    mdebugread from mipsread, because this might not be the only type
551    of symbols read from an object file.  Instead, we allocate the
552    pending information table when we create the partial symbols, and
553    we store a pointer to the single table in each psymtab.  */
554
555 static struct mdebug_pending **pending_list;
556
557 /* Check whether we already saw symbol SH in file FH */
558
559 static struct mdebug_pending *
560 is_pending_symbol (FDR *fh, char *sh)
561 {
562   int f_idx = fh - debug_info->fdr;
563   struct mdebug_pending *p;
564
565   /* Linear search is ok, list is typically no more than 10 deep */
566   for (p = pending_list[f_idx]; p; p = p->next)
567     if (p->s == sh)
568       break;
569   return p;
570 }
571
572 /* Add a new symbol SH of type T */
573
574 static void
575 add_pending (FDR *fh, char *sh, struct type *t)
576 {
577   int f_idx = fh - debug_info->fdr;
578   struct mdebug_pending *p = is_pending_symbol (fh, sh);
579
580   /* Make sure we do not make duplicates */
581   if (!p)
582     {
583       p = ((struct mdebug_pending *)
584            obstack_alloc (&current_objfile->psymbol_obstack,
585                           sizeof (struct mdebug_pending)));
586       p->s = sh;
587       p->t = t;
588       p->next = pending_list[f_idx];
589       pending_list[f_idx] = p;
590     }
591 }
592 \f
593
594 /* Parsing Routines proper. */
595
596 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
597    For blocks, procedures and types we open a new lexical context.
598    This is basically just a big switch on the symbol's type.  Argument
599    AX is the base pointer of aux symbols for this file (fh->iauxBase).
600    EXT_SH points to the unswapped symbol, which is needed for struct,
601    union, etc., types; it is NULL for an EXTR.  BIGEND says whether
602    aux symbols are big-endian or little-endian.  Return count of
603    SYMR's handled (normally one).  */
604
605 static int
606 parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
607               struct section_offsets *section_offsets, struct objfile *objfile)
608 {
609   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
610   void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
611   char *name;
612   struct symbol *s;
613   struct block *b;
614   struct mdebug_pending *pend;
615   struct type *t;
616   struct field *f;
617   int count = 1;
618   enum address_class class;
619   TIR tir;
620   long svalue = sh->value;
621   int bitsize;
622
623   if (ext_sh == (char *) NULL)
624     name = debug_info->ssext + sh->iss;
625   else
626     name = debug_info->ss + cur_fdr->issBase + sh->iss;
627
628   switch (sh->sc)
629     {
630     case scText:
631     case scRConst:
632       /* Do not relocate relative values.
633          The value of a stEnd symbol is the displacement from the
634          corresponding start symbol value.
635          The value of a stBlock symbol is the displacement from the
636          procedure address.  */
637       if (sh->st != stEnd && sh->st != stBlock)
638         sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
639       break;
640     case scData:
641     case scSData:
642     case scRData:
643     case scPData:
644     case scXData:
645       sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
646       break;
647     case scBss:
648     case scSBss:
649       sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
650       break;
651     }
652
653   switch (sh->st)
654     {
655     case stNil:
656       break;
657
658     case stGlobal:              /* external symbol, goes into global block */
659       class = LOC_STATIC;
660       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
661                              GLOBAL_BLOCK);
662       s = new_symbol (name);
663       SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
664       goto data;
665
666     case stStatic:              /* static data, goes into current block. */
667       class = LOC_STATIC;
668       b = top_stack->cur_block;
669       s = new_symbol (name);
670       if (SC_IS_COMMON (sh->sc))
671         {
672           /* It is a FORTRAN common block.  At least for SGI Fortran the
673              address is not in the symbol; we need to fix it later in
674              scan_file_globals.  */
675           int bucket = hashname (DEPRECATED_SYMBOL_NAME (s));
676           SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
677           global_sym_chain[bucket] = s;
678         }
679       else
680         SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
681       goto data;
682
683     case stLocal:               /* local variable, goes into current block */
684       if (sh->sc == scRegister)
685         {
686           class = LOC_REGISTER;
687           svalue = ECOFF_REG_TO_REGNUM (svalue);
688         }
689       else
690         class = LOC_LOCAL;
691       b = top_stack->cur_block;
692       s = new_symbol (name);
693       SYMBOL_VALUE (s) = svalue;
694
695     data:                       /* Common code for symbols describing data */
696       SYMBOL_DOMAIN (s) = VAR_DOMAIN;
697       SYMBOL_CLASS (s) = class;
698       add_symbol (s, b);
699
700       /* Type could be missing if file is compiled without debugging info.  */
701       if (SC_IS_UNDEF (sh->sc)
702           || sh->sc == scNil || sh->index == indexNil)
703         SYMBOL_TYPE (s) = nodebug_var_symbol_type;
704       else
705         SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
706       /* Value of a data symbol is its memory address */
707       break;
708
709     case stParam:               /* arg to procedure, goes into current block */
710       max_gdbinfo++;
711       found_ecoff_debugging_info = 1;
712       top_stack->numargs++;
713
714       /* Special GNU C++ name.  */
715       if (is_cplus_marker (name[0]) && name[1] == 't' && name[2] == 0)
716         name = "this";          /* FIXME, not alloc'd in obstack */
717       s = new_symbol (name);
718
719       SYMBOL_DOMAIN (s) = VAR_DOMAIN;
720       switch (sh->sc)
721         {
722         case scRegister:
723           /* Pass by value in register.  */
724           SYMBOL_CLASS (s) = LOC_REGPARM;
725           svalue = ECOFF_REG_TO_REGNUM (svalue);
726           break;
727         case scVar:
728           /* Pass by reference on stack.  */
729           SYMBOL_CLASS (s) = LOC_REF_ARG;
730           break;
731         case scVarRegister:
732           /* Pass by reference in register.  */
733           SYMBOL_CLASS (s) = LOC_REGPARM_ADDR;
734           svalue = ECOFF_REG_TO_REGNUM (svalue);
735           break;
736         default:
737           /* Pass by value on stack.  */
738           SYMBOL_CLASS (s) = LOC_ARG;
739           break;
740         }
741       SYMBOL_VALUE (s) = svalue;
742       SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
743       add_symbol (s, top_stack->cur_block);
744       break;
745
746     case stLabel:               /* label, goes into current block */
747       s = new_symbol (name);
748       SYMBOL_DOMAIN (s) = VAR_DOMAIN;   /* so that it can be used */
749       SYMBOL_CLASS (s) = LOC_LABEL;     /* but not misused */
750       SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
751       SYMBOL_TYPE (s) = mdebug_type_int;
752       add_symbol (s, top_stack->cur_block);
753       break;
754
755     case stProc:                /* Procedure, usually goes into global block */
756     case stStaticProc:          /* Static procedure, goes into current block */
757       /* For stProc symbol records, we need to check the storage class
758          as well, as only (stProc, scText) entries represent "real"
759          procedures - See the Compaq document titled "Object File /
760          Symbol Table Format Specification" for more information.
761          If the storage class is not scText, we discard the whole block
762          of symbol records for this stProc.  */
763       if (sh->st == stProc && sh->sc != scText)
764         {
765           char *ext_tsym = ext_sh;
766           int keep_counting = 1;
767           SYMR tsym;
768
769           while (keep_counting)
770             {
771               ext_tsym += external_sym_size;
772               (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
773               count++;
774               switch (tsym.st)
775                 {
776                   case stParam:
777                     break;
778                   case stEnd:
779                     keep_counting = 0;
780                     break;
781                   default:
782                     complaint (&symfile_complaints,
783                                "unknown symbol type 0x%x", sh->st);
784                     break;
785                 }
786             }
787           break;
788         }
789       s = new_symbol (name);
790       SYMBOL_DOMAIN (s) = VAR_DOMAIN;
791       SYMBOL_CLASS (s) = LOC_BLOCK;
792       /* Type of the return value */
793       if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
794         t = mdebug_type_int;
795       else
796         {
797           t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
798           if (strcmp (name, "malloc") == 0
799               && TYPE_CODE (t) == TYPE_CODE_VOID)
800             {
801               /* I don't know why, but, at least under Alpha GNU/Linux,
802                  when linking against a malloc without debugging
803                  symbols, its read as a function returning void---this
804                  is bad because it means we cannot call functions with
805                  string arguments interactively; i.e., "call
806                  printf("howdy\n")" would fail with the error message
807                  "program has no memory available".  To avoid this, we
808                  patch up the type and make it void*
809                  instead. (davidm@azstarnet.com)
810                */
811               t = make_pointer_type (t, NULL);
812             }
813         }
814       b = top_stack->cur_block;
815       if (sh->st == stProc)
816         {
817           struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
818           /* The next test should normally be true, but provides a
819              hook for nested functions (which we don't want to make
820              global). */
821           if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
822             b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
823           /* Irix 5 sometimes has duplicate names for the same
824              function.  We want to add such names up at the global
825              level, not as a nested function.  */
826           else if (sh->value == top_stack->procadr)
827             b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
828         }
829       add_symbol (s, b);
830
831       /* Make a type for the procedure itself */
832       SYMBOL_TYPE (s) = lookup_function_type (t);
833
834       /* All functions in C++ have prototypes.  For C we don't have enough
835          information in the debug info.  */
836       if (SYMBOL_LANGUAGE (s) == language_cplus)
837         TYPE_FLAGS (SYMBOL_TYPE (s)) |= TYPE_FLAG_PROTOTYPED;
838
839       /* Create and enter a new lexical context */
840       b = new_block (FUNCTION_BLOCK);
841       SYMBOL_BLOCK_VALUE (s) = b;
842       BLOCK_FUNCTION (b) = s;
843       BLOCK_START (b) = BLOCK_END (b) = sh->value;
844       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
845       add_block (b, top_stack->cur_st);
846
847       /* Not if we only have partial info */
848       if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
849         break;
850
851       push_parse_stack ();
852       top_stack->cur_block = b;
853       top_stack->blocktype = sh->st;
854       top_stack->cur_type = SYMBOL_TYPE (s);
855       top_stack->cur_field = -1;
856       top_stack->procadr = sh->value;
857       top_stack->numargs = 0;
858       break;
859
860       /* Beginning of code for structure, union, and enum definitions.
861          They all share a common set of local variables, defined here.  */
862       {
863         enum type_code type_code;
864         char *ext_tsym;
865         int nfields;
866         long max_value;
867         struct field *f;
868
869     case stStruct:              /* Start a block defining a struct type */
870         type_code = TYPE_CODE_STRUCT;
871         goto structured_common;
872
873     case stUnion:               /* Start a block defining a union type */
874         type_code = TYPE_CODE_UNION;
875         goto structured_common;
876
877     case stEnum:                /* Start a block defining an enum type */
878         type_code = TYPE_CODE_ENUM;
879         goto structured_common;
880
881     case stBlock:               /* Either a lexical block, or some type */
882         if (sh->sc != scInfo && !SC_IS_COMMON (sh->sc))
883           goto case_stBlock_code;       /* Lexical block */
884
885         type_code = TYPE_CODE_UNDEF;    /* We have a type.  */
886
887         /* Common code for handling struct, union, enum, and/or as-yet-
888            unknown-type blocks of info about structured data.  `type_code'
889            has been set to the proper TYPE_CODE, if we know it.  */
890       structured_common:
891         found_ecoff_debugging_info = 1;
892         push_parse_stack ();
893         top_stack->blocktype = stBlock;
894
895         /* First count the number of fields and the highest value. */
896         nfields = 0;
897         max_value = 0;
898         for (ext_tsym = ext_sh + external_sym_size;
899              ;
900              ext_tsym += external_sym_size)
901           {
902             SYMR tsym;
903
904             (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
905
906             switch (tsym.st)
907               {
908               case stEnd:
909                 /* C++ encodes class types as structures where there the
910                    methods are encoded as stProc. The scope of stProc
911                    symbols also ends with stEnd, thus creating a risk of
912                    taking the wrong stEnd symbol record as the end of
913                    the current struct, which would cause GDB to undercount
914                    the real number of fields in this struct.  To make sure
915                    we really reached the right stEnd symbol record, we
916                    check the associated name, and match it against the
917                    struct name.  Since method names are mangled while
918                    the class name is not, there is no risk of having a
919                    method whose name is identical to the class name
920                    (in particular constructor method names are different
921                    from the class name).  There is therefore no risk that
922                    this check stops the count on the StEnd of a method.
923                    
924                    Also, assume that we're really at the end when tsym.iss
925                    is 0 (issNull).  */
926                 if (tsym.iss == issNull
927                     || strcmp (debug_info->ss + cur_fdr->issBase + tsym.iss,
928                                name) == 0)
929                   goto end_of_fields;
930                 break;
931
932               case stMember:
933                 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
934                   {
935                     /* If the type of the member is Nil (or Void),
936                        without qualifiers, assume the tag is an
937                        enumeration.
938                        Alpha cc -migrate enums are recognized by a zero
939                        index and a zero symbol value.
940                        DU 4.0 cc enums are recognized by a member type of
941                        btEnum without qualifiers and a zero symbol value.  */
942                     if (tsym.index == indexNil
943                         || (tsym.index == 0 && sh->value == 0))
944                       type_code = TYPE_CODE_ENUM;
945                     else
946                       {
947                         (*debug_swap->swap_tir_in) (bigend,
948                                                     &ax[tsym.index].a_ti,
949                                                     &tir);
950                         if ((tir.bt == btNil || tir.bt == btVoid
951                              || (tir.bt == btEnum && sh->value == 0))
952                             && tir.tq0 == tqNil)
953                           type_code = TYPE_CODE_ENUM;
954                       }
955                   }
956                 nfields++;
957                 if (tsym.value > max_value)
958                   max_value = tsym.value;
959                 break;
960
961               case stBlock:
962               case stUnion:
963               case stEnum:
964               case stStruct:
965                 {
966 #if 0
967                   /* This is a no-op; is it trying to tell us something
968                      we should be checking?  */
969                   if (tsym.sc == scVariant);    /*UNIMPLEMENTED */
970 #endif
971                   if (tsym.index != 0)
972                     {
973                       /* This is something like a struct within a
974                          struct.  Skip over the fields of the inner
975                          struct.  The -1 is because the for loop will
976                          increment ext_tsym.  */
977                       ext_tsym = ((char *) debug_info->external_sym
978                                   + ((cur_fdr->isymBase + tsym.index - 1)
979                                      * external_sym_size));
980                     }
981                 }
982                 break;
983
984               case stTypedef:
985                 /* mips cc puts out a typedef for struct x if it is not yet
986                    defined when it encounters
987                    struct y { struct x *xp; };
988                    Just ignore it. */
989                 break;
990
991               case stIndirect:
992                 /* Irix5 cc puts out a stIndirect for struct x if it is not
993                    yet defined when it encounters
994                    struct y { struct x *xp; };
995                    Just ignore it. */
996                 break;
997
998               default:
999                 complaint (&symfile_complaints,
1000                            "declaration block contains unhandled symbol type %d",
1001                            tsym.st);
1002               }
1003           }
1004       end_of_fields:;
1005
1006         /* In an stBlock, there is no way to distinguish structs,
1007            unions, and enums at this point.  This is a bug in the
1008            original design (that has been fixed with the recent
1009            addition of the stStruct, stUnion, and stEnum symbol
1010            types.)  The way you can tell is if/when you see a variable
1011            or field of that type.  In that case the variable's type
1012            (in the AUX table) says if the type is struct, union, or
1013            enum, and points back to the stBlock here.  So you can
1014            patch the tag kind up later - but only if there actually is
1015            a variable or field of that type.
1016
1017            So until we know for sure, we will guess at this point.
1018            The heuristic is:
1019            If the first member has index==indexNil or a void type,
1020            assume we have an enumeration.
1021            Otherwise, if there is more than one member, and all
1022            the members have offset 0, assume we have a union.
1023            Otherwise, assume we have a struct.
1024
1025            The heuristic could guess wrong in the case of of an
1026            enumeration with no members or a union with one (or zero)
1027            members, or when all except the last field of a struct have
1028            width zero.  These are uncommon and/or illegal situations,
1029            and in any case guessing wrong probably doesn't matter
1030            much.
1031
1032            But if we later do find out we were wrong, we fixup the tag
1033            kind.  Members of an enumeration must be handled
1034            differently from struct/union fields, and that is harder to
1035            patch up, but luckily we shouldn't need to.  (If there are
1036            any enumeration members, we can tell for sure it's an enum
1037            here.) */
1038
1039         if (type_code == TYPE_CODE_UNDEF)
1040           {
1041             if (nfields > 1 && max_value == 0)
1042               type_code = TYPE_CODE_UNION;
1043             else
1044               type_code = TYPE_CODE_STRUCT;
1045           }
1046
1047         /* Create a new type or use the pending type.  */
1048         pend = is_pending_symbol (cur_fdr, ext_sh);
1049         if (pend == (struct mdebug_pending *) NULL)
1050           {
1051             t = new_type (NULL);
1052             add_pending (cur_fdr, ext_sh, t);
1053           }
1054         else
1055           t = pend->t;
1056
1057         /* Do not set the tag name if it is a compiler generated tag name
1058            (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1059            Alpha cc puts out an sh->iss of zero for those.  */
1060         if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1061           TYPE_TAG_NAME (t) = NULL;
1062         else
1063           TYPE_TAG_NAME (t) = obconcat (&current_objfile->symbol_obstack,
1064                                         "", "", name);
1065
1066         TYPE_CODE (t) = type_code;
1067         TYPE_LENGTH (t) = sh->value;
1068         TYPE_NFIELDS (t) = nfields;
1069         TYPE_FIELDS (t) = f = ((struct field *)
1070                                TYPE_ALLOC (t,
1071                                            nfields * sizeof (struct field)));
1072
1073         if (type_code == TYPE_CODE_ENUM)
1074           {
1075             int unsigned_enum = 1;
1076
1077             /* This is a non-empty enum. */
1078
1079             /* DEC c89 has the number of enumerators in the sh.value field,
1080                not the type length, so we have to compensate for that
1081                incompatibility quirk.
1082                This might do the wrong thing for an enum with one or two
1083                enumerators and gcc -gcoff -fshort-enums, but these cases
1084                are hopefully rare enough.
1085                Alpha cc -migrate has a sh.value field of zero, we adjust
1086                that too.  */
1087             if (TYPE_LENGTH (t) == TYPE_NFIELDS (t)
1088                 || TYPE_LENGTH (t) == 0)
1089               TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1090             for (ext_tsym = ext_sh + external_sym_size;
1091                  ;
1092                  ext_tsym += external_sym_size)
1093               {
1094                 SYMR tsym;
1095                 struct symbol *enum_sym;
1096
1097                 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1098
1099                 if (tsym.st != stMember)
1100                   break;
1101
1102                 FIELD_BITPOS (*f) = tsym.value;
1103                 FIELD_TYPE (*f) = t;
1104                 FIELD_NAME (*f) = debug_info->ss + cur_fdr->issBase + tsym.iss;
1105                 FIELD_BITSIZE (*f) = 0;
1106                 FIELD_STATIC_KIND (*f) = 0;
1107
1108                 enum_sym = ((struct symbol *)
1109                             obstack_alloc (&current_objfile->symbol_obstack,
1110                                            sizeof (struct symbol)));
1111                 memset (enum_sym, 0, sizeof (struct symbol));
1112                 DEPRECATED_SYMBOL_NAME (enum_sym) =
1113                   obsavestring (f->name, strlen (f->name),
1114                                 &current_objfile->symbol_obstack);
1115                 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1116                 SYMBOL_TYPE (enum_sym) = t;
1117                 SYMBOL_DOMAIN (enum_sym) = VAR_DOMAIN;
1118                 SYMBOL_VALUE (enum_sym) = tsym.value;
1119                 if (SYMBOL_VALUE (enum_sym) < 0)
1120                   unsigned_enum = 0;
1121                 add_symbol (enum_sym, top_stack->cur_block);
1122
1123                 /* Skip the stMembers that we've handled. */
1124                 count++;
1125                 f++;
1126               }
1127             if (unsigned_enum)
1128               TYPE_FLAGS (t) |= TYPE_FLAG_UNSIGNED;
1129           }
1130         /* make this the current type */
1131         top_stack->cur_type = t;
1132         top_stack->cur_field = 0;
1133
1134         /* Do not create a symbol for alpha cc unnamed structs.  */
1135         if (sh->iss == 0)
1136           break;
1137
1138         /* gcc puts out an empty struct for an opaque struct definitions,
1139            do not create a symbol for it either.  */
1140         if (TYPE_NFIELDS (t) == 0)
1141           {
1142             TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1143             break;
1144           }
1145
1146         s = new_symbol (name);
1147         SYMBOL_DOMAIN (s) = STRUCT_DOMAIN;
1148         SYMBOL_CLASS (s) = LOC_TYPEDEF;
1149         SYMBOL_VALUE (s) = 0;
1150         SYMBOL_TYPE (s) = t;
1151         add_symbol (s, top_stack->cur_block);
1152         break;
1153
1154         /* End of local variables shared by struct, union, enum, and
1155            block (as yet unknown struct/union/enum) processing.  */
1156       }
1157
1158     case_stBlock_code:
1159       found_ecoff_debugging_info = 1;
1160       /* beginnning of (code) block. Value of symbol
1161          is the displacement from procedure start */
1162       push_parse_stack ();
1163
1164       /* Do not start a new block if this is the outermost block of a
1165          procedure.  This allows the LOC_BLOCK symbol to point to the
1166          block with the local variables, so funcname::var works.  */
1167       if (top_stack->blocktype == stProc
1168           || top_stack->blocktype == stStaticProc)
1169         {
1170           top_stack->blocktype = stNil;
1171           break;
1172         }
1173
1174       top_stack->blocktype = stBlock;
1175       b = new_block (NON_FUNCTION_BLOCK);
1176       BLOCK_START (b) = sh->value + top_stack->procadr;
1177       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1178       top_stack->cur_block = b;
1179       add_block (b, top_stack->cur_st);
1180       break;
1181
1182     case stEnd:         /* end (of anything) */
1183       if (sh->sc == scInfo || SC_IS_COMMON (sh->sc))
1184         {
1185           /* Finished with type */
1186           top_stack->cur_type = 0;
1187         }
1188       else if (sh->sc == scText &&
1189                (top_stack->blocktype == stProc ||
1190                 top_stack->blocktype == stStaticProc))
1191         {
1192           /* Finished with procedure */
1193           struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1194           struct mips_extra_func_info *e;
1195           struct block *b = top_stack->cur_block;
1196           struct type *ftype = top_stack->cur_type;
1197           int i;
1198
1199           BLOCK_END (top_stack->cur_block) += sh->value;        /* size */
1200
1201           /* Make up special symbol to contain procedure specific info */
1202           s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1203           SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
1204           SYMBOL_CLASS (s) = LOC_CONST;
1205           SYMBOL_TYPE (s) = mdebug_type_void;
1206           e = ((struct mips_extra_func_info *)
1207                obstack_alloc (&current_objfile->symbol_obstack,
1208                               sizeof (struct mips_extra_func_info)));
1209           memset (e, 0, sizeof (struct mips_extra_func_info));
1210           SYMBOL_VALUE (s) = (long) e;
1211           e->numargs = top_stack->numargs;
1212           e->pdr.framereg = -1;
1213           add_symbol (s, top_stack->cur_block);
1214
1215           /* f77 emits proc-level with address bounds==[0,0],
1216              So look for such child blocks, and patch them.  */
1217           for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1218             {
1219               struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1220               if (BLOCK_SUPERBLOCK (b_bad) == b
1221                   && BLOCK_START (b_bad) == top_stack->procadr
1222                   && BLOCK_END (b_bad) == top_stack->procadr)
1223                 {
1224                   BLOCK_START (b_bad) = BLOCK_START (b);
1225                   BLOCK_END (b_bad) = BLOCK_END (b);
1226                 }
1227             }
1228
1229           if (TYPE_NFIELDS (ftype) <= 0)
1230             {
1231               /* No parameter type information is recorded with the function's
1232                  type.  Set that from the type of the parameter symbols. */
1233               int nparams = top_stack->numargs;
1234               int iparams;
1235               struct symbol *sym;
1236
1237               if (nparams > 0)
1238                 {
1239                   struct dict_iterator iter;
1240                   TYPE_NFIELDS (ftype) = nparams;
1241                   TYPE_FIELDS (ftype) = (struct field *)
1242                     TYPE_ALLOC (ftype, nparams * sizeof (struct field));
1243
1244                   iparams = 0;
1245                   ALL_BLOCK_SYMBOLS (b, iter, sym)
1246                     {
1247                       if (iparams == nparams)
1248                         break;
1249
1250                       switch (SYMBOL_CLASS (sym))
1251                         {
1252                         case LOC_ARG:
1253                         case LOC_REF_ARG:
1254                         case LOC_REGPARM:
1255                         case LOC_REGPARM_ADDR:
1256                           TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
1257                           TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
1258                           iparams++;
1259                           break;
1260                         default:
1261                           break;
1262                         }
1263                     }
1264                 }
1265             }
1266         }
1267       else if (sh->sc == scText && top_stack->blocktype == stBlock)
1268         {
1269           /* End of (code) block. The value of the symbol is the
1270              displacement from the procedure`s start address of the
1271              end of this block. */
1272           BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1273         }
1274       else if (sh->sc == scText && top_stack->blocktype == stNil)
1275         {
1276           /* End of outermost block.  Pop parse stack and ignore.  The
1277              following stEnd of stProc will take care of the block.  */
1278           ;
1279         }
1280       else if (sh->sc == scText && top_stack->blocktype == stFile)
1281         {
1282           /* End of file.  Pop parse stack and ignore.  Higher
1283              level code deals with this.  */
1284           ;
1285         }
1286       else
1287         complaint (&symfile_complaints,
1288                    "stEnd with storage class %d not handled", sh->sc);
1289
1290       pop_parse_stack ();       /* restore previous lexical context */
1291       break;
1292
1293     case stMember:              /* member of struct or union */
1294       f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1295       FIELD_NAME (*f) = name;
1296       FIELD_BITPOS (*f) = sh->value;
1297       bitsize = 0;
1298       FIELD_TYPE (*f) = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1299       FIELD_BITSIZE (*f) = bitsize;
1300       FIELD_STATIC_KIND (*f) = 0;
1301       break;
1302
1303     case stIndirect:            /* forward declaration on Irix5 */
1304       /* Forward declarations from Irix5 cc are handled by cross_ref,
1305          skip them.  */
1306       break;
1307
1308     case stTypedef:             /* type definition */
1309       found_ecoff_debugging_info = 1;
1310
1311       /* Typedefs for forward declarations and opaque structs from alpha cc
1312          are handled by cross_ref, skip them.  */
1313       if (sh->iss == 0)
1314         break;
1315
1316       /* Parse the type or use the pending type.  */
1317       pend = is_pending_symbol (cur_fdr, ext_sh);
1318       if (pend == (struct mdebug_pending *) NULL)
1319         {
1320           t = parse_type (cur_fd, ax, sh->index, (int *) NULL, bigend, name);
1321           add_pending (cur_fdr, ext_sh, t);
1322         }
1323       else
1324         t = pend->t;
1325
1326       /* mips cc puts out a typedef with the name of the struct for forward
1327          declarations. These should not go into the symbol table and
1328          TYPE_NAME should not be set for them.
1329          They can't be distinguished from an intentional typedef to
1330          the same name however:
1331          x.h:
1332          struct x { int ix; int jx; };
1333          struct xx;
1334          x.c:
1335          typedef struct x x;
1336          struct xx {int ixx; int jxx; };
1337          generates a cross referencing stTypedef for x and xx.
1338          The user visible effect of this is that the type of a pointer
1339          to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1340          The problem is fixed with alpha cc and Irix5 cc.  */
1341
1342       /* However if the typedef cross references to an opaque aggregate, it
1343          is safe to omit it from the symbol table.  */
1344
1345       if (has_opaque_xref (cur_fdr, sh))
1346         break;
1347       s = new_symbol (name);
1348       SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1349       SYMBOL_CLASS (s) = LOC_TYPEDEF;
1350       SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1351       SYMBOL_TYPE (s) = t;
1352       add_symbol (s, top_stack->cur_block);
1353
1354       /* Incomplete definitions of structs should not get a name.  */
1355       if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1356           && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1357               || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1358                   && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1359         {
1360           if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1361               || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1362             {
1363               /* If we are giving a name to a type such as "pointer to
1364                  foo" or "function returning foo", we better not set
1365                  the TYPE_NAME.  If the program contains "typedef char
1366                  *caddr_t;", we don't want all variables of type char
1367                  * to print as caddr_t.  This is not just a
1368                  consequence of GDB's type management; CC and GCC (at
1369                  least through version 2.4) both output variables of
1370                  either type char * or caddr_t with the type
1371                  refering to the stTypedef symbol for caddr_t.  If a future
1372                  compiler cleans this up it GDB is not ready for it
1373                  yet, but if it becomes ready we somehow need to
1374                  disable this check (without breaking the PCC/GCC2.4
1375                  case).
1376
1377                  Sigh.
1378
1379                  Fortunately, this check seems not to be necessary
1380                  for anything except pointers or functions.  */
1381             }
1382           else
1383             TYPE_NAME (SYMBOL_TYPE (s)) = DEPRECATED_SYMBOL_NAME (s);
1384         }
1385       break;
1386
1387     case stFile:                /* file name */
1388       push_parse_stack ();
1389       top_stack->blocktype = sh->st;
1390       break;
1391
1392       /* I`ve never seen these for C */
1393     case stRegReloc:
1394       break;                    /* register relocation */
1395     case stForward:
1396       break;                    /* forwarding address */
1397     case stConstant:
1398       break;                    /* constant */
1399     default:
1400       complaint (&symfile_complaints, "unknown symbol type 0x%x", sh->st);
1401       break;
1402     }
1403
1404   return count;
1405 }
1406
1407 /* Parse the type information provided in the raw AX entries for
1408    the symbol SH. Return the bitfield size in BS, in case.
1409    We must byte-swap the AX entries before we use them; BIGEND says whether
1410    they are big-endian or little-endian (from fh->fBigendian).  */
1411
1412 static struct type *
1413 parse_type (int fd, union aux_ext *ax, unsigned int aux_index, int *bs,
1414             int bigend, char *sym_name)
1415 {
1416   /* Null entries in this map are treated specially */
1417   static struct type **map_bt[] =
1418   {
1419     &mdebug_type_void,          /* btNil */
1420     &mdebug_type_adr_32,        /* btAdr */
1421     &mdebug_type_char,          /* btChar */
1422     &mdebug_type_unsigned_char, /* btUChar */
1423     &mdebug_type_short,         /* btShort */
1424     &mdebug_type_unsigned_short,        /* btUShort */
1425     &mdebug_type_int_32,        /* btInt */
1426     &mdebug_type_unsigned_int_32,       /* btUInt */
1427     &mdebug_type_long_32,       /* btLong */
1428     &mdebug_type_unsigned_long_32,      /* btULong */
1429     &mdebug_type_float,         /* btFloat */
1430     &mdebug_type_double,        /* btDouble */
1431     0,                          /* btStruct */
1432     0,                          /* btUnion */
1433     0,                          /* btEnum */
1434     0,                          /* btTypedef */
1435     0,                          /* btRange */
1436     0,                          /* btSet */
1437     &mdebug_type_complex,       /* btComplex */
1438     &mdebug_type_double_complex,        /* btDComplex */
1439     0,                          /* btIndirect */
1440     &mdebug_type_fixed_dec,     /* btFixedDec */
1441     &mdebug_type_float_dec,     /* btFloatDec */
1442     &mdebug_type_string,        /* btString */
1443     0,                          /* btBit */
1444     0,                          /* btPicture */
1445     &mdebug_type_void,          /* btVoid */
1446     0,                          /* DEC C++:  Pointer to member */
1447     0,                          /* DEC C++:  Virtual function table */
1448     0,                          /* DEC C++:  Class (Record) */
1449     &mdebug_type_long_64,       /* btLong64  */
1450     &mdebug_type_unsigned_long_64,      /* btULong64 */
1451     &mdebug_type_long_long_64,  /* btLongLong64  */
1452     &mdebug_type_unsigned_long_long_64,         /* btULongLong64 */
1453     &mdebug_type_adr_64,        /* btAdr64 */
1454     &mdebug_type_int_64,        /* btInt64  */
1455     &mdebug_type_unsigned_int_64,       /* btUInt64 */
1456   };
1457
1458   TIR t[1];
1459   struct type *tp = 0;
1460   enum type_code type_code = TYPE_CODE_UNDEF;
1461
1462   /* Handle undefined types, they have indexNil. */
1463   if (aux_index == indexNil)
1464     return mdebug_type_int;
1465
1466   /* Handle corrupt aux indices.  */
1467   if (aux_index >= (debug_info->fdr + fd)->caux)
1468     {
1469       index_complaint (sym_name);
1470       return mdebug_type_int;
1471     }
1472   ax += aux_index;
1473
1474   /* Use aux as a type information record, map its basic type.  */
1475   (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1476   if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1477     {
1478       basic_type_complaint (t->bt, sym_name);
1479       return mdebug_type_int;
1480     }
1481   if (map_bt[t->bt])
1482     {
1483       tp = *map_bt[t->bt];
1484     }
1485   else
1486     {
1487       tp = NULL;
1488       /* Cannot use builtin types -- build our own */
1489       switch (t->bt)
1490         {
1491         case btStruct:
1492           type_code = TYPE_CODE_STRUCT;
1493           break;
1494         case btUnion:
1495           type_code = TYPE_CODE_UNION;
1496           break;
1497         case btEnum:
1498           type_code = TYPE_CODE_ENUM;
1499           break;
1500         case btRange:
1501           type_code = TYPE_CODE_RANGE;
1502           break;
1503         case btSet:
1504           type_code = TYPE_CODE_SET;
1505           break;
1506         case btIndirect:
1507           /* alpha cc -migrate uses this for typedefs. The true type will
1508              be obtained by crossreferencing below.  */
1509           type_code = TYPE_CODE_ERROR;
1510           break;
1511         case btTypedef:
1512           /* alpha cc uses this for typedefs. The true type will be
1513              obtained by crossreferencing below.  */
1514           type_code = TYPE_CODE_ERROR;
1515           break;
1516         default:
1517           basic_type_complaint (t->bt, sym_name);
1518           return mdebug_type_int;
1519         }
1520     }
1521
1522   /* Move on to next aux */
1523   ax++;
1524
1525   if (t->fBitfield)
1526     {
1527       int width = AUX_GET_WIDTH (bigend, ax);
1528       /* Inhibit core dumps if TIR is corrupted.  */
1529       if (bs == (int *) NULL)
1530         {
1531           /* Alpha cc -migrate encodes char and unsigned char types
1532              as short and unsigned short types with a field width of 8.
1533              Enum types also have a field width which we ignore for now.  */
1534           if (t->bt == btShort && width == 8)
1535             tp = mdebug_type_char;
1536           else if (t->bt == btUShort && width == 8)
1537             tp = mdebug_type_unsigned_char;
1538           else if (t->bt == btEnum)
1539             ;
1540           else
1541             complaint (&symfile_complaints, "can't handle TIR fBitfield for %s",
1542                        sym_name);
1543         }
1544       else
1545         *bs = width;
1546       ax++;
1547     }
1548
1549   /* A btIndirect entry cross references to an aux entry containing
1550      the type.  */
1551   if (t->bt == btIndirect)
1552     {
1553       RNDXR rn[1];
1554       int rf;
1555       FDR *xref_fh;
1556       int xref_fd;
1557
1558       (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
1559       ax++;
1560       if (rn->rfd == 0xfff)
1561         {
1562           rf = AUX_GET_ISYM (bigend, ax);
1563           ax++;
1564         }
1565       else
1566         rf = rn->rfd;
1567
1568       if (rf == -1)
1569         {
1570           complaint (&symfile_complaints,
1571                      "unable to cross ref btIndirect for %s", sym_name);
1572           return mdebug_type_int;
1573         }
1574       xref_fh = get_rfd (fd, rf);
1575       xref_fd = xref_fh - debug_info->fdr;
1576       tp = parse_type (xref_fd, debug_info->external_aux + xref_fh->iauxBase,
1577                     rn->index, (int *) NULL, xref_fh->fBigendian, sym_name);
1578     }
1579
1580   /* All these types really point to some (common) MIPS type
1581      definition, and only the type-qualifiers fully identify
1582      them.  We'll make the same effort at sharing. */
1583   if (t->bt == btStruct ||
1584       t->bt == btUnion ||
1585       t->bt == btEnum ||
1586
1587   /* btSet (I think) implies that the name is a tag name, not a typedef
1588      name.  This apparently is a MIPS extension for C sets.  */
1589       t->bt == btSet)
1590     {
1591       char *name;
1592
1593       /* Try to cross reference this type, build new type on failure.  */
1594       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1595       if (tp == (struct type *) NULL)
1596         tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1597
1598       /* DEC c89 produces cross references to qualified aggregate types,
1599          dereference them.  */
1600       while (TYPE_CODE (tp) == TYPE_CODE_PTR
1601              || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1602         tp = TYPE_TARGET_TYPE (tp);
1603
1604       /* Make sure that TYPE_CODE(tp) has an expected type code.
1605          Any type may be returned from cross_ref if file indirect entries
1606          are corrupted.  */
1607       if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1608           && TYPE_CODE (tp) != TYPE_CODE_UNION
1609           && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1610         {
1611           unexpected_type_code_complaint (sym_name);
1612         }
1613       else
1614         {
1615
1616           /* Usually, TYPE_CODE(tp) is already type_code.  The main
1617              exception is if we guessed wrong re struct/union/enum.
1618              But for struct vs. union a wrong guess is harmless, so
1619              don't complain().  */
1620           if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1621                && type_code != TYPE_CODE_ENUM)
1622               || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1623                   && type_code == TYPE_CODE_ENUM))
1624             {
1625               bad_tag_guess_complaint (sym_name);
1626             }
1627
1628           if (TYPE_CODE (tp) != type_code)
1629             {
1630               TYPE_CODE (tp) = type_code;
1631             }
1632
1633           /* Do not set the tag name if it is a compiler generated tag name
1634              (.Fxx or .xxfake or empty) for unnamed struct/union/enums.  */
1635           if (name[0] == '.' || name[0] == '\0')
1636             TYPE_TAG_NAME (tp) = NULL;
1637           else if (TYPE_TAG_NAME (tp) == NULL
1638                    || strcmp (TYPE_TAG_NAME (tp), name) != 0)
1639             TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1640                                             &current_objfile->type_obstack);
1641         }
1642     }
1643
1644   /* All these types really point to some (common) MIPS type
1645      definition, and only the type-qualifiers fully identify
1646      them.  We'll make the same effort at sharing.
1647      FIXME: We are not doing any guessing on range types.  */
1648   if (t->bt == btRange)
1649     {
1650       char *name;
1651
1652       /* Try to cross reference this type, build new type on failure.  */
1653       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1654       if (tp == (struct type *) NULL)
1655         tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1656
1657       /* Make sure that TYPE_CODE(tp) has an expected type code.
1658          Any type may be returned from cross_ref if file indirect entries
1659          are corrupted.  */
1660       if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1661         {
1662           unexpected_type_code_complaint (sym_name);
1663         }
1664       else
1665         {
1666           /* Usually, TYPE_CODE(tp) is already type_code.  The main
1667              exception is if we guessed wrong re struct/union/enum. */
1668           if (TYPE_CODE (tp) != type_code)
1669             {
1670               bad_tag_guess_complaint (sym_name);
1671               TYPE_CODE (tp) = type_code;
1672             }
1673           if (TYPE_NAME (tp) == NULL
1674               || strcmp (TYPE_NAME (tp), name) != 0)
1675             TYPE_NAME (tp) = obsavestring (name, strlen (name),
1676                                            &current_objfile->type_obstack);
1677         }
1678     }
1679   if (t->bt == btTypedef)
1680     {
1681       char *name;
1682
1683       /* Try to cross reference this type, it should succeed.  */
1684       ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1685       if (tp == (struct type *) NULL)
1686         {
1687           complaint (&symfile_complaints,
1688                      "unable to cross ref btTypedef for %s", sym_name);
1689           tp = mdebug_type_int;
1690         }
1691     }
1692
1693   /* Deal with range types */
1694   if (t->bt == btRange)
1695     {
1696       TYPE_NFIELDS (tp) = 2;
1697       TYPE_FIELDS (tp) = ((struct field *)
1698                           TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1699       TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1700                                             &current_objfile->type_obstack);
1701       TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1702       ax++;
1703       TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1704                                             &current_objfile->type_obstack);
1705       TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1706       ax++;
1707     }
1708
1709   /* Parse all the type qualifiers now. If there are more
1710      than 6 the game will continue in the next aux */
1711
1712   while (1)
1713     {
1714 #define PARSE_TQ(tq) \
1715       if (t->tq != tqNil) \
1716         ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1717       else \
1718         break;
1719
1720       PARSE_TQ (tq0);
1721       PARSE_TQ (tq1);
1722       PARSE_TQ (tq2);
1723       PARSE_TQ (tq3);
1724       PARSE_TQ (tq4);
1725       PARSE_TQ (tq5);
1726 #undef  PARSE_TQ
1727
1728       /* mips cc 2.x and gcc never put out continued aux entries.  */
1729       if (!t->continued)
1730         break;
1731
1732       (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1733       ax++;
1734     }
1735
1736   /* Complain for illegal continuations due to corrupt aux entries.  */
1737   if (t->continued)
1738     complaint (&symfile_complaints, "illegal TIR continued for %s", sym_name);
1739
1740   return tp;
1741 }
1742
1743 /* Make up a complex type from a basic one.  Type is passed by
1744    reference in TPP and side-effected as necessary. The type
1745    qualifier TQ says how to handle the aux symbols at AX for
1746    the symbol SX we are currently analyzing.  BIGEND says whether
1747    aux symbols are big-endian or little-endian.
1748    Returns the number of aux symbols we parsed. */
1749
1750 static int
1751 upgrade_type (int fd, struct type **tpp, int tq, union aux_ext *ax, int bigend,
1752               char *sym_name)
1753 {
1754   int off;
1755   struct type *t;
1756
1757   /* Used in array processing */
1758   int rf, id;
1759   FDR *fh;
1760   struct type *range;
1761   struct type *indx;
1762   int lower, upper;
1763   RNDXR rndx;
1764
1765   switch (tq)
1766     {
1767     case tqPtr:
1768       t = lookup_pointer_type (*tpp);
1769       *tpp = t;
1770       return 0;
1771
1772     case tqProc:
1773       t = lookup_function_type (*tpp);
1774       *tpp = t;
1775       return 0;
1776
1777     case tqArray:
1778       off = 0;
1779
1780       /* Determine and record the domain type (type of index) */
1781       (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, &rndx);
1782       id = rndx.index;
1783       rf = rndx.rfd;
1784       if (rf == 0xfff)
1785         {
1786           ax++;
1787           rf = AUX_GET_ISYM (bigend, ax);
1788           off++;
1789         }
1790       fh = get_rfd (fd, rf);
1791
1792       indx = parse_type (fh - debug_info->fdr,
1793                          debug_info->external_aux + fh->iauxBase,
1794                          id, (int *) NULL, bigend, sym_name);
1795
1796       /* The bounds type should be an integer type, but might be anything
1797          else due to corrupt aux entries.  */
1798       if (TYPE_CODE (indx) != TYPE_CODE_INT)
1799         {
1800           complaint (&symfile_complaints,
1801                      "illegal array index type for %s, assuming int", sym_name);
1802           indx = mdebug_type_int;
1803         }
1804
1805       /* Get the bounds, and create the array type.  */
1806       ax++;
1807       lower = AUX_GET_DNLOW (bigend, ax);
1808       ax++;
1809       upper = AUX_GET_DNHIGH (bigend, ax);
1810       ax++;
1811       rf = AUX_GET_WIDTH (bigend, ax);  /* bit size of array element */
1812
1813       range = create_range_type ((struct type *) NULL, indx,
1814                                  lower, upper);
1815
1816       t = create_array_type ((struct type *) NULL, *tpp, range);
1817
1818       /* We used to fill in the supplied array element bitsize
1819          here if the TYPE_LENGTH of the target type was zero.
1820          This happens for a `pointer to an array of anonymous structs',
1821          but in this case the array element bitsize is also zero,
1822          so nothing is gained.
1823          And we used to check the TYPE_LENGTH of the target type against
1824          the supplied array element bitsize.
1825          gcc causes a mismatch for `pointer to array of object',
1826          since the sdb directives it uses do not have a way of
1827          specifying the bitsize, but it does no harm (the
1828          TYPE_LENGTH should be correct) and we should be able to
1829          ignore the erroneous bitsize from the auxiliary entry safely.
1830          dbx seems to ignore it too.  */
1831
1832       /* TYPE_FLAG_TARGET_STUB now takes care of the zero TYPE_LENGTH
1833          problem.  */
1834       if (TYPE_LENGTH (*tpp) == 0)
1835         {
1836           TYPE_FLAGS (t) |= TYPE_FLAG_TARGET_STUB;
1837         }
1838
1839       *tpp = t;
1840       return 4 + off;
1841
1842     case tqVol:
1843       /* Volatile -- currently ignored */
1844       return 0;
1845
1846     case tqConst:
1847       /* Const -- currently ignored */
1848       return 0;
1849
1850     default:
1851       complaint (&symfile_complaints, "unknown type qualifier 0x%x", tq);
1852       return 0;
1853     }
1854 }
1855
1856
1857 /* Parse a procedure descriptor record PR.  Note that the procedure is
1858    parsed _after_ the local symbols, now we just insert the extra
1859    information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1860    already been placed in the procedure's main block.  Note also that
1861    images that have been partially stripped (ld -x) have been deprived
1862    of local symbols, and we have to cope with them here.  FIRST_OFF is
1863    the offset of the first procedure for this FDR; we adjust the
1864    address by this amount, but I don't know why.  SEARCH_SYMTAB is the symtab
1865    to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1866    in question, or NULL to use top_stack->cur_block.  */
1867
1868 static void parse_procedure (PDR *, struct symtab *, struct partial_symtab *);
1869
1870 static void
1871 parse_procedure (PDR *pr, struct symtab *search_symtab,
1872                  struct partial_symtab *pst)
1873 {
1874   struct symbol *s, *i;
1875   struct block *b;
1876   struct mips_extra_func_info *e;
1877   char *sh_name;
1878
1879   /* Simple rule to find files linked "-x" */
1880   if (cur_fdr->rss == -1)
1881     {
1882       if (pr->isym == -1)
1883         {
1884           /* Static procedure at address pr->adr.  Sigh. */
1885           /* FIXME-32x64.  assuming pr->adr fits in long.  */
1886           complaint (&symfile_complaints,
1887                      "can't handle PDR for static proc at 0x%lx",
1888                      (unsigned long) pr->adr);
1889           return;
1890         }
1891       else
1892         {
1893           /* external */
1894           EXTR she;
1895
1896           (*debug_swap->swap_ext_in) (cur_bfd,
1897                                       ((char *) debug_info->external_ext
1898                                        + (pr->isym
1899                                           * debug_swap->external_ext_size)),
1900                                       &she);
1901           sh_name = debug_info->ssext + she.asym.iss;
1902         }
1903     }
1904   else
1905     {
1906       /* Full symbols */
1907       SYMR sh;
1908
1909       (*debug_swap->swap_sym_in) (cur_bfd,
1910                                   ((char *) debug_info->external_sym
1911                                    + ((cur_fdr->isymBase + pr->isym)
1912                                       * debug_swap->external_sym_size)),
1913                                   &sh);
1914       sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1915     }
1916
1917   if (search_symtab != NULL)
1918     {
1919 #if 0
1920       /* This loses both in the case mentioned (want a static, find a global),
1921          but also if we are looking up a non-mangled name which happens to
1922          match the name of a mangled function.  */
1923       /* We have to save the cur_fdr across the call to lookup_symbol.
1924          If the pdr is for a static function and if a global function with
1925          the same name exists, lookup_symbol will eventually read in the symtab
1926          for the global function and clobber cur_fdr.  */
1927       FDR *save_cur_fdr = cur_fdr;
1928       s = lookup_symbol (sh_name, NULL, VAR_DOMAIN, 0, NULL);
1929       cur_fdr = save_cur_fdr;
1930 #else
1931       s = mylookup_symbol
1932         (sh_name,
1933          BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1934          VAR_DOMAIN,
1935          LOC_BLOCK);
1936 #endif
1937     }
1938   else
1939     s = mylookup_symbol (sh_name, top_stack->cur_block,
1940                          VAR_DOMAIN, LOC_BLOCK);
1941
1942   if (s != 0)
1943     {
1944       b = SYMBOL_BLOCK_VALUE (s);
1945     }
1946   else
1947     {
1948       complaint (&symfile_complaints, "PDR for %s, but no symbol", sh_name);
1949 #if 1
1950       return;
1951 #else
1952 /* FIXME -- delete.  We can't do symbol allocation now; it's all done.  */
1953       s = new_symbol (sh_name);
1954       SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1955       SYMBOL_CLASS (s) = LOC_BLOCK;
1956       /* Donno its type, hope int is ok */
1957       SYMBOL_TYPE (s) = lookup_function_type (mdebug_type_int);
1958       add_symbol (s, top_stack->cur_block);
1959       /* Wont have symbols for this one */
1960       b = new_block (2);
1961       SYMBOL_BLOCK_VALUE (s) = b;
1962       BLOCK_FUNCTION (b) = s;
1963       BLOCK_START (b) = pr->adr;
1964       /* BOUND used to be the end of procedure's text, but the
1965          argument is no longer passed in.  */
1966       BLOCK_END (b) = bound;
1967       BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1968       add_block (b, top_stack->cur_st);
1969 #endif
1970     }
1971
1972   i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_DOMAIN, LOC_CONST);
1973
1974   if (i)
1975     {
1976       e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1977       e->pdr = *pr;
1978       e->pdr.isym = (long) s;
1979
1980       /* GDB expects the absolute function start address for the
1981          procedure descriptor in e->pdr.adr.
1982          As the address in the procedure descriptor is usually relative,
1983          we would have to relocate e->pdr.adr with cur_fdr->adr and
1984          ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (pst->objfile)).
1985          Unfortunately cur_fdr->adr and e->pdr.adr are both absolute
1986          in shared libraries on some systems, and on other systems
1987          e->pdr.adr is sometimes offset by a bogus value.
1988          To work around these problems, we replace e->pdr.adr with
1989          the start address of the function.  */
1990       e->pdr.adr = BLOCK_START (b);
1991
1992       /* Correct incorrect setjmp procedure descriptor from the library
1993          to make backtrace through setjmp work.  */
1994       if (e->pdr.pcreg == 0
1995           && strcmp (sh_name, "setjmp") == 0)
1996         {
1997           complaint (&symfile_complaints, "fixing bad setjmp PDR from libc");
1998           e->pdr.pcreg = RA_REGNUM;
1999           e->pdr.regmask = 0x80000000;
2000           e->pdr.regoffset = -4;
2001         }
2002     }
2003
2004   /* It would be reasonable that functions that have been compiled
2005      without debugging info have a btNil type for their return value,
2006      and functions that are void and are compiled with debugging info
2007      have btVoid.
2008      gcc and DEC f77 put out btNil types for both cases, so btNil is mapped
2009      to TYPE_CODE_VOID in parse_type to get the `compiled with debugging info'
2010      case right.
2011      The glevel field in cur_fdr could be used to determine the presence
2012      of debugging info, but GCC doesn't always pass the -g switch settings
2013      to the assembler and GAS doesn't set the glevel field from the -g switch
2014      settings.
2015      To work around these problems, the return value type of a TYPE_CODE_VOID
2016      function is adjusted accordingly if no debugging info was found in the
2017      compilation unit.  */
2018
2019   if (processing_gcc_compilation == 0
2020       && found_ecoff_debugging_info == 0
2021       && TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (s))) == TYPE_CODE_VOID)
2022     SYMBOL_TYPE (s) = nodebug_func_symbol_type;
2023 }
2024
2025 /* Relocate the extra function info pointed to by the symbol table.  */
2026
2027 void
2028 ecoff_relocate_efi (struct symbol *sym, CORE_ADDR delta)
2029 {
2030   struct mips_extra_func_info *e;
2031
2032   e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
2033
2034   e->pdr.adr += delta;
2035 }
2036
2037 /* Parse the external symbol ES. Just call parse_symbol() after
2038    making sure we know where the aux are for it.
2039    BIGEND says whether aux entries are big-endian or little-endian.
2040
2041    This routine clobbers top_stack->cur_block and ->cur_st. */
2042
2043 static void parse_external (EXTR *, int, struct section_offsets *,
2044                             struct objfile *);
2045
2046 static void
2047 parse_external (EXTR *es, int bigend, struct section_offsets *section_offsets,
2048                 struct objfile *objfile)
2049 {
2050   union aux_ext *ax;
2051
2052   if (es->ifd != ifdNil)
2053     {
2054       cur_fd = es->ifd;
2055       cur_fdr = debug_info->fdr + cur_fd;
2056       ax = debug_info->external_aux + cur_fdr->iauxBase;
2057     }
2058   else
2059     {
2060       cur_fdr = debug_info->fdr;
2061       ax = 0;
2062     }
2063
2064   /* Reading .o files */
2065   if (SC_IS_UNDEF (es->asym.sc) || es->asym.sc == scNil)
2066     {
2067       char *what;
2068       switch (es->asym.st)
2069         {
2070         case stNil:
2071           /* These are generated for static symbols in .o files,
2072              ignore them.  */
2073           return;
2074         case stStaticProc:
2075         case stProc:
2076           what = "procedure";
2077           n_undef_procs++;
2078           break;
2079         case stGlobal:
2080           what = "variable";
2081           n_undef_vars++;
2082           break;
2083         case stLabel:
2084           what = "label";
2085           n_undef_labels++;
2086           break;
2087         default:
2088           what = "symbol";
2089           break;
2090         }
2091       n_undef_symbols++;
2092       /* FIXME:  Turn this into a complaint? */
2093       if (info_verbose)
2094         printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
2095                          what, debug_info->ssext + es->asym.iss,
2096                          fdr_name (cur_fdr));
2097       return;
2098     }
2099
2100   switch (es->asym.st)
2101     {
2102     case stProc:
2103     case stStaticProc:
2104       /* There is no need to parse the external procedure symbols.
2105          If they are from objects compiled without -g, their index will
2106          be indexNil, and the symbol definition from the minimal symbol
2107          is preferrable (yielding a function returning int instead of int).
2108          If the index points to a local procedure symbol, the local
2109          symbol already provides the correct type.
2110          Note that the index of the external procedure symbol points
2111          to the local procedure symbol in the local symbol table, and
2112          _not_ to the auxiliary symbol info.  */
2113       break;
2114     case stGlobal:
2115     case stLabel:
2116       /* Global common symbols are resolved by the runtime loader,
2117          ignore them.  */
2118       if (SC_IS_COMMON (es->asym.sc))
2119         break;
2120
2121       /* Note that the case of a symbol with indexNil must be handled
2122          anyways by parse_symbol().  */
2123       parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets, objfile);
2124       break;
2125     default:
2126       break;
2127     }
2128 }
2129
2130 /* Parse the line number info for file descriptor FH into
2131    GDB's linetable LT.  MIPS' encoding requires a little bit
2132    of magic to get things out.  Note also that MIPS' line
2133    numbers can go back and forth, apparently we can live
2134    with that and do not need to reorder our linetables */
2135
2136 static void parse_lines (FDR *, PDR *, struct linetable *, int,
2137                          struct partial_symtab *, CORE_ADDR);
2138
2139 static void
2140 parse_lines (FDR *fh, PDR *pr, struct linetable *lt, int maxlines,
2141              struct partial_symtab *pst, CORE_ADDR lowest_pdr_addr)
2142 {
2143   unsigned char *base;
2144   int j, k;
2145   int delta, count, lineno = 0;
2146
2147   if (fh->cbLine == 0)
2148     return;
2149
2150   /* Scan by procedure descriptors */
2151   k = 0;
2152   for (j = 0; j < fh->cpd; j++, pr++)
2153     {
2154       CORE_ADDR l;
2155       CORE_ADDR adr;
2156       unsigned char *halt;
2157
2158       /* No code for this one */
2159       if (pr->iline == ilineNil ||
2160           pr->lnLow == -1 || pr->lnHigh == -1)
2161         continue;
2162
2163       /* Determine start and end address of compressed line bytes for
2164          this procedure.  */
2165       base = debug_info->line + fh->cbLineOffset;
2166       if (j != (fh->cpd - 1))
2167         halt = base + pr[1].cbLineOffset;
2168       else
2169         halt = base + fh->cbLine;
2170       base += pr->cbLineOffset;
2171
2172       adr = pst->textlow + pr->adr - lowest_pdr_addr;
2173
2174       l = adr >> 2;             /* in words */
2175       for (lineno = pr->lnLow; base < halt;)
2176         {
2177           count = *base & 0x0f;
2178           delta = *base++ >> 4;
2179           if (delta >= 8)
2180             delta -= 16;
2181           if (delta == -8)
2182             {
2183               delta = (base[0] << 8) | base[1];
2184               if (delta >= 0x8000)
2185                 delta -= 0x10000;
2186               base += 2;
2187             }
2188           lineno += delta;      /* first delta is 0 */
2189
2190           /* Complain if the line table overflows. Could happen
2191              with corrupt binaries.  */
2192           if (lt->nitems >= maxlines)
2193             {
2194               complaint (&symfile_complaints,
2195                          "guessed size of linetable for %s incorrectly",
2196                          fdr_name (fh));
2197               break;
2198             }
2199           k = add_line (lt, lineno, l, k);
2200           l += count + 1;
2201         }
2202     }
2203 }
2204 \f
2205 static void
2206 function_outside_compilation_unit_complaint (const char *arg1)
2207 {
2208   complaint (&symfile_complaints,
2209              "function `%s' appears to be defined outside of all compilation units",
2210              arg1);
2211 }
2212
2213 /* Master parsing procedure for first-pass reading of file symbols
2214    into a partial_symtab.  */
2215
2216 static void
2217 parse_partial_symbols (struct objfile *objfile)
2218 {
2219   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2220   const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2221   const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2222   void (*const swap_ext_in) (bfd *, void *, EXTR *) = debug_swap->swap_ext_in;
2223   void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
2224   void (*const swap_rfd_in) (bfd *, void *, RFDT *) = debug_swap->swap_rfd_in;
2225   int f_idx, s_idx;
2226   HDRR *hdr = &debug_info->symbolic_header;
2227   /* Running pointers */
2228   FDR *fh;
2229   char *ext_out;
2230   char *ext_out_end;
2231   EXTR *ext_block;
2232   EXTR *ext_in;
2233   EXTR *ext_in_end;
2234   SYMR sh;
2235   struct partial_symtab *pst;
2236   int textlow_not_set = 1;
2237   int past_first_source_file = 0;
2238
2239   /* List of current psymtab's include files */
2240   char **psymtab_include_list;
2241   int includes_allocated;
2242   int includes_used;
2243   EXTR *extern_tab;
2244   struct pst_map *fdr_to_pst;
2245   /* Index within current psymtab dependency list */
2246   struct partial_symtab **dependency_list;
2247   int dependencies_used, dependencies_allocated;
2248   struct cleanup *old_chain;
2249   char *name;
2250   enum language prev_language;
2251   asection *text_sect;
2252   int relocatable = 0;
2253
2254   /* Irix 5.2 shared libraries have a fh->adr field of zero, but
2255      the shared libraries are prelinked at a high memory address.
2256      We have to adjust the start address of the object file for this case,
2257      by setting it to the start address of the first procedure in the file.
2258      But we should do no adjustments if we are debugging a .o file, where
2259      the text section (and fh->adr) really starts at zero.  */
2260   text_sect = bfd_get_section_by_name (cur_bfd, ".text");
2261   if (text_sect != NULL
2262       && (bfd_get_section_flags (cur_bfd, text_sect) & SEC_RELOC))
2263     relocatable = 1;
2264
2265   extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
2266                                        sizeof (EXTR) * hdr->iextMax);
2267
2268   includes_allocated = 30;
2269   includes_used = 0;
2270   psymtab_include_list = (char **) alloca (includes_allocated *
2271                                            sizeof (char *));
2272   next_symbol_text_func = mdebug_next_symbol_text;
2273
2274   dependencies_allocated = 30;
2275   dependencies_used = 0;
2276   dependency_list =
2277     (struct partial_symtab **) alloca (dependencies_allocated *
2278                                        sizeof (struct partial_symtab *));
2279
2280   last_source_file = NULL;
2281
2282   /*
2283    * Big plan:
2284    *
2285    * Only parse the Local and External symbols, and the Relative FDR.
2286    * Fixup enough of the loader symtab to be able to use it.
2287    * Allocate space only for the file's portions we need to
2288    * look at. (XXX)
2289    */
2290
2291   max_gdbinfo = 0;
2292   max_glevel = MIN_GLEVEL;
2293
2294   /* Allocate the map FDR -> PST.
2295      Minor hack: -O3 images might claim some global data belongs
2296      to FDR -1. We`ll go along with that */
2297   fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2298   old_chain = make_cleanup (xfree, fdr_to_pst);
2299   fdr_to_pst++;
2300   {
2301     struct partial_symtab *pst = new_psymtab ("", objfile);
2302     fdr_to_pst[-1].pst = pst;
2303     FDR_IDX (pst) = -1;
2304   }
2305
2306   /* Allocate the global pending list.  */
2307   pending_list =
2308     ((struct mdebug_pending **)
2309      obstack_alloc (&objfile->psymbol_obstack,
2310                     hdr->ifdMax * sizeof (struct mdebug_pending *)));
2311   memset (pending_list, 0,
2312           hdr->ifdMax * sizeof (struct mdebug_pending *));
2313
2314   /* Pass 0 over external syms: swap them in.  */
2315   ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2316   make_cleanup (xfree, ext_block);
2317
2318   ext_out = (char *) debug_info->external_ext;
2319   ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2320   ext_in = ext_block;
2321   for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2322     (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2323
2324   /* Pass 1 over external syms: Presize and partition the list */
2325   ext_in = ext_block;
2326   ext_in_end = ext_in + hdr->iextMax;
2327   for (; ext_in < ext_in_end; ext_in++)
2328     {
2329       /* See calls to complain below.  */
2330       if (ext_in->ifd >= -1
2331           && ext_in->ifd < hdr->ifdMax
2332           && ext_in->asym.iss >= 0
2333           && ext_in->asym.iss < hdr->issExtMax)
2334         fdr_to_pst[ext_in->ifd].n_globals++;
2335     }
2336
2337   /* Pass 1.5 over files:  partition out global symbol space */
2338   s_idx = 0;
2339   for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2340     {
2341       fdr_to_pst[f_idx].globals_offset = s_idx;
2342       s_idx += fdr_to_pst[f_idx].n_globals;
2343       fdr_to_pst[f_idx].n_globals = 0;
2344     }
2345
2346   /* ECOFF in ELF:
2347
2348      For ECOFF in ELF, we skip the creation of the minimal symbols.
2349      The ECOFF symbols should be a subset of the Elf symbols, and the 
2350      section information of the elf symbols will be more accurate.
2351      FIXME!  What about Irix 5's native linker?
2352
2353      By default, Elf sections which don't exist in ECOFF 
2354      get put in ECOFF's absolute section by the gnu linker.
2355      Since absolute sections don't get relocated, we 
2356      end up calculating an address different from that of 
2357      the symbol's minimal symbol (created earlier from the
2358      Elf symtab).  
2359
2360      To fix this, either :
2361      1) don't create the duplicate symbol
2362      (assumes ECOFF symtab is a subset of the ELF symtab;
2363      assumes no side-effects result from ignoring ECOFF symbol)
2364      2) create it, only if lookup for existing symbol in ELF's minimal 
2365      symbols fails
2366      (inefficient; 
2367      assumes no side-effects result from ignoring ECOFF symbol)
2368      3) create it, but lookup ELF's minimal symbol and use it's section
2369      during relocation, then modify "uniqify" phase to merge and 
2370      eliminate the duplicate symbol
2371      (highly inefficient)
2372
2373      I've implemented #1 here...
2374      Skip the creation of the minimal symbols based on the ECOFF 
2375      symbol table. */
2376
2377   /* Pass 2 over external syms: fill in external symbols */
2378   ext_in = ext_block;
2379   ext_in_end = ext_in + hdr->iextMax;
2380   for (; ext_in < ext_in_end; ext_in++)
2381     {
2382       enum minimal_symbol_type ms_type = mst_text;
2383       CORE_ADDR svalue = ext_in->asym.value;
2384
2385       /* The Irix 5 native tools seem to sometimes generate bogus
2386          external symbols.  */
2387       if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2388         {
2389           complaint (&symfile_complaints,
2390                      "bad ifd for external symbol: %d (max %ld)", ext_in->ifd,
2391                      hdr->ifdMax);
2392           continue;
2393         }
2394       if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2395         {
2396           complaint (&symfile_complaints,
2397                      "bad iss for external symbol: %ld (max %ld)",
2398                      ext_in->asym.iss, hdr->issExtMax);
2399           continue;
2400         }
2401
2402       extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2403                  + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2404
2405
2406       if (SC_IS_UNDEF (ext_in->asym.sc) || ext_in->asym.sc == scNil)
2407         continue;
2408
2409
2410       /* Pass 3 over files, over local syms: fill in static symbols */
2411       name = debug_info->ssext + ext_in->asym.iss;
2412
2413       /* Process ECOFF Symbol Types and Storage Classes */
2414       switch (ext_in->asym.st)
2415         {
2416         case stProc:
2417           /* Beginnning of Procedure */
2418           svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2419           break;
2420         case stStaticProc:
2421           /* Load time only static procs */
2422           ms_type = mst_file_text;
2423           svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2424           break;
2425         case stGlobal:
2426           /* External symbol */
2427           if (SC_IS_COMMON (ext_in->asym.sc))
2428             {
2429               /* The value of a common symbol is its size, not its address.
2430                  Ignore it.  */
2431               continue;
2432             }
2433           else if (SC_IS_DATA (ext_in->asym.sc))
2434             {
2435               ms_type = mst_data;
2436               svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2437             }
2438           else if (SC_IS_BSS (ext_in->asym.sc))
2439             {
2440               ms_type = mst_bss;
2441               svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2442             }
2443           else if (SC_IS_SBSS (ext_in->asym.sc))
2444             {
2445               ms_type = mst_bss;
2446               svalue += ANOFFSET (objfile->section_offsets, 
2447                                   get_section_index (objfile, ".sbss"));
2448             }
2449           else
2450             ms_type = mst_abs;
2451           break;
2452         case stLabel:
2453           /* Label */
2454
2455           /* On certain platforms, some extra label symbols can be
2456              generated by the linker. One possible usage for this kind
2457              of symbols is to represent the address of the begining of a
2458              given section. For instance, on Tru64 5.1, the address of
2459              the _ftext label is the start address of the .text section.
2460
2461              The storage class of these symbols is usually directly
2462              related to the section to which the symbol refers. For
2463              instance, on Tru64 5.1, the storage class for the _fdata
2464              label is scData, refering to the .data section.
2465
2466              It is actually possible that the section associated to the
2467              storage class of the label does not exist. On True64 5.1
2468              for instance, the libm.so shared library does not contain
2469              any .data section, although it contains a _fpdata label
2470              which storage class is scData... Since these symbols are
2471              usually useless for the debugger user anyway, we just
2472              discard these symbols.
2473            */
2474           
2475           if (SC_IS_TEXT (ext_in->asym.sc))
2476             {
2477               if (objfile->sect_index_text == -1)
2478                 continue;
2479                 
2480               ms_type = mst_file_text;
2481               svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2482             }
2483           else if (SC_IS_DATA (ext_in->asym.sc))
2484             {
2485               if (objfile->sect_index_data == -1)
2486                 continue;
2487
2488               ms_type = mst_file_data;
2489               svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2490             }
2491           else if (SC_IS_BSS (ext_in->asym.sc))
2492             {
2493               if (objfile->sect_index_bss == -1)
2494                 continue;
2495
2496               ms_type = mst_file_bss;
2497               svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2498             }
2499           else if (SC_IS_SBSS (ext_in->asym.sc))
2500             {
2501               const int sbss_sect_index = get_section_index (objfile, ".sbss");
2502
2503               if (sbss_sect_index == -1)
2504                 continue;
2505
2506               ms_type = mst_file_bss;
2507               svalue += ANOFFSET (objfile->section_offsets, sbss_sect_index);
2508             }
2509           else
2510             ms_type = mst_abs;
2511           break;
2512         case stLocal:
2513         case stNil:
2514           /* The alpha has the section start addresses in stLocal symbols
2515              whose name starts with a `.'. Skip those but complain for all
2516              other stLocal symbols.
2517              Irix6 puts the section start addresses in stNil symbols, skip
2518              those too. */
2519           if (name[0] == '.')
2520             continue;
2521           /* Fall through.  */
2522         default:
2523           ms_type = mst_unknown;
2524           unknown_ext_complaint (name);
2525         }
2526       if (!ECOFF_IN_ELF (cur_bfd))
2527         prim_record_minimal_symbol (name, svalue, ms_type, objfile);
2528     }
2529
2530   /* Pass 3 over files, over local syms: fill in static symbols */
2531   for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2532     {
2533       struct partial_symtab *save_pst;
2534       EXTR *ext_ptr;
2535       CORE_ADDR textlow;
2536
2537       cur_fdr = fh = debug_info->fdr + f_idx;
2538
2539       if (fh->csym == 0)
2540         {
2541           fdr_to_pst[f_idx].pst = NULL;
2542           continue;
2543         }
2544
2545       /* Determine the start address for this object file from the
2546          file header and relocate it, except for Irix 5.2 zero fh->adr.  */
2547       if (fh->cpd)
2548         {
2549           textlow = fh->adr;
2550           if (relocatable || textlow != 0)
2551             textlow += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2552         }
2553       else
2554         textlow = 0;
2555       pst = start_psymtab_common (objfile, objfile->section_offsets,
2556                                   fdr_name (fh),
2557                                   textlow,
2558                                   objfile->global_psymbols.next,
2559                                   objfile->static_psymbols.next);
2560       pst->read_symtab_private = ((char *)
2561                                   obstack_alloc (&objfile->psymbol_obstack,
2562                                                  sizeof (struct symloc)));
2563       memset (pst->read_symtab_private, 0, sizeof (struct symloc));
2564
2565       save_pst = pst;
2566       FDR_IDX (pst) = f_idx;
2567       CUR_BFD (pst) = cur_bfd;
2568       DEBUG_SWAP (pst) = debug_swap;
2569       DEBUG_INFO (pst) = debug_info;
2570       PENDING_LIST (pst) = pending_list;
2571
2572       /* The way to turn this into a symtab is to call... */
2573       pst->read_symtab = mdebug_psymtab_to_symtab;
2574
2575       /* Set up language for the pst.
2576          The language from the FDR is used if it is unambigious (e.g. cfront
2577          with native cc and g++ will set the language to C).
2578          Otherwise we have to deduce the language from the filename.
2579          Native ecoff has every header file in a separate FDR, so
2580          deduce_language_from_filename will return language_unknown for
2581          a header file, which is not what we want.
2582          But the FDRs for the header files are after the FDR for the source
2583          file, so we can assign the language of the source file to the
2584          following header files. Then we save the language in the private
2585          pst data so that we can reuse it when building symtabs.  */
2586       prev_language = psymtab_language;
2587
2588       switch (fh->lang)
2589         {
2590         case langCplusplusV2:
2591           psymtab_language = language_cplus;
2592           break;
2593         default:
2594           psymtab_language = deduce_language_from_filename (fdr_name (fh));
2595           break;
2596         }
2597       if (psymtab_language == language_unknown)
2598         psymtab_language = prev_language;
2599       PST_PRIVATE (pst)->pst_language = psymtab_language;
2600
2601       pst->texthigh = pst->textlow;
2602
2603       /* For stabs-in-ecoff files, the second symbol must be @stab.
2604          This symbol is emitted by mips-tfile to signal that the
2605          current object file uses encapsulated stabs instead of mips
2606          ecoff for local symbols.  (It is the second symbol because
2607          the first symbol is the stFile used to signal the start of a
2608          file). */
2609       processing_gcc_compilation = 0;
2610       if (fh->csym >= 2)
2611         {
2612           (*swap_sym_in) (cur_bfd,
2613                           ((char *) debug_info->external_sym
2614                            + (fh->isymBase + 1) * external_sym_size),
2615                           &sh);
2616           if (strcmp (debug_info->ss + fh->issBase + sh.iss,
2617                       stabs_symbol) == 0)
2618             processing_gcc_compilation = 2;
2619         }
2620
2621       if (processing_gcc_compilation != 0)
2622         {
2623           for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2624             {
2625               int type_code;
2626               char *namestring;
2627
2628               (*swap_sym_in) (cur_bfd,
2629                               (((char *) debug_info->external_sym)
2630                             + (fh->isymBase + cur_sdx) * external_sym_size),
2631                               &sh);
2632               type_code = ECOFF_UNMARK_STAB (sh.index);
2633               if (!ECOFF_IS_STAB (&sh))
2634                 {
2635                   if (sh.st == stProc || sh.st == stStaticProc)
2636                     {
2637                       CORE_ADDR procaddr;
2638                       long isym;
2639
2640                       sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2641                       if (sh.st == stStaticProc)
2642                         {
2643                           namestring = debug_info->ss + fh->issBase + sh.iss;
2644                           prim_record_minimal_symbol_and_info (namestring,
2645                                                                sh.value,
2646                                                                mst_file_text,
2647                                                                NULL,
2648                                                                SECT_OFF_TEXT (objfile),
2649                                                                NULL,
2650                                                                objfile);
2651                         }
2652                       procaddr = sh.value;
2653
2654                       isym = AUX_GET_ISYM (fh->fBigendian,
2655                                            (debug_info->external_aux
2656                                             + fh->iauxBase
2657                                             + sh.index));
2658                       (*swap_sym_in) (cur_bfd,
2659                                       ((char *) debug_info->external_sym
2660                                        + ((fh->isymBase + isym - 1)
2661                                           * external_sym_size)),
2662                                       &sh);
2663                       if (sh.st == stEnd)
2664                         {
2665                           CORE_ADDR high = procaddr + sh.value;
2666
2667                           /* Kludge for Irix 5.2 zero fh->adr.  */
2668                           if (!relocatable
2669                           && (pst->textlow == 0 || procaddr < pst->textlow))
2670                             pst->textlow = procaddr;
2671                           if (high > pst->texthigh)
2672                             pst->texthigh = high;
2673                         }
2674                     }
2675                   else if (sh.st == stStatic)
2676                     {
2677                       switch (sh.sc)
2678                         {
2679                         case scUndefined:
2680                         case scSUndefined:
2681                         case scNil:
2682                         case scAbs:
2683                           break;
2684
2685                         case scData:
2686                         case scSData:
2687                         case scRData:
2688                         case scPData:
2689                         case scXData:
2690                           namestring = debug_info->ss + fh->issBase + sh.iss;
2691                           sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2692                           prim_record_minimal_symbol_and_info (namestring,
2693                                                                sh.value,
2694                                                                mst_file_data,
2695                                                                NULL,
2696                                                                SECT_OFF_DATA (objfile),
2697                                                                NULL,
2698                                                                objfile);
2699                           break;
2700
2701                         default:
2702                           /* FIXME!  Shouldn't this use cases for bss, 
2703                              then have the default be abs? */
2704                           namestring = debug_info->ss + fh->issBase + sh.iss;
2705                           sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2706                           prim_record_minimal_symbol_and_info (namestring,
2707                                                                sh.value,
2708                                                                mst_file_bss,
2709                                                                NULL,
2710                                                                SECT_OFF_BSS (objfile),
2711                                                                NULL,
2712                                                                objfile);
2713                           break;
2714                         }
2715                     }
2716                   continue;
2717                 }
2718               /* Handle stabs continuation */
2719               {
2720                 char *stabstring = debug_info->ss + fh->issBase + sh.iss;
2721                 int len = strlen (stabstring);
2722                 while (stabstring[len - 1] == '\\')
2723                   {
2724                     SYMR sh2;
2725                     char *stabstring1 = stabstring;
2726                     char *stabstring2;
2727                     int len2;
2728
2729                     /* Ignore continuation char from 1st string */
2730                     len--;
2731
2732                     /* Read next stabstring */
2733                     cur_sdx++;
2734                     (*swap_sym_in) (cur_bfd,
2735                                     (((char *) debug_info->external_sym)
2736                                      + (fh->isymBase + cur_sdx)
2737                                      * external_sym_size),
2738                                     &sh2);
2739                     stabstring2 = debug_info->ss + fh->issBase + sh2.iss;
2740                     len2 = strlen (stabstring2);
2741
2742                     /* Concatinate stabstring2 with stabstring1 */
2743                     if (stabstring
2744                      && stabstring != debug_info->ss + fh->issBase + sh.iss)
2745                       stabstring = xrealloc (stabstring, len + len2 + 1);
2746                     else
2747                       {
2748                         stabstring = xmalloc (len + len2 + 1);
2749                         strcpy (stabstring, stabstring1);
2750                       }
2751                     strcpy (stabstring + len, stabstring2);
2752                     len += len2;
2753                   }
2754
2755                 switch (type_code)
2756                   {
2757                     char *p;
2758                     /*
2759                      * Standard, external, non-debugger, symbols
2760                      */
2761
2762                   case N_TEXT | N_EXT:
2763                   case N_NBTEXT | N_EXT:
2764                     sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2765                     goto record_it;
2766
2767                   case N_DATA | N_EXT:
2768                   case N_NBDATA | N_EXT:
2769                     sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2770                     goto record_it;
2771
2772                   case N_BSS:
2773                   case N_BSS | N_EXT:
2774                   case N_NBBSS | N_EXT:
2775                   case N_SETV | N_EXT:          /* FIXME, is this in BSS? */
2776                     sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2777                     goto record_it;
2778
2779                   case N_ABS | N_EXT:
2780                   record_it:
2781                   continue;
2782
2783                   /* Standard, local, non-debugger, symbols */
2784
2785                   case N_NBTEXT:
2786
2787                     /* We need to be able to deal with both N_FN or N_TEXT,
2788                        because we have no way of knowing whether the sys-supplied ld
2789                        or GNU ld was used to make the executable.  Sequents throw
2790                        in another wrinkle -- they renumbered N_FN.  */
2791
2792                   case N_FN:
2793                   case N_FN_SEQ:
2794                   case N_TEXT:
2795                     continue;
2796
2797                   case N_DATA:
2798                     sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2799                     goto record_it;
2800
2801                   case N_UNDF | N_EXT:
2802                     continue;                   /* Just undefined, not COMMON */
2803
2804                   case N_UNDF:
2805                     continue;
2806
2807                     /* Lots of symbol types we can just ignore.  */
2808
2809                   case N_ABS:
2810                   case N_NBDATA:
2811                   case N_NBBSS:
2812                     continue;
2813
2814                     /* Keep going . . . */
2815
2816                     /*
2817                      * Special symbol types for GNU
2818                      */
2819                   case N_INDR:
2820                   case N_INDR | N_EXT:
2821                   case N_SETA:
2822                   case N_SETA | N_EXT:
2823                   case N_SETT:
2824                   case N_SETT | N_EXT:
2825                   case N_SETD:
2826                   case N_SETD | N_EXT:
2827                   case N_SETB:
2828                   case N_SETB | N_EXT:
2829                   case N_SETV:
2830                     continue;
2831
2832                     /*
2833                      * Debugger symbols
2834                      */
2835
2836                   case N_SO:
2837                     {
2838                       CORE_ADDR valu;
2839                       static int prev_so_symnum = -10;
2840                       static int first_so_symnum;
2841                       char *p;
2842                       int prev_textlow_not_set;
2843
2844                       valu = sh.value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2845
2846                       prev_textlow_not_set = textlow_not_set;
2847
2848 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2849                       /* A zero value is probably an indication for the SunPRO 3.0
2850                          compiler. end_psymtab explicitly tests for zero, so
2851                          don't relocate it.  */
2852
2853                       if (sh.value == 0)
2854                         {
2855                           textlow_not_set = 1;
2856                           valu = 0;
2857                         }
2858                       else
2859                         textlow_not_set = 0;
2860 #else
2861                       textlow_not_set = 0;
2862 #endif
2863                       past_first_source_file = 1;
2864
2865                       if (prev_so_symnum != symnum - 1)
2866                         {                       /* Here if prev stab wasn't N_SO */
2867                           first_so_symnum = symnum;
2868
2869                           if (pst)
2870                             {
2871                               pst = (struct partial_symtab *) 0;
2872                               includes_used = 0;
2873                               dependencies_used = 0;
2874                             }
2875                         }
2876
2877                       prev_so_symnum = symnum;
2878
2879                       /* End the current partial symtab and start a new one */
2880
2881                       /* SET_NAMESTRING ();*/
2882                       namestring = stabstring;
2883
2884                       /* Null name means end of .o file.  Don't start a new one. */
2885                       if (*namestring == '\000')
2886                         continue;
2887
2888                       /* Some compilers (including gcc) emit a pair of initial N_SOs.
2889                          The first one is a directory name; the second the file name.
2890                          If pst exists, is empty, and has a filename ending in '/',
2891                          we assume the previous N_SO was a directory name. */
2892
2893                       p = strrchr (namestring, '/');
2894                       if (p && *(p + 1) == '\000')
2895                         continue;               /* Simply ignore directory name SOs */
2896
2897                       /* Some other compilers (C++ ones in particular) emit useless
2898                          SOs for non-existant .c files.  We ignore all subsequent SOs that
2899                          immediately follow the first.  */
2900
2901                       if (!pst)
2902                         pst = save_pst;
2903                       continue;
2904                     }
2905
2906                   case N_BINCL:
2907                     continue;
2908
2909                   case N_SOL:
2910                     {
2911                       enum language tmp_language;
2912                       /* Mark down an include file in the current psymtab */
2913
2914                       /* SET_NAMESTRING ();*/
2915                       namestring = stabstring;
2916
2917                       tmp_language = deduce_language_from_filename (namestring);
2918
2919                       /* Only change the psymtab's language if we've learned
2920                          something useful (eg. tmp_language is not language_unknown).
2921                          In addition, to match what start_subfile does, never change
2922                          from C++ to C.  */
2923                       if (tmp_language != language_unknown
2924                           && (tmp_language != language_c
2925                               || psymtab_language != language_cplus))
2926                         psymtab_language = tmp_language;
2927
2928                       /* In C++, one may expect the same filename to come round many
2929                          times, when code is coming alternately from the main file
2930                          and from inline functions in other files. So I check to see
2931                          if this is a file we've seen before -- either the main
2932                          source file, or a previously included file.
2933
2934                          This seems to be a lot of time to be spending on N_SOL, but
2935                          things like "break c-exp.y:435" need to work (I
2936                          suppose the psymtab_include_list could be hashed or put
2937                          in a binary tree, if profiling shows this is a major hog).  */
2938                       if (pst && strcmp (namestring, pst->filename) == 0)
2939                         continue;
2940                       {
2941                         int i;
2942                         for (i = 0; i < includes_used; i++)
2943                           if (strcmp (namestring,
2944                                       psymtab_include_list[i]) == 0)
2945                             {
2946                               i = -1;
2947                               break;
2948                             }
2949                         if (i == -1)
2950                           continue;
2951                       }
2952
2953                       psymtab_include_list[includes_used++] = namestring;
2954                       if (includes_used >= includes_allocated)
2955                         {
2956                           char **orig = psymtab_include_list;
2957
2958                           psymtab_include_list = (char **)
2959                             alloca ((includes_allocated *= 2) *
2960                                     sizeof (char *));
2961                           memcpy (psymtab_include_list, orig,
2962                                   includes_used * sizeof (char *));
2963                         }
2964                       continue;
2965                     }
2966                   case N_LSYM:                  /* Typedef or automatic variable. */
2967                   case N_STSYM:         /* Data seg var -- static  */
2968                   case N_LCSYM:         /* BSS      "  */
2969                   case N_ROSYM:         /* Read-only data seg var -- static.  */
2970                   case N_NBSTS:         /* Gould nobase.  */
2971                   case N_NBLCS:         /* symbols.  */
2972                   case N_FUN:
2973                   case N_GSYM:                  /* Global (extern) variable; can be
2974                                                    data or bss (sigh FIXME).  */
2975
2976                     /* Following may probably be ignored; I'll leave them here
2977                        for now (until I do Pascal and Modula 2 extensions).  */
2978
2979                   case N_PC:                    /* I may or may not need this; I
2980                                                    suspect not.  */
2981                   case N_M2C:                   /* I suspect that I can ignore this here. */
2982                   case N_SCOPE:         /* Same.   */
2983
2984                     /*    SET_NAMESTRING ();*/
2985                     namestring = stabstring;
2986                     p = (char *) strchr (namestring, ':');
2987                     if (!p)
2988                       continue;                 /* Not a debugging symbol.   */
2989
2990
2991
2992                     /* Main processing section for debugging symbols which
2993                        the initial read through the symbol tables needs to worry
2994                        about.  If we reach this point, the symbol which we are
2995                        considering is definitely one we are interested in.
2996                        p must also contain the (valid) index into the namestring
2997                        which indicates the debugging type symbol.  */
2998
2999                     switch (p[1])
3000                       {
3001                       case 'S':
3002                         sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3003 #ifdef STATIC_TRANSFORM_NAME
3004                         namestring = STATIC_TRANSFORM_NAME (namestring);
3005 #endif
3006                         add_psymbol_to_list (namestring, p - namestring,
3007                                              VAR_DOMAIN, LOC_STATIC,
3008                                              &objfile->static_psymbols,
3009                                              0, sh.value,
3010                                              psymtab_language, objfile);
3011                         continue;
3012                       case 'G':
3013                         sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3014                         /* The addresses in these entries are reported to be
3015                            wrong.  See the code that reads 'G's for symtabs. */
3016                         add_psymbol_to_list (namestring, p - namestring,
3017                                              VAR_DOMAIN, LOC_STATIC,
3018                                              &objfile->global_psymbols,
3019                                              0, sh.value,
3020                                              psymtab_language, objfile);
3021                         continue;
3022
3023                       case 'T':
3024                         /* When a 'T' entry is defining an anonymous enum, it
3025                            may have a name which is the empty string, or a
3026                            single space.  Since they're not really defining a
3027                            symbol, those shouldn't go in the partial symbol
3028                            table.  We do pick up the elements of such enums at
3029                            'check_enum:', below.  */
3030                         if (p >= namestring + 2
3031                             || (p == namestring + 1
3032                                 && namestring[0] != ' '))
3033                           {
3034                             add_psymbol_to_list (namestring, p - namestring,
3035                                                  STRUCT_DOMAIN, LOC_TYPEDEF,
3036                                                  &objfile->static_psymbols,
3037                                                  sh.value, 0,
3038                                                  psymtab_language, objfile);
3039                             if (p[2] == 't')
3040                               {
3041                                 /* Also a typedef with the same name.  */
3042                                 add_psymbol_to_list (namestring, p - namestring,
3043                                                      VAR_DOMAIN, LOC_TYPEDEF,
3044                                                      &objfile->static_psymbols,
3045                                                      sh.value, 0,
3046                                                      psymtab_language, objfile);
3047                                 p += 1;
3048                               }
3049                           }
3050                         goto check_enum;
3051                       case 't':
3052                         if (p != namestring)    /* a name is there, not just :T... */
3053                           {
3054                             add_psymbol_to_list (namestring, p - namestring,
3055                                                  VAR_DOMAIN, LOC_TYPEDEF,
3056                                                  &objfile->static_psymbols,
3057                                                  sh.value, 0,
3058                                                  psymtab_language, objfile);
3059                           }
3060                       check_enum:
3061                         /* If this is an enumerated type, we need to
3062                            add all the enum constants to the partial symbol
3063                            table.  This does not cover enums without names, e.g.
3064                            "enum {a, b} c;" in C, but fortunately those are
3065                            rare.  There is no way for GDB to find those from the
3066                            enum type without spending too much time on it.  Thus
3067                            to solve this problem, the compiler needs to put out the
3068                            enum in a nameless type.  GCC2 does this.  */
3069
3070                         /* We are looking for something of the form
3071                            <name> ":" ("t" | "T") [<number> "="] "e"
3072                            {<constant> ":" <value> ","} ";".  */
3073
3074                         /* Skip over the colon and the 't' or 'T'.  */
3075                         p += 2;
3076                         /* This type may be given a number.  Also, numbers can come
3077                            in pairs like (0,26).  Skip over it.  */
3078                         while ((*p >= '0' && *p <= '9')
3079                                || *p == '(' || *p == ',' || *p == ')'
3080                                || *p == '=')
3081                           p++;
3082
3083                         if (*p++ == 'e')
3084                           {
3085                             /* The aix4 compiler emits extra crud before the members.  */
3086                             if (*p == '-')
3087                               {
3088                                 /* Skip over the type (?).  */
3089                                 while (*p != ':')
3090                                   p++;
3091
3092                                 /* Skip over the colon.  */
3093                                 p++;
3094                               }
3095
3096                             /* We have found an enumerated type.  */
3097                             /* According to comments in read_enum_type
3098                                a comma could end it instead of a semicolon.
3099                                I don't know where that happens.
3100                                Accept either.  */
3101                             while (*p && *p != ';' && *p != ',')
3102                               {
3103                                 char *q;
3104
3105                                 /* Check for and handle cretinous dbx symbol name
3106                                    continuation!  */
3107                                 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
3108                                   p = next_symbol_text (objfile);
3109
3110                                 /* Point to the character after the name
3111                                    of the enum constant.  */
3112                                 for (q = p; *q && *q != ':'; q++)
3113                                   ;
3114                                 /* Note that the value doesn't matter for
3115                                    enum constants in psymtabs, just in symtabs.  */
3116                                 add_psymbol_to_list (p, q - p,
3117                                                      VAR_DOMAIN, LOC_CONST,
3118                                                      &objfile->static_psymbols, 0,
3119                                                      0, psymtab_language, objfile);
3120                                 /* Point past the name.  */
3121                                 p = q;
3122                                 /* Skip over the value.  */
3123                                 while (*p && *p != ',')
3124                                   p++;
3125                                 /* Advance past the comma.  */
3126                                 if (*p)
3127                                   p++;
3128                               }
3129                           }
3130                         continue;
3131                       case 'c':
3132                         /* Constant, e.g. from "const" in Pascal.  */
3133                         add_psymbol_to_list (namestring, p - namestring,
3134                                              VAR_DOMAIN, LOC_CONST,
3135                                              &objfile->static_psymbols, sh.value,
3136                                              0, psymtab_language, objfile);
3137                         continue;
3138
3139                       case 'f':
3140                         if (! pst)
3141                           {
3142                             int name_len = p - namestring;
3143                             char *name = xmalloc (name_len + 1);
3144                             memcpy (name, namestring, name_len);
3145                             name[name_len] = '\0';
3146                             function_outside_compilation_unit_complaint (name);
3147                             xfree (name);
3148                           }
3149                         sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3150                         add_psymbol_to_list (namestring, p - namestring,
3151                                              VAR_DOMAIN, LOC_BLOCK,
3152                                              &objfile->static_psymbols,
3153                                              0, sh.value,
3154                                              psymtab_language, objfile);
3155                         continue;
3156
3157                         /* Global functions were ignored here, but now they
3158                            are put into the global psymtab like one would expect.
3159                            They're also in the minimal symbol table.  */
3160                       case 'F':
3161                         if (! pst)
3162                           {
3163                             int name_len = p - namestring;
3164                             char *name = xmalloc (name_len + 1);
3165                             memcpy (name, namestring, name_len);
3166                             name[name_len] = '\0';
3167                             function_outside_compilation_unit_complaint (name);
3168                             xfree (name);
3169                           }
3170                         sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3171                         add_psymbol_to_list (namestring, p - namestring,
3172                                              VAR_DOMAIN, LOC_BLOCK,
3173                                              &objfile->global_psymbols,
3174                                              0, sh.value,
3175                                              psymtab_language, objfile);
3176                         continue;
3177
3178                         /* Two things show up here (hopefully); static symbols of
3179                            local scope (static used inside braces) or extensions
3180                            of structure symbols.  We can ignore both.  */
3181                       case 'V':
3182                       case '(':
3183                       case '0':
3184                       case '1':
3185                       case '2':
3186                       case '3':
3187                       case '4':
3188                       case '5':
3189                       case '6':
3190                       case '7':
3191                       case '8':
3192                       case '9':
3193                       case '-':
3194                       case '#':         /* for symbol identification (used in live ranges) */
3195                         continue;
3196
3197                       case ':':
3198                         /* It is a C++ nested symbol.  We don't need to record it
3199                            (I don't think); if we try to look up foo::bar::baz,
3200                            then symbols for the symtab containing foo should get
3201                            read in, I think.  */
3202                         /* Someone says sun cc puts out symbols like
3203                            /foo/baz/maclib::/usr/local/bin/maclib,
3204                            which would get here with a symbol type of ':'.  */
3205                         continue;
3206
3207                       default:
3208                         /* Unexpected symbol descriptor.  The second and subsequent stabs
3209                            of a continued stab can show up here.  The question is
3210                            whether they ever can mimic a normal stab--it would be
3211                            nice if not, since we certainly don't want to spend the
3212                            time searching to the end of every string looking for
3213                            a backslash.  */
3214
3215                         complaint (&symfile_complaints,
3216                                    "unknown symbol descriptor `%c'", p[1]);
3217
3218                         /* Ignore it; perhaps it is an extension that we don't
3219                            know about.  */
3220                         continue;
3221                       }
3222
3223                   case N_EXCL:
3224                     continue;
3225
3226                   case N_ENDM:
3227 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
3228                     /* Solaris 2 end of module, finish current partial
3229                        symbol table.  END_PSYMTAB will set
3230                        pst->texthigh to the proper value, which is
3231                        necessary if a module compiled without
3232                        debugging info follows this module.  */
3233                     if (pst)
3234                       {
3235                         pst = (struct partial_symtab *) 0;
3236                         includes_used = 0;
3237                         dependencies_used = 0;
3238                       }
3239 #endif
3240                     continue;
3241
3242                   case N_RBRAC:
3243                     if (sh.value > save_pst->texthigh)
3244                       save_pst->texthigh = sh.value;
3245                     continue;
3246                   case N_EINCL:
3247                   case N_DSLINE:
3248                   case N_BSLINE:
3249                   case N_SSYM:                  /* Claim: Structure or union element.
3250                                                    Hopefully, I can ignore this.  */
3251                   case N_ENTRY:         /* Alternate entry point; can ignore. */
3252                   case N_MAIN:                  /* Can definitely ignore this.   */
3253                   case N_CATCH:         /* These are GNU C++ extensions */
3254                   case N_EHDECL:                /* that can safely be ignored here. */
3255                   case N_LENG:
3256                   case N_BCOMM:
3257                   case N_ECOMM:
3258                   case N_ECOML:
3259                   case N_FNAME:
3260                   case N_SLINE:
3261                   case N_RSYM:
3262                   case N_PSYM:
3263                   case N_LBRAC:
3264                   case N_NSYMS:         /* Ultrix 4.0: symbol count */
3265                   case N_DEFD:                  /* GNU Modula-2 */
3266                   case N_ALIAS:         /* SunPro F77: alias name, ignore for now.  */
3267
3268                   case N_OBJ:                   /* useless types from Solaris */
3269                   case N_OPT:
3270                     /* These symbols aren't interesting; don't worry about them */
3271
3272                     continue;
3273
3274                   default:
3275                     /* If we haven't found it yet, ignore it.  It's probably some
3276                        new type we don't know about yet.  */
3277                     complaint (&symfile_complaints, "unknown symbol type %s",
3278                                local_hex_string (type_code)); /*CUR_SYMBOL_TYPE*/
3279                     continue;
3280                   }
3281                 if (stabstring
3282                     && stabstring != debug_info->ss + fh->issBase + sh.iss)
3283                   xfree (stabstring);
3284               }
3285               /* end - Handle continuation */
3286             }
3287         }
3288       else
3289         {
3290           for (cur_sdx = 0; cur_sdx < fh->csym;)
3291             {
3292               char *name;
3293               enum address_class class;
3294
3295               (*swap_sym_in) (cur_bfd,
3296                               ((char *) debug_info->external_sym
3297                                + ((fh->isymBase + cur_sdx)
3298                                   * external_sym_size)),
3299                               &sh);
3300
3301               if (ECOFF_IS_STAB (&sh))
3302                 {
3303                   cur_sdx++;
3304                   continue;
3305                 }
3306
3307               /* Non absolute static symbols go into the minimal table.  */
3308               if (SC_IS_UNDEF (sh.sc) || sh.sc == scNil
3309                   || (sh.index == indexNil
3310                       && (sh.st != stStatic || sh.sc == scAbs)))
3311                 {
3312                   /* FIXME, premature? */
3313                   cur_sdx++;
3314                   continue;
3315                 }
3316
3317               name = debug_info->ss + fh->issBase + sh.iss;
3318
3319               switch (sh.sc)
3320                 {
3321                 case scText:
3322                 case scRConst:
3323                   /* The value of a stEnd symbol is the displacement from the
3324                      corresponding start symbol value, do not relocate it.  */
3325                   if (sh.st != stEnd)
3326                     sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3327                   break;
3328                 case scData:
3329                 case scSData:
3330                 case scRData:
3331                 case scPData:
3332                 case scXData:
3333                   sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3334                   break;
3335                 case scBss:
3336                 case scSBss:
3337                   sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
3338                   break;
3339                 }
3340
3341               switch (sh.st)
3342                 {
3343                   CORE_ADDR high;
3344                   CORE_ADDR procaddr;
3345                   int new_sdx;
3346
3347                 case stStaticProc:
3348                   prim_record_minimal_symbol_and_info (name, sh.value,
3349                                                        mst_file_text, NULL,
3350                                                        SECT_OFF_TEXT (objfile), NULL,
3351                                                        objfile);
3352
3353                   /* FALLTHROUGH */
3354
3355                 case stProc:
3356                   /* Ignore all parameter symbol records.  */
3357                   if (sh.index >= hdr->iauxMax)
3358                     {
3359                       /* Should not happen, but does when cross-compiling
3360                          with the MIPS compiler.  FIXME -- pull later.  */
3361                       index_complaint (name);
3362                       new_sdx = cur_sdx + 1;    /* Don't skip at all */
3363                     }
3364                   else
3365                     new_sdx = AUX_GET_ISYM (fh->fBigendian,
3366                                             (debug_info->external_aux
3367                                              + fh->iauxBase
3368                                              + sh.index));
3369
3370                   if (new_sdx <= cur_sdx)
3371                     {
3372                       /* This should not happen either... FIXME.  */
3373                       complaint (&symfile_complaints,
3374                                  "bad proc end in aux found from symbol %s",
3375                                  name);
3376                       new_sdx = cur_sdx + 1;    /* Don't skip backward */
3377                     }
3378
3379                   /* For stProc symbol records, we need to check the
3380                      storage class as well, as only (stProc, scText)
3381                      entries represent "real" procedures - See the
3382                      Compaq document titled "Object File / Symbol Table
3383                      Format Specification" for more information.  If the
3384                      storage class is not scText, we discard the whole
3385                      block of symbol records for this stProc.  */
3386                   if (sh.st == stProc && sh.sc != scText)
3387                     goto skip;
3388
3389                   /* Usually there is a local and a global stProc symbol
3390                      for a function. This means that the function name
3391                      has already been entered into the mimimal symbol table
3392                      while processing the global symbols in pass 2 above.
3393                      One notable exception is the PROGRAM name from
3394                      f77 compiled executables, it is only put out as
3395                      local stProc symbol, and a global MAIN__ stProc symbol
3396                      points to it.  It doesn't matter though, as gdb is
3397                      still able to find the PROGRAM name via the partial
3398                      symbol table, and the MAIN__ symbol via the minimal
3399                      symbol table.  */
3400                   if (sh.st == stProc)
3401                     add_psymbol_to_list (name, strlen (name),
3402                                          VAR_DOMAIN, LOC_BLOCK,
3403                                          &objfile->global_psymbols,
3404                                     0, sh.value, psymtab_language, objfile);
3405                   else
3406                     add_psymbol_to_list (name, strlen (name),
3407                                          VAR_DOMAIN, LOC_BLOCK,
3408                                          &objfile->static_psymbols,
3409                                     0, sh.value, psymtab_language, objfile);
3410
3411                   procaddr = sh.value;
3412
3413                   cur_sdx = new_sdx;
3414                   (*swap_sym_in) (cur_bfd,
3415                                   ((char *) debug_info->external_sym
3416                                    + ((fh->isymBase + cur_sdx - 1)
3417                                       * external_sym_size)),
3418                                   &sh);
3419                   if (sh.st != stEnd)
3420                     continue;
3421
3422                   /* Kludge for Irix 5.2 zero fh->adr.  */
3423                   if (!relocatable
3424                       && (pst->textlow == 0 || procaddr < pst->textlow))
3425                     pst->textlow = procaddr;
3426
3427                   high = procaddr + sh.value;
3428                   if (high > pst->texthigh)
3429                     pst->texthigh = high;
3430                   continue;
3431
3432                 case stStatic:  /* Variable */
3433                   if (SC_IS_DATA (sh.sc))
3434                     prim_record_minimal_symbol_and_info (name, sh.value,
3435                                                          mst_file_data, NULL,
3436                                                          SECT_OFF_DATA (objfile),
3437                                                          NULL,
3438                                                          objfile);
3439                   else
3440                     prim_record_minimal_symbol_and_info (name, sh.value,
3441                                                          mst_file_bss, NULL,
3442                                                          SECT_OFF_BSS (objfile),
3443                                                          NULL,
3444                                                          objfile);
3445                   class = LOC_STATIC;
3446                   break;
3447
3448                 case stIndirect:        /* Irix5 forward declaration */
3449                   /* Skip forward declarations from Irix5 cc */
3450                   goto skip;
3451
3452                 case stTypedef: /* Typedef */
3453                   /* Skip typedefs for forward declarations and opaque
3454                      structs from alpha and mips cc.  */
3455                   if (sh.iss == 0 || has_opaque_xref (fh, &sh))
3456                     goto skip;
3457                   class = LOC_TYPEDEF;
3458                   break;
3459
3460                 case stConstant:        /* Constant decl */
3461                   class = LOC_CONST;
3462                   break;
3463
3464                 case stUnion:
3465                 case stStruct:
3466                 case stEnum:
3467                 case stBlock:   /* { }, str, un, enum */
3468                   /* Do not create a partial symbol for cc unnamed aggregates
3469                      and gcc empty aggregates. */
3470                   if ((sh.sc == scInfo
3471                        || SC_IS_COMMON (sh.sc))
3472                       && sh.iss != 0
3473                       && sh.index != cur_sdx + 2)
3474                     {
3475                       add_psymbol_to_list (name, strlen (name),
3476                                            STRUCT_DOMAIN, LOC_TYPEDEF,
3477                                            &objfile->static_psymbols,
3478                                            0, (CORE_ADDR) 0,
3479                                            psymtab_language, objfile);
3480                     }
3481                   handle_psymbol_enumerators (objfile, fh, sh.st, sh.value);
3482
3483                   /* Skip over the block */
3484                   new_sdx = sh.index;
3485                   if (new_sdx <= cur_sdx)
3486                     {
3487                       /* This happens with the Ultrix kernel. */
3488                       complaint (&symfile_complaints,
3489                                  "bad aux index at block symbol %s", name);
3490                       new_sdx = cur_sdx + 1;    /* Don't skip backward */
3491                     }
3492                   cur_sdx = new_sdx;
3493                   continue;
3494
3495                 case stFile:    /* File headers */
3496                 case stLabel:   /* Labels */
3497                 case stEnd:     /* Ends of files */
3498                   goto skip;
3499
3500                 case stLocal:   /* Local variables */
3501                   /* Normally these are skipped because we skip over
3502                      all blocks we see.  However, these can occur
3503                      as visible symbols in a .h file that contains code. */
3504                   goto skip;
3505
3506                 default:
3507                   /* Both complaints are valid:  one gives symbol name,
3508                      the other the offending symbol type.  */
3509                   complaint (&symfile_complaints, "unknown local symbol %s",
3510                              name);
3511                   complaint (&symfile_complaints, "with type %d", sh.st);
3512                   cur_sdx++;
3513                   continue;
3514                 }
3515               /* Use this gdb symbol */
3516               add_psymbol_to_list (name, strlen (name),
3517                                    VAR_DOMAIN, class,
3518                                    &objfile->static_psymbols,
3519                                    0, sh.value, psymtab_language, objfile);
3520             skip:
3521               cur_sdx++;        /* Go to next file symbol */
3522             }
3523
3524           /* Now do enter the external symbols. */
3525           ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
3526           cur_sdx = fdr_to_pst[f_idx].n_globals;
3527           PST_PRIVATE (save_pst)->extern_count = cur_sdx;
3528           PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
3529           for (; --cur_sdx >= 0; ext_ptr++)
3530             {
3531               enum address_class class;
3532               SYMR *psh;
3533               char *name;
3534               CORE_ADDR svalue;
3535
3536               if (ext_ptr->ifd != f_idx)
3537                 internal_error (__FILE__, __LINE__, "failed internal consistency check");
3538               psh = &ext_ptr->asym;
3539
3540               /* Do not add undefined symbols to the partial symbol table.  */
3541               if (SC_IS_UNDEF (psh->sc) || psh->sc == scNil)
3542                 continue;
3543
3544               svalue = psh->value;
3545               switch (psh->sc)
3546                 {
3547                 case scText:
3548                 case scRConst:
3549                   svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3550                   break;
3551                 case scData:
3552                 case scSData:
3553                 case scRData:
3554                 case scPData:
3555                 case scXData:
3556                   svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3557                   break;
3558                 case scBss:
3559                 case scSBss:
3560                   svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
3561                   break;
3562                 }
3563
3564               switch (psh->st)
3565                 {
3566                 case stNil:
3567                   /* These are generated for static symbols in .o files,
3568                      ignore them.  */
3569                   continue;
3570                 case stProc:
3571                 case stStaticProc:
3572                   /* External procedure symbols have been entered
3573                      into the minimal symbol table in pass 2 above.
3574                      Ignore them, as parse_external will ignore them too.  */
3575                   continue;
3576                 case stLabel:
3577                   class = LOC_LABEL;
3578                   break;
3579                 default:
3580                   unknown_ext_complaint (debug_info->ssext + psh->iss);
3581                   /* Fall through, pretend it's global.  */
3582                 case stGlobal:
3583                   /* Global common symbols are resolved by the runtime loader,
3584                      ignore them.  */
3585                   if (SC_IS_COMMON (psh->sc))
3586                     continue;
3587
3588                   class = LOC_STATIC;
3589                   break;
3590                 }
3591               name = debug_info->ssext + psh->iss;
3592               add_psymbol_to_list (name, strlen (name),
3593                                    VAR_DOMAIN, class,
3594                                    &objfile->global_psymbols,
3595                                    0, svalue,
3596                                    psymtab_language, objfile);
3597             }
3598         }
3599
3600       /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
3601          empty and put on the free list.  */
3602       fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
3603                                         psymtab_include_list, includes_used,
3604                                            -1, save_pst->texthigh,
3605                        dependency_list, dependencies_used, textlow_not_set);
3606       includes_used = 0;
3607       dependencies_used = 0;
3608
3609       if (objfile->ei.entry_point >= save_pst->textlow &&
3610           objfile->ei.entry_point < save_pst->texthigh)
3611         {
3612           objfile->ei.deprecated_entry_file_lowpc = save_pst->textlow;
3613           objfile->ei.deprecated_entry_file_highpc = save_pst->texthigh;
3614         }
3615
3616       /* The objfile has its functions reordered if this partial symbol
3617          table overlaps any other partial symbol table.
3618          We cannot assume a reordered objfile if a partial symbol table
3619          is contained within another partial symbol table, as partial symbol
3620          tables for include files with executable code are contained
3621          within the partial symbol table for the including source file,
3622          and we do not want to flag the objfile reordered for these cases.
3623
3624          This strategy works well for Irix-5.2 shared libraries, but we
3625          might have to use a more elaborate (and slower) algorithm for
3626          other cases.  */
3627       save_pst = fdr_to_pst[f_idx].pst;
3628       if (save_pst != NULL
3629           && save_pst->textlow != 0
3630           && !(objfile->flags & OBJF_REORDERED))
3631         {
3632           ALL_OBJFILE_PSYMTABS (objfile, pst)
3633           {
3634             if (save_pst != pst
3635                 && save_pst->textlow >= pst->textlow
3636                 && save_pst->textlow < pst->texthigh
3637                 && save_pst->texthigh > pst->texthigh)
3638               {
3639                 objfile->flags |= OBJF_REORDERED;
3640                 break;
3641               }
3642           }
3643         }
3644     }
3645
3646   /* Now scan the FDRs for dependencies */
3647   for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
3648     {
3649       fh = f_idx + debug_info->fdr;
3650       pst = fdr_to_pst[f_idx].pst;
3651
3652       if (pst == (struct partial_symtab *) NULL)
3653         continue;
3654
3655       /* This should catch stabs-in-ecoff. */
3656       if (fh->crfd <= 1)
3657         continue;
3658
3659       /* Skip the first file indirect entry as it is a self dependency
3660          for source files or a reverse .h -> .c dependency for header files.  */
3661       pst->number_of_dependencies = 0;
3662       pst->dependencies =
3663         ((struct partial_symtab **)
3664          obstack_alloc (&objfile->psymbol_obstack,
3665                         ((fh->crfd - 1)
3666                          * sizeof (struct partial_symtab *))));
3667       for (s_idx = 1; s_idx < fh->crfd; s_idx++)
3668         {
3669           RFDT rh;
3670
3671           (*swap_rfd_in) (cur_bfd,
3672                           ((char *) debug_info->external_rfd
3673                            + (fh->rfdBase + s_idx) * external_rfd_size),
3674                           &rh);
3675           if (rh < 0 || rh >= hdr->ifdMax)
3676             {
3677               complaint (&symfile_complaints, "bad file number %ld", rh);
3678               continue;
3679             }
3680
3681           /* Skip self dependencies of header files.  */
3682           if (rh == f_idx)
3683             continue;
3684
3685           /* Do not add to dependeny list if psymtab was empty.  */
3686           if (fdr_to_pst[rh].pst == (struct partial_symtab *) NULL)
3687             continue;
3688           pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
3689         }
3690     }
3691
3692   /* Remove the dummy psymtab created for -O3 images above, if it is
3693      still empty, to enable the detection of stripped executables.  */
3694   if (objfile->psymtabs->next == NULL
3695       && objfile->psymtabs->number_of_dependencies == 0
3696       && objfile->psymtabs->n_global_syms == 0
3697       && objfile->psymtabs->n_static_syms == 0)
3698     objfile->psymtabs = NULL;
3699   do_cleanups (old_chain);
3700 }
3701
3702 /* If the current psymbol has an enumerated type, we need to add
3703    all the the enum constants to the partial symbol table.  */
3704
3705 static void
3706 handle_psymbol_enumerators (struct objfile *objfile, FDR *fh, int stype,
3707                             CORE_ADDR svalue)
3708 {
3709   const bfd_size_type external_sym_size = debug_swap->external_sym_size;
3710   void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
3711   char *ext_sym = ((char *) debug_info->external_sym
3712                    + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
3713   SYMR sh;
3714   TIR tir;
3715
3716   switch (stype)
3717     {
3718     case stEnum:
3719       break;
3720
3721     case stBlock:
3722       /* It is an enumerated type if the next symbol entry is a stMember
3723          and its auxiliary index is indexNil or its auxiliary entry
3724          is a plain btNil or btVoid.
3725          Alpha cc -migrate enums are recognized by a zero index and
3726          a zero symbol value.
3727          DU 4.0 cc enums are recognized by a member type of btEnum without
3728          qualifiers and a zero symbol value.  */
3729       (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3730       if (sh.st != stMember)
3731         return;
3732
3733       if (sh.index == indexNil
3734           || (sh.index == 0 && svalue == 0))
3735         break;
3736       (*debug_swap->swap_tir_in) (fh->fBigendian,
3737                                   &(debug_info->external_aux
3738                                     + fh->iauxBase + sh.index)->a_ti,
3739                                   &tir);
3740       if ((tir.bt != btNil
3741            && tir.bt != btVoid
3742            && (tir.bt != btEnum || svalue != 0))
3743           || tir.tq0 != tqNil)
3744         return;
3745       break;
3746
3747     default:
3748       return;
3749     }
3750
3751   for (;;)
3752     {
3753       char *name;
3754
3755       (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3756       if (sh.st != stMember)
3757         break;
3758       name = debug_info->ss + cur_fdr->issBase + sh.iss;
3759
3760       /* Note that the value doesn't matter for enum constants
3761          in psymtabs, just in symtabs.  */
3762       add_psymbol_to_list (name, strlen (name),
3763                            VAR_DOMAIN, LOC_CONST,
3764                            &objfile->static_psymbols, 0,
3765                            (CORE_ADDR) 0, psymtab_language, objfile);
3766       ext_sym += external_sym_size;
3767     }
3768 }
3769
3770 /* Get the next symbol.  OBJFILE is unused. */
3771
3772 static char *
3773 mdebug_next_symbol_text (struct objfile *objfile)
3774 {
3775   SYMR sh;
3776
3777   cur_sdx++;
3778   (*debug_swap->swap_sym_in) (cur_bfd,
3779                               ((char *) debug_info->external_sym
3780                                + ((cur_fdr->isymBase + cur_sdx)
3781                                   * debug_swap->external_sym_size)),
3782                               &sh);
3783   return debug_info->ss + cur_fdr->issBase + sh.iss;
3784 }
3785
3786 /* Ancillary function to psymtab_to_symtab().  Does all the work
3787    for turning the partial symtab PST into a symtab, recurring
3788    first on all dependent psymtabs.  The argument FILENAME is
3789    only passed so we can see in debug stack traces what file
3790    is being read.
3791
3792    This function has a split personality, based on whether the
3793    symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
3794    The flow of control and even the memory allocation differs.  FIXME.  */
3795
3796 static void
3797 psymtab_to_symtab_1 (struct partial_symtab *pst, char *filename)
3798 {
3799   bfd_size_type external_sym_size;
3800   bfd_size_type external_pdr_size;
3801   void (*swap_sym_in) (bfd *, void *, SYMR *);
3802   void (*swap_pdr_in) (bfd *, void *, PDR *);
3803   int i;
3804   struct symtab *st = NULL;
3805   FDR *fh;
3806   struct linetable *lines;
3807   CORE_ADDR lowest_pdr_addr = 0;
3808   int last_symtab_ended = 0;
3809
3810   if (pst->readin)
3811     return;
3812   pst->readin = 1;
3813
3814   /* Read in all partial symbtabs on which this one is dependent.
3815      NOTE that we do have circular dependencies, sigh.  We solved
3816      that by setting pst->readin before this point.  */
3817
3818   for (i = 0; i < pst->number_of_dependencies; i++)
3819     if (!pst->dependencies[i]->readin)
3820       {
3821         /* Inform about additional files to be read in.  */
3822         if (info_verbose)
3823           {
3824             fputs_filtered (" ", gdb_stdout);
3825             wrap_here ("");
3826             fputs_filtered ("and ", gdb_stdout);
3827             wrap_here ("");
3828             printf_filtered ("%s...",
3829                              pst->dependencies[i]->filename);
3830             wrap_here ("");     /* Flush output */
3831             gdb_flush (gdb_stdout);
3832           }
3833         /* We only pass the filename for debug purposes */
3834         psymtab_to_symtab_1 (pst->dependencies[i],
3835                              pst->dependencies[i]->filename);
3836       }
3837
3838   /* Do nothing if this is a dummy psymtab.  */
3839
3840   if (pst->n_global_syms == 0 && pst->n_static_syms == 0
3841       && pst->textlow == 0 && pst->texthigh == 0)
3842     return;
3843
3844   /* Now read the symbols for this symtab */
3845
3846   cur_bfd = CUR_BFD (pst);
3847   debug_swap = DEBUG_SWAP (pst);
3848   debug_info = DEBUG_INFO (pst);
3849   pending_list = PENDING_LIST (pst);
3850   external_sym_size = debug_swap->external_sym_size;
3851   external_pdr_size = debug_swap->external_pdr_size;
3852   swap_sym_in = debug_swap->swap_sym_in;
3853   swap_pdr_in = debug_swap->swap_pdr_in;
3854   current_objfile = pst->objfile;
3855   cur_fd = FDR_IDX (pst);
3856   fh = ((cur_fd == -1)
3857         ? (FDR *) NULL
3858         : debug_info->fdr + cur_fd);
3859   cur_fdr = fh;
3860
3861   /* See comment in parse_partial_symbols about the @stabs sentinel. */
3862   processing_gcc_compilation = 0;
3863   if (fh != (FDR *) NULL && fh->csym >= 2)
3864     {
3865       SYMR sh;
3866
3867       (*swap_sym_in) (cur_bfd,
3868                       ((char *) debug_info->external_sym
3869                        + (fh->isymBase + 1) * external_sym_size),
3870                       &sh);
3871       if (strcmp (debug_info->ss + fh->issBase + sh.iss,
3872                   stabs_symbol) == 0)
3873         {
3874           /* We indicate that this is a GCC compilation so that certain
3875              features will be enabled in stabsread/dbxread.  */
3876           processing_gcc_compilation = 2;
3877         }
3878     }
3879
3880   if (processing_gcc_compilation != 0)
3881     {
3882
3883       /* This symbol table contains stabs-in-ecoff entries.  */
3884
3885       /* Parse local symbols first */
3886
3887       if (fh->csym <= 2)        /* FIXME, this blows psymtab->symtab ptr */
3888         {
3889           current_objfile = NULL;
3890           return;
3891         }
3892       for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3893         {
3894           SYMR sh;
3895           char *name;
3896           CORE_ADDR valu;
3897
3898           (*swap_sym_in) (cur_bfd,
3899                           (((char *) debug_info->external_sym)
3900                            + (fh->isymBase + cur_sdx) * external_sym_size),
3901                           &sh);
3902           name = debug_info->ss + fh->issBase + sh.iss;
3903           valu = sh.value;
3904           /* XXX This is a hack.  It will go away!  */
3905           if (ECOFF_IS_STAB (&sh) || (name[0] == '#'))
3906             {
3907               int type_code = ECOFF_UNMARK_STAB (sh.index);
3908
3909               /* We should never get non N_STAB symbols here, but they
3910                  should be harmless, so keep process_one_symbol from
3911                  complaining about them.  */
3912               if (type_code & N_STAB)
3913                 {
3914                   /* If we found a trailing N_SO with no name, process
3915                      it here instead of in process_one_symbol, so we
3916                      can keep a handle to its symtab.  The symtab
3917                      would otherwise be ended twice, once in
3918                      process_one_symbol, and once after this loop. */
3919                   if (type_code == N_SO
3920                       && last_source_file
3921                       && previous_stab_code != (unsigned char) N_SO
3922                       && *name == '\000')
3923                     {
3924                       valu += ANOFFSET (pst->section_offsets,
3925                                         SECT_OFF_TEXT (pst->objfile));
3926                       previous_stab_code = N_SO;
3927                       st = end_symtab (valu, pst->objfile,
3928                                        SECT_OFF_TEXT (pst->objfile));
3929                       end_stabs ();
3930                       last_symtab_ended = 1;
3931                     }
3932                   else
3933                     {
3934                       last_symtab_ended = 0;
3935                       process_one_symbol (type_code, 0, valu, name,
3936                                           pst->section_offsets, pst->objfile);
3937                     }
3938                 }
3939               /* Similarly a hack.  */
3940               else if (name[0] == '#')
3941                 {
3942                   process_one_symbol (N_SLINE, 0, valu, name,
3943                                       pst->section_offsets, pst->objfile);
3944                 }
3945               if (type_code == N_FUN)
3946                 {
3947                   /* Make up special symbol to contain
3948                      procedure specific info */
3949                   struct mips_extra_func_info *e =
3950                   ((struct mips_extra_func_info *)
3951                    obstack_alloc (&current_objfile->symbol_obstack,
3952                                   sizeof (struct mips_extra_func_info)));
3953                   struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3954
3955                   memset (e, 0, sizeof (struct mips_extra_func_info));
3956                   SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
3957                   SYMBOL_CLASS (s) = LOC_CONST;
3958                   SYMBOL_TYPE (s) = mdebug_type_void;
3959                   SYMBOL_VALUE (s) = (long) e;
3960                   e->pdr.framereg = -1;
3961                   add_symbol_to_list (s, &local_symbols);
3962                 }
3963             }
3964           else if (sh.st == stLabel)
3965             {
3966               if (sh.index == indexNil)
3967                 {
3968                   /* This is what the gcc2_compiled and __gnu_compiled_*
3969                      show up as.  So don't complain.  */
3970                   ;
3971                 }
3972               else
3973                 {
3974                   /* Handle encoded stab line number. */
3975                   valu += ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (pst->objfile));
3976                   record_line (current_subfile, sh.index, valu);
3977                 }
3978             }
3979           else if (sh.st == stProc || sh.st == stStaticProc
3980                    || sh.st == stStatic || sh.st == stEnd)
3981             /* These are generated by gcc-2.x, do not complain */
3982             ;
3983           else
3984             complaint (&symfile_complaints, "unknown stabs symbol %s", name);
3985         }
3986
3987       if (! last_symtab_ended)
3988         {
3989           st = end_symtab (pst->texthigh, pst->objfile, SECT_OFF_TEXT (pst->objfile));
3990           end_stabs ();
3991         }
3992
3993       /* There used to be a call to sort_blocks here, but this should not
3994          be necessary for stabs symtabs.  And as sort_blocks modifies the
3995          start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
3996          it did the wrong thing if the first procedure in a file was
3997          generated via asm statements.  */
3998
3999       /* Fill in procedure info next.  */
4000       if (fh->cpd > 0)
4001         {
4002           PDR *pr_block;
4003           struct cleanup *old_chain;
4004           char *pdr_ptr;
4005           char *pdr_end;
4006           PDR *pdr_in;
4007           PDR *pdr_in_end;
4008
4009           pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
4010           old_chain = make_cleanup (xfree, pr_block);
4011
4012           pdr_ptr = ((char *) debug_info->external_pdr
4013                      + fh->ipdFirst * external_pdr_size);
4014           pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4015           pdr_in = pr_block;
4016           for (;
4017                pdr_ptr < pdr_end;
4018                pdr_ptr += external_pdr_size, pdr_in++)
4019             {
4020               (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4021
4022               /* Determine lowest PDR address, the PDRs are not always
4023                  sorted.  */
4024               if (pdr_in == pr_block)
4025                 lowest_pdr_addr = pdr_in->adr;
4026               else if (pdr_in->adr < lowest_pdr_addr)
4027                 lowest_pdr_addr = pdr_in->adr;
4028             }
4029
4030           pdr_in = pr_block;
4031           pdr_in_end = pdr_in + fh->cpd;
4032           for (; pdr_in < pdr_in_end; pdr_in++)
4033             parse_procedure (pdr_in, st, pst);
4034
4035           do_cleanups (old_chain);
4036         }
4037     }
4038   else
4039     {
4040       /* This symbol table contains ordinary ecoff entries.  */
4041
4042       int f_max;
4043       int maxlines;
4044       EXTR *ext_ptr;
4045
4046       if (fh == 0)
4047         {
4048           maxlines = 0;
4049           st = new_symtab ("unknown", 0, pst->objfile);
4050         }
4051       else
4052         {
4053           maxlines = 2 * fh->cline;
4054           st = new_symtab (pst->filename, maxlines, pst->objfile);
4055
4056           /* The proper language was already determined when building
4057              the psymtab, use it.  */
4058           st->language = PST_PRIVATE (pst)->pst_language;
4059         }
4060
4061       psymtab_language = st->language;
4062
4063       lines = LINETABLE (st);
4064
4065       /* Get a new lexical context */
4066
4067       push_parse_stack ();
4068       top_stack->cur_st = st;
4069       top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
4070                                                 STATIC_BLOCK);
4071       BLOCK_START (top_stack->cur_block) = pst->textlow;
4072       BLOCK_END (top_stack->cur_block) = 0;
4073       top_stack->blocktype = stFile;
4074       top_stack->cur_type = 0;
4075       top_stack->procadr = 0;
4076       top_stack->numargs = 0;
4077       found_ecoff_debugging_info = 0;
4078
4079       if (fh)
4080         {
4081           char *sym_ptr;
4082           char *sym_end;
4083
4084           /* Parse local symbols first */
4085           sym_ptr = ((char *) debug_info->external_sym
4086                      + fh->isymBase * external_sym_size);
4087           sym_end = sym_ptr + fh->csym * external_sym_size;
4088           while (sym_ptr < sym_end)
4089             {
4090               SYMR sh;
4091               int c;
4092
4093               (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
4094               c = parse_symbol (&sh,
4095                                 debug_info->external_aux + fh->iauxBase,
4096                                 sym_ptr, fh->fBigendian, pst->section_offsets, pst->objfile);
4097               sym_ptr += c * external_sym_size;
4098             }
4099
4100           /* Linenumbers.  At the end, check if we can save memory.
4101              parse_lines has to look ahead an arbitrary number of PDR
4102              structures, so we swap them all first.  */
4103           if (fh->cpd > 0)
4104             {
4105               PDR *pr_block;
4106               struct cleanup *old_chain;
4107               char *pdr_ptr;
4108               char *pdr_end;
4109               PDR *pdr_in;
4110               PDR *pdr_in_end;
4111
4112               pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
4113
4114               old_chain = make_cleanup (xfree, pr_block);
4115
4116               pdr_ptr = ((char *) debug_info->external_pdr
4117                          + fh->ipdFirst * external_pdr_size);
4118               pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4119               pdr_in = pr_block;
4120               for (;
4121                    pdr_ptr < pdr_end;
4122                    pdr_ptr += external_pdr_size, pdr_in++)
4123                 {
4124                   (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4125
4126                   /* Determine lowest PDR address, the PDRs are not always
4127                      sorted.  */
4128                   if (pdr_in == pr_block)
4129                     lowest_pdr_addr = pdr_in->adr;
4130                   else if (pdr_in->adr < lowest_pdr_addr)
4131                     lowest_pdr_addr = pdr_in->adr;
4132                 }
4133
4134               parse_lines (fh, pr_block, lines, maxlines, pst, lowest_pdr_addr);
4135               if (lines->nitems < fh->cline)
4136                 lines = shrink_linetable (lines);
4137
4138               /* Fill in procedure info next.  */
4139               pdr_in = pr_block;
4140               pdr_in_end = pdr_in + fh->cpd;
4141               for (; pdr_in < pdr_in_end; pdr_in++)
4142                 parse_procedure (pdr_in, 0, pst);
4143
4144               do_cleanups (old_chain);
4145             }
4146         }
4147
4148       LINETABLE (st) = lines;
4149
4150       /* .. and our share of externals.
4151          XXX use the global list to speed up things here. how?
4152          FIXME, Maybe quit once we have found the right number of ext's? */
4153       top_stack->cur_st = st;
4154       top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
4155                                                 GLOBAL_BLOCK);
4156       top_stack->blocktype = stFile;
4157
4158       ext_ptr = PST_PRIVATE (pst)->extern_tab;
4159       for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
4160         parse_external (ext_ptr, fh->fBigendian, pst->section_offsets, pst->objfile);
4161
4162       /* If there are undefined symbols, tell the user.
4163          The alpha has an undefined symbol for every symbol that is
4164          from a shared library, so tell the user only if verbose is on.  */
4165       if (info_verbose && n_undef_symbols)
4166         {
4167           printf_filtered ("File %s contains %d unresolved references:",
4168                            st->filename, n_undef_symbols);
4169           printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
4170                            n_undef_vars, n_undef_procs, n_undef_labels);
4171           n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
4172
4173         }
4174       pop_parse_stack ();
4175
4176       st->primary = 1;
4177
4178       sort_blocks (st);
4179     }
4180
4181   /* Now link the psymtab and the symtab.  */
4182   pst->symtab = st;
4183
4184   current_objfile = NULL;
4185 }
4186 \f
4187 /* Ancillary parsing procedures. */
4188
4189 /* Return 1 if the symbol pointed to by SH has a cross reference
4190    to an opaque aggregate type, else 0.  */
4191
4192 static int
4193 has_opaque_xref (FDR *fh, SYMR *sh)
4194 {
4195   TIR tir;
4196   union aux_ext *ax;
4197   RNDXR rn[1];
4198   unsigned int rf;
4199
4200   if (sh->index == indexNil)
4201     return 0;
4202
4203   ax = debug_info->external_aux + fh->iauxBase + sh->index;
4204   (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
4205   if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
4206     return 0;
4207
4208   ax++;
4209   (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
4210   if (rn->rfd == 0xfff)
4211     rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
4212   else
4213     rf = rn->rfd;
4214   if (rf != -1)
4215     return 0;
4216   return 1;
4217 }
4218
4219 /* Lookup the type at relative index RN.  Return it in TPP
4220    if found and in any event come up with its name PNAME.
4221    BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
4222    Return value says how many aux symbols we ate. */
4223
4224 static int
4225 cross_ref (int fd, union aux_ext *ax, struct type **tpp, enum type_code type_code,      /* Use to alloc new type if none is found. */
4226            char **pname, int bigend, char *sym_name)
4227 {
4228   RNDXR rn[1];
4229   unsigned int rf;
4230   int result = 1;
4231   FDR *fh;
4232   char *esh;
4233   SYMR sh;
4234   int xref_fd;
4235   struct mdebug_pending *pend;
4236
4237   *tpp = (struct type *) NULL;
4238
4239   (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
4240
4241   /* Escape index means 'the next one' */
4242   if (rn->rfd == 0xfff)
4243     {
4244       result++;
4245       rf = AUX_GET_ISYM (bigend, ax + 1);
4246     }
4247   else
4248     {
4249       rf = rn->rfd;
4250     }
4251
4252   /* mips cc uses a rf of -1 for opaque struct definitions.
4253      Set TYPE_FLAG_STUB for these types so that check_typedef will
4254      resolve them if the struct gets defined in another compilation unit.  */
4255   if (rf == -1)
4256     {
4257       *pname = "<undefined>";
4258       *tpp = init_type (type_code, 0, TYPE_FLAG_STUB, (char *) NULL, current_objfile);
4259       return result;
4260     }
4261
4262   /* mips cc uses an escaped rn->index of 0 for struct return types
4263      of procedures that were compiled without -g. These will always remain
4264      undefined.  */
4265   if (rn->rfd == 0xfff && rn->index == 0)
4266     {
4267       *pname = "<undefined>";
4268       return result;
4269     }
4270
4271   /* Find the relative file descriptor and the symbol in it.  */
4272   fh = get_rfd (fd, rf);
4273   xref_fd = fh - debug_info->fdr;
4274
4275   if (rn->index >= fh->csym)
4276     {
4277       /* File indirect entry is corrupt.  */
4278       *pname = "<illegal>";
4279       bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4280       return result;
4281     }
4282
4283   /* If we have processed this symbol then we left a forwarding
4284      pointer to the type in the pending list.  If not, we`ll put
4285      it in a list of pending types, to be processed later when
4286      the file will be.  In any event, we collect the name for the
4287      type here.  */
4288
4289   esh = ((char *) debug_info->external_sym
4290          + ((fh->isymBase + rn->index)
4291             * debug_swap->external_sym_size));
4292   (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
4293
4294   /* Make sure that this type of cross reference can be handled.  */
4295   if ((sh.sc != scInfo
4296        || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
4297            && sh.st != stStruct && sh.st != stUnion
4298            && sh.st != stEnum))
4299       && (sh.st != stBlock || !SC_IS_COMMON (sh.sc)))
4300     {
4301       /* File indirect entry is corrupt.  */
4302       *pname = "<illegal>";
4303       bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4304       return result;
4305     }
4306
4307   *pname = debug_info->ss + fh->issBase + sh.iss;
4308
4309   pend = is_pending_symbol (fh, esh);
4310   if (pend)
4311     *tpp = pend->t;
4312   else
4313     {
4314       /* We have not yet seen this type.  */
4315
4316       if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
4317         {
4318           TIR tir;
4319
4320           /* alpha cc puts out a stTypedef with a sh.iss of zero for
4321              two cases:
4322              a) forward declarations of structs/unions/enums which are not
4323              defined in this compilation unit.
4324              For these the type will be void. This is a bad design decision
4325              as cross referencing across compilation units is impossible
4326              due to the missing name.
4327              b) forward declarations of structs/unions/enums/typedefs which
4328              are defined later in this file or in another file in the same
4329              compilation unit. Irix5 cc uses a stIndirect symbol for this.
4330              Simply cross reference those again to get the true type.
4331              The forward references are not entered in the pending list and
4332              in the symbol table.  */
4333
4334           (*debug_swap->swap_tir_in) (bigend,
4335                                       &(debug_info->external_aux
4336                                         + fh->iauxBase + sh.index)->a_ti,
4337                                       &tir);
4338           if (tir.tq0 != tqNil)
4339             complaint (&symfile_complaints,
4340                        "illegal tq0 in forward typedef for %s", sym_name);
4341           switch (tir.bt)
4342             {
4343             case btVoid:
4344               *tpp = init_type (type_code, 0, 0, (char *) NULL,
4345                                 current_objfile);
4346               *pname = "<undefined>";
4347               break;
4348
4349             case btStruct:
4350             case btUnion:
4351             case btEnum:
4352               cross_ref (xref_fd,
4353                          (debug_info->external_aux
4354                           + fh->iauxBase + sh.index + 1),
4355                          tpp, type_code, pname,
4356                          fh->fBigendian, sym_name);
4357               break;
4358
4359             case btTypedef:
4360               /* Follow a forward typedef. This might recursively
4361                  call cross_ref till we get a non typedef'ed type.
4362                  FIXME: This is not correct behaviour, but gdb currently
4363                  cannot handle typedefs without type copying. Type
4364                  copying is impossible as we might have mutual forward
4365                  references between two files and the copied type would not
4366                  get filled in when we later parse its definition.  */
4367               *tpp = parse_type (xref_fd,
4368                                  debug_info->external_aux + fh->iauxBase,
4369                                  sh.index,
4370                                  (int *) NULL,
4371                                  fh->fBigendian,
4372                                  debug_info->ss + fh->issBase + sh.iss);
4373               add_pending (fh, esh, *tpp);
4374               break;
4375
4376             default:
4377               complaint (&symfile_complaints,
4378                          "illegal bt %d in forward typedef for %s", tir.bt,
4379                          sym_name);
4380               *tpp = init_type (type_code, 0, 0, (char *) NULL,
4381                                 current_objfile);
4382               break;
4383             }
4384           return result;
4385         }
4386       else if (sh.st == stTypedef)
4387         {
4388           /* Parse the type for a normal typedef. This might recursively call
4389              cross_ref till we get a non typedef'ed type.
4390              FIXME: This is not correct behaviour, but gdb currently
4391              cannot handle typedefs without type copying. But type copying is
4392              impossible as we might have mutual forward references between
4393              two files and the copied type would not get filled in when
4394              we later parse its definition.   */
4395           *tpp = parse_type (xref_fd,
4396                              debug_info->external_aux + fh->iauxBase,
4397                              sh.index,
4398                              (int *) NULL,
4399                              fh->fBigendian,
4400                              debug_info->ss + fh->issBase + sh.iss);
4401         }
4402       else
4403         {
4404           /* Cross reference to a struct/union/enum which is defined
4405              in another file in the same compilation unit but that file
4406              has not been parsed yet.
4407              Initialize the type only, it will be filled in when
4408              it's definition is parsed.  */
4409           *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
4410         }
4411       add_pending (fh, esh, *tpp);
4412     }
4413
4414   /* We used one auxent normally, two if we got a "next one" rf. */
4415   return result;
4416 }
4417
4418
4419 /* Quick&dirty lookup procedure, to avoid the MI ones that require
4420    keeping the symtab sorted */
4421
4422 static struct symbol *
4423 mylookup_symbol (char *name, struct block *block,
4424                  domain_enum domain, enum address_class class)
4425 {
4426   struct dict_iterator iter;
4427   int inc;
4428   struct symbol *sym;
4429
4430   inc = name[0];
4431   ALL_BLOCK_SYMBOLS (block, iter, sym)
4432     {
4433       if (DEPRECATED_SYMBOL_NAME (sym)[0] == inc
4434           && SYMBOL_DOMAIN (sym) == domain
4435           && SYMBOL_CLASS (sym) == class
4436           && strcmp (DEPRECATED_SYMBOL_NAME (sym), name) == 0)
4437         return sym;
4438     }
4439
4440   block = BLOCK_SUPERBLOCK (block);
4441   if (block)
4442     return mylookup_symbol (name, block, domain, class);
4443   return 0;
4444 }
4445
4446
4447 /* Add a new symbol S to a block B.  */
4448
4449 static void
4450 add_symbol (struct symbol *s, struct block *b)
4451 {
4452   dict_add_symbol (BLOCK_DICT (b), s);
4453 }
4454
4455 /* Add a new block B to a symtab S */
4456
4457 static void
4458 add_block (struct block *b, struct symtab *s)
4459 {
4460   struct blockvector *bv = BLOCKVECTOR (s);
4461
4462   bv = (struct blockvector *) xrealloc ((void *) bv,
4463                                         (sizeof (struct blockvector)
4464                                          + BLOCKVECTOR_NBLOCKS (bv)
4465                                          * sizeof (bv->block)));
4466   if (bv != BLOCKVECTOR (s))
4467     BLOCKVECTOR (s) = bv;
4468
4469   BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
4470 }
4471
4472 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
4473    MIPS' linenumber encoding might need more than one byte
4474    to describe it, LAST is used to detect these continuation lines.
4475
4476    Combining lines with the same line number seems like a bad idea.
4477    E.g: There could be a line number entry with the same line number after the
4478    prologue and GDB should not ignore it (this is a better way to find
4479    a prologue than mips_skip_prologue).
4480    But due to the compressed line table format there are line number entries
4481    for the same line which are needed to bridge the gap to the next
4482    line number entry. These entries have a bogus address info with them
4483    and we are unable to tell them from intended duplicate line number
4484    entries.
4485    This is another reason why -ggdb debugging format is preferable.  */
4486
4487 static int
4488 add_line (struct linetable *lt, int lineno, CORE_ADDR adr, int last)
4489 {
4490   /* DEC c89 sometimes produces zero linenos which confuse gdb.
4491      Change them to something sensible. */
4492   if (lineno == 0)
4493     lineno = 1;
4494   if (last == 0)
4495     last = -2;                  /* make sure we record first line */
4496
4497   if (last == lineno)           /* skip continuation lines */
4498     return lineno;
4499
4500   lt->item[lt->nitems].line = lineno;
4501   lt->item[lt->nitems++].pc = adr << 2;
4502   return lineno;
4503 }
4504 \f
4505 /* Sorting and reordering procedures */
4506
4507 /* Blocks with a smaller low bound should come first */
4508
4509 static int
4510 compare_blocks (const void *arg1, const void *arg2)
4511 {
4512   int addr_diff;
4513   struct block **b1 = (struct block **) arg1;
4514   struct block **b2 = (struct block **) arg2;
4515
4516   addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
4517   if (addr_diff == 0)
4518     return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
4519   return addr_diff;
4520 }
4521
4522 /* Sort the blocks of a symtab S.
4523    Reorder the blocks in the blockvector by code-address,
4524    as required by some MI search routines */
4525
4526 static void
4527 sort_blocks (struct symtab *s)
4528 {
4529   struct blockvector *bv = BLOCKVECTOR (s);
4530
4531   if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
4532     {
4533       /* Cosmetic */
4534       if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
4535         BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
4536       if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
4537         BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
4538       return;
4539     }
4540   /*
4541    * This is very unfortunate: normally all functions are compiled in
4542    * the order they are found, but if the file is compiled -O3 things
4543    * are very different.  It would be nice to find a reliable test
4544    * to detect -O3 images in advance.
4545    */
4546   if (BLOCKVECTOR_NBLOCKS (bv) > 3)
4547     qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
4548            BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
4549            sizeof (struct block *),
4550            compare_blocks);
4551
4552   {
4553     CORE_ADDR high = 0;
4554     int i, j = BLOCKVECTOR_NBLOCKS (bv);
4555
4556     for (i = FIRST_LOCAL_BLOCK; i < j; i++)
4557       if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
4558         high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
4559     BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
4560   }
4561
4562   BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
4563     BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
4564
4565   BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4566     BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4567   BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4568     BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4569 }
4570 \f
4571
4572 /* Constructor/restructor/destructor procedures */
4573
4574 /* Allocate a new symtab for NAME.  Needs an estimate of how many
4575    linenumbers MAXLINES we'll put in it */
4576
4577 static struct symtab *
4578 new_symtab (char *name, int maxlines, struct objfile *objfile)
4579 {
4580   struct symtab *s = allocate_symtab (name, objfile);
4581
4582   LINETABLE (s) = new_linetable (maxlines);
4583
4584   /* All symtabs must have at least two blocks */
4585   BLOCKVECTOR (s) = new_bvect (2);
4586   BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK)
4587     = new_block (NON_FUNCTION_BLOCK);
4588   BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
4589     = new_block (NON_FUNCTION_BLOCK);
4590   BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
4591     BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
4592
4593   s->free_code = free_linetable;
4594   s->debugformat = obsavestring ("ECOFF", 5,
4595                                  &objfile->symbol_obstack);
4596   return (s);
4597 }
4598
4599 /* Allocate a new partial_symtab NAME */
4600
4601 static struct partial_symtab *
4602 new_psymtab (char *name, struct objfile *objfile)
4603 {
4604   struct partial_symtab *psymtab;
4605
4606   psymtab = allocate_psymtab (name, objfile);
4607   psymtab->section_offsets = objfile->section_offsets;
4608
4609   /* Keep a backpointer to the file's symbols */
4610
4611   psymtab->read_symtab_private = ((char *)
4612                                   obstack_alloc (&objfile->psymbol_obstack,
4613                                                  sizeof (struct symloc)));
4614   memset (psymtab->read_symtab_private, 0, sizeof (struct symloc));
4615   CUR_BFD (psymtab) = cur_bfd;
4616   DEBUG_SWAP (psymtab) = debug_swap;
4617   DEBUG_INFO (psymtab) = debug_info;
4618   PENDING_LIST (psymtab) = pending_list;
4619
4620   /* The way to turn this into a symtab is to call... */
4621   psymtab->read_symtab = mdebug_psymtab_to_symtab;
4622   return (psymtab);
4623 }
4624
4625
4626 /* Allocate a linetable array of the given SIZE.  Since the struct
4627    already includes one item, we subtract one when calculating the
4628    proper size to allocate.  */
4629
4630 static struct linetable *
4631 new_linetable (int size)
4632 {
4633   struct linetable *l;
4634
4635   size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
4636   l = (struct linetable *) xmalloc (size);
4637   l->nitems = 0;
4638   return l;
4639 }
4640
4641 /* Oops, too big. Shrink it.  This was important with the 2.4 linetables,
4642    I am not so sure about the 3.4 ones.
4643
4644    Since the struct linetable already includes one item, we subtract one when
4645    calculating the proper size to allocate.  */
4646
4647 static struct linetable *
4648 shrink_linetable (struct linetable *lt)
4649 {
4650
4651   return (struct linetable *) xrealloc ((void *) lt,
4652                                         (sizeof (struct linetable)
4653                                          + ((lt->nitems - 1)
4654                                             * sizeof (lt->item))));
4655 }
4656
4657 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
4658
4659 static struct blockvector *
4660 new_bvect (int nblocks)
4661 {
4662   struct blockvector *bv;
4663   int size;
4664
4665   size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
4666   bv = (struct blockvector *) xzalloc (size);
4667
4668   BLOCKVECTOR_NBLOCKS (bv) = nblocks;
4669
4670   return bv;
4671 }
4672
4673 /* Allocate and zero a new block, and set its BLOCK_DICT.  If function
4674    is non-zero, assume the block is associated to a function, and make
4675    sure that the symbols are stored linearly; otherwise, store them
4676    hashed.  */
4677
4678 static struct block *
4679 new_block (enum block_type type)
4680 {
4681   /* FIXME: carlton/2003-09-11: This should use allocate_block to
4682      allocate the block.  Which, in turn, suggests that the block
4683      should be allocated on an obstack.  */
4684   struct block *retval = xzalloc (sizeof (struct block));
4685
4686   if (type == FUNCTION_BLOCK)
4687     BLOCK_DICT (retval) = dict_create_linear_expandable ();
4688   else
4689     BLOCK_DICT (retval) = dict_create_hashed_expandable ();
4690
4691   return retval;
4692 }
4693
4694 /* Create a new symbol with printname NAME */
4695
4696 static struct symbol *
4697 new_symbol (char *name)
4698 {
4699   struct symbol *s = ((struct symbol *)
4700                       obstack_alloc (&current_objfile->symbol_obstack,
4701                                      sizeof (struct symbol)));
4702
4703   memset (s, 0, sizeof (*s));
4704   SYMBOL_LANGUAGE (s) = psymtab_language;
4705   SYMBOL_SET_NAMES (s, name, strlen (name), current_objfile);
4706   return s;
4707 }
4708
4709 /* Create a new type with printname NAME */
4710
4711 static struct type *
4712 new_type (char *name)
4713 {
4714   struct type *t;
4715
4716   t = alloc_type (current_objfile);
4717   TYPE_NAME (t) = name;
4718   TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
4719   return t;
4720 }
4721 \f
4722 /* Read ECOFF debugging information from a BFD section.  This is
4723    called from elfread.c.  It parses the section into a
4724    ecoff_debug_info struct, and then lets the rest of the file handle
4725    it as normal.  */
4726
4727 void
4728 elfmdebug_build_psymtabs (struct objfile *objfile,
4729                           const struct ecoff_debug_swap *swap, asection *sec)
4730 {
4731   bfd *abfd = objfile->obfd;
4732   struct ecoff_debug_info *info;
4733   struct cleanup *back_to;
4734
4735   /* FIXME: It's not clear whether we should be getting minimal symbol
4736      information from .mdebug in an ELF file, or whether we will.
4737      Re-initialize the minimal symbol reader in case we do.  */
4738
4739   init_minimal_symbol_collection ();
4740   back_to = make_cleanup_discard_minimal_symbols ();
4741
4742   info = ((struct ecoff_debug_info *)
4743           obstack_alloc (&objfile->psymbol_obstack,
4744                          sizeof (struct ecoff_debug_info)));
4745
4746   if (!(*swap->read_debug_info) (abfd, sec, info))
4747     error ("Error reading ECOFF debugging information: %s",
4748            bfd_errmsg (bfd_get_error ()));
4749
4750   mdebug_build_psymtabs (objfile, swap, info);
4751
4752   install_minimal_symbols (objfile);
4753   do_cleanups (back_to);
4754 }
4755 \f
4756
4757 /* Things used for calling functions in the inferior.
4758    These functions are exported to our companion
4759    mips-tdep.c file and are here because they play
4760    with the symbol-table explicitly. */
4761
4762 /* Sigtramp: make sure we have all the necessary information
4763    about the signal trampoline code. Since the official code
4764    from MIPS does not do so, we make up that information ourselves.
4765    If they fix the library (unlikely) this code will neutralize itself. */
4766
4767 /* FIXME: This function is called only by mips-tdep.c.  It needs to be
4768    here because it calls functions defined in this file, but perhaps
4769    this could be handled in a better way.  Only compile it in when
4770    tm-mips.h is included. */
4771
4772 #ifdef TM_MIPS_H
4773
4774 void
4775 fixup_sigtramp (void)
4776 {
4777   struct symbol *s;
4778   struct symtab *st;
4779   struct block *b, *b0 = NULL;
4780
4781   sigtramp_address = -1;
4782
4783   /* We have to handle the following cases here:
4784      a) The Mips library has a sigtramp label within sigvec.
4785      b) Irix has a _sigtramp which we want to use, but it also has sigvec.  */
4786   s = lookup_symbol ("sigvec", 0, VAR_DOMAIN, 0, NULL);
4787   if (s != 0)
4788     {
4789       b0 = SYMBOL_BLOCK_VALUE (s);
4790       s = lookup_symbol ("sigtramp", b0, VAR_DOMAIN, 0, NULL);
4791     }
4792   if (s == 0)
4793     {
4794       /* No sigvec or no sigtramp inside sigvec, try _sigtramp.  */
4795       s = lookup_symbol ("_sigtramp", 0, VAR_DOMAIN, 0, NULL);
4796     }
4797
4798   /* But maybe this program uses its own version of sigvec */
4799   if (s == 0)
4800     return;
4801
4802   /* Did we or MIPSco fix the library ? */
4803   if (SYMBOL_CLASS (s) == LOC_BLOCK)
4804     {
4805       sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
4806       sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
4807       return;
4808     }
4809
4810   sigtramp_address = SYMBOL_VALUE (s);
4811   sigtramp_end = sigtramp_address + 0x88;       /* black magic */
4812
4813   /* But what symtab does it live in ? */
4814   st = find_pc_symtab (SYMBOL_VALUE (s));
4815
4816   /*
4817    * Ok, there goes the fix: turn it into a procedure, with all the
4818    * needed info.  Note we make it a nested procedure of sigvec,
4819    * which is the way the (assembly) code is actually written.
4820    */
4821   SYMBOL_DOMAIN (s) = VAR_DOMAIN;
4822   SYMBOL_CLASS (s) = LOC_BLOCK;
4823   SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
4824                                st->objfile);
4825   TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = mdebug_type_void;
4826
4827   /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
4828   b = new_block (NON_FUNCTION_BLOCK);
4829   SYMBOL_BLOCK_VALUE (s) = b;
4830   BLOCK_START (b) = sigtramp_address;
4831   BLOCK_END (b) = sigtramp_end;
4832   BLOCK_FUNCTION (b) = s;
4833   BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
4834   add_block (b, st);
4835   sort_blocks (st);
4836
4837   /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
4838   {
4839     struct mips_extra_func_info *e =
4840     ((struct mips_extra_func_info *)
4841      xzalloc (sizeof (struct mips_extra_func_info)));
4842
4843     e->numargs = 0;             /* the kernel thinks otherwise */
4844     e->pdr.frameoffset = 32;
4845     e->pdr.framereg = SP_REGNUM;
4846     /* Note that setting pcreg is no longer strictly necessary as
4847        mips_frame_saved_pc is now aware of signal handler frames.  */
4848     e->pdr.pcreg = PC_REGNUM;
4849     e->pdr.regmask = -2;
4850     /* Offset to saved r31, in the sigtramp case the saved registers
4851        are above the frame in the sigcontext.
4852        We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
4853        32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
4854        and 32 * 4 bytes for the floating point registers.  */
4855     e->pdr.regoffset = 4 + 12 + 31 * 4;
4856     e->pdr.fregmask = -1;
4857     /* Offset to saved f30 (first saved *double* register).  */
4858     e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
4859     e->pdr.isym = (long) s;
4860     e->pdr.adr = sigtramp_address;
4861
4862     current_objfile = st->objfile;      /* Keep new_symbol happy */
4863     s = new_symbol (MIPS_EFI_SYMBOL_NAME);
4864     SYMBOL_VALUE (s) = (long) e;
4865     SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
4866     SYMBOL_CLASS (s) = LOC_CONST;
4867     SYMBOL_TYPE (s) = mdebug_type_void;
4868     current_objfile = NULL;
4869   }
4870
4871   dict_add_symbol (BLOCK_DICT (b), s);
4872 }
4873
4874 #endif /* TM_MIPS_H */
4875
4876 void
4877 _initialize_mdebugread (void)
4878 {
4879   mdebug_type_void =
4880     init_type (TYPE_CODE_VOID, 1,
4881                0,
4882                "void", (struct objfile *) NULL);
4883   mdebug_type_char =
4884     init_type (TYPE_CODE_INT, 1,
4885                0,
4886                "char", (struct objfile *) NULL);
4887   mdebug_type_unsigned_char =
4888     init_type (TYPE_CODE_INT, 1,
4889                TYPE_FLAG_UNSIGNED,
4890                "unsigned char", (struct objfile *) NULL);
4891   mdebug_type_short =
4892     init_type (TYPE_CODE_INT, 2,
4893                0,
4894                "short", (struct objfile *) NULL);
4895   mdebug_type_unsigned_short =
4896     init_type (TYPE_CODE_INT, 2,
4897                TYPE_FLAG_UNSIGNED,
4898                "unsigned short", (struct objfile *) NULL);
4899   mdebug_type_int_32 =
4900     init_type (TYPE_CODE_INT, 4,
4901                0,
4902                "int", (struct objfile *) NULL);
4903   mdebug_type_unsigned_int_32 =
4904     init_type (TYPE_CODE_INT, 4,
4905                TYPE_FLAG_UNSIGNED,
4906                "unsigned int", (struct objfile *) NULL);
4907   mdebug_type_int_64 =
4908     init_type (TYPE_CODE_INT, 8,
4909                0,
4910                "int", (struct objfile *) NULL);
4911   mdebug_type_unsigned_int_64 =
4912     init_type (TYPE_CODE_INT, 8,
4913                TYPE_FLAG_UNSIGNED,
4914                "unsigned int", (struct objfile *) NULL);
4915   mdebug_type_long_32 =
4916     init_type (TYPE_CODE_INT, 4,
4917                0,
4918                "long", (struct objfile *) NULL);
4919   mdebug_type_unsigned_long_32 =
4920     init_type (TYPE_CODE_INT, 4,
4921                TYPE_FLAG_UNSIGNED,
4922                "unsigned long", (struct objfile *) NULL);
4923   mdebug_type_long_64 =
4924     init_type (TYPE_CODE_INT, 8,
4925                0,
4926                "long", (struct objfile *) NULL);
4927   mdebug_type_unsigned_long_64 =
4928     init_type (TYPE_CODE_INT, 8,
4929                TYPE_FLAG_UNSIGNED,
4930                "unsigned long", (struct objfile *) NULL);
4931   mdebug_type_long_long_64 =
4932     init_type (TYPE_CODE_INT, 8,
4933                0,
4934                "long long", (struct objfile *) NULL);
4935   mdebug_type_unsigned_long_long_64 =
4936     init_type (TYPE_CODE_INT, 8,
4937                TYPE_FLAG_UNSIGNED,
4938                "unsigned long long", (struct objfile *) NULL);
4939   mdebug_type_adr_32 =
4940     init_type (TYPE_CODE_PTR, 4,
4941                TYPE_FLAG_UNSIGNED,
4942                "adr_32", (struct objfile *) NULL);
4943   TYPE_TARGET_TYPE (mdebug_type_adr_32) = mdebug_type_void;
4944   mdebug_type_adr_64 =
4945     init_type (TYPE_CODE_PTR, 8,
4946                TYPE_FLAG_UNSIGNED,
4947                "adr_64", (struct objfile *) NULL);
4948   TYPE_TARGET_TYPE (mdebug_type_adr_64) = mdebug_type_void;
4949   mdebug_type_float =
4950     init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4951                0,
4952                "float", (struct objfile *) NULL);
4953   mdebug_type_double =
4954     init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4955                0,
4956                "double", (struct objfile *) NULL);
4957   mdebug_type_complex =
4958     init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4959                0,
4960                "complex", (struct objfile *) NULL);
4961   TYPE_TARGET_TYPE (mdebug_type_complex) = mdebug_type_float;
4962   mdebug_type_double_complex =
4963     init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4964                0,
4965                "double complex", (struct objfile *) NULL);
4966   TYPE_TARGET_TYPE (mdebug_type_double_complex) = mdebug_type_double;
4967
4968   /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
4969      FIXME.  */
4970   mdebug_type_string =
4971     init_type (TYPE_CODE_STRING,
4972                TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4973                0, "string",
4974                (struct objfile *) NULL);
4975
4976   /* We use TYPE_CODE_INT to print these as integers.  Does this do any
4977      good?  Would we be better off with TYPE_CODE_ERROR?  Should
4978      TYPE_CODE_ERROR print things in hex if it knows the size?  */
4979   mdebug_type_fixed_dec =
4980     init_type (TYPE_CODE_INT,
4981                TARGET_INT_BIT / TARGET_CHAR_BIT,
4982                0, "fixed decimal",
4983                (struct objfile *) NULL);
4984
4985   mdebug_type_float_dec =
4986     init_type (TYPE_CODE_ERROR,
4987                TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4988                0, "floating decimal",
4989                (struct objfile *) NULL);
4990
4991   nodebug_func_symbol_type = init_type (TYPE_CODE_FUNC, 1, 0,
4992                                         "<function, no debug info>", NULL);
4993   TYPE_TARGET_TYPE (nodebug_func_symbol_type) = mdebug_type_int;
4994   nodebug_var_symbol_type =
4995     init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0,
4996                "<variable, no debug info>", NULL);
4997 }