2002-07-29 Andrew Cagney <ac131313@redhat.com>
[external/binutils.git] / gdb / dbxread.c
1 /* Read dbx symbol tables and convert to internal format, for GDB.
2    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3    1996, 1997, 1998, 1999, 2000, 2001, 2002
4    Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 /* This module provides three functions: dbx_symfile_init,
24    which initializes to read a symbol file; dbx_new_init, which 
25    discards existing cached information when all symbols are being
26    discarded; and dbx_symfile_read, which reads a symbol table
27    from a file.
28
29    dbx_symfile_read only does the minimum work necessary for letting the
30    user "name" things symbolically; it does not read the entire symtab.
31    Instead, it reads the external and static symbols and puts them in partial
32    symbol tables.  When more extensive information is requested of a
33    file, the corresponding partial symbol table is mutated into a full
34    fledged symbol table by going back and reading the symbols
35    for real.  dbx_psymtab_to_symtab() is the function that does this */
36
37 #include "defs.h"
38 #include "gdb_string.h"
39
40 #if defined(USG) || defined(__CYGNUSCLIB__)
41 #include <sys/types.h>
42 #include <fcntl.h>
43 #endif
44
45 #include "gdb_obstack.h"
46 #include "gdb_stat.h"
47 #include "symtab.h"
48 #include "breakpoint.h"
49 #include "target.h"
50 #include "gdbcore.h"            /* for bfd stuff */
51 #include "libaout.h"            /* FIXME Secret internal BFD stuff for a.out */
52 #include "symfile.h"
53 #include "objfiles.h"
54 #include "buildsym.h"
55 #include "stabsread.h"
56 #include "gdb-stabs.h"
57 #include "demangle.h"
58 #include "language.h"           /* Needed for local_hex_string */
59 #include "complaints.h"
60 #include "cp-abi.h"
61
62 #include "aout/aout64.h"
63 #include "aout/stab_gnu.h"      /* We always use GNU stabs, not native, now */
64 \f
65
66 /* This macro returns the size field of a minimal symbol, which is normally
67    stored in the "info" field.  The macro can be overridden for specific
68    targets (e.g. MIPS16) that use the info field for other purposes.  */
69 #ifndef MSYMBOL_SIZE
70 #define MSYMBOL_SIZE(msym) ((long) MSYMBOL_INFO (msym))
71 #endif
72
73
74 /* We put a pointer to this structure in the read_symtab_private field
75    of the psymtab.  */
76
77 struct symloc
78   {
79     /* The start (inclusive) and end (exclusive) addresses for this
80        partial symtab's text.  STABS doesn't reliably give us nice
81        start and end addresses for each function.  Instead, we are
82        told the addresses of various boundary points, and we have to
83        gather those together to build ranges.  These are our running
84        best guess as to the range of text addresses for this psymtab.  */
85     CORE_ADDR textlow, texthigh;
86
87     /* Offset within the file symbol table of first local symbol for this
88        file.  */
89
90     int ldsymoff;
91
92     /* Length (in bytes) of the section of the symbol table devoted to
93        this file's symbols (actually, the section bracketed may contain
94        more than just this file's symbols).  If ldsymlen is 0, the only
95        reason for this thing's existence is the dependency list.  Nothing
96        else will happen when it is read in.  */
97
98     int ldsymlen;
99
100     /* The size of each symbol in the symbol file (in external form).  */
101
102     int symbol_size;
103
104     /* Further information needed to locate the symbols if they are in
105        an ELF file.  */
106
107     int symbol_offset;
108     int string_offset;
109     int file_string_offset;
110   };
111
112 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
113 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
114 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
115 #define TEXTLOW(p) (SYMLOC(p)->textlow)
116 #define TEXTHIGH(p) (SYMLOC(p)->texthigh)
117 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
118 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
119 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
120 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
121 \f
122
123 /* Remember what we deduced to be the source language of this psymtab. */
124
125 static enum language psymtab_language = language_unknown;
126
127 /* The BFD for this file -- implicit parameter to next_symbol_text.  */
128
129 static bfd *symfile_bfd;
130
131 /* The size of each symbol in the symbol file (in external form).
132    This is set by dbx_symfile_read when building psymtabs, and by
133    dbx_psymtab_to_symtab when building symtabs.  */
134
135 static unsigned symbol_size;
136
137 /* This is the offset of the symbol table in the executable file. */
138
139 static unsigned symbol_table_offset;
140
141 /* This is the offset of the string table in the executable file. */
142
143 static unsigned string_table_offset;
144
145 /* For elf+stab executables, the n_strx field is not a simple index
146    into the string table.  Instead, each .o file has a base offset in
147    the string table, and the associated symbols contain offsets from
148    this base.  The following two variables contain the base offset for
149    the current and next .o files. */
150
151 static unsigned int file_string_table_offset;
152 static unsigned int next_file_string_table_offset;
153
154 /* .o and NLM files contain unrelocated addresses which are based at
155    0.  When non-zero, this flag disables some of the special cases for
156    Solaris elf+stab text addresses at location 0. */
157
158 static int symfile_relocatable = 0;
159
160 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
161    relative to the function start address.  */
162
163 static int block_address_function_relative = 0;
164 \f
165 /* The lowest text address we have yet encountered.  This is needed
166    because in an a.out file, there is no header field which tells us
167    what address the program is actually going to be loaded at, so we
168    need to make guesses based on the symbols (which *are* relocated to
169    reflect the address it will be loaded at).  */
170
171 static CORE_ADDR lowest_text_address;
172
173 /* Non-zero if there is any line number info in the objfile.  Prevents
174    end_psymtab from discarding an otherwise empty psymtab.  */
175
176 static int has_line_numbers;
177
178 /* Complaints about the symbols we have encountered.  */
179
180 struct complaint lbrac_complaint =
181 {"bad block start address patched", 0, 0};
182
183 struct complaint string_table_offset_complaint =
184 {"bad string table offset in symbol %d", 0, 0};
185
186 struct complaint unknown_symtype_complaint =
187 {"unknown symbol type %s", 0, 0};
188
189 struct complaint unknown_symchar_complaint =
190 {"unknown symbol descriptor `%c'", 0, 0};
191
192 struct complaint lbrac_rbrac_complaint =
193 {"block start larger than block end", 0, 0};
194
195 struct complaint lbrac_unmatched_complaint =
196 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
197
198 struct complaint lbrac_mismatch_complaint =
199 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
200
201 struct complaint repeated_header_complaint =
202 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
203
204 struct complaint unclaimed_bincl_complaint =
205 {"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
206
207 struct complaint discarding_local_symbols_complaint =
208 {"misplaced N_LBRAC entry; discarding local symbols which have no enclosing block", 0, 0};
209 \f
210 /* find_text_range --- find start and end of loadable code sections
211
212    The find_text_range function finds the shortest address range that
213    encloses all sections containing executable code, and stores it in
214    objfile's text_addr and text_size members.
215
216    dbx_symfile_read will use this to finish off the partial symbol
217    table, in some cases.  */
218
219 static void
220 find_text_range (bfd * sym_bfd, struct objfile *objfile)
221 {
222   asection *sec;
223   int found_any = 0;
224   CORE_ADDR start = 0;
225   CORE_ADDR end = 0;
226
227   for (sec = sym_bfd->sections; sec; sec = sec->next)
228     if (bfd_get_section_flags (sym_bfd, sec) & SEC_CODE)
229       {
230         CORE_ADDR sec_start = bfd_section_vma (sym_bfd, sec);
231         CORE_ADDR sec_end = sec_start + bfd_section_size (sym_bfd, sec);
232
233         if (found_any)
234           {
235             if (sec_start < start)
236               start = sec_start;
237             if (sec_end > end)
238               end = sec_end;
239           }
240         else
241           {
242             start = sec_start;
243             end = sec_end;
244           }
245
246         found_any = 1;
247       }
248
249   if (!found_any)
250     error ("Can't find any code sections in symbol file");
251
252   DBX_TEXT_ADDR (objfile) = start;
253   DBX_TEXT_SIZE (objfile) = end - start;
254 }
255 \f
256
257
258 /* During initial symbol readin, we need to have a structure to keep
259    track of which psymtabs have which bincls in them.  This structure
260    is used during readin to setup the list of dependencies within each
261    partial symbol table. */
262
263 struct header_file_location
264 {
265   char *name;                   /* Name of header file */
266   int instance;                 /* See above */
267   struct partial_symtab *pst;   /* Partial symtab that has the
268                                    BINCL/EINCL defs for this file */
269 };
270
271 /* The actual list and controling variables */
272 static struct header_file_location *bincl_list, *next_bincl;
273 static int bincls_allocated;
274
275 /* Local function prototypes */
276
277 extern void _initialize_dbxread (void);
278
279 static void process_now (struct objfile *);
280
281 static void read_ofile_symtab (struct partial_symtab *);
282
283 static void dbx_psymtab_to_symtab (struct partial_symtab *);
284
285 static void dbx_psymtab_to_symtab_1 (struct partial_symtab *);
286
287 static void read_dbx_dynamic_symtab (struct objfile *objfile);
288
289 static void read_dbx_symtab (struct objfile *);
290
291 static void free_bincl_list (struct objfile *);
292
293 static struct partial_symtab *find_corresponding_bincl_psymtab (char *, int);
294
295 static void add_bincl_to_list (struct partial_symtab *, char *, int);
296
297 static void init_bincl_list (int, struct objfile *);
298
299 static char *dbx_next_symbol_text (struct objfile *);
300
301 static void fill_symbuf (bfd *);
302
303 static void dbx_symfile_init (struct objfile *);
304
305 static void dbx_new_init (struct objfile *);
306
307 static void dbx_symfile_read (struct objfile *, int);
308
309 static void dbx_symfile_finish (struct objfile *);
310
311 static void record_minimal_symbol (char *, CORE_ADDR, int, struct objfile *);
312
313 static void add_new_header_file (char *, int);
314
315 static void add_old_header_file (char *, int);
316
317 static void add_this_object_header_file (int);
318
319 static struct partial_symtab *start_psymtab (struct objfile *, char *,
320                                              CORE_ADDR, int,
321                                              struct partial_symbol **,
322                                              struct partial_symbol **);
323
324 /* Free up old header file tables */
325
326 void
327 free_header_files (void)
328 {
329   if (this_object_header_files)
330     {
331       xfree (this_object_header_files);
332       this_object_header_files = NULL;
333     }
334   n_allocated_this_object_header_files = 0;
335 }
336
337 /* Allocate new header file tables */
338
339 void
340 init_header_files (void)
341 {
342   n_allocated_this_object_header_files = 10;
343   this_object_header_files = (int *) xmalloc (10 * sizeof (int));
344 }
345
346 /* Add header file number I for this object file
347    at the next successive FILENUM.  */
348
349 static void
350 add_this_object_header_file (int i)
351 {
352   if (n_this_object_header_files == n_allocated_this_object_header_files)
353     {
354       n_allocated_this_object_header_files *= 2;
355       this_object_header_files
356         = (int *) xrealloc ((char *) this_object_header_files,
357                        n_allocated_this_object_header_files * sizeof (int));
358     }
359
360   this_object_header_files[n_this_object_header_files++] = i;
361 }
362
363 /* Add to this file an "old" header file, one already seen in
364    a previous object file.  NAME is the header file's name.
365    INSTANCE is its instance code, to select among multiple
366    symbol tables for the same header file.  */
367
368 static void
369 add_old_header_file (char *name, int instance)
370 {
371   register struct header_file *p = HEADER_FILES (current_objfile);
372   register int i;
373
374   for (i = 0; i < N_HEADER_FILES (current_objfile); i++)
375     if (STREQ (p[i].name, name) && instance == p[i].instance)
376       {
377         add_this_object_header_file (i);
378         return;
379       }
380   complain (&repeated_header_complaint, name, symnum);
381 }
382
383 /* Add to this file a "new" header file: definitions for its types follow.
384    NAME is the header file's name.
385    Most often this happens only once for each distinct header file,
386    but not necessarily.  If it happens more than once, INSTANCE has
387    a different value each time, and references to the header file
388    use INSTANCE values to select among them.
389
390    dbx output contains "begin" and "end" markers for each new header file,
391    but at this level we just need to know which files there have been;
392    so we record the file when its "begin" is seen and ignore the "end".  */
393
394 static void
395 add_new_header_file (char *name, int instance)
396 {
397   register int i;
398   register struct header_file *hfile;
399
400   /* Make sure there is room for one more header file.  */
401
402   i = N_ALLOCATED_HEADER_FILES (current_objfile);
403
404   if (N_HEADER_FILES (current_objfile) == i)
405     {
406       if (i == 0)
407         {
408           N_ALLOCATED_HEADER_FILES (current_objfile) = 10;
409           HEADER_FILES (current_objfile) = (struct header_file *)
410             xmalloc (10 * sizeof (struct header_file));
411         }
412       else
413         {
414           i *= 2;
415           N_ALLOCATED_HEADER_FILES (current_objfile) = i;
416           HEADER_FILES (current_objfile) = (struct header_file *)
417             xrealloc ((char *) HEADER_FILES (current_objfile),
418                       (i * sizeof (struct header_file)));
419         }
420     }
421
422   /* Create an entry for this header file.  */
423
424   i = N_HEADER_FILES (current_objfile)++;
425   hfile = HEADER_FILES (current_objfile) + i;
426   hfile->name = savestring (name, strlen (name));
427   hfile->instance = instance;
428   hfile->length = 10;
429   hfile->vector
430     = (struct type **) xmalloc (10 * sizeof (struct type *));
431   memset (hfile->vector, 0, 10 * sizeof (struct type *));
432
433   add_this_object_header_file (i);
434 }
435
436 #if 0
437 static struct type **
438 explicit_lookup_type (int real_filenum, int index)
439 {
440   register struct header_file *f = &HEADER_FILES (current_objfile)[real_filenum];
441
442   if (index >= f->length)
443     {
444       f->length *= 2;
445       f->vector = (struct type **)
446         xrealloc (f->vector, f->length * sizeof (struct type *));
447       memset (&f->vector[f->length / 2],
448               '\0', f->length * sizeof (struct type *) / 2);
449     }
450   return &f->vector[index];
451 }
452 #endif
453 \f
454 static void
455 record_minimal_symbol (char *name, CORE_ADDR address, int type,
456                        struct objfile *objfile)
457 {
458   enum minimal_symbol_type ms_type;
459   int section;
460   asection *bfd_section;
461
462   switch (type)
463     {
464     case N_TEXT | N_EXT:
465       ms_type = mst_text;
466       section = SECT_OFF_TEXT (objfile);
467       bfd_section = DBX_TEXT_SECTION (objfile);
468       break;
469     case N_DATA | N_EXT:
470       ms_type = mst_data;
471       section = SECT_OFF_DATA (objfile);
472       bfd_section = DBX_DATA_SECTION (objfile);
473       break;
474     case N_BSS | N_EXT:
475       ms_type = mst_bss;
476       section = SECT_OFF_BSS (objfile);
477       bfd_section = DBX_BSS_SECTION (objfile);
478       break;
479     case N_ABS | N_EXT:
480       ms_type = mst_abs;
481       section = -1;
482       bfd_section = NULL;
483       break;
484 #ifdef N_SETV
485     case N_SETV | N_EXT:
486       ms_type = mst_data;
487       section = SECT_OFF_DATA (objfile);
488       bfd_section = DBX_DATA_SECTION (objfile);
489       break;
490     case N_SETV:
491       /* I don't think this type actually exists; since a N_SETV is the result
492          of going over many .o files, it doesn't make sense to have one
493          file local.  */
494       ms_type = mst_file_data;
495       section = SECT_OFF_DATA (objfile);
496       bfd_section = DBX_DATA_SECTION (objfile);
497       break;
498 #endif
499     case N_TEXT:
500     case N_NBTEXT:
501     case N_FN:
502     case N_FN_SEQ:
503       ms_type = mst_file_text;
504       section = SECT_OFF_TEXT (objfile);
505       bfd_section = DBX_TEXT_SECTION (objfile);
506       break;
507     case N_DATA:
508       ms_type = mst_file_data;
509
510       /* Check for __DYNAMIC, which is used by Sun shared libraries. 
511          Record it as global even if it's local, not global, so
512          lookup_minimal_symbol can find it.  We don't check symbol_leading_char
513          because for SunOS4 it always is '_'.  */
514       if (name[8] == 'C' && STREQ ("__DYNAMIC", name))
515         ms_type = mst_data;
516
517       /* Same with virtual function tables, both global and static.  */
518       {
519         char *tempstring = name;
520         if (tempstring[0] == bfd_get_symbol_leading_char (objfile->obfd))
521           ++tempstring;
522         if (is_vtable_name (tempstring))
523           ms_type = mst_data;
524       }
525       section = SECT_OFF_DATA (objfile);
526       bfd_section = DBX_DATA_SECTION (objfile);
527       break;
528     case N_BSS:
529       ms_type = mst_file_bss;
530       section = SECT_OFF_BSS (objfile);
531       bfd_section = DBX_BSS_SECTION (objfile);
532       break;
533     default:
534       ms_type = mst_unknown;
535       section = -1;
536       bfd_section = NULL;
537       break;
538     }
539
540   if ((ms_type == mst_file_text || ms_type == mst_text)
541       && address < lowest_text_address)
542     lowest_text_address = address;
543
544   prim_record_minimal_symbol_and_info
545     (name, address, ms_type, NULL, section, bfd_section, objfile);
546 }
547 \f
548 /* Scan and build partial symbols for a symbol file.
549    We have been initialized by a call to dbx_symfile_init, which 
550    put all the relevant info into a "struct dbx_symfile_info",
551    hung off the objfile structure.
552
553    MAINLINE is true if we are reading the main symbol
554    table (as opposed to a shared lib or dynamically loaded file).  */
555
556 static void
557 dbx_symfile_read (struct objfile *objfile, int mainline)
558 {
559   bfd *sym_bfd;
560   int val;
561   struct cleanup *back_to;
562
563   sym_bfd = objfile->obfd;
564
565   /* .o and .nlm files are relocatables with text, data and bss segs based at
566      0.  This flag disables special (Solaris stabs-in-elf only) fixups for
567      symbols with a value of 0.  */
568
569   symfile_relocatable = bfd_get_file_flags (sym_bfd) & HAS_RELOC;
570
571   /* This is true for Solaris (and all other systems which put stabs
572      in sections, hopefully, since it would be silly to do things
573      differently from Solaris), and false for SunOS4 and other a.out
574      file formats.  */
575   block_address_function_relative =
576     ((0 == strncmp (bfd_get_target (sym_bfd), "elf", 3))
577      || (0 == strncmp (bfd_get_target (sym_bfd), "som", 3))
578      || (0 == strncmp (bfd_get_target (sym_bfd), "coff", 4))
579      || (0 == strncmp (bfd_get_target (sym_bfd), "pe", 2))
580      || (0 == strncmp (bfd_get_target (sym_bfd), "epoc-pe", 7))
581      || (0 == strncmp (bfd_get_target (sym_bfd), "nlm", 3)));
582
583   val = bfd_seek (sym_bfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
584   if (val < 0)
585     perror_with_name (objfile->name);
586
587   /* If we are reinitializing, or if we have never loaded syms yet, init */
588   if (mainline
589       || (objfile->global_psymbols.size == 0
590           &&  objfile->static_psymbols.size == 0))
591     init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
592
593   symbol_size = DBX_SYMBOL_SIZE (objfile);
594   symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
595
596   free_pending_blocks ();
597   back_to = make_cleanup (really_free_pendings, 0);
598
599   init_minimal_symbol_collection ();
600   make_cleanup_discard_minimal_symbols ();
601
602   /* Read stabs data from executable file and define symbols. */
603
604   read_dbx_symtab (objfile);
605
606   /* Add the dynamic symbols.  */
607
608   read_dbx_dynamic_symtab (objfile);
609
610   /* Take the text ranges the STABS partial symbol scanner computed
611      for each of the psymtabs and convert it into the canonical form
612      for psymtabs.  */
613   {
614     struct partial_symtab *p;
615
616     ALL_OBJFILE_PSYMTABS (objfile, p)
617       {
618         p->textlow = TEXTLOW (p);
619         p->texthigh = TEXTHIGH (p);
620       }
621   }
622
623   /* Install any minimal symbols that have been collected as the current
624      minimal symbols for this objfile. */
625
626   install_minimal_symbols (objfile);
627
628   do_cleanups (back_to);
629 }
630
631 /* Initialize anything that needs initializing when a completely new
632    symbol file is specified (not just adding some symbols from another
633    file, e.g. a shared library).  */
634
635 static void
636 dbx_new_init (struct objfile *ignore)
637 {
638   stabsread_new_init ();
639   buildsym_new_init ();
640   init_header_files ();
641 }
642
643
644 /* dbx_symfile_init ()
645    is the dbx-specific initialization routine for reading symbols.
646    It is passed a struct objfile which contains, among other things,
647    the BFD for the file whose symbols are being read, and a slot for a pointer
648    to "private data" which we fill with goodies.
649
650    We read the string table into malloc'd space and stash a pointer to it.
651
652    Since BFD doesn't know how to read debug symbols in a format-independent
653    way (and may never do so...), we have to do it ourselves.  We will never
654    be called unless this is an a.out (or very similar) file. 
655    FIXME, there should be a cleaner peephole into the BFD environment here.  */
656
657 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long)    /* FIXME */
658
659 static void
660 dbx_symfile_init (struct objfile *objfile)
661 {
662   int val;
663   bfd *sym_bfd = objfile->obfd;
664   char *name = bfd_get_filename (sym_bfd);
665   asection *text_sect;
666   unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
667
668   /* Allocate struct to keep track of the symfile */
669   objfile->sym_stab_info = (struct dbx_symfile_info *)
670     xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
671   memset ((PTR) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
672
673   DBX_TEXT_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
674   DBX_DATA_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".data");
675   DBX_BSS_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".bss");
676
677   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
678 #define STRING_TABLE_OFFSET     (sym_bfd->origin + obj_str_filepos (sym_bfd))
679 #define SYMBOL_TABLE_OFFSET     (sym_bfd->origin + obj_sym_filepos (sym_bfd))
680
681   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
682
683   DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
684
685   text_sect = bfd_get_section_by_name (sym_bfd, ".text");
686   if (!text_sect)
687     error ("Can't find .text section in symbol file");
688   DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
689   DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
690
691   DBX_SYMBOL_SIZE (objfile) = obj_symbol_entry_size (sym_bfd);
692   DBX_SYMCOUNT (objfile) = bfd_get_symcount (sym_bfd);
693   DBX_SYMTAB_OFFSET (objfile) = SYMBOL_TABLE_OFFSET;
694
695   /* Read the string table and stash it away in the psymbol_obstack.  It is
696      only needed as long as we need to expand psymbols into full symbols,
697      so when we blow away the psymbol the string table goes away as well.
698      Note that gdb used to use the results of attempting to malloc the
699      string table, based on the size it read, as a form of sanity check
700      for botched byte swapping, on the theory that a byte swapped string
701      table size would be so totally bogus that the malloc would fail.  Now
702      that we put in on the psymbol_obstack, we can't do this since gdb gets
703      a fatal error (out of virtual memory) if the size is bogus.  We can
704      however at least check to see if the size is less than the size of
705      the size field itself, or larger than the size of the entire file.
706      Note that all valid string tables have a size greater than zero, since
707      the bytes used to hold the size are included in the count. */
708
709   if (STRING_TABLE_OFFSET == 0)
710     {
711       /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
712          will never be zero, even when there is no string table.  This
713          would appear to be a bug in bfd. */
714       DBX_STRINGTAB_SIZE (objfile) = 0;
715       DBX_STRINGTAB (objfile) = NULL;
716     }
717   else
718     {
719       val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
720       if (val < 0)
721         perror_with_name (name);
722
723       memset ((PTR) size_temp, 0, sizeof (size_temp));
724       val = bfd_bread ((PTR) size_temp, sizeof (size_temp), sym_bfd);
725       if (val < 0)
726         {
727           perror_with_name (name);
728         }
729       else if (val == 0)
730         {
731           /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
732              EOF if there is no string table, and attempting to read the size
733              from EOF will read zero bytes. */
734           DBX_STRINGTAB_SIZE (objfile) = 0;
735           DBX_STRINGTAB (objfile) = NULL;
736         }
737       else
738         {
739           /* Read some data that would appear to be the string table size.
740              If there really is a string table, then it is probably the right
741              size.  Byteswap if necessary and validate the size.  Note that
742              the minimum is DBX_STRINGTAB_SIZE_SIZE.  If we just read some
743              random data that happened to be at STRING_TABLE_OFFSET, because
744              bfd can't tell us there is no string table, the sanity checks may
745              or may not catch this. */
746           DBX_STRINGTAB_SIZE (objfile) = bfd_h_get_32 (sym_bfd, size_temp);
747
748           if (DBX_STRINGTAB_SIZE (objfile) < sizeof (size_temp)
749               || DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
750             error ("ridiculous string table size (%d bytes).",
751                    DBX_STRINGTAB_SIZE (objfile));
752
753           DBX_STRINGTAB (objfile) =
754             (char *) obstack_alloc (&objfile->psymbol_obstack,
755                                     DBX_STRINGTAB_SIZE (objfile));
756           OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile));
757
758           /* Now read in the string table in one big gulp.  */
759
760           val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
761           if (val < 0)
762             perror_with_name (name);
763           val = bfd_bread (DBX_STRINGTAB (objfile),
764                            DBX_STRINGTAB_SIZE (objfile),
765                            sym_bfd);
766           if (val != DBX_STRINGTAB_SIZE (objfile))
767             perror_with_name (name);
768         }
769     }
770 }
771
772 /* Perform any local cleanups required when we are done with a particular
773    objfile.  I.E, we are in the process of discarding all symbol information
774    for an objfile, freeing up all memory held for it, and unlinking the
775    objfile struct from the global list of known objfiles. */
776
777 static void
778 dbx_symfile_finish (struct objfile *objfile)
779 {
780   if (objfile->sym_stab_info != NULL)
781     {
782       if (HEADER_FILES (objfile) != NULL)
783         {
784           register int i = N_HEADER_FILES (objfile);
785           register struct header_file *hfiles = HEADER_FILES (objfile);
786
787           while (--i >= 0)
788             {
789               xfree (hfiles[i].name);
790               xfree (hfiles[i].vector);
791             }
792           xfree (hfiles);
793         }
794       xmfree (objfile->md, objfile->sym_stab_info);
795     }
796   free_header_files ();
797 }
798 \f
799
800 /* Buffer for reading the symbol table entries.  */
801 static struct external_nlist symbuf[4096];
802 static int symbuf_idx;
803 static int symbuf_end;
804
805 /* cont_elem is used for continuing information in cfront.
806    It saves information about which types need to be fixed up and 
807    completed after all the stabs are read.  */
808 struct cont_elem
809   {
810     /* sym and stabstring for continuing information in cfront */
811     struct symbol *sym;
812     char *stabs;
813     /* state dependencies (statics that must be preserved) */
814     int sym_idx;
815     int sym_end;
816     int symnum;
817     int (*func) (struct objfile *, struct symbol *, char *);
818     /* other state dependencies include:
819        (assumption is that these will not change since process_now FIXME!!)
820        stringtab_global
821        n_stabs
822        objfile
823        symfile_bfd */
824   };
825
826 static struct cont_elem *cont_list = 0;
827 static int cont_limit = 0;
828 static int cont_count = 0;
829
830 /* Arrange for function F to be called with arguments SYM and P later
831    in the stabs reading process.  */
832 void
833 process_later (struct symbol *sym, char *p,
834                int (*f) (struct objfile *, struct symbol *, char *))
835 {
836
837   /* Allocate more space for the deferred list.  */
838   if (cont_count >= cont_limit - 1)
839     {
840       cont_limit += 32;         /* chunk size */
841
842       cont_list
843         = (struct cont_elem *) xrealloc (cont_list,
844                                          (cont_limit
845                                           * sizeof (struct cont_elem)));
846       if (!cont_list)
847         error ("Virtual memory exhausted\n");
848     }
849
850   /* Save state variables so we can process these stabs later.  */
851   cont_list[cont_count].sym_idx = symbuf_idx;
852   cont_list[cont_count].sym_end = symbuf_end;
853   cont_list[cont_count].symnum = symnum;
854   cont_list[cont_count].sym = sym;
855   cont_list[cont_count].stabs = p;
856   cont_list[cont_count].func = f;
857   cont_count++;
858 }
859
860 /* Call deferred funtions in CONT_LIST.  */
861
862 static void
863 process_now (struct objfile *objfile)
864 {
865   int i;
866   int save_symbuf_idx;
867   int save_symbuf_end;
868   int save_symnum;
869   struct symbol *sym;
870   char *stabs;
871   int err;
872   int (*func) (struct objfile *, struct symbol *, char *);
873
874   /* Save the state of our caller, we'll want to restore it before
875      returning.  */
876   save_symbuf_idx = symbuf_idx;
877   save_symbuf_end = symbuf_end;
878   save_symnum = symnum;
879
880   /* Iterate over all the deferred stabs.  */
881   for (i = 0; i < cont_count; i++)
882     {
883       /* Restore the state for this deferred stab.  */
884       symbuf_idx = cont_list[i].sym_idx;
885       symbuf_end = cont_list[i].sym_end;
886       symnum = cont_list[i].symnum;
887       sym = cont_list[i].sym;
888       stabs = cont_list[i].stabs;
889       func = cont_list[i].func;
890
891       /* Call the function to handle this deferrd stab.  */
892       err = (*func) (objfile, sym, stabs);
893       if (err)
894         error ("Internal error: unable to resolve stab.\n");
895     }
896
897   /* Restore our caller's state.  */
898   symbuf_idx = save_symbuf_idx;
899   symbuf_end = save_symbuf_end;
900   symnum = save_symnum;
901   cont_count = 0;
902 }
903
904
905 /* Name of last function encountered.  Used in Solaris to approximate
906    object file boundaries.  */
907 static char *last_function_name;
908
909 /* The address in memory of the string table of the object file we are
910    reading (which might not be the "main" object file, but might be a
911    shared library or some other dynamically loaded thing).  This is
912    set by read_dbx_symtab when building psymtabs, and by
913    read_ofile_symtab when building symtabs, and is used only by
914    next_symbol_text.  FIXME: If that is true, we don't need it when
915    building psymtabs, right?  */
916 static char *stringtab_global;
917
918 /* These variables are used to control fill_symbuf when the stabs
919    symbols are not contiguous (as may be the case when a COFF file is
920    linked using --split-by-reloc).  */
921 static struct stab_section_list *symbuf_sections;
922 static unsigned int symbuf_left;
923 static unsigned int symbuf_read;
924
925 /* Refill the symbol table input buffer
926    and set the variables that control fetching entries from it.
927    Reports an error if no data available.
928    This function can read past the end of the symbol table
929    (into the string table) but this does no harm.  */
930
931 static void
932 fill_symbuf (bfd *sym_bfd)
933 {
934   unsigned int count;
935   int nbytes;
936
937   if (symbuf_sections == NULL)
938     count = sizeof (symbuf);
939   else
940     {
941       if (symbuf_left <= 0)
942         {
943           file_ptr filepos = symbuf_sections->section->filepos;
944           if (bfd_seek (sym_bfd, filepos, SEEK_SET) != 0)
945             perror_with_name (bfd_get_filename (sym_bfd));
946           symbuf_left = bfd_section_size (sym_bfd, symbuf_sections->section);
947           symbol_table_offset = filepos - symbuf_read;
948           symbuf_sections = symbuf_sections->next;
949         }
950
951       count = symbuf_left;
952       if (count > sizeof (symbuf))
953         count = sizeof (symbuf);
954     }
955
956   nbytes = bfd_bread ((PTR) symbuf, count, sym_bfd);
957   if (nbytes < 0)
958     perror_with_name (bfd_get_filename (sym_bfd));
959   else if (nbytes == 0)
960     error ("Premature end of file reading symbol table");
961   symbuf_end = nbytes / symbol_size;
962   symbuf_idx = 0;
963   symbuf_left -= nbytes;
964   symbuf_read += nbytes;
965 }
966
967 #define INTERNALIZE_SYMBOL(intern, extern, abfd)                        \
968   {                                                                     \
969     (intern).n_type = bfd_h_get_8 (abfd, (extern)->e_type);             \
970     (intern).n_strx = bfd_h_get_32 (abfd, (extern)->e_strx);            \
971     (intern).n_desc = bfd_h_get_16 (abfd, (extern)->e_desc);            \
972     if (bfd_get_sign_extend_vma (abfd))                                 \
973       (intern).n_value = bfd_h_get_signed_32 (abfd, (extern)->e_value); \
974     else                                                                \
975       (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value);        \
976   }
977
978 /* Invariant: The symbol pointed to by symbuf_idx is the first one
979    that hasn't been swapped.  Swap the symbol at the same time
980    that symbuf_idx is incremented.  */
981
982 /* dbx allows the text of a symbol name to be continued into the
983    next symbol name!  When such a continuation is encountered
984    (a \ at the end of the text of a name)
985    call this function to get the continuation.  */
986
987 static char *
988 dbx_next_symbol_text (struct objfile *objfile)
989 {
990   struct internal_nlist nlist;
991
992   if (symbuf_idx == symbuf_end)
993     fill_symbuf (symfile_bfd);
994
995   symnum++;
996   INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd);
997   OBJSTAT (objfile, n_stabs++);
998
999   symbuf_idx++;
1000
1001   return nlist.n_strx + stringtab_global + file_string_table_offset;
1002 }
1003 \f
1004 /* Initialize the list of bincls to contain none and have some
1005    allocated.  */
1006
1007 static void
1008 init_bincl_list (int number, struct objfile *objfile)
1009 {
1010   bincls_allocated = number;
1011   next_bincl = bincl_list = (struct header_file_location *)
1012     xmmalloc (objfile->md, bincls_allocated * sizeof (struct header_file_location));
1013 }
1014
1015 /* Add a bincl to the list.  */
1016
1017 static void
1018 add_bincl_to_list (struct partial_symtab *pst, char *name, int instance)
1019 {
1020   if (next_bincl >= bincl_list + bincls_allocated)
1021     {
1022       int offset = next_bincl - bincl_list;
1023       bincls_allocated *= 2;
1024       bincl_list = (struct header_file_location *)
1025         xmrealloc (pst->objfile->md, (char *) bincl_list,
1026                    bincls_allocated * sizeof (struct header_file_location));
1027       next_bincl = bincl_list + offset;
1028     }
1029   next_bincl->pst = pst;
1030   next_bincl->instance = instance;
1031   next_bincl++->name = name;
1032 }
1033
1034 /* Given a name, value pair, find the corresponding
1035    bincl in the list.  Return the partial symtab associated
1036    with that header_file_location.  */
1037
1038 static struct partial_symtab *
1039 find_corresponding_bincl_psymtab (char *name, int instance)
1040 {
1041   struct header_file_location *bincl;
1042
1043   for (bincl = bincl_list; bincl < next_bincl; bincl++)
1044     if (bincl->instance == instance
1045         && STREQ (name, bincl->name))
1046       return bincl->pst;
1047
1048   complain (&repeated_header_complaint, name, symnum);
1049   return (struct partial_symtab *) 0;
1050 }
1051
1052 /* Free the storage allocated for the bincl list.  */
1053
1054 static void
1055 free_bincl_list (struct objfile *objfile)
1056 {
1057   xmfree (objfile->md, (PTR) bincl_list);
1058   bincls_allocated = 0;
1059 }
1060
1061 static void
1062 do_free_bincl_list_cleanup (void *objfile)
1063 {
1064   free_bincl_list (objfile);
1065 }
1066
1067 static struct cleanup *
1068 make_cleanup_free_bincl_list (struct objfile *objfile)
1069 {
1070   return make_cleanup (do_free_bincl_list_cleanup, objfile);
1071 }
1072
1073 /* Set namestring based on nlist.  If the string table index is invalid, 
1074    give a fake name, and print a single error message per symbol file read,
1075    rather than abort the symbol reading or flood the user with messages.  */
1076
1077 static char *
1078 set_namestring (struct objfile *objfile, struct internal_nlist nlist)
1079 {
1080   char *namestring;
1081
1082   if (((unsigned) nlist.n_strx + file_string_table_offset) >=
1083       DBX_STRINGTAB_SIZE (objfile))
1084     {
1085       complain (&string_table_offset_complaint, symnum);
1086       namestring = "<bad string table offset>";
1087     } 
1088   else
1089     namestring = nlist.n_strx + file_string_table_offset +
1090       DBX_STRINGTAB (objfile);
1091   return namestring;
1092 }
1093
1094 /* Scan a SunOs dynamic symbol table for symbols of interest and
1095    add them to the minimal symbol table.  */
1096
1097 static void
1098 read_dbx_dynamic_symtab (struct objfile *objfile)
1099 {
1100   bfd *abfd = objfile->obfd;
1101   struct cleanup *back_to;
1102   int counter;
1103   long dynsym_size;
1104   long dynsym_count;
1105   asymbol **dynsyms;
1106   asymbol **symptr;
1107   arelent **relptr;
1108   long dynrel_size;
1109   long dynrel_count;
1110   arelent **dynrels;
1111   CORE_ADDR sym_value;
1112   char *name;
1113
1114   /* Check that the symbol file has dynamic symbols that we know about.
1115      bfd_arch_unknown can happen if we are reading a sun3 symbol file
1116      on a sun4 host (and vice versa) and bfd is not configured
1117      --with-target=all.  This would trigger an assertion in bfd/sunos.c,
1118      so we ignore the dynamic symbols in this case.  */
1119   if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
1120       || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
1121       || bfd_get_arch (abfd) == bfd_arch_unknown)
1122     return;
1123
1124   dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
1125   if (dynsym_size < 0)
1126     return;
1127
1128   dynsyms = (asymbol **) xmalloc (dynsym_size);
1129   back_to = make_cleanup (xfree, dynsyms);
1130
1131   dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
1132   if (dynsym_count < 0)
1133     {
1134       do_cleanups (back_to);
1135       return;
1136     }
1137
1138   /* Enter dynamic symbols into the minimal symbol table
1139      if this is a stripped executable.  */
1140   if (bfd_get_symcount (abfd) <= 0)
1141     {
1142       symptr = dynsyms;
1143       for (counter = 0; counter < dynsym_count; counter++, symptr++)
1144         {
1145           asymbol *sym = *symptr;
1146           asection *sec;
1147           int type;
1148
1149           sec = bfd_get_section (sym);
1150
1151           /* BFD symbols are section relative.  */
1152           sym_value = sym->value + sec->vma;
1153
1154           if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
1155             {
1156               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1157               type = N_TEXT;
1158             }
1159           else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
1160             {
1161               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1162               type = N_DATA;
1163             }
1164           else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
1165             {
1166               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
1167               type = N_BSS;
1168             }
1169           else
1170             continue;
1171
1172           if (sym->flags & BSF_GLOBAL)
1173             type |= N_EXT;
1174
1175           record_minimal_symbol ((char *) bfd_asymbol_name (sym), sym_value,
1176                                  type, objfile);
1177         }
1178     }
1179
1180   /* Symbols from shared libraries have a dynamic relocation entry
1181      that points to the associated slot in the procedure linkage table.
1182      We make a mininal symbol table entry with type mst_solib_trampoline
1183      at the address in the procedure linkage table.  */
1184   dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
1185   if (dynrel_size < 0)
1186     {
1187       do_cleanups (back_to);
1188       return;
1189     }
1190
1191   dynrels = (arelent **) xmalloc (dynrel_size);
1192   make_cleanup (xfree, dynrels);
1193
1194   dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
1195   if (dynrel_count < 0)
1196     {
1197       do_cleanups (back_to);
1198       return;
1199     }
1200
1201   for (counter = 0, relptr = dynrels;
1202        counter < dynrel_count;
1203        counter++, relptr++)
1204     {
1205       arelent *rel = *relptr;
1206       CORE_ADDR address =
1207       rel->address + ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1208
1209       switch (bfd_get_arch (abfd))
1210         {
1211         case bfd_arch_sparc:
1212           if (rel->howto->type != RELOC_JMP_SLOT)
1213             continue;
1214           break;
1215         case bfd_arch_m68k:
1216           /* `16' is the type BFD produces for a jump table relocation.  */
1217           if (rel->howto->type != 16)
1218             continue;
1219
1220           /* Adjust address in the jump table to point to
1221              the start of the bsr instruction.  */
1222           address -= 2;
1223           break;
1224         default:
1225           continue;
1226         }
1227
1228       name = (char *) bfd_asymbol_name (*rel->sym_ptr_ptr);
1229       prim_record_minimal_symbol (name, address, mst_solib_trampoline,
1230                                   objfile);
1231     }
1232
1233   do_cleanups (back_to);
1234 }
1235
1236 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1237 CORE_ADDR
1238 find_stab_function_addr (char *namestring, char *filename,
1239                          struct objfile *objfile)
1240 {
1241   struct minimal_symbol *msym;
1242   char *p;
1243   int n;
1244
1245   p = strchr (namestring, ':');
1246   if (p == NULL)
1247     p = namestring;
1248   n = p - namestring;
1249   p = alloca (n + 2);
1250   strncpy (p, namestring, n);
1251   p[n] = 0;
1252
1253   msym = lookup_minimal_symbol (p, filename, objfile);
1254   if (msym == NULL)
1255     {
1256       /* Sun Fortran appends an underscore to the minimal symbol name,
1257          try again with an appended underscore if the minimal symbol
1258          was not found.  */
1259       p[n] = '_';
1260       p[n + 1] = 0;
1261       msym = lookup_minimal_symbol (p, filename, objfile);
1262     }
1263
1264   if (msym == NULL && filename != NULL)
1265     {
1266       /* Try again without the filename. */
1267       p[n] = 0;
1268       msym = lookup_minimal_symbol (p, NULL, objfile);
1269     }
1270   if (msym == NULL && filename != NULL)
1271     {
1272       /* And try again for Sun Fortran, but without the filename. */
1273       p[n] = '_';
1274       p[n + 1] = 0;
1275       msym = lookup_minimal_symbol (p, NULL, objfile);
1276     }
1277
1278   return msym == NULL ? 0 : SYMBOL_VALUE_ADDRESS (msym);
1279 }
1280 #endif /* SOFUN_ADDRESS_MAYBE_MISSING */
1281
1282 /* Setup partial_symtab's describing each source file for which
1283    debugging information is available. */
1284
1285 static void
1286 read_dbx_symtab (struct objfile *objfile)
1287 {
1288   register struct external_nlist *bufp = 0;     /* =0 avoids gcc -Wall glitch */
1289   struct internal_nlist nlist;
1290   CORE_ADDR text_addr;
1291   int text_size;
1292
1293   register char *namestring;
1294   int nsl;
1295   int past_first_source_file = 0;
1296   CORE_ADDR last_o_file_start = 0;
1297   CORE_ADDR last_function_start = 0;
1298   struct cleanup *back_to;
1299   bfd *abfd;
1300   int textlow_not_set;
1301
1302   /* Current partial symtab */
1303   struct partial_symtab *pst;
1304
1305   /* List of current psymtab's include files */
1306   char **psymtab_include_list;
1307   int includes_allocated;
1308   int includes_used;
1309
1310   /* Index within current psymtab dependency list */
1311   struct partial_symtab **dependency_list;
1312   int dependencies_used, dependencies_allocated;
1313
1314   text_addr = DBX_TEXT_ADDR (objfile);
1315   text_size = DBX_TEXT_SIZE (objfile);
1316
1317   /* FIXME.  We probably want to change stringtab_global rather than add this
1318      while processing every symbol entry.  FIXME.  */
1319   file_string_table_offset = 0;
1320   next_file_string_table_offset = 0;
1321
1322   stringtab_global = DBX_STRINGTAB (objfile);
1323
1324   pst = (struct partial_symtab *) 0;
1325
1326   includes_allocated = 30;
1327   includes_used = 0;
1328   psymtab_include_list = (char **) alloca (includes_allocated *
1329                                            sizeof (char *));
1330
1331   dependencies_allocated = 30;
1332   dependencies_used = 0;
1333   dependency_list =
1334     (struct partial_symtab **) alloca (dependencies_allocated *
1335                                        sizeof (struct partial_symtab *));
1336
1337   /* Init bincl list */
1338   init_bincl_list (20, objfile);
1339   back_to = make_cleanup_free_bincl_list (objfile);
1340
1341   last_source_file = NULL;
1342
1343   lowest_text_address = (CORE_ADDR) -1;
1344
1345   symfile_bfd = objfile->obfd;  /* For next_text_symbol */
1346   abfd = objfile->obfd;
1347   symbuf_end = symbuf_idx = 0;
1348   next_symbol_text_func = dbx_next_symbol_text;
1349   textlow_not_set = 1;
1350   has_line_numbers = 0;
1351
1352   for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
1353     {
1354       /* Get the symbol for this run and pull out some info */
1355       QUIT;                     /* allow this to be interruptable */
1356       if (symbuf_idx == symbuf_end)
1357         fill_symbuf (abfd);
1358       bufp = &symbuf[symbuf_idx++];
1359
1360       /*
1361        * Special case to speed up readin.
1362        */
1363       if (bfd_h_get_8 (abfd, bufp->e_type) == N_SLINE)
1364         {
1365           has_line_numbers = 1;
1366           continue;
1367         }
1368
1369       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1370       OBJSTAT (objfile, n_stabs++);
1371
1372       /* Ok.  There is a lot of code duplicated in the rest of this
1373          switch statement (for efficiency reasons).  Since I don't
1374          like duplicating code, I will do my penance here, and
1375          describe the code which is duplicated:
1376
1377          *) The assignment to namestring.
1378          *) The call to strchr.
1379          *) The addition of a partial symbol the the two partial
1380          symbol lists.  This last is a large section of code, so
1381          I've imbedded it in the following macro.
1382       */
1383
1384       switch (nlist.n_type)
1385         {
1386           static struct complaint function_outside_compilation_unit = {
1387             "function `%s' appears to be defined outside of all compilation units", 0, 0
1388           };
1389           char *p;
1390           /*
1391            * Standard, external, non-debugger, symbols
1392            */
1393
1394           case N_TEXT | N_EXT:
1395           case N_NBTEXT | N_EXT:
1396           nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1397           goto record_it;
1398
1399           case N_DATA | N_EXT:
1400           case N_NBDATA | N_EXT:
1401           nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1402           goto record_it;
1403
1404           case N_BSS:
1405           case N_BSS | N_EXT:
1406           case N_NBBSS | N_EXT:
1407           case N_SETV | N_EXT:          /* FIXME, is this in BSS? */
1408           nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
1409           goto record_it;
1410
1411           case N_ABS | N_EXT:
1412           record_it:
1413           namestring = set_namestring (objfile, nlist);
1414
1415           bss_ext_symbol:
1416           record_minimal_symbol (namestring, nlist.n_value,
1417                                  nlist.n_type, objfile);        /* Always */
1418           continue;
1419
1420           /* Standard, local, non-debugger, symbols */
1421
1422           case N_NBTEXT:
1423
1424           /* We need to be able to deal with both N_FN or N_TEXT,
1425              because we have no way of knowing whether the sys-supplied ld
1426              or GNU ld was used to make the executable.  Sequents throw
1427              in another wrinkle -- they renumbered N_FN.  */
1428
1429           case N_FN:
1430           case N_FN_SEQ:
1431           case N_TEXT:
1432           nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1433           namestring = set_namestring (objfile, nlist);
1434
1435           if ((namestring[0] == '-' && namestring[1] == 'l')
1436               || (namestring[(nsl = strlen (namestring)) - 1] == 'o'
1437                   && namestring[nsl - 2] == '.'))
1438           {
1439             if (objfile->ei.entry_point < nlist.n_value &&
1440                 objfile->ei.entry_point >= last_o_file_start)
1441               {
1442                 objfile->ei.entry_file_lowpc = last_o_file_start;
1443                 objfile->ei.entry_file_highpc = nlist.n_value;
1444               }
1445             if (past_first_source_file && pst
1446                 /* The gould NP1 uses low values for .o and -l symbols
1447                    which are not the address.  */
1448                 && nlist.n_value >= TEXTLOW (pst))
1449               {
1450                 end_psymtab (pst, psymtab_include_list, includes_used,
1451                              symnum * symbol_size,
1452                              nlist.n_value > TEXTHIGH (pst)
1453                              ? nlist.n_value : TEXTHIGH (pst),
1454                              dependency_list, dependencies_used, textlow_not_set);
1455                 pst = (struct partial_symtab *) 0;
1456                 includes_used = 0;
1457                 dependencies_used = 0;
1458               }
1459             else
1460               past_first_source_file = 1;
1461             last_o_file_start = nlist.n_value;
1462           }
1463           else
1464           goto record_it;
1465           continue;
1466
1467           case N_DATA:
1468           nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1469           goto record_it;
1470
1471           case N_UNDF | N_EXT:
1472           if (nlist.n_value != 0)
1473           {
1474             /* This is a "Fortran COMMON" symbol.  See if the target
1475                environment knows where it has been relocated to.  */
1476
1477             CORE_ADDR reladdr;
1478
1479             namestring = set_namestring (objfile, nlist);
1480             if (target_lookup_symbol (namestring, &reladdr))
1481               {
1482                 continue;               /* Error in lookup; ignore symbol for now.  */
1483               }
1484             nlist.n_type ^= (N_BSS ^ N_UNDF);   /* Define it as a bss-symbol */
1485             nlist.n_value = reladdr;
1486             goto bss_ext_symbol;
1487           }
1488           continue;                     /* Just undefined, not COMMON */
1489
1490           case N_UNDF:
1491           if (processing_acc_compilation && nlist.n_strx == 1)
1492           {
1493             /* Deal with relative offsets in the string table
1494                used in ELF+STAB under Solaris.  If we want to use the
1495                n_strx field, which contains the name of the file,
1496                we must adjust file_string_table_offset *before* calling
1497                set_namestring().  */
1498             past_first_source_file = 1;
1499             file_string_table_offset = next_file_string_table_offset;
1500             next_file_string_table_offset =
1501               file_string_table_offset + nlist.n_value;
1502             if (next_file_string_table_offset < file_string_table_offset)
1503               error ("string table offset backs up at %d", symnum);
1504             /* FIXME -- replace error() with complaint.  */
1505             continue;
1506           }
1507           continue;
1508
1509           /* Lots of symbol types we can just ignore.  */
1510
1511           case N_ABS:
1512           case N_NBDATA:
1513           case N_NBBSS:
1514           continue;
1515
1516           /* Keep going . . . */
1517
1518           /*
1519            * Special symbol types for GNU
1520            */
1521           case N_INDR:
1522           case N_INDR | N_EXT:
1523           case N_SETA:
1524           case N_SETA | N_EXT:
1525           case N_SETT:
1526           case N_SETT | N_EXT:
1527           case N_SETD:
1528           case N_SETD | N_EXT:
1529           case N_SETB:
1530           case N_SETB | N_EXT:
1531           case N_SETV:
1532           continue;
1533
1534           /*
1535            * Debugger symbols
1536            */
1537
1538           case N_SO:
1539           {
1540             CORE_ADDR valu;
1541             static int prev_so_symnum = -10;
1542             static int first_so_symnum;
1543             char *p;
1544             int prev_textlow_not_set;
1545
1546             valu = nlist.n_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1547
1548             prev_textlow_not_set = textlow_not_set;
1549
1550 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1551             /* A zero value is probably an indication for the SunPRO 3.0
1552                compiler. end_psymtab explicitly tests for zero, so
1553                don't relocate it.  */
1554
1555             if (nlist.n_value == 0)
1556               {
1557                 textlow_not_set = 1;
1558                 valu = 0;
1559               }
1560             else
1561               textlow_not_set = 0;
1562 #else
1563             textlow_not_set = 0;
1564 #endif
1565             past_first_source_file = 1;
1566
1567             if (prev_so_symnum != symnum - 1)
1568               {                 /* Here if prev stab wasn't N_SO */
1569                 first_so_symnum = symnum;
1570
1571                 if (pst)
1572                   {
1573                     end_psymtab (pst, psymtab_include_list, includes_used,
1574                                  symnum * symbol_size,
1575                                  valu > TEXTHIGH (pst) ? valu : TEXTHIGH (pst),
1576                                  dependency_list, dependencies_used,
1577                                  prev_textlow_not_set);
1578                     pst = (struct partial_symtab *) 0;
1579                     includes_used = 0;
1580                     dependencies_used = 0;
1581                   }
1582               }
1583
1584             prev_so_symnum = symnum;
1585
1586             /* End the current partial symtab and start a new one */
1587
1588             namestring = set_namestring (objfile, nlist);
1589
1590             /* Null name means end of .o file.  Don't start a new one. */
1591             if (*namestring == '\000')
1592               continue;
1593
1594             /* Some compilers (including gcc) emit a pair of initial N_SOs.
1595                The first one is a directory name; the second the file name.
1596                If pst exists, is empty, and has a filename ending in '/',
1597                we assume the previous N_SO was a directory name. */
1598
1599             p = strrchr (namestring, '/');
1600             if (p && *(p + 1) == '\000')
1601               continue;         /* Simply ignore directory name SOs */
1602
1603             /* Some other compilers (C++ ones in particular) emit useless
1604                SOs for non-existant .c files.  We ignore all subsequent SOs that
1605                immediately follow the first.  */
1606
1607             if (!pst)
1608               pst = start_psymtab (objfile,
1609                                    namestring, valu,
1610                                    first_so_symnum * symbol_size,
1611                                    objfile->global_psymbols.next,
1612                                    objfile->static_psymbols.next);
1613             continue;
1614           }
1615
1616           case N_BINCL:
1617           {
1618             enum language tmp_language;
1619             /* Add this bincl to the bincl_list for future EXCLs.  No
1620                need to save the string; it'll be around until
1621                read_dbx_symtab function returns */
1622
1623             namestring = set_namestring (objfile, nlist);
1624             tmp_language = deduce_language_from_filename (namestring);
1625
1626             /* Only change the psymtab's language if we've learned
1627                something useful (eg. tmp_language is not language_unknown).
1628                In addition, to match what start_subfile does, never change
1629                from C++ to C.  */
1630             if (tmp_language != language_unknown
1631                 && (tmp_language != language_c
1632                     || psymtab_language != language_cplus))
1633             psymtab_language = tmp_language;
1634
1635             if (pst == NULL)
1636             {
1637               /* FIXME: we should not get here without a PST to work on.
1638                  Attempt to recover.  */
1639               complain (&unclaimed_bincl_complaint, namestring, symnum);
1640               continue;
1641             }
1642             add_bincl_to_list (pst, namestring, nlist.n_value);
1643
1644             /* Mark down an include file in the current psymtab */
1645
1646             goto record_include_file;
1647           }
1648
1649           case N_SOL:
1650           {
1651             enum language tmp_language;
1652             /* Mark down an include file in the current psymtab */
1653
1654             namestring = set_namestring (objfile, nlist);
1655             tmp_language = deduce_language_from_filename (namestring);
1656
1657             /* Only change the psymtab's language if we've learned
1658                something useful (eg. tmp_language is not language_unknown).
1659                In addition, to match what start_subfile does, never change
1660                from C++ to C.  */
1661             if (tmp_language != language_unknown
1662                 && (tmp_language != language_c
1663                     || psymtab_language != language_cplus))
1664             psymtab_language = tmp_language;
1665
1666             /* In C++, one may expect the same filename to come round many
1667                times, when code is coming alternately from the main file
1668                and from inline functions in other files. So I check to see
1669                if this is a file we've seen before -- either the main
1670                source file, or a previously included file.
1671
1672                This seems to be a lot of time to be spending on N_SOL, but
1673                things like "break c-exp.y:435" need to work (I
1674                suppose the psymtab_include_list could be hashed or put
1675                in a binary tree, if profiling shows this is a major hog).  */
1676             if (pst && STREQ (namestring, pst->filename))
1677             continue;
1678             {
1679               register int i;
1680               for (i = 0; i < includes_used; i++)
1681                 if (STREQ (namestring, psymtab_include_list[i]))
1682                   {
1683                     i = -1;
1684                     break;
1685                   }
1686               if (i == -1)
1687                 continue;
1688             }
1689
1690             record_include_file:
1691
1692             psymtab_include_list[includes_used++] = namestring;
1693             if (includes_used >= includes_allocated)
1694             {
1695               char **orig = psymtab_include_list;
1696
1697               psymtab_include_list = (char **)
1698                 alloca ((includes_allocated *= 2) *
1699                         sizeof (char *));
1700               memcpy ((PTR) psymtab_include_list, (PTR) orig,
1701                       includes_used * sizeof (char *));
1702             }
1703             continue;
1704           }
1705           case N_LSYM:                  /* Typedef or automatic variable. */
1706           case N_STSYM:         /* Data seg var -- static  */
1707           case N_LCSYM:         /* BSS      "  */
1708           case N_ROSYM:         /* Read-only data seg var -- static.  */
1709           case N_NBSTS:         /* Gould nobase.  */
1710           case N_NBLCS:         /* symbols.  */
1711           case N_FUN:
1712           case N_GSYM:                  /* Global (extern) variable; can be
1713                                            data or bss (sigh FIXME).  */
1714
1715           /* Following may probably be ignored; I'll leave them here
1716              for now (until I do Pascal and Modula 2 extensions).  */
1717
1718           case N_PC:                    /* I may or may not need this; I
1719                                            suspect not.  */
1720           case N_M2C:                   /* I suspect that I can ignore this here. */
1721           case N_SCOPE:         /* Same.   */
1722
1723           namestring = set_namestring (objfile, nlist);
1724
1725           /* See if this is an end of function stab.  */
1726           if (pst && nlist.n_type == N_FUN && *namestring == '\000')
1727           {
1728             CORE_ADDR valu;
1729
1730             /* It's value is the size (in bytes) of the function for
1731                function relative stabs, or the address of the function's
1732                end for old style stabs.  */
1733             valu = nlist.n_value + last_function_start;
1734             if (TEXTHIGH (pst) == 0 || valu > TEXTHIGH (pst))
1735               TEXTHIGH (pst) = valu;
1736             break;
1737           }
1738
1739           p = (char *) strchr (namestring, ':');
1740           if (!p)
1741           continue;                     /* Not a debugging symbol.   */
1742
1743
1744
1745           /* Main processing section for debugging symbols which
1746              the initial read through the symbol tables needs to worry
1747              about.  If we reach this point, the symbol which we are
1748              considering is definitely one we are interested in.
1749              p must also contain the (valid) index into the namestring
1750              which indicates the debugging type symbol.  */
1751
1752           switch (p[1])
1753           {
1754           case 'S':
1755             nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1756 #ifdef STATIC_TRANSFORM_NAME
1757             namestring = STATIC_TRANSFORM_NAME (namestring);
1758 #endif
1759             add_psymbol_to_list (namestring, p - namestring,
1760                                  VAR_NAMESPACE, LOC_STATIC,
1761                                  &objfile->static_psymbols,
1762                                  0, nlist.n_value,
1763                                  psymtab_language, objfile);
1764             continue;
1765           case 'G':
1766             nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1767             /* The addresses in these entries are reported to be
1768                wrong.  See the code that reads 'G's for symtabs. */
1769             add_psymbol_to_list (namestring, p - namestring,
1770                                  VAR_NAMESPACE, LOC_STATIC,
1771                                  &objfile->global_psymbols,
1772                                  0, nlist.n_value,
1773                                  psymtab_language, objfile);
1774             continue;
1775
1776           case 'T':
1777             /* When a 'T' entry is defining an anonymous enum, it
1778                may have a name which is the empty string, or a
1779                single space.  Since they're not really defining a
1780                symbol, those shouldn't go in the partial symbol
1781                table.  We do pick up the elements of such enums at
1782                'check_enum:', below.  */
1783             if (p >= namestring + 2
1784                 || (p == namestring + 1
1785                     && namestring[0] != ' '))
1786               {
1787                 add_psymbol_to_list (namestring, p - namestring,
1788                                      STRUCT_NAMESPACE, LOC_TYPEDEF,
1789                                      &objfile->static_psymbols,
1790                                      nlist.n_value, 0,
1791                                      psymtab_language, objfile);
1792                 if (p[2] == 't')
1793                   {
1794                     /* Also a typedef with the same name.  */
1795                     add_psymbol_to_list (namestring, p - namestring,
1796                                          VAR_NAMESPACE, LOC_TYPEDEF,
1797                                          &objfile->static_psymbols,
1798                                          nlist.n_value, 0,
1799                                          psymtab_language, objfile);
1800                     p += 1;
1801                   }
1802                 /* The semantics of C++ state that "struct foo { ... }"
1803                    also defines a typedef for "foo".  Unfortuantely, cfront
1804                    never makes the typedef when translating from C++ to C.
1805                    We make the typedef here so that "ptype foo" works as
1806                    expected for cfront translated code.  */
1807                 else if (psymtab_language == language_cplus)
1808                   {
1809                     /* Also a typedef with the same name.  */
1810                     add_psymbol_to_list (namestring, p - namestring,
1811                                          VAR_NAMESPACE, LOC_TYPEDEF,
1812                                          &objfile->static_psymbols,
1813                                          nlist.n_value, 0,
1814                                          psymtab_language, objfile);
1815                   }
1816               }
1817             goto check_enum;
1818           case 't':
1819             if (p != namestring)        /* a name is there, not just :T... */
1820               {
1821                 add_psymbol_to_list (namestring, p - namestring,
1822                                      VAR_NAMESPACE, LOC_TYPEDEF,
1823                                      &objfile->static_psymbols,
1824                                      nlist.n_value, 0,
1825                                      psymtab_language, objfile);
1826               }
1827           check_enum:
1828             /* If this is an enumerated type, we need to
1829                add all the enum constants to the partial symbol
1830                table.  This does not cover enums without names, e.g.
1831                "enum {a, b} c;" in C, but fortunately those are
1832                rare.  There is no way for GDB to find those from the
1833                enum type without spending too much time on it.  Thus
1834                to solve this problem, the compiler needs to put out the
1835                enum in a nameless type.  GCC2 does this.  */
1836
1837             /* We are looking for something of the form
1838                <name> ":" ("t" | "T") [<number> "="] "e"
1839                {<constant> ":" <value> ","} ";".  */
1840
1841             /* Skip over the colon and the 't' or 'T'.  */
1842             p += 2;
1843             /* This type may be given a number.  Also, numbers can come
1844                in pairs like (0,26).  Skip over it.  */
1845             while ((*p >= '0' && *p <= '9')
1846                    || *p == '(' || *p == ',' || *p == ')'
1847                    || *p == '=')
1848               p++;
1849
1850             if (*p++ == 'e')
1851               {
1852                 /* The aix4 compiler emits extra crud before the members.  */
1853                 if (*p == '-')
1854                   {
1855                     /* Skip over the type (?).  */
1856                     while (*p != ':')
1857                       p++;
1858
1859                     /* Skip over the colon.  */
1860                     p++;
1861                   }
1862
1863                 /* We have found an enumerated type.  */
1864                 /* According to comments in read_enum_type
1865                    a comma could end it instead of a semicolon.
1866                    I don't know where that happens.
1867                    Accept either.  */
1868                 while (*p && *p != ';' && *p != ',')
1869                   {
1870                     char *q;
1871
1872                     /* Check for and handle cretinous dbx symbol name
1873                        continuation!  */
1874                     if (*p == '\\' || (*p == '?' && p[1] == '\0'))
1875                       p = next_symbol_text (objfile);
1876
1877                     /* Point to the character after the name
1878                        of the enum constant.  */
1879                     for (q = p; *q && *q != ':'; q++)
1880                       ;
1881                     /* Note that the value doesn't matter for
1882                        enum constants in psymtabs, just in symtabs.  */
1883                     add_psymbol_to_list (p, q - p,
1884                                          VAR_NAMESPACE, LOC_CONST,
1885                                          &objfile->static_psymbols, 0,
1886                                          0, psymtab_language, objfile);
1887                     /* Point past the name.  */
1888                     p = q;
1889                     /* Skip over the value.  */
1890                     while (*p && *p != ',')
1891                       p++;
1892                     /* Advance past the comma.  */
1893                     if (*p)
1894                       p++;
1895                   }
1896               }
1897             continue;
1898           case 'c':
1899             /* Constant, e.g. from "const" in Pascal.  */
1900             add_psymbol_to_list (namestring, p - namestring,
1901                                  VAR_NAMESPACE, LOC_CONST,
1902                                  &objfile->static_psymbols, nlist.n_value,
1903                                  0, psymtab_language, objfile);
1904             continue;
1905
1906           case 'f':
1907             if (! pst)
1908               {
1909                 int name_len = p - namestring;
1910                 char *name = xmalloc (name_len + 1);
1911                 memcpy (name, namestring, name_len);
1912                 name[name_len] = '\0';
1913                 complain (&function_outside_compilation_unit, name);
1914                 xfree (name);
1915               }
1916             nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1917             /* Kludges for ELF/STABS with Sun ACC */
1918             last_function_name = namestring;
1919 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1920             /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1921                value for the bottom of the text seg in those cases. */
1922             if (nlist.n_value == ANOFFSET (objfile->section_offsets, 
1923                                            SECT_OFF_TEXT (objfile)))
1924               {
1925                 CORE_ADDR minsym_valu = 
1926                   find_stab_function_addr (namestring, pst->filename, objfile);
1927                 /* find_stab_function_addr will return 0 if the minimal
1928                    symbol wasn't found.  (Unfortunately, this might also
1929                    be a valid address.)  Anyway, if it *does* return 0,
1930                    it is likely that the value was set correctly to begin
1931                    with... */
1932                 if (minsym_valu != 0)
1933                   nlist.n_value = minsym_valu;
1934               }
1935             if (pst && textlow_not_set)
1936               {
1937                 TEXTLOW (pst) = nlist.n_value;
1938                 textlow_not_set = 0;
1939               }
1940 #endif
1941             /* End kludge.  */
1942
1943             /* Keep track of the start of the last function so we
1944                can handle end of function symbols.  */
1945             last_function_start = nlist.n_value;
1946
1947             /* In reordered executables this function may lie outside
1948                the bounds created by N_SO symbols.  If that's the case
1949                use the address of this function as the low bound for
1950                the partial symbol table.  */
1951             if (pst
1952                 && (textlow_not_set
1953                     || (nlist.n_value < TEXTLOW (pst)
1954                         && (nlist.n_value
1955                             != ANOFFSET (objfile->section_offsets,
1956                                          SECT_OFF_TEXT (objfile))))))
1957               {
1958                 TEXTLOW (pst) = nlist.n_value;
1959                 textlow_not_set = 0;
1960               }
1961             add_psymbol_to_list (namestring, p - namestring,
1962                                  VAR_NAMESPACE, LOC_BLOCK,
1963                                  &objfile->static_psymbols,
1964                                  0, nlist.n_value,
1965                                  psymtab_language, objfile);
1966             continue;
1967
1968             /* Global functions were ignored here, but now they
1969                are put into the global psymtab like one would expect.
1970                They're also in the minimal symbol table.  */
1971           case 'F':
1972             if (! pst)
1973               {
1974                 int name_len = p - namestring;
1975                 char *name = xmalloc (name_len + 1);
1976                 memcpy (name, namestring, name_len);
1977                 name[name_len] = '\0';
1978                 complain (&function_outside_compilation_unit, name);
1979                 xfree (name);
1980               }
1981             nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1982             /* Kludges for ELF/STABS with Sun ACC */
1983             last_function_name = namestring;
1984 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1985             /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1986                value for the bottom of the text seg in those cases. */
1987             if (nlist.n_value == ANOFFSET (objfile->section_offsets, 
1988                                            SECT_OFF_TEXT (objfile)))
1989               {
1990                 CORE_ADDR minsym_valu = 
1991                   find_stab_function_addr (namestring, pst->filename, objfile);
1992                 /* find_stab_function_addr will return 0 if the minimal
1993                    symbol wasn't found.  (Unfortunately, this might also
1994                    be a valid address.)  Anyway, if it *does* return 0,
1995                    it is likely that the value was set correctly to begin
1996                    with... */
1997                 if (minsym_valu != 0)
1998                   nlist.n_value = minsym_valu;
1999               }
2000             if (pst && textlow_not_set)
2001               {
2002                 TEXTLOW (pst) = nlist.n_value;
2003                 textlow_not_set = 0;
2004               }
2005 #endif
2006             /* End kludge.  */
2007
2008             /* Keep track of the start of the last function so we
2009                can handle end of function symbols.  */
2010             last_function_start = nlist.n_value;
2011
2012             /* In reordered executables this function may lie outside
2013                the bounds created by N_SO symbols.  If that's the case
2014                use the address of this function as the low bound for
2015                the partial symbol table.  */
2016             if (pst
2017                 && (textlow_not_set
2018                     || (nlist.n_value < TEXTLOW (pst)
2019                         && (nlist.n_value
2020                             != ANOFFSET (objfile->section_offsets,
2021                                          SECT_OFF_TEXT (objfile))))))
2022               {
2023                 TEXTLOW (pst) = nlist.n_value;
2024                 textlow_not_set = 0;
2025               }
2026             add_psymbol_to_list (namestring, p - namestring,
2027                                  VAR_NAMESPACE, LOC_BLOCK,
2028                                  &objfile->global_psymbols,
2029                                  0, nlist.n_value,
2030                                  psymtab_language, objfile);
2031             continue;
2032
2033             /* Two things show up here (hopefully); static symbols of
2034                local scope (static used inside braces) or extensions
2035                of structure symbols.  We can ignore both.  */
2036           case 'V':
2037           case '(':
2038           case '0':
2039           case '1':
2040           case '2':
2041           case '3':
2042           case '4':
2043           case '5':
2044           case '6':
2045           case '7':
2046           case '8':
2047           case '9':
2048           case '-':
2049           case '#':             /* for symbol identification (used in live ranges) */
2050             /* added to support cfront stabs strings */
2051           case 'Z':             /* for definition continuations */
2052           case 'P':             /* for prototypes */
2053             continue;
2054
2055           case ':':
2056             /* It is a C++ nested symbol.  We don't need to record it
2057                (I don't think); if we try to look up foo::bar::baz,
2058                then symbols for the symtab containing foo should get
2059                read in, I think.  */
2060             /* Someone says sun cc puts out symbols like
2061                /foo/baz/maclib::/usr/local/bin/maclib,
2062                which would get here with a symbol type of ':'.  */
2063             continue;
2064
2065           default:
2066             /* Unexpected symbol descriptor.  The second and subsequent stabs
2067                of a continued stab can show up here.  The question is
2068                whether they ever can mimic a normal stab--it would be
2069                nice if not, since we certainly don't want to spend the
2070                time searching to the end of every string looking for
2071                a backslash.  */
2072
2073             complain (&unknown_symchar_complaint, p[1]);
2074
2075             /* Ignore it; perhaps it is an extension that we don't
2076                know about.  */
2077             continue;
2078           }
2079
2080           case N_EXCL:
2081
2082           namestring = set_namestring (objfile, nlist);
2083
2084           /* Find the corresponding bincl and mark that psymtab on the
2085              psymtab dependency list */
2086           {
2087             struct partial_symtab *needed_pst =
2088               find_corresponding_bincl_psymtab (namestring, nlist.n_value);
2089
2090             /* If this include file was defined earlier in this file,
2091                leave it alone.  */
2092             if (needed_pst == pst)
2093               continue;
2094
2095             if (needed_pst)
2096               {
2097                 int i;
2098                 int found = 0;
2099
2100                 for (i = 0; i < dependencies_used; i++)
2101                   if (dependency_list[i] == needed_pst)
2102                     {
2103                       found = 1;
2104                       break;
2105                     }
2106
2107                 /* If it's already in the list, skip the rest.  */
2108                 if (found)
2109                   continue;
2110
2111                 dependency_list[dependencies_used++] = needed_pst;
2112                 if (dependencies_used >= dependencies_allocated)
2113                   {
2114                     struct partial_symtab **orig = dependency_list;
2115                     dependency_list =
2116                       (struct partial_symtab **)
2117                       alloca ((dependencies_allocated *= 2)
2118                               * sizeof (struct partial_symtab *));
2119                     memcpy ((PTR) dependency_list, (PTR) orig,
2120                             (dependencies_used
2121                              * sizeof (struct partial_symtab *)));
2122 #ifdef DEBUG_INFO
2123                     fprintf_unfiltered (gdb_stderr, "Had to reallocate dependency list.\n");
2124                     fprintf_unfiltered (gdb_stderr, "New dependencies allocated: %d\n",
2125                                         dependencies_allocated);
2126 #endif
2127                   }
2128               }
2129           }
2130           continue;
2131
2132           case N_ENDM:
2133 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2134           /* Solaris 2 end of module, finish current partial symbol table.
2135              end_psymtab will set TEXTHIGH (pst) to the proper value, which
2136              is necessary if a module compiled without debugging info
2137              follows this module.  */
2138           if (pst)
2139           {
2140             end_psymtab (pst, psymtab_include_list, includes_used,
2141                          symnum * symbol_size,
2142                          (CORE_ADDR) 0,
2143                          dependency_list, dependencies_used, textlow_not_set);
2144             pst = (struct partial_symtab *) 0;
2145             includes_used = 0;
2146             dependencies_used = 0;
2147           }
2148 #endif
2149           continue;
2150
2151           case N_RBRAC:
2152 #ifdef HANDLE_RBRAC
2153           HANDLE_RBRAC (nlist.n_value);
2154           continue;
2155 #endif
2156           case N_EINCL:
2157           case N_DSLINE:
2158           case N_BSLINE:
2159           case N_SSYM:                  /* Claim: Structure or union element.
2160                                            Hopefully, I can ignore this.  */
2161           case N_ENTRY:         /* Alternate entry point; can ignore. */
2162           case N_MAIN:                  /* Can definitely ignore this.   */
2163           case N_CATCH:         /* These are GNU C++ extensions */
2164           case N_EHDECL:                /* that can safely be ignored here. */
2165           case N_LENG:
2166           case N_BCOMM:
2167           case N_ECOMM:
2168           case N_ECOML:
2169           case N_FNAME:
2170           case N_SLINE:
2171           case N_RSYM:
2172           case N_PSYM:
2173           case N_LBRAC:
2174           case N_NSYMS:         /* Ultrix 4.0: symbol count */
2175           case N_DEFD:                  /* GNU Modula-2 */
2176           case N_ALIAS:         /* SunPro F77: alias name, ignore for now.  */
2177
2178           case N_OBJ:                   /* useless types from Solaris */
2179           case N_OPT:
2180           /* These symbols aren't interesting; don't worry about them */
2181
2182           continue;
2183
2184           default:
2185           /* If we haven't found it yet, ignore it.  It's probably some
2186              new type we don't know about yet.  */
2187           complain (&unknown_symtype_complaint,
2188                     local_hex_string (nlist.n_type));
2189           continue;
2190         }
2191     }
2192
2193   /* If there's stuff to be cleaned up, clean it up.  */
2194   if (DBX_SYMCOUNT (objfile) > 0        /* We have some syms */
2195       /*FIXME, does this have a bug at start address 0? */
2196       && last_o_file_start
2197       && objfile->ei.entry_point < nlist.n_value
2198       && objfile->ei.entry_point >= last_o_file_start)
2199     {
2200       objfile->ei.entry_file_lowpc = last_o_file_start;
2201       objfile->ei.entry_file_highpc = nlist.n_value;
2202     }
2203
2204   if (pst)
2205     {
2206       /* Don't set pst->texthigh lower than it already is.  */
2207       CORE_ADDR text_end =
2208         (lowest_text_address == (CORE_ADDR) -1
2209          ? (text_addr + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))
2210          : lowest_text_address)
2211         + text_size;
2212
2213       end_psymtab (pst, psymtab_include_list, includes_used,
2214                    symnum * symbol_size,
2215                    text_end > TEXTHIGH (pst) ? text_end : TEXTHIGH (pst),
2216                    dependency_list, dependencies_used, textlow_not_set);
2217     }
2218
2219   do_cleanups (back_to);
2220 }
2221
2222 /* Allocate and partially fill a partial symtab.  It will be
2223    completely filled at the end of the symbol list.
2224
2225    SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2226    is the address relative to which its symbols are (incremental) or 0
2227    (normal). */
2228
2229
2230 static struct partial_symtab *
2231 start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
2232                int ldsymoff, struct partial_symbol **global_syms,
2233                struct partial_symbol **static_syms)
2234 {
2235   struct partial_symtab *result =
2236   start_psymtab_common (objfile, objfile->section_offsets,
2237                         filename, textlow, global_syms, static_syms);
2238
2239   result->read_symtab_private = (char *)
2240     obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
2241   TEXTLOW (result) = result->textlow;
2242   TEXTHIGH (result) = result->texthigh;
2243   LDSYMOFF (result) = ldsymoff;
2244   result->read_symtab = dbx_psymtab_to_symtab;
2245   SYMBOL_SIZE (result) = symbol_size;
2246   SYMBOL_OFFSET (result) = symbol_table_offset;
2247   STRING_OFFSET (result) = string_table_offset;
2248   FILE_STRING_OFFSET (result) = file_string_table_offset;
2249
2250   /* If we're handling an ELF file, drag some section-relocation info
2251      for this source file out of the ELF symbol table, to compensate for
2252      Sun brain death.  This replaces the section_offsets in this psymtab,
2253      if successful.  */
2254   elfstab_offset_sections (objfile, result);
2255
2256   /* Deduce the source language from the filename for this psymtab. */
2257   psymtab_language = deduce_language_from_filename (filename);
2258
2259   return result;
2260 }
2261
2262 /* Close off the current usage of PST.  
2263    Returns PST or NULL if the partial symtab was empty and thrown away.
2264
2265    FIXME:  List variables and peculiarities of same.  */
2266
2267 struct partial_symtab *
2268 end_psymtab (struct partial_symtab *pst, char **include_list, int num_includes,
2269              int capping_symbol_offset, CORE_ADDR capping_text,
2270              struct partial_symtab **dependency_list, int number_dependencies,
2271              int textlow_not_set)
2272 {
2273   int i;
2274   struct objfile *objfile = pst->objfile;
2275
2276   if (capping_symbol_offset != -1)
2277     LDSYMLEN (pst) = capping_symbol_offset - LDSYMOFF (pst);
2278   TEXTHIGH (pst) = capping_text;
2279
2280 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2281   /* Under Solaris, the N_SO symbols always have a value of 0,
2282      instead of the usual address of the .o file.  Therefore,
2283      we have to do some tricks to fill in texthigh and textlow.
2284      The first trick is: if we see a static
2285      or global function, and the textlow for the current pst
2286      is not set (ie: textlow_not_set), then we use that function's
2287      address for the textlow of the pst.  */
2288
2289   /* Now, to fill in texthigh, we remember the last function seen
2290      in the .o file.  Also, there's a hack in
2291      bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
2292      to here via the misc_info field.  Therefore, we can fill in
2293      a reliable texthigh by taking the address plus size of the
2294      last function in the file.  */
2295
2296   if (TEXTHIGH (pst) == 0 && last_function_name)
2297     {
2298       char *p;
2299       int n;
2300       struct minimal_symbol *minsym;
2301
2302       p = strchr (last_function_name, ':');
2303       if (p == NULL)
2304         p = last_function_name;
2305       n = p - last_function_name;
2306       p = alloca (n + 2);
2307       strncpy (p, last_function_name, n);
2308       p[n] = 0;
2309
2310       minsym = lookup_minimal_symbol (p, pst->filename, objfile);
2311       if (minsym == NULL)
2312         {
2313           /* Sun Fortran appends an underscore to the minimal symbol name,
2314              try again with an appended underscore if the minimal symbol
2315              was not found.  */
2316           p[n] = '_';
2317           p[n + 1] = 0;
2318           minsym = lookup_minimal_symbol (p, pst->filename, objfile);
2319         }
2320
2321       if (minsym)
2322         TEXTHIGH (pst) = SYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym);
2323
2324       last_function_name = NULL;
2325     }
2326
2327   /* this test will be true if the last .o file is only data */
2328   if (textlow_not_set)
2329     TEXTLOW (pst) = TEXTHIGH (pst);
2330   else
2331     {
2332       struct partial_symtab *p1;
2333
2334       /* If we know our own starting text address, then walk through all other
2335          psymtabs for this objfile, and if any didn't know their ending text
2336          address, set it to our starting address.  Take care to not set our
2337          own ending address to our starting address, nor to set addresses on
2338          `dependency' files that have both textlow and texthigh zero.  */
2339
2340       ALL_OBJFILE_PSYMTABS (objfile, p1)
2341       {
2342         if (TEXTHIGH (p1) == 0 && TEXTLOW (p1) != 0 && p1 != pst)
2343           {
2344             TEXTHIGH (p1) = TEXTLOW (pst);
2345             /* if this file has only data, then make textlow match texthigh */
2346             if (TEXTLOW (p1) == 0)
2347               TEXTLOW (p1) = TEXTHIGH (p1);
2348           }
2349       }
2350     }
2351
2352   /* End of kludge for patching Solaris textlow and texthigh.  */
2353 #endif /* SOFUN_ADDRESS_MAYBE_MISSING.  */
2354
2355   pst->n_global_syms =
2356     objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
2357   pst->n_static_syms =
2358     objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
2359
2360   pst->number_of_dependencies = number_dependencies;
2361   if (number_dependencies)
2362     {
2363       pst->dependencies = (struct partial_symtab **)
2364         obstack_alloc (&objfile->psymbol_obstack,
2365                     number_dependencies * sizeof (struct partial_symtab *));
2366       memcpy (pst->dependencies, dependency_list,
2367               number_dependencies * sizeof (struct partial_symtab *));
2368     }
2369   else
2370     pst->dependencies = 0;
2371
2372   for (i = 0; i < num_includes; i++)
2373     {
2374       struct partial_symtab *subpst =
2375       allocate_psymtab (include_list[i], objfile);
2376
2377       /* Copy the sesction_offsets array from the main psymtab. */
2378       subpst->section_offsets = pst->section_offsets;
2379       subpst->read_symtab_private =
2380         (char *) obstack_alloc (&objfile->psymbol_obstack,
2381                                 sizeof (struct symloc));
2382       LDSYMOFF (subpst) =
2383         LDSYMLEN (subpst) =
2384         TEXTLOW (subpst) =
2385         TEXTHIGH (subpst) = 0;
2386
2387       /* We could save slight bits of space by only making one of these,
2388          shared by the entire set of include files.  FIXME-someday.  */
2389       subpst->dependencies = (struct partial_symtab **)
2390         obstack_alloc (&objfile->psymbol_obstack,
2391                        sizeof (struct partial_symtab *));
2392       subpst->dependencies[0] = pst;
2393       subpst->number_of_dependencies = 1;
2394
2395       subpst->globals_offset =
2396         subpst->n_global_syms =
2397         subpst->statics_offset =
2398         subpst->n_static_syms = 0;
2399
2400       subpst->readin = 0;
2401       subpst->symtab = 0;
2402       subpst->read_symtab = pst->read_symtab;
2403     }
2404
2405   sort_pst_symbols (pst);
2406
2407   /* If there is already a psymtab or symtab for a file of this name, remove it.
2408      (If there is a symtab, more drastic things also happen.)
2409      This happens in VxWorks.  */
2410   free_named_symtabs (pst->filename);
2411
2412   if (num_includes == 0
2413       && number_dependencies == 0
2414       && pst->n_global_syms == 0
2415       && pst->n_static_syms == 0
2416       && has_line_numbers == 0)
2417     {
2418       /* Throw away this psymtab, it's empty.  We can't deallocate it, since
2419          it is on the obstack, but we can forget to chain it on the list.  */
2420       /* Empty psymtabs happen as a result of header files which don't have
2421          any symbols in them.  There can be a lot of them.  But this check
2422          is wrong, in that a psymtab with N_SLINE entries but nothing else
2423          is not empty, but we don't realize that.  Fixing that without slowing
2424          things down might be tricky.  */
2425
2426       discard_psymtab (pst);
2427
2428       /* Indicate that psymtab was thrown away.  */
2429       pst = (struct partial_symtab *) NULL;
2430     }
2431   return pst;
2432 }
2433 \f
2434 static void
2435 dbx_psymtab_to_symtab_1 (struct partial_symtab *pst)
2436 {
2437   struct cleanup *old_chain;
2438   int i;
2439
2440   if (!pst)
2441     return;
2442
2443   if (pst->readin)
2444     {
2445       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
2446                           pst->filename);
2447       return;
2448     }
2449
2450   /* Read in all partial symtabs on which this one is dependent */
2451   for (i = 0; i < pst->number_of_dependencies; i++)
2452     if (!pst->dependencies[i]->readin)
2453       {
2454         /* Inform about additional files that need to be read in.  */
2455         if (info_verbose)
2456           {
2457             fputs_filtered (" ", gdb_stdout);
2458             wrap_here ("");
2459             fputs_filtered ("and ", gdb_stdout);
2460             wrap_here ("");
2461             printf_filtered ("%s...", pst->dependencies[i]->filename);
2462             wrap_here ("");     /* Flush output */
2463             gdb_flush (gdb_stdout);
2464           }
2465         dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
2466       }
2467
2468   if (LDSYMLEN (pst))           /* Otherwise it's a dummy */
2469     {
2470       /* Init stuff necessary for reading in symbols */
2471       stabsread_init ();
2472       buildsym_init ();
2473       old_chain = make_cleanup (really_free_pendings, 0);
2474       file_string_table_offset = FILE_STRING_OFFSET (pst);
2475       symbol_size = SYMBOL_SIZE (pst);
2476
2477       /* Read in this file's symbols */
2478       bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
2479       read_ofile_symtab (pst);
2480       sort_symtab_syms (pst->symtab);
2481
2482       do_cleanups (old_chain);
2483     }
2484
2485   pst->readin = 1;
2486 }
2487
2488 /* Read in all of the symbols for a given psymtab for real.
2489    Be verbose about it if the user wants that.  */
2490
2491 static void
2492 dbx_psymtab_to_symtab (struct partial_symtab *pst)
2493 {
2494   bfd *sym_bfd;
2495
2496   if (!pst)
2497     return;
2498
2499   if (pst->readin)
2500     {
2501       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
2502                           pst->filename);
2503       return;
2504     }
2505
2506   if (LDSYMLEN (pst) || pst->number_of_dependencies)
2507     {
2508       /* Print the message now, before reading the string table,
2509          to avoid disconcerting pauses.  */
2510       if (info_verbose)
2511         {
2512           printf_filtered ("Reading in symbols for %s...", pst->filename);
2513           gdb_flush (gdb_stdout);
2514         }
2515
2516       sym_bfd = pst->objfile->obfd;
2517
2518       next_symbol_text_func = dbx_next_symbol_text;
2519
2520       dbx_psymtab_to_symtab_1 (pst);
2521
2522       /* Match with global symbols.  This only needs to be done once,
2523          after all of the symtabs and dependencies have been read in.   */
2524       scan_file_globals (pst->objfile);
2525
2526       /* Finish up the debug error message.  */
2527       if (info_verbose)
2528         printf_filtered ("done.\n");
2529     }
2530 }
2531
2532 /* Read in a defined section of a specific object file's symbols. */
2533
2534 static void
2535 read_ofile_symtab (struct partial_symtab *pst)
2536 {
2537   register char *namestring;
2538   register struct external_nlist *bufp;
2539   struct internal_nlist nlist;
2540   unsigned char type;
2541   unsigned max_symnum;
2542   register bfd *abfd;
2543   struct objfile *objfile;
2544   int sym_offset;               /* Offset to start of symbols to read */
2545   int sym_size;                 /* Size of symbols to read */
2546   CORE_ADDR text_offset;        /* Start of text segment for symbols */
2547   int text_size;                /* Size of text segment for symbols */
2548   struct section_offsets *section_offsets;
2549
2550   objfile = pst->objfile;
2551   sym_offset = LDSYMOFF (pst);
2552   sym_size = LDSYMLEN (pst);
2553   text_offset = TEXTLOW (pst);
2554   text_size = TEXTHIGH (pst) - TEXTLOW (pst);
2555   /* This cannot be simply objfile->section_offsets because of
2556      elfstab_offset_sections() which initializes the psymtab section
2557      offsets information in a special way, and that is different from
2558      objfile->section_offsets. */ 
2559   section_offsets = pst->section_offsets;
2560
2561   current_objfile = objfile;
2562   subfile_stack = NULL;
2563
2564   stringtab_global = DBX_STRINGTAB (objfile);
2565   last_source_file = NULL;
2566
2567   abfd = objfile->obfd;
2568   symfile_bfd = objfile->obfd;  /* Implicit param to next_text_symbol */
2569   symbuf_end = symbuf_idx = 0;
2570
2571   /* It is necessary to actually read one symbol *before* the start
2572      of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
2573      occurs before the N_SO symbol.
2574
2575      Detecting this in read_dbx_symtab
2576      would slow down initial readin, so we look for it here instead.  */
2577   if (!processing_acc_compilation && sym_offset >= (int) symbol_size)
2578     {
2579       bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
2580       fill_symbuf (abfd);
2581       bufp = &symbuf[symbuf_idx++];
2582       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
2583       OBJSTAT (objfile, n_stabs++);
2584
2585       namestring = set_namestring (objfile, nlist);
2586
2587       processing_gcc_compilation = 0;
2588       if (nlist.n_type == N_TEXT)
2589         {
2590           const char *tempstring = namestring;
2591
2592           if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
2593             processing_gcc_compilation = 1;
2594           else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
2595             processing_gcc_compilation = 2;
2596           if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
2597             ++tempstring;
2598           if (STREQN (tempstring, "__gnu_compiled", 14))
2599             processing_gcc_compilation = 2;
2600         }
2601
2602       /* Try to select a C++ demangling based on the compilation unit
2603          producer. */
2604
2605 #if 0
2606       /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2607          know whether it will use the old style or v3 mangling.  */
2608       if (processing_gcc_compilation)
2609         {
2610           if (AUTO_DEMANGLING)
2611             {
2612               set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2613             }
2614         }
2615 #endif
2616     }
2617   else
2618     {
2619       /* The N_SO starting this symtab is the first symbol, so we
2620          better not check the symbol before it.  I'm not this can
2621          happen, but it doesn't hurt to check for it.  */
2622       bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
2623       processing_gcc_compilation = 0;
2624     }
2625
2626   if (symbuf_idx == symbuf_end)
2627     fill_symbuf (abfd);
2628   bufp = &symbuf[symbuf_idx];
2629   if (bfd_h_get_8 (abfd, bufp->e_type) != N_SO)
2630     error ("First symbol in segment of executable not a source symbol");
2631
2632   max_symnum = sym_size / symbol_size;
2633
2634   for (symnum = 0;
2635        symnum < max_symnum;
2636        symnum++)
2637     {
2638       QUIT;                     /* Allow this to be interruptable */
2639       if (symbuf_idx == symbuf_end)
2640         fill_symbuf (abfd);
2641       bufp = &symbuf[symbuf_idx++];
2642       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
2643       OBJSTAT (objfile, n_stabs++);
2644
2645       type = bfd_h_get_8 (abfd, bufp->e_type);
2646
2647       namestring = set_namestring (objfile, nlist);
2648
2649       if (type & N_STAB)
2650         {
2651           process_one_symbol (type, nlist.n_desc, nlist.n_value,
2652                               namestring, section_offsets, objfile);
2653         }
2654       /* We skip checking for a new .o or -l file; that should never
2655          happen in this routine. */
2656       else if (type == N_TEXT)
2657         {
2658           /* I don't think this code will ever be executed, because
2659              the GCC_COMPILED_FLAG_SYMBOL usually is right before
2660              the N_SO symbol which starts this source file.
2661              However, there is no reason not to accept
2662              the GCC_COMPILED_FLAG_SYMBOL anywhere.  */
2663
2664           if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
2665             processing_gcc_compilation = 1;
2666           else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
2667             processing_gcc_compilation = 2;
2668
2669 #if 0
2670           /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2671              know whether it will use the old style or v3 mangling.  */
2672           if (AUTO_DEMANGLING)
2673             {
2674               set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2675             }
2676 #endif
2677         }
2678       else if (type & N_EXT || type == (unsigned char) N_TEXT
2679                || type == (unsigned char) N_NBTEXT
2680         )
2681         {
2682           /* Global symbol: see if we came across a dbx defintion for
2683              a corresponding symbol.  If so, store the value.  Remove
2684              syms from the chain when their values are stored, but
2685              search the whole chain, as there may be several syms from
2686              different files with the same name. */
2687           /* This is probably not true.  Since the files will be read
2688              in one at a time, each reference to a global symbol will
2689              be satisfied in each file as it appears. So we skip this
2690              section. */
2691           ;
2692         }
2693     }
2694
2695   current_objfile = NULL;
2696
2697   /* In a Solaris elf file, this variable, which comes from the
2698      value of the N_SO symbol, will still be 0.  Luckily, text_offset,
2699      which comes from TEXTLOW (pst) is correct. */
2700   if (last_source_start_addr == 0)
2701     last_source_start_addr = text_offset;
2702
2703   /* In reordered executables last_source_start_addr may not be the
2704      lower bound for this symtab, instead use text_offset which comes
2705      from TEXTLOW (pst) which is correct.  */
2706   if (last_source_start_addr > text_offset)
2707     last_source_start_addr = text_offset;
2708
2709   pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
2710
2711   /* Process items which we had to "process_later" due to dependencies 
2712      on other stabs.  */
2713   process_now (objfile);
2714
2715   end_stabs ();
2716 }
2717 \f
2718
2719 /* This handles a single symbol from the symbol-file, building symbols
2720    into a GDB symtab.  It takes these arguments and an implicit argument.
2721
2722    TYPE is the type field of the ".stab" symbol entry.
2723    DESC is the desc field of the ".stab" entry.
2724    VALU is the value field of the ".stab" entry.
2725    NAME is the symbol name, in our address space.
2726    SECTION_OFFSETS is a set of amounts by which the sections of this object
2727    file were relocated when it was loaded into memory.
2728    Note that these section_offsets are not the 
2729    objfile->section_offsets but the pst->section_offsets.
2730    All symbols that refer
2731    to memory locations need to be offset by these amounts.
2732    OBJFILE is the object file from which we are reading symbols.
2733    It is used in end_symtab.  */
2734
2735 void
2736 process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
2737                     struct section_offsets *section_offsets,
2738                     struct objfile *objfile)
2739 {
2740 #ifdef SUN_FIXED_LBRAC_BUG
2741   /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
2742      to correct the address of N_LBRAC's.  If it is not defined, then
2743      we never need to correct the addresses.  */
2744
2745   /* This records the last pc address we've seen.  We depend on there being
2746      an SLINE or FUN or SO before the first LBRAC, since the variable does
2747      not get reset in between reads of different symbol files.  */
2748   static CORE_ADDR last_pc_address;
2749 #endif
2750
2751   register struct context_stack *new;
2752   /* This remembers the address of the start of a function.  It is used
2753      because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
2754      relative to the current function's start address.  On systems
2755      other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
2756      used to relocate these symbol types rather than SECTION_OFFSETS.  */
2757   static CORE_ADDR function_start_offset;
2758
2759   /* This holds the address of the start of a function, without the system
2760      peculiarities of function_start_offset.  */
2761   static CORE_ADDR last_function_start;
2762
2763   /* If this is nonzero, we've seen an N_SLINE since the start of the current
2764      function.  Initialized to nonzero to assure that last_function_start
2765      is never used uninitialized.  */
2766   static int sline_found_in_function = 1;
2767
2768   /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
2769      file.  Used to detect the SunPRO solaris compiler.  */
2770   static int n_opt_found;
2771
2772   /* The stab type used for the definition of the last function.
2773      N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers.  */
2774   static int function_stab_type = 0;
2775
2776   if (!block_address_function_relative)
2777     /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
2778        function start address, so just use the text offset.  */
2779     function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2780
2781   /* Something is wrong if we see real data before
2782      seeing a source file name.  */
2783
2784   if (last_source_file == NULL && type != (unsigned char) N_SO)
2785     {
2786       /* Ignore any symbols which appear before an N_SO symbol.
2787          Currently no one puts symbols there, but we should deal
2788          gracefully with the case.  A complain()t might be in order,
2789          but this should not be an error ().  */
2790       return;
2791     }
2792
2793   switch (type)
2794     {
2795     case N_FUN:
2796     case N_FNAME:
2797
2798       if (*name == '\000')
2799         {
2800           /* This N_FUN marks the end of a function.  This closes off the
2801              current block.  */
2802           record_line (current_subfile, 0, function_start_offset + valu);
2803           within_function = 0;
2804           new = pop_context ();
2805
2806           /* Make a block for the local symbols within.  */
2807           finish_block (new->name, &local_symbols, new->old_blocks,
2808                         new->start_addr, new->start_addr + valu,
2809                         objfile);
2810
2811           /* May be switching to an assembler file which may not be using
2812              block relative stabs, so reset the offset.  */
2813           if (block_address_function_relative)
2814             function_start_offset = 0;
2815
2816           break;
2817         }
2818
2819       sline_found_in_function = 0;
2820
2821       /* Relocate for dynamic loading */
2822       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2823       valu = SMASH_TEXT_ADDRESS (valu);
2824       last_function_start = valu;
2825
2826       goto define_a_symbol;
2827
2828     case N_LBRAC:
2829       /* This "symbol" just indicates the start of an inner lexical
2830          context within a function.  */
2831
2832       /* Ignore extra outermost context from SunPRO cc and acc.  */
2833       if (n_opt_found && desc == 1)
2834         break;
2835
2836       if (block_address_function_relative)
2837         /* Relocate for Sun ELF acc fn-relative syms.  */
2838         valu += function_start_offset;
2839       else
2840         /* On most machines, the block addresses are relative to the
2841            N_SO, the linker did not relocate them (sigh).  */
2842         valu += last_source_start_addr;
2843
2844 #ifdef SUN_FIXED_LBRAC_BUG
2845       if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address)
2846         {
2847           /* Patch current LBRAC pc value to match last handy pc value */
2848           complain (&lbrac_complaint);
2849           valu = last_pc_address;
2850         }
2851 #endif
2852       new = push_context (desc, valu);
2853       break;
2854
2855     case N_RBRAC:
2856       /* This "symbol" just indicates the end of an inner lexical
2857          context that was started with N_LBRAC.  */
2858
2859       /* Ignore extra outermost context from SunPRO cc and acc.  */
2860       if (n_opt_found && desc == 1)
2861         break;
2862
2863       if (block_address_function_relative)
2864         /* Relocate for Sun ELF acc fn-relative syms.  */
2865         valu += function_start_offset;
2866       else
2867         /* On most machines, the block addresses are relative to the
2868            N_SO, the linker did not relocate them (sigh).  */
2869         valu += last_source_start_addr;
2870
2871       new = pop_context ();
2872       if (desc != new->depth)
2873         complain (&lbrac_mismatch_complaint, symnum);
2874
2875       /* Some compilers put the variable decls inside of an
2876          LBRAC/RBRAC block.  This macro should be nonzero if this
2877          is true.  DESC is N_DESC from the N_RBRAC symbol.
2878          GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
2879          or the GCC2_COMPILED_SYMBOL.  */
2880 #if !defined (VARIABLES_INSIDE_BLOCK)
2881 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
2882 #endif
2883
2884       /* Can only use new->locals as local symbols here if we're in
2885          gcc or on a machine that puts them before the lbrack.  */
2886       if (!VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2887         {
2888           if (local_symbols != NULL)
2889             {
2890               /* GCC development snapshots from March to December of
2891                  2000 would output N_LSYM entries after N_LBRAC
2892                  entries.  As a consequence, these symbols are simply
2893                  discarded.  Complain if this is the case.  Note that
2894                  there are some compilers which legitimately put local
2895                  symbols within an LBRAC/RBRAC block; this complaint
2896                  might also help sort out problems in which
2897                  VARIABLES_INSIDE_BLOCK is incorrectly defined.  */
2898               complain (&discarding_local_symbols_complaint);
2899             }
2900           local_symbols = new->locals;
2901         }
2902
2903       if (context_stack_depth
2904           > !VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2905         {
2906           /* This is not the outermost LBRAC...RBRAC pair in the function,
2907              its local symbols preceded it, and are the ones just recovered
2908              from the context stack.  Define the block for them (but don't
2909              bother if the block contains no symbols.  Should we complain
2910              on blocks without symbols?  I can't think of any useful purpose
2911              for them).  */
2912           if (local_symbols != NULL)
2913             {
2914               /* Muzzle a compiler bug that makes end < start.  (which
2915                  compilers?  Is this ever harmful?).  */
2916               if (new->start_addr > valu)
2917                 {
2918                   complain (&lbrac_rbrac_complaint);
2919                   new->start_addr = valu;
2920                 }
2921               /* Make a block for the local symbols within.  */
2922               finish_block (0, &local_symbols, new->old_blocks,
2923                             new->start_addr, valu, objfile);
2924             }
2925         }
2926       else
2927         {
2928           /* This is the outermost LBRAC...RBRAC pair.  There is no
2929              need to do anything; leave the symbols that preceded it
2930              to be attached to the function's own block.  We need to
2931              indicate that we just moved outside of the function.  */
2932           within_function = 0;
2933         }
2934
2935       if (VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2936         /* Now pop locals of block just finished.  */
2937         local_symbols = new->locals;
2938       break;
2939
2940     case N_FN:
2941     case N_FN_SEQ:
2942       /* This kind of symbol indicates the start of an object file.  */
2943       /* Relocate for dynamic loading */
2944       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2945       break;
2946
2947     case N_SO:
2948       /* This type of symbol indicates the start of data
2949          for one source file.
2950          Finish the symbol table of the previous source file
2951          (if any) and start accumulating a new symbol table.  */
2952       /* Relocate for dynamic loading */
2953       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2954
2955       n_opt_found = 0;
2956
2957 #ifdef SUN_FIXED_LBRAC_BUG
2958       last_pc_address = valu;   /* Save for SunOS bug circumcision */
2959 #endif
2960
2961 #ifdef PCC_SOL_BROKEN
2962       /* pcc bug, occasionally puts out SO for SOL.  */
2963       if (context_stack_depth > 0)
2964         {
2965           start_subfile (name, NULL);
2966           break;
2967         }
2968 #endif
2969       if (last_source_file)
2970         {
2971           /* Check if previous symbol was also an N_SO (with some
2972              sanity checks).  If so, that one was actually the directory
2973              name, and the current one is the real file name.
2974              Patch things up. */
2975           if (previous_stab_code == (unsigned char) N_SO)
2976             {
2977               patch_subfile_names (current_subfile, name);
2978               break;            /* Ignore repeated SOs */
2979             }
2980           end_symtab (valu, objfile, SECT_OFF_TEXT (objfile));
2981           end_stabs ();
2982         }
2983
2984       /* Null name means this just marks the end of text for this .o file.
2985          Don't start a new symtab in this case.  */
2986       if (*name == '\000')
2987         break;
2988
2989       if (block_address_function_relative)
2990         function_start_offset = 0;
2991
2992       start_stabs ();
2993       start_symtab (name, NULL, valu);
2994       record_debugformat ("stabs");
2995       break;
2996
2997     case N_SOL:
2998       /* This type of symbol indicates the start of data for
2999          a sub-source-file, one whose contents were copied or
3000          included in the compilation of the main source file
3001          (whose name was given in the N_SO symbol.)  */
3002       /* Relocate for dynamic loading */
3003       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
3004       start_subfile (name, current_subfile->dirname);
3005       break;
3006
3007     case N_BINCL:
3008       push_subfile ();
3009       add_new_header_file (name, valu);
3010       start_subfile (name, current_subfile->dirname);
3011       break;
3012
3013     case N_EINCL:
3014       start_subfile (pop_subfile (), current_subfile->dirname);
3015       break;
3016
3017     case N_EXCL:
3018       add_old_header_file (name, valu);
3019       break;
3020
3021     case N_SLINE:
3022       /* This type of "symbol" really just records
3023          one line-number -- core-address correspondence.
3024          Enter it in the line list for this symbol table.  */
3025
3026       /* Relocate for dynamic loading and for ELF acc fn-relative syms.  */
3027       valu += function_start_offset;
3028
3029 #ifdef SUN_FIXED_LBRAC_BUG
3030       last_pc_address = valu;   /* Save for SunOS bug circumcision */
3031 #endif
3032       /* If this is the first SLINE note in the function, record it at
3033          the start of the function instead of at the listed location.  */
3034       if (within_function && sline_found_in_function == 0)
3035         {
3036           record_line (current_subfile, desc, last_function_start);
3037           sline_found_in_function = 1;
3038         }
3039       else
3040         record_line (current_subfile, desc, valu);
3041       break;
3042
3043     case N_BCOMM:
3044       common_block_start (name, objfile);
3045       break;
3046
3047     case N_ECOMM:
3048       common_block_end (objfile);
3049       break;
3050
3051       /* The following symbol types need to have the appropriate offset added
3052          to their value; then we process symbol definitions in the name.  */
3053
3054     case N_STSYM:               /* Static symbol in data seg */
3055     case N_LCSYM:               /* Static symbol in BSS seg */
3056     case N_ROSYM:               /* Static symbol in Read-only data seg */
3057       /* HORRID HACK DEPT.  However, it's Sun's furgin' fault.
3058          Solaris2's stabs-in-elf makes *most* symbols relative
3059          but leaves a few absolute (at least for Solaris 2.1 and version
3060          2.0.1 of the SunPRO compiler).  N_STSYM and friends sit on the fence.
3061          .stab "foo:S...",N_STSYM        is absolute (ld relocates it)
3062          .stab "foo:V...",N_STSYM        is relative (section base subtracted).
3063          This leaves us no choice but to search for the 'S' or 'V'...
3064          (or pass the whole section_offsets stuff down ONE MORE function
3065          call level, which we really don't want to do).  */
3066       {
3067         char *p;
3068
3069         /* .o files and NLMs have non-zero text seg offsets, but don't need
3070            their static syms offset in this fashion.  XXX - This is really a
3071            crock that should be fixed in the solib handling code so that I
3072            don't have to work around it here. */
3073
3074         if (!symfile_relocatable)
3075           {
3076             p = strchr (name, ':');
3077             if (p != 0 && p[1] == 'S')
3078               {
3079                 /* The linker relocated it.  We don't want to add an
3080                    elfstab_offset_sections-type offset, but we *do* want
3081                    to add whatever solib.c passed to symbol_file_add as
3082                    addr (this is known to affect SunOS4, and I suspect ELF
3083                    too).  Since elfstab_offset_sections currently does not
3084                    muck with the text offset (there is no Ttext.text
3085                    symbol), we can get addr from the text offset.  If
3086                    elfstab_offset_sections ever starts dealing with the
3087                    text offset, and we still need to do this, we need to
3088                    invent a SECT_OFF_ADDR_KLUDGE or something.  */
3089                 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
3090                 goto define_a_symbol;
3091               }
3092           }
3093         /* Since it's not the kludge case, re-dispatch to the right handler. */
3094         switch (type)
3095           {
3096           case N_STSYM:
3097             goto case_N_STSYM;
3098           case N_LCSYM:
3099             goto case_N_LCSYM;
3100           case N_ROSYM:
3101             goto case_N_ROSYM;
3102           default:
3103             internal_error (__FILE__, __LINE__, "failed internal consistency check");
3104           }
3105       }
3106
3107     case_N_STSYM:               /* Static symbol in data seg */
3108     case N_DSLINE:              /* Source line number, data seg */
3109       valu += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
3110       goto define_a_symbol;
3111
3112     case_N_LCSYM:               /* Static symbol in BSS seg */
3113     case N_BSLINE:              /* Source line number, bss seg */
3114       /*   N_BROWS:       overlaps with N_BSLINE */
3115       valu += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
3116       goto define_a_symbol;
3117
3118     case_N_ROSYM:               /* Static symbol in Read-only data seg */
3119       valu += ANOFFSET (section_offsets, SECT_OFF_RODATA (objfile));
3120       goto define_a_symbol;
3121
3122     case N_ENTRY:               /* Alternate entry point */
3123       /* Relocate for dynamic loading */
3124       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
3125       goto define_a_symbol;
3126
3127       /* The following symbol types we don't know how to process.  Handle
3128          them in a "default" way, but complain to people who care.  */
3129     default:
3130     case N_CATCH:               /* Exception handler catcher */
3131     case N_EHDECL:              /* Exception handler name */
3132     case N_PC:                  /* Global symbol in Pascal */
3133     case N_M2C:         /* Modula-2 compilation unit */
3134       /*   N_MOD2:        overlaps with N_EHDECL */
3135     case N_SCOPE:               /* Modula-2 scope information */
3136     case N_ECOML:               /* End common (local name) */
3137     case N_NBTEXT:              /* Gould Non-Base-Register symbols??? */
3138     case N_NBDATA:
3139     case N_NBBSS:
3140     case N_NBSTS:
3141     case N_NBLCS:
3142       complain (&unknown_symtype_complaint, local_hex_string (type));
3143       /* FALLTHROUGH */
3144
3145       /* The following symbol types don't need the address field relocated,
3146          since it is either unused, or is absolute.  */
3147     define_a_symbol:
3148     case N_GSYM:                /* Global variable */
3149     case N_NSYMS:               /* Number of symbols (ultrix) */
3150     case N_NOMAP:               /* No map?  (ultrix) */
3151     case N_RSYM:                /* Register variable */
3152     case N_DEFD:                /* Modula-2 GNU module dependency */
3153     case N_SSYM:                /* Struct or union element */
3154     case N_LSYM:                /* Local symbol in stack */
3155     case N_PSYM:                /* Parameter variable */
3156     case N_LENG:                /* Length of preceding symbol type */
3157       if (name)
3158         {
3159           int deftype;
3160           char *colon_pos = strchr (name, ':');
3161           if (colon_pos == NULL)
3162             deftype = '\0';
3163           else
3164             deftype = colon_pos[1];
3165
3166           switch (deftype)
3167             {
3168             case 'f':
3169             case 'F':
3170               function_stab_type = type;
3171
3172 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
3173               /* Deal with the SunPRO 3.0 compiler which omits the address
3174                  from N_FUN symbols.  */
3175               if (type == N_FUN
3176                   && valu == ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile)))
3177                 {
3178                   CORE_ADDR minsym_valu = 
3179                     find_stab_function_addr (name, last_source_file, objfile);
3180
3181                   /* find_stab_function_addr will return 0 if the minimal
3182                      symbol wasn't found.  (Unfortunately, this might also
3183                      be a valid address.)  Anyway, if it *does* return 0,
3184                      it is likely that the value was set correctly to begin
3185                      with... */
3186                   if (minsym_valu != 0)
3187                     valu = minsym_valu;
3188                 }
3189 #endif
3190
3191 #ifdef SUN_FIXED_LBRAC_BUG
3192               /* The Sun acc compiler, under SunOS4, puts out
3193                  functions with N_GSYM or N_STSYM.  The problem is
3194                  that the address of the symbol is no good (for N_GSYM
3195                  it doesn't even attept an address; for N_STSYM it
3196                  puts out an address but then it gets relocated
3197                  relative to the data segment, not the text segment).
3198                  Currently we can't fix this up later as we do for
3199                  some types of symbol in scan_file_globals.
3200                  Fortunately we do have a way of finding the address -
3201                  we know that the value in last_pc_address is either
3202                  the one we want (if we're dealing with the first
3203                  function in an object file), or somewhere in the
3204                  previous function. This means that we can use the
3205                  minimal symbol table to get the address.  */
3206
3207               /* Starting with release 3.0, the Sun acc compiler,
3208                  under SunOS4, puts out functions with N_FUN and a value
3209                  of zero. This gets relocated to the start of the text
3210                  segment of the module, which is no good either.
3211                  Under SunOS4 we can deal with this as N_SLINE and N_SO
3212                  entries contain valid absolute addresses.
3213                  Release 3.0 acc also puts out N_OPT entries, which makes
3214                  it possible to discern acc from cc or gcc.  */
3215
3216               if (type == N_GSYM || type == N_STSYM
3217                   || (type == N_FUN
3218                       && n_opt_found && !block_address_function_relative))
3219                 {
3220                   struct minimal_symbol *m;
3221                   int l = colon_pos - name;
3222
3223                   m = lookup_minimal_symbol_by_pc (last_pc_address);
3224                   if (m && STREQN (SYMBOL_NAME (m), name, l)
3225                       && SYMBOL_NAME (m)[l] == '\0')
3226                     /* last_pc_address was in this function */
3227                     valu = SYMBOL_VALUE (m);
3228                   else if (m && SYMBOL_NAME (m + 1)
3229                            && STREQN (SYMBOL_NAME (m + 1), name, l)
3230                            && SYMBOL_NAME (m + 1)[l] == '\0')
3231                     /* last_pc_address was in last function */
3232                     valu = SYMBOL_VALUE (m + 1);
3233                   else
3234                     /* Not found - use last_pc_address (for finish_block) */
3235                     valu = last_pc_address;
3236                 }
3237
3238               last_pc_address = valu;   /* Save for SunOS bug circumcision */
3239 #endif
3240
3241               if (block_address_function_relative)
3242                 /* For Solaris 2.0 compilers, the block addresses and
3243                    N_SLINE's are relative to the start of the
3244                    function.  On normal systems, and when using gcc on
3245                    Solaris 2.0, these addresses are just absolute, or
3246                    relative to the N_SO, depending on
3247                    BLOCK_ADDRESS_ABSOLUTE.  */
3248                 function_start_offset = valu;
3249
3250               within_function = 1;
3251
3252               if (context_stack_depth > 1)
3253                 {
3254                   complain (&lbrac_unmatched_complaint, symnum);
3255                   break;
3256                 }
3257
3258               if (context_stack_depth > 0)
3259                 {
3260                   new = pop_context ();
3261                   /* Make a block for the local symbols within.  */
3262                   finish_block (new->name, &local_symbols, new->old_blocks,
3263                                 new->start_addr, valu, objfile);
3264                 }
3265
3266               new = push_context (0, valu);
3267               new->name = define_symbol (valu, name, desc, type, objfile);
3268               break;
3269
3270             default:
3271               define_symbol (valu, name, desc, type, objfile);
3272               break;
3273             }
3274         }
3275       break;
3276
3277       /* We use N_OPT to carry the gcc2_compiled flag.  Sun uses it
3278          for a bunch of other flags, too.  Someday we may parse their
3279          flags; for now we ignore theirs and hope they'll ignore ours.  */
3280     case N_OPT:         /* Solaris 2:  Compiler options */
3281       if (name)
3282         {
3283           if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
3284             {
3285               processing_gcc_compilation = 2;
3286 #if 0                           /* Works, but is experimental.  -fnf */
3287               /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
3288                  know whether it will use the old style or v3 mangling.  */
3289               if (AUTO_DEMANGLING)
3290                 {
3291                   set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
3292                 }
3293 #endif
3294             }
3295           else
3296             n_opt_found = 1;
3297         }
3298       break;
3299
3300     case N_MAIN:                /* Name of main routine.  */
3301       /* FIXME: If one has a symbol file with N_MAIN and then replaces
3302          it with a symbol file with "main" and without N_MAIN.  I'm
3303          not sure exactly what rule to follow but probably something
3304          like: N_MAIN takes precedence over "main" no matter what
3305          objfile it is in; If there is more than one N_MAIN, choose
3306          the one in the symfile_objfile; If there is more than one
3307          N_MAIN within a given objfile, complain() and choose
3308          arbitrarily. (kingdon) */
3309       if (name != NULL)
3310         set_main_name (name);
3311       break;
3312
3313       /* The following symbol types can be ignored.  */
3314     case N_OBJ:         /* Solaris 2:  Object file dir and name */
3315       /*   N_UNDF:                   Solaris 2:  file separator mark */
3316       /*   N_UNDF: -- we will never encounter it, since we only process one
3317          file's symbols at once.  */
3318     case N_ENDM:                /* Solaris 2:  End of module */
3319     case N_ALIAS:               /* SunPro F77: alias name, ignore for now.  */
3320       break;
3321     }
3322
3323   /* '#' is a GNU C extension to allow one symbol to refer to another
3324      related symbol.
3325
3326      Generally this is used so that an alias can refer to its main
3327      symbol.  */
3328   if (name[0] == '#')
3329     {
3330       /* Initialize symbol reference names and determine if this is 
3331          a definition.  If symbol reference is being defined, go 
3332          ahead and add it.  Otherwise, just return sym. */
3333
3334       char *s = name;
3335       int refnum;
3336
3337       /* If this stab defines a new reference ID that is not on the
3338          reference list, then put it on the reference list.
3339
3340          We go ahead and advance NAME past the reference, even though
3341          it is not strictly necessary at this time.  */
3342       refnum = symbol_reference_defined (&s);
3343       if (refnum >= 0)
3344         if (!ref_search (refnum))
3345           ref_add (refnum, 0, name, valu);
3346       name = s;
3347     }
3348
3349
3350   previous_stab_code = type;
3351 }
3352 \f
3353 /* FIXME: The only difference between this and elfstab_build_psymtabs
3354    is the call to install_minimal_symbols for elf, and the support for
3355    split sections.  If the differences are really that small, the code
3356    should be shared.  */
3357
3358 /* Scan and build partial symbols for an coff symbol file.
3359    The coff file has already been processed to get its minimal symbols.
3360
3361    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3362    rolled into one.
3363
3364    OBJFILE is the object file we are reading symbols from.
3365    ADDR is the address relative to which the symbols are (e.g.
3366    the base address of the text segment).
3367    MAINLINE is true if we are reading the main symbol
3368    table (as opposed to a shared lib or dynamically loaded file).
3369    TEXTADDR is the address of the text section.
3370    TEXTSIZE is the size of the text section.
3371    STABSECTS is the list of .stab sections in OBJFILE.
3372    STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3373    .stabstr section exists.
3374
3375    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3376    adjusted for coff details. */
3377
3378 void
3379 coffstab_build_psymtabs (struct objfile *objfile, int mainline,
3380                          CORE_ADDR textaddr, unsigned int textsize,
3381                          struct stab_section_list *stabsects,
3382                          file_ptr stabstroffset, unsigned int stabstrsize)
3383 {
3384   int val;
3385   bfd *sym_bfd = objfile->obfd;
3386   char *name = bfd_get_filename (sym_bfd);
3387   struct dbx_symfile_info *info;
3388   unsigned int stabsize;
3389
3390   /* There is already a dbx_symfile_info allocated by our caller.
3391      It might even contain some info from the coff symtab to help us.  */
3392   info = objfile->sym_stab_info;
3393
3394   DBX_TEXT_ADDR (objfile) = textaddr;
3395   DBX_TEXT_SIZE (objfile) = textsize;
3396
3397 #define COFF_STABS_SYMBOL_SIZE  12      /* XXX FIXME XXX */
3398   DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
3399   DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
3400
3401   if (stabstrsize > bfd_get_size (sym_bfd))
3402     error ("ridiculous string table size: %d bytes", stabstrsize);
3403   DBX_STRINGTAB (objfile) = (char *)
3404     obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
3405   OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
3406
3407   /* Now read in the string table in one big gulp.  */
3408
3409   val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
3410   if (val < 0)
3411     perror_with_name (name);
3412   val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
3413   if (val != stabstrsize)
3414     perror_with_name (name);
3415
3416   stabsread_new_init ();
3417   buildsym_new_init ();
3418   free_header_files ();
3419   init_header_files ();
3420
3421   processing_acc_compilation = 1;
3422
3423   /* In a coff file, we've already installed the minimal symbols that came
3424      from the coff (non-stab) symbol table, so always act like an
3425      incremental load here. */
3426   if (stabsects->next == NULL)
3427     {
3428       stabsize = bfd_section_size (sym_bfd, stabsects->section);
3429       DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
3430       DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
3431     }
3432   else
3433     {
3434       struct stab_section_list *stabsect;
3435
3436       DBX_SYMCOUNT (objfile) = 0;
3437       for (stabsect = stabsects; stabsect != NULL; stabsect = stabsect->next)
3438         {
3439           stabsize = bfd_section_size (sym_bfd, stabsect->section);
3440           DBX_SYMCOUNT (objfile) += stabsize / DBX_SYMBOL_SIZE (objfile);
3441         }
3442
3443       DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
3444
3445       symbuf_sections = stabsects->next;
3446       symbuf_left = bfd_section_size (sym_bfd, stabsects->section);
3447       symbuf_read = 0;
3448     }
3449
3450   dbx_symfile_read (objfile, 0);
3451 }
3452 \f
3453 /* Scan and build partial symbols for an ELF symbol file.
3454    This ELF file has already been processed to get its minimal symbols,
3455    and any DWARF symbols that were in it.
3456
3457    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3458    rolled into one.
3459
3460    OBJFILE is the object file we are reading symbols from.
3461    ADDR is the address relative to which the symbols are (e.g.
3462    the base address of the text segment).
3463    MAINLINE is true if we are reading the main symbol
3464    table (as opposed to a shared lib or dynamically loaded file).
3465    STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
3466    section exists.
3467    STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3468    .stabstr section exists.
3469
3470    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3471    adjusted for elf details. */
3472
3473 void
3474 elfstab_build_psymtabs (struct objfile *objfile, int mainline,
3475                         file_ptr staboffset, unsigned int stabsize,
3476                         file_ptr stabstroffset, unsigned int stabstrsize)
3477 {
3478   int val;
3479   bfd *sym_bfd = objfile->obfd;
3480   char *name = bfd_get_filename (sym_bfd);
3481   struct dbx_symfile_info *info;
3482
3483   /* There is already a dbx_symfile_info allocated by our caller.
3484      It might even contain some info from the ELF symtab to help us.  */
3485   info = objfile->sym_stab_info;
3486
3487   /* Find the first and last text address.  dbx_symfile_read seems to
3488      want this.  */
3489   find_text_range (sym_bfd, objfile);
3490
3491 #define ELF_STABS_SYMBOL_SIZE   12      /* XXX FIXME XXX */
3492   DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
3493   DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
3494   DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
3495   DBX_SYMTAB_OFFSET (objfile) = staboffset;
3496
3497   if (stabstrsize > bfd_get_size (sym_bfd))
3498     error ("ridiculous string table size: %d bytes", stabstrsize);
3499   DBX_STRINGTAB (objfile) = (char *)
3500     obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
3501   OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
3502
3503   /* Now read in the string table in one big gulp.  */
3504
3505   val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
3506   if (val < 0)
3507     perror_with_name (name);
3508   val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
3509   if (val != stabstrsize)
3510     perror_with_name (name);
3511
3512   stabsread_new_init ();
3513   buildsym_new_init ();
3514   free_header_files ();
3515   init_header_files ();
3516   install_minimal_symbols (objfile);
3517
3518   processing_acc_compilation = 1;
3519
3520   /* In an elf file, we've already installed the minimal symbols that came
3521      from the elf (non-stab) symbol table, so always act like an
3522      incremental load here. */
3523   dbx_symfile_read (objfile, 0);
3524 }
3525 \f
3526 /* Scan and build partial symbols for a file with special sections for stabs
3527    and stabstrings.  The file has already been processed to get its minimal
3528    symbols, and any other symbols that might be necessary to resolve GSYMs.
3529
3530    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3531    rolled into one.
3532
3533    OBJFILE is the object file we are reading symbols from.
3534    ADDR is the address relative to which the symbols are (e.g. the base address
3535    of the text segment).
3536    MAINLINE is true if we are reading the main symbol table (as opposed to a
3537    shared lib or dynamically loaded file).
3538    STAB_NAME is the name of the section that contains the stabs.
3539    STABSTR_NAME is the name of the section that contains the stab strings.
3540
3541    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
3542
3543 void
3544 stabsect_build_psymtabs (struct objfile *objfile, int mainline, char *stab_name,
3545                          char *stabstr_name, char *text_name)
3546 {
3547   int val;
3548   bfd *sym_bfd = objfile->obfd;
3549   char *name = bfd_get_filename (sym_bfd);
3550   asection *stabsect;
3551   asection *stabstrsect;
3552   asection *text_sect;
3553
3554   stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
3555   stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
3556
3557   if (!stabsect)
3558     return;
3559
3560   if (!stabstrsect)
3561     error ("stabsect_build_psymtabs:  Found stabs (%s), but not string section (%s)",
3562            stab_name, stabstr_name);
3563
3564   objfile->sym_stab_info = (struct dbx_symfile_info *)
3565     xmalloc (sizeof (struct dbx_symfile_info));
3566   memset (objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
3567
3568   text_sect = bfd_get_section_by_name (sym_bfd, text_name);
3569   if (!text_sect)
3570     error ("Can't find %s section in symbol file", text_name);
3571   DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
3572   DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
3573
3574   DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
3575   DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
3576     / DBX_SYMBOL_SIZE (objfile);
3577   DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
3578   DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos;      /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
3579
3580   if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
3581     error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
3582   DBX_STRINGTAB (objfile) = (char *)
3583     obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
3584   OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile) + 1);
3585
3586   /* Now read in the string table in one big gulp.  */
3587
3588   val = bfd_get_section_contents (sym_bfd,      /* bfd */
3589                                   stabstrsect,  /* bfd section */
3590                                   DBX_STRINGTAB (objfile),      /* input buffer */
3591                                   0,    /* offset into section */
3592                                   DBX_STRINGTAB_SIZE (objfile));        /* amount to read */
3593
3594   if (!val)
3595     perror_with_name (name);
3596
3597   stabsread_new_init ();
3598   buildsym_new_init ();
3599   free_header_files ();
3600   init_header_files ();
3601   install_minimal_symbols (objfile);
3602
3603   /* Now, do an incremental load */
3604
3605   processing_acc_compilation = 1;
3606   dbx_symfile_read (objfile, 0);
3607 }
3608 \f
3609 static struct sym_fns aout_sym_fns =
3610 {
3611   bfd_target_aout_flavour,
3612   dbx_new_init,                 /* sym_new_init: init anything gbl to entire symtab */
3613   dbx_symfile_init,             /* sym_init: read initial info, setup for sym_read() */
3614   dbx_symfile_read,             /* sym_read: read a symbol file into symtab */
3615   dbx_symfile_finish,           /* sym_finish: finished with file, cleanup */
3616   default_symfile_offsets,      /* sym_offsets: parse user's offsets to internal form */
3617   NULL                          /* next: pointer to next struct sym_fns */
3618 };
3619
3620 void
3621 _initialize_dbxread (void)
3622 {
3623   add_symtab_fns (&aout_sym_fns);
3624 }