2001-09-04 Elena Zannoni <ezannoni@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
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 "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 inside partial-stab.h */
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
80     /* Offset within the file symbol table of first local symbol for this
81        file.  */
82
83     int ldsymoff;
84
85     /* Length (in bytes) of the section of the symbol table devoted to
86        this file's symbols (actually, the section bracketed may contain
87        more than just this file's symbols).  If ldsymlen is 0, the only
88        reason for this thing's existence is the dependency list.  Nothing
89        else will happen when it is read in.  */
90
91     int ldsymlen;
92
93     /* The size of each symbol in the symbol file (in external form).  */
94
95     int symbol_size;
96
97     /* Further information needed to locate the symbols if they are in
98        an ELF file.  */
99
100     int symbol_offset;
101     int string_offset;
102     int file_string_offset;
103   };
104
105 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
106 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
107 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
108 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
109 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
110 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
111 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
112 \f
113
114 /* Remember what we deduced to be the source language of this psymtab. */
115
116 static enum language psymtab_language = language_unknown;
117
118 /* Nonzero means give verbose info on gdb action.  From main.c.  */
119
120 extern int info_verbose;
121
122 /* The BFD for this file -- implicit parameter to next_symbol_text.  */
123
124 static bfd *symfile_bfd;
125
126 /* The size of each symbol in the symbol file (in external form).
127    This is set by dbx_symfile_read when building psymtabs, and by
128    dbx_psymtab_to_symtab when building symtabs.  */
129
130 static unsigned symbol_size;
131
132 /* This is the offset of the symbol table in the executable file. */
133
134 static unsigned symbol_table_offset;
135
136 /* This is the offset of the string table in the executable file. */
137
138 static unsigned string_table_offset;
139
140 /* For elf+stab executables, the n_strx field is not a simple index
141    into the string table.  Instead, each .o file has a base offset in
142    the string table, and the associated symbols contain offsets from
143    this base.  The following two variables contain the base offset for
144    the current and next .o files. */
145
146 static unsigned int file_string_table_offset;
147 static unsigned int next_file_string_table_offset;
148
149 /* .o and NLM files contain unrelocated addresses which are based at
150    0.  When non-zero, this flag disables some of the special cases for
151    Solaris elf+stab text addresses at location 0. */
152
153 static int symfile_relocatable = 0;
154
155 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
156    relative to the function start address.  */
157
158 static int block_address_function_relative = 0;
159 \f
160 /* The lowest text address we have yet encountered.  This is needed
161    because in an a.out file, there is no header field which tells us
162    what address the program is actually going to be loaded at, so we
163    need to make guesses based on the symbols (which *are* relocated to
164    reflect the address it will be loaded at).  */
165
166 static CORE_ADDR lowest_text_address;
167
168 /* Non-zero if there is any line number info in the objfile.  Prevents
169    end_psymtab from discarding an otherwise empty psymtab.  */
170
171 static int has_line_numbers;
172
173 /* Complaints about the symbols we have encountered.  */
174
175 struct complaint lbrac_complaint =
176 {"bad block start address patched", 0, 0};
177
178 struct complaint string_table_offset_complaint =
179 {"bad string table offset in symbol %d", 0, 0};
180
181 struct complaint unknown_symtype_complaint =
182 {"unknown symbol type %s", 0, 0};
183
184 struct complaint unknown_symchar_complaint =
185 {"unknown symbol descriptor `%c'", 0, 0};
186
187 struct complaint lbrac_rbrac_complaint =
188 {"block start larger than block end", 0, 0};
189
190 struct complaint lbrac_unmatched_complaint =
191 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
192
193 struct complaint lbrac_mismatch_complaint =
194 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
195
196 struct complaint repeated_header_complaint =
197 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
198
199 struct complaint unclaimed_bincl_complaint =
200 {"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
201 \f
202 /* find_text_range --- find start and end of loadable code sections
203
204    The find_text_range function finds the shortest address range that
205    encloses all sections containing executable code, and stores it in
206    objfile's text_addr and text_size members.
207
208    dbx_symfile_read will use this to finish off the partial symbol
209    table, in some cases.  */
210
211 static void
212 find_text_range (bfd * sym_bfd, struct objfile *objfile)
213 {
214   asection *sec;
215   int found_any = 0;
216   CORE_ADDR start = 0;
217   CORE_ADDR end = 0;
218
219   for (sec = sym_bfd->sections; sec; sec = sec->next)
220     if (bfd_get_section_flags (sym_bfd, sec) & SEC_CODE)
221       {
222         CORE_ADDR sec_start = bfd_section_vma (sym_bfd, sec);
223         CORE_ADDR sec_end = sec_start + bfd_section_size (sym_bfd, sec);
224
225         if (found_any)
226           {
227             if (sec_start < start)
228               start = sec_start;
229             if (sec_end > end)
230               end = sec_end;
231           }
232         else
233           {
234             start = sec_start;
235             end = sec_end;
236           }
237
238         found_any = 1;
239       }
240
241   if (!found_any)
242     error ("Can't find any code sections in symbol file");
243
244   DBX_TEXT_ADDR (objfile) = start;
245   DBX_TEXT_SIZE (objfile) = end - start;
246 }
247 \f
248
249
250 /* During initial symbol readin, we need to have a structure to keep
251    track of which psymtabs have which bincls in them.  This structure
252    is used during readin to setup the list of dependencies within each
253    partial symbol table. */
254
255 struct header_file_location
256 {
257   char *name;                   /* Name of header file */
258   int instance;                 /* See above */
259   struct partial_symtab *pst;   /* Partial symtab that has the
260                                    BINCL/EINCL defs for this file */
261 };
262
263 /* The actual list and controling variables */
264 static struct header_file_location *bincl_list, *next_bincl;
265 static int bincls_allocated;
266
267 /* Local function prototypes */
268
269 extern void _initialize_dbxread (void);
270
271 static void process_now (struct objfile *);
272
273 static void read_ofile_symtab (struct partial_symtab *);
274
275 static void dbx_psymtab_to_symtab (struct partial_symtab *);
276
277 static void dbx_psymtab_to_symtab_1 (struct partial_symtab *);
278
279 static void read_dbx_dynamic_symtab (struct objfile *objfile);
280
281 static void read_dbx_symtab (struct objfile *);
282
283 static void free_bincl_list (struct objfile *);
284
285 static struct partial_symtab *find_corresponding_bincl_psymtab (char *, int);
286
287 static void add_bincl_to_list (struct partial_symtab *, char *, int);
288
289 static void init_bincl_list (int, struct objfile *);
290
291 static char *dbx_next_symbol_text (struct objfile *);
292
293 static void fill_symbuf (bfd *);
294
295 static void dbx_symfile_init (struct objfile *);
296
297 static void dbx_new_init (struct objfile *);
298
299 static void dbx_symfile_read (struct objfile *, int);
300
301 static void dbx_symfile_finish (struct objfile *);
302
303 static void record_minimal_symbol (char *, CORE_ADDR, int, struct objfile *);
304
305 static void add_new_header_file (char *, int);
306
307 static void add_old_header_file (char *, int);
308
309 static void add_this_object_header_file (int);
310
311 static struct partial_symtab *start_psymtab (struct objfile *, char *,
312                                              CORE_ADDR, int,
313                                              struct partial_symbol **,
314                                              struct partial_symbol **);
315
316 /* Free up old header file tables */
317
318 void
319 free_header_files (void)
320 {
321   if (this_object_header_files)
322     {
323       xfree (this_object_header_files);
324       this_object_header_files = NULL;
325     }
326   n_allocated_this_object_header_files = 0;
327 }
328
329 /* Allocate new header file tables */
330
331 void
332 init_header_files (void)
333 {
334   n_allocated_this_object_header_files = 10;
335   this_object_header_files = (int *) xmalloc (10 * sizeof (int));
336 }
337
338 /* Add header file number I for this object file
339    at the next successive FILENUM.  */
340
341 static void
342 add_this_object_header_file (int i)
343 {
344   if (n_this_object_header_files == n_allocated_this_object_header_files)
345     {
346       n_allocated_this_object_header_files *= 2;
347       this_object_header_files
348         = (int *) xrealloc ((char *) this_object_header_files,
349                        n_allocated_this_object_header_files * sizeof (int));
350     }
351
352   this_object_header_files[n_this_object_header_files++] = i;
353 }
354
355 /* Add to this file an "old" header file, one already seen in
356    a previous object file.  NAME is the header file's name.
357    INSTANCE is its instance code, to select among multiple
358    symbol tables for the same header file.  */
359
360 static void
361 add_old_header_file (char *name, int instance)
362 {
363   register struct header_file *p = HEADER_FILES (current_objfile);
364   register int i;
365
366   for (i = 0; i < N_HEADER_FILES (current_objfile); i++)
367     if (STREQ (p[i].name, name) && instance == p[i].instance)
368       {
369         add_this_object_header_file (i);
370         return;
371       }
372   complain (&repeated_header_complaint, name, symnum);
373 }
374
375 /* Add to this file a "new" header file: definitions for its types follow.
376    NAME is the header file's name.
377    Most often this happens only once for each distinct header file,
378    but not necessarily.  If it happens more than once, INSTANCE has
379    a different value each time, and references to the header file
380    use INSTANCE values to select among them.
381
382    dbx output contains "begin" and "end" markers for each new header file,
383    but at this level we just need to know which files there have been;
384    so we record the file when its "begin" is seen and ignore the "end".  */
385
386 static void
387 add_new_header_file (char *name, int instance)
388 {
389   register int i;
390   register struct header_file *hfile;
391
392   /* Make sure there is room for one more header file.  */
393
394   i = N_ALLOCATED_HEADER_FILES (current_objfile);
395
396   if (N_HEADER_FILES (current_objfile) == i)
397     {
398       if (i == 0)
399         {
400           N_ALLOCATED_HEADER_FILES (current_objfile) = 10;
401           HEADER_FILES (current_objfile) = (struct header_file *)
402             xmalloc (10 * sizeof (struct header_file));
403         }
404       else
405         {
406           i *= 2;
407           N_ALLOCATED_HEADER_FILES (current_objfile) = i;
408           HEADER_FILES (current_objfile) = (struct header_file *)
409             xrealloc ((char *) HEADER_FILES (current_objfile),
410                       (i * sizeof (struct header_file)));
411         }
412     }
413
414   /* Create an entry for this header file.  */
415
416   i = N_HEADER_FILES (current_objfile)++;
417   hfile = HEADER_FILES (current_objfile) + i;
418   hfile->name = savestring (name, strlen (name));
419   hfile->instance = instance;
420   hfile->length = 10;
421   hfile->vector
422     = (struct type **) xmalloc (10 * sizeof (struct type *));
423   memset (hfile->vector, 0, 10 * sizeof (struct type *));
424
425   add_this_object_header_file (i);
426 }
427
428 #if 0
429 static struct type **
430 explicit_lookup_type (int real_filenum, int index)
431 {
432   register struct header_file *f = &HEADER_FILES (current_objfile)[real_filenum];
433
434   if (index >= f->length)
435     {
436       f->length *= 2;
437       f->vector = (struct type **)
438         xrealloc (f->vector, f->length * sizeof (struct type *));
439       memset (&f->vector[f->length / 2],
440               '\0', f->length * sizeof (struct type *) / 2);
441     }
442   return &f->vector[index];
443 }
444 #endif
445 \f
446 static void
447 record_minimal_symbol (char *name, CORE_ADDR address, int type,
448                        struct objfile *objfile)
449 {
450   enum minimal_symbol_type ms_type;
451   int section;
452   asection *bfd_section;
453
454   switch (type)
455     {
456     case N_TEXT | N_EXT:
457       ms_type = mst_text;
458       section = SECT_OFF_TEXT (objfile);
459       bfd_section = DBX_TEXT_SECTION (objfile);
460       break;
461     case N_DATA | N_EXT:
462       ms_type = mst_data;
463       section = SECT_OFF_DATA (objfile);
464       bfd_section = DBX_DATA_SECTION (objfile);
465       break;
466     case N_BSS | N_EXT:
467       ms_type = mst_bss;
468       section = SECT_OFF_BSS (objfile);
469       bfd_section = DBX_BSS_SECTION (objfile);
470       break;
471     case N_ABS | N_EXT:
472       ms_type = mst_abs;
473       section = -1;
474       bfd_section = NULL;
475       break;
476 #ifdef N_SETV
477     case N_SETV | N_EXT:
478       ms_type = mst_data;
479       section = SECT_OFF_DATA (objfile);
480       bfd_section = DBX_DATA_SECTION (objfile);
481       break;
482     case N_SETV:
483       /* I don't think this type actually exists; since a N_SETV is the result
484          of going over many .o files, it doesn't make sense to have one
485          file local.  */
486       ms_type = mst_file_data;
487       section = SECT_OFF_DATA (objfile);
488       bfd_section = DBX_DATA_SECTION (objfile);
489       break;
490 #endif
491     case N_TEXT:
492     case N_NBTEXT:
493     case N_FN:
494     case N_FN_SEQ:
495       ms_type = mst_file_text;
496       section = SECT_OFF_TEXT (objfile);
497       bfd_section = DBX_TEXT_SECTION (objfile);
498       break;
499     case N_DATA:
500       ms_type = mst_file_data;
501
502       /* Check for __DYNAMIC, which is used by Sun shared libraries. 
503          Record it as global even if it's local, not global, so
504          lookup_minimal_symbol can find it.  We don't check symbol_leading_char
505          because for SunOS4 it always is '_'.  */
506       if (name[8] == 'C' && STREQ ("__DYNAMIC", name))
507         ms_type = mst_data;
508
509       /* Same with virtual function tables, both global and static.  */
510       {
511         char *tempstring = name;
512         if (tempstring[0] == bfd_get_symbol_leading_char (objfile->obfd))
513           ++tempstring;
514         if (is_vtable_name (tempstring))
515           ms_type = mst_data;
516       }
517       section = SECT_OFF_DATA (objfile);
518       bfd_section = DBX_DATA_SECTION (objfile);
519       break;
520     case N_BSS:
521       ms_type = mst_file_bss;
522       section = SECT_OFF_BSS (objfile);
523       bfd_section = DBX_BSS_SECTION (objfile);
524       break;
525     default:
526       ms_type = mst_unknown;
527       section = -1;
528       bfd_section = NULL;
529       break;
530     }
531
532   if ((ms_type == mst_file_text || ms_type == mst_text)
533       && address < lowest_text_address)
534     lowest_text_address = address;
535
536   prim_record_minimal_symbol_and_info
537     (name, address, ms_type, NULL, section, bfd_section, objfile);
538 }
539 \f
540 /* Scan and build partial symbols for a symbol file.
541    We have been initialized by a call to dbx_symfile_init, which 
542    put all the relevant info into a "struct dbx_symfile_info",
543    hung off the objfile structure.
544
545    MAINLINE is true if we are reading the main symbol
546    table (as opposed to a shared lib or dynamically loaded file).  */
547
548 static void
549 dbx_symfile_read (struct objfile *objfile, int mainline)
550 {
551   bfd *sym_bfd;
552   int val;
553   struct cleanup *back_to;
554
555   sym_bfd = objfile->obfd;
556
557   /* .o and .nlm files are relocatables with text, data and bss segs based at
558      0.  This flag disables special (Solaris stabs-in-elf only) fixups for
559      symbols with a value of 0.  */
560
561   symfile_relocatable = bfd_get_file_flags (sym_bfd) & HAS_RELOC;
562
563   /* This is true for Solaris (and all other systems which put stabs
564      in sections, hopefully, since it would be silly to do things
565      differently from Solaris), and false for SunOS4 and other a.out
566      file formats.  */
567   block_address_function_relative =
568     ((0 == strncmp (bfd_get_target (sym_bfd), "elf", 3))
569      || (0 == strncmp (bfd_get_target (sym_bfd), "som", 3))
570      || (0 == strncmp (bfd_get_target (sym_bfd), "coff", 4))
571      || (0 == strncmp (bfd_get_target (sym_bfd), "pe", 2))
572      || (0 == strncmp (bfd_get_target (sym_bfd), "epoc-pe", 7))
573      || (0 == strncmp (bfd_get_target (sym_bfd), "nlm", 3)));
574
575   val = bfd_seek (sym_bfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
576   if (val < 0)
577     perror_with_name (objfile->name);
578
579   /* If we are reinitializing, or if we have never loaded syms yet, init */
580   if (mainline
581       || (objfile->global_psymbols.size == 0
582           &&  objfile->static_psymbols.size == 0))
583     init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
584
585   symbol_size = DBX_SYMBOL_SIZE (objfile);
586   symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
587
588   free_pending_blocks ();
589   back_to = make_cleanup (really_free_pendings, 0);
590
591   init_minimal_symbol_collection ();
592   make_cleanup_discard_minimal_symbols ();
593
594   /* Read stabs data from executable file and define symbols. */
595
596   read_dbx_symtab (objfile);
597
598   /* Add the dynamic symbols.  */
599
600   read_dbx_dynamic_symtab (objfile);
601
602   /* Install any minimal symbols that have been collected as the current
603      minimal symbols for this objfile. */
604
605   install_minimal_symbols (objfile);
606
607   do_cleanups (back_to);
608 }
609
610 /* Initialize anything that needs initializing when a completely new
611    symbol file is specified (not just adding some symbols from another
612    file, e.g. a shared library).  */
613
614 static void
615 dbx_new_init (struct objfile *ignore)
616 {
617   stabsread_new_init ();
618   buildsym_new_init ();
619   init_header_files ();
620 }
621
622
623 /* dbx_symfile_init ()
624    is the dbx-specific initialization routine for reading symbols.
625    It is passed a struct objfile which contains, among other things,
626    the BFD for the file whose symbols are being read, and a slot for a pointer
627    to "private data" which we fill with goodies.
628
629    We read the string table into malloc'd space and stash a pointer to it.
630
631    Since BFD doesn't know how to read debug symbols in a format-independent
632    way (and may never do so...), we have to do it ourselves.  We will never
633    be called unless this is an a.out (or very similar) file. 
634    FIXME, there should be a cleaner peephole into the BFD environment here.  */
635
636 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long)    /* FIXME */
637
638 static void
639 dbx_symfile_init (struct objfile *objfile)
640 {
641   int val;
642   bfd *sym_bfd = objfile->obfd;
643   char *name = bfd_get_filename (sym_bfd);
644   asection *text_sect;
645   unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
646
647   /* Allocate struct to keep track of the symfile */
648   objfile->sym_stab_info = (struct dbx_symfile_info *)
649     xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
650   memset ((PTR) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
651
652   DBX_TEXT_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
653   DBX_DATA_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".data");
654   DBX_BSS_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".bss");
655
656   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
657 #define STRING_TABLE_OFFSET     (sym_bfd->origin + obj_str_filepos (sym_bfd))
658 #define SYMBOL_TABLE_OFFSET     (sym_bfd->origin + obj_sym_filepos (sym_bfd))
659
660   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
661
662   DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
663
664   text_sect = bfd_get_section_by_name (sym_bfd, ".text");
665   if (!text_sect)
666     error ("Can't find .text section in symbol file");
667   DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
668   DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
669
670   DBX_SYMBOL_SIZE (objfile) = obj_symbol_entry_size (sym_bfd);
671   DBX_SYMCOUNT (objfile) = bfd_get_symcount (sym_bfd);
672   DBX_SYMTAB_OFFSET (objfile) = SYMBOL_TABLE_OFFSET;
673
674   /* Read the string table and stash it away in the psymbol_obstack.  It is
675      only needed as long as we need to expand psymbols into full symbols,
676      so when we blow away the psymbol the string table goes away as well.
677      Note that gdb used to use the results of attempting to malloc the
678      string table, based on the size it read, as a form of sanity check
679      for botched byte swapping, on the theory that a byte swapped string
680      table size would be so totally bogus that the malloc would fail.  Now
681      that we put in on the psymbol_obstack, we can't do this since gdb gets
682      a fatal error (out of virtual memory) if the size is bogus.  We can
683      however at least check to see if the size is less than the size of
684      the size field itself, or larger than the size of the entire file.
685      Note that all valid string tables have a size greater than zero, since
686      the bytes used to hold the size are included in the count. */
687
688   if (STRING_TABLE_OFFSET == 0)
689     {
690       /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
691          will never be zero, even when there is no string table.  This
692          would appear to be a bug in bfd. */
693       DBX_STRINGTAB_SIZE (objfile) = 0;
694       DBX_STRINGTAB (objfile) = NULL;
695     }
696   else
697     {
698       val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
699       if (val < 0)
700         perror_with_name (name);
701
702       memset ((PTR) size_temp, 0, sizeof (size_temp));
703       val = bfd_read ((PTR) size_temp, sizeof (size_temp), 1, sym_bfd);
704       if (val < 0)
705         {
706           perror_with_name (name);
707         }
708       else if (val == 0)
709         {
710           /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
711              EOF if there is no string table, and attempting to read the size
712              from EOF will read zero bytes. */
713           DBX_STRINGTAB_SIZE (objfile) = 0;
714           DBX_STRINGTAB (objfile) = NULL;
715         }
716       else
717         {
718           /* Read some data that would appear to be the string table size.
719              If there really is a string table, then it is probably the right
720              size.  Byteswap if necessary and validate the size.  Note that
721              the minimum is DBX_STRINGTAB_SIZE_SIZE.  If we just read some
722              random data that happened to be at STRING_TABLE_OFFSET, because
723              bfd can't tell us there is no string table, the sanity checks may
724              or may not catch this. */
725           DBX_STRINGTAB_SIZE (objfile) = bfd_h_get_32 (sym_bfd, size_temp);
726
727           if (DBX_STRINGTAB_SIZE (objfile) < sizeof (size_temp)
728               || DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
729             error ("ridiculous string table size (%d bytes).",
730                    DBX_STRINGTAB_SIZE (objfile));
731
732           DBX_STRINGTAB (objfile) =
733             (char *) obstack_alloc (&objfile->psymbol_obstack,
734                                     DBX_STRINGTAB_SIZE (objfile));
735           OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile));
736
737           /* Now read in the string table in one big gulp.  */
738
739           val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
740           if (val < 0)
741             perror_with_name (name);
742           val = bfd_read (DBX_STRINGTAB (objfile), DBX_STRINGTAB_SIZE (objfile), 1,
743                           sym_bfd);
744           if (val != DBX_STRINGTAB_SIZE (objfile))
745             perror_with_name (name);
746         }
747     }
748 }
749
750 /* Perform any local cleanups required when we are done with a particular
751    objfile.  I.E, we are in the process of discarding all symbol information
752    for an objfile, freeing up all memory held for it, and unlinking the
753    objfile struct from the global list of known objfiles. */
754
755 static void
756 dbx_symfile_finish (struct objfile *objfile)
757 {
758   if (objfile->sym_stab_info != NULL)
759     {
760       if (HEADER_FILES (objfile) != NULL)
761         {
762           register int i = N_HEADER_FILES (objfile);
763           register struct header_file *hfiles = HEADER_FILES (objfile);
764
765           while (--i >= 0)
766             {
767               xfree (hfiles[i].name);
768               xfree (hfiles[i].vector);
769             }
770           xfree (hfiles);
771         }
772       mfree (objfile->md, objfile->sym_stab_info);
773     }
774   free_header_files ();
775 }
776 \f
777
778 /* Buffer for reading the symbol table entries.  */
779 static struct external_nlist symbuf[4096];
780 static int symbuf_idx;
781 static int symbuf_end;
782
783 /* cont_elem is used for continuing information in cfront.
784    It saves information about which types need to be fixed up and 
785    completed after all the stabs are read.  */
786 struct cont_elem
787   {
788     /* sym and stabstring for continuing information in cfront */
789     struct symbol *sym;
790     char *stabs;
791     /* state dependencies (statics that must be preserved) */
792     int sym_idx;
793     int sym_end;
794     int symnum;
795     int (*func) (struct objfile *, struct symbol *, char *);
796     /* other state dependencies include:
797        (assumption is that these will not change since process_now FIXME!!)
798        stringtab_global
799        n_stabs
800        objfile
801        symfile_bfd */
802   };
803
804 static struct cont_elem *cont_list = 0;
805 static int cont_limit = 0;
806 static int cont_count = 0;
807
808 /* Arrange for function F to be called with arguments SYM and P later
809    in the stabs reading process.  */
810 void
811 process_later (struct symbol *sym, char *p,
812                int (*f) (struct objfile *, struct symbol *, char *))
813 {
814
815   /* Allocate more space for the deferred list.  */
816   if (cont_count >= cont_limit - 1)
817     {
818       cont_limit += 32;         /* chunk size */
819
820       cont_list
821         = (struct cont_elem *) xrealloc (cont_list,
822                                          (cont_limit
823                                           * sizeof (struct cont_elem)));
824       if (!cont_list)
825         error ("Virtual memory exhausted\n");
826     }
827
828   /* Save state variables so we can process these stabs later.  */
829   cont_list[cont_count].sym_idx = symbuf_idx;
830   cont_list[cont_count].sym_end = symbuf_end;
831   cont_list[cont_count].symnum = symnum;
832   cont_list[cont_count].sym = sym;
833   cont_list[cont_count].stabs = p;
834   cont_list[cont_count].func = f;
835   cont_count++;
836 }
837
838 /* Call deferred funtions in CONT_LIST.  */
839
840 static void
841 process_now (struct objfile *objfile)
842 {
843   int i;
844   int save_symbuf_idx;
845   int save_symbuf_end;
846   int save_symnum;
847   struct symbol *sym;
848   char *stabs;
849   int err;
850   int (*func) (struct objfile *, struct symbol *, char *);
851
852   /* Save the state of our caller, we'll want to restore it before
853      returning.  */
854   save_symbuf_idx = symbuf_idx;
855   save_symbuf_end = symbuf_end;
856   save_symnum = symnum;
857
858   /* Iterate over all the deferred stabs.  */
859   for (i = 0; i < cont_count; i++)
860     {
861       /* Restore the state for this deferred stab.  */
862       symbuf_idx = cont_list[i].sym_idx;
863       symbuf_end = cont_list[i].sym_end;
864       symnum = cont_list[i].symnum;
865       sym = cont_list[i].sym;
866       stabs = cont_list[i].stabs;
867       func = cont_list[i].func;
868
869       /* Call the function to handle this deferrd stab.  */
870       err = (*func) (objfile, sym, stabs);
871       if (err)
872         error ("Internal error: unable to resolve stab.\n");
873     }
874
875   /* Restore our caller's state.  */
876   symbuf_idx = save_symbuf_idx;
877   symbuf_end = save_symbuf_end;
878   symnum = save_symnum;
879   cont_count = 0;
880 }
881
882
883 /* Name of last function encountered.  Used in Solaris to approximate
884    object file boundaries.  */
885 static char *last_function_name;
886
887 /* The address in memory of the string table of the object file we are
888    reading (which might not be the "main" object file, but might be a
889    shared library or some other dynamically loaded thing).  This is
890    set by read_dbx_symtab when building psymtabs, and by
891    read_ofile_symtab when building symtabs, and is used only by
892    next_symbol_text.  FIXME: If that is true, we don't need it when
893    building psymtabs, right?  */
894 static char *stringtab_global;
895
896 /* These variables are used to control fill_symbuf when the stabs
897    symbols are not contiguous (as may be the case when a COFF file is
898    linked using --split-by-reloc).  */
899 static struct stab_section_list *symbuf_sections;
900 static unsigned int symbuf_left;
901 static unsigned int symbuf_read;
902
903 /* Refill the symbol table input buffer
904    and set the variables that control fetching entries from it.
905    Reports an error if no data available.
906    This function can read past the end of the symbol table
907    (into the string table) but this does no harm.  */
908
909 static void
910 fill_symbuf (bfd *sym_bfd)
911 {
912   unsigned int count;
913   int nbytes;
914
915   if (symbuf_sections == NULL)
916     count = sizeof (symbuf);
917   else
918     {
919       if (symbuf_left <= 0)
920         {
921           file_ptr filepos = symbuf_sections->section->filepos;
922           if (bfd_seek (sym_bfd, filepos, SEEK_SET) != 0)
923             perror_with_name (bfd_get_filename (sym_bfd));
924           symbuf_left = bfd_section_size (sym_bfd, symbuf_sections->section);
925           symbol_table_offset = filepos - symbuf_read;
926           symbuf_sections = symbuf_sections->next;
927         }
928
929       count = symbuf_left;
930       if (count > sizeof (symbuf))
931         count = sizeof (symbuf);
932     }
933
934   nbytes = bfd_read ((PTR) symbuf, count, 1, sym_bfd);
935   if (nbytes < 0)
936     perror_with_name (bfd_get_filename (sym_bfd));
937   else if (nbytes == 0)
938     error ("Premature end of file reading symbol table");
939   symbuf_end = nbytes / symbol_size;
940   symbuf_idx = 0;
941   symbuf_left -= nbytes;
942   symbuf_read += nbytes;
943 }
944
945 #define INTERNALIZE_SYMBOL(intern, extern, abfd)                        \
946   {                                                                     \
947     (intern).n_type = bfd_h_get_8 (abfd, (extern)->e_type);             \
948     (intern).n_strx = bfd_h_get_32 (abfd, (extern)->e_strx);            \
949     (intern).n_desc = bfd_h_get_16 (abfd, (extern)->e_desc);            \
950     if (bfd_get_sign_extend_vma (abfd))                                 \
951       (intern).n_value = bfd_h_get_signed_32 (abfd, (extern)->e_value); \
952     else                                                                \
953       (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value);        \
954   }
955
956 /* Invariant: The symbol pointed to by symbuf_idx is the first one
957    that hasn't been swapped.  Swap the symbol at the same time
958    that symbuf_idx is incremented.  */
959
960 /* dbx allows the text of a symbol name to be continued into the
961    next symbol name!  When such a continuation is encountered
962    (a \ at the end of the text of a name)
963    call this function to get the continuation.  */
964
965 static char *
966 dbx_next_symbol_text (struct objfile *objfile)
967 {
968   struct internal_nlist nlist;
969
970   if (symbuf_idx == symbuf_end)
971     fill_symbuf (symfile_bfd);
972
973   symnum++;
974   INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd);
975   OBJSTAT (objfile, n_stabs++);
976
977   symbuf_idx++;
978
979   return nlist.n_strx + stringtab_global + file_string_table_offset;
980 }
981 \f
982 /* Initialize the list of bincls to contain none and have some
983    allocated.  */
984
985 static void
986 init_bincl_list (int number, struct objfile *objfile)
987 {
988   bincls_allocated = number;
989   next_bincl = bincl_list = (struct header_file_location *)
990     xmmalloc (objfile->md, bincls_allocated * sizeof (struct header_file_location));
991 }
992
993 /* Add a bincl to the list.  */
994
995 static void
996 add_bincl_to_list (struct partial_symtab *pst, char *name, int instance)
997 {
998   if (next_bincl >= bincl_list + bincls_allocated)
999     {
1000       int offset = next_bincl - bincl_list;
1001       bincls_allocated *= 2;
1002       bincl_list = (struct header_file_location *)
1003         xmrealloc (pst->objfile->md, (char *) bincl_list,
1004                    bincls_allocated * sizeof (struct header_file_location));
1005       next_bincl = bincl_list + offset;
1006     }
1007   next_bincl->pst = pst;
1008   next_bincl->instance = instance;
1009   next_bincl++->name = name;
1010 }
1011
1012 /* Given a name, value pair, find the corresponding
1013    bincl in the list.  Return the partial symtab associated
1014    with that header_file_location.  */
1015
1016 static struct partial_symtab *
1017 find_corresponding_bincl_psymtab (char *name, int instance)
1018 {
1019   struct header_file_location *bincl;
1020
1021   for (bincl = bincl_list; bincl < next_bincl; bincl++)
1022     if (bincl->instance == instance
1023         && STREQ (name, bincl->name))
1024       return bincl->pst;
1025
1026   complain (&repeated_header_complaint, name, symnum);
1027   return (struct partial_symtab *) 0;
1028 }
1029
1030 /* Free the storage allocated for the bincl list.  */
1031
1032 static void
1033 free_bincl_list (struct objfile *objfile)
1034 {
1035   mfree (objfile->md, (PTR) bincl_list);
1036   bincls_allocated = 0;
1037 }
1038
1039 static void
1040 do_free_bincl_list_cleanup (void *objfile)
1041 {
1042   free_bincl_list (objfile);
1043 }
1044
1045 static struct cleanup *
1046 make_cleanup_free_bincl_list (struct objfile *objfile)
1047 {
1048   return make_cleanup (do_free_bincl_list_cleanup, objfile);
1049 }
1050
1051 /* Scan a SunOs dynamic symbol table for symbols of interest and
1052    add them to the minimal symbol table.  */
1053
1054 static void
1055 read_dbx_dynamic_symtab (struct objfile *objfile)
1056 {
1057   bfd *abfd = objfile->obfd;
1058   struct cleanup *back_to;
1059   int counter;
1060   long dynsym_size;
1061   long dynsym_count;
1062   asymbol **dynsyms;
1063   asymbol **symptr;
1064   arelent **relptr;
1065   long dynrel_size;
1066   long dynrel_count;
1067   arelent **dynrels;
1068   CORE_ADDR sym_value;
1069   char *name;
1070
1071   /* Check that the symbol file has dynamic symbols that we know about.
1072      bfd_arch_unknown can happen if we are reading a sun3 symbol file
1073      on a sun4 host (and vice versa) and bfd is not configured
1074      --with-target=all.  This would trigger an assertion in bfd/sunos.c,
1075      so we ignore the dynamic symbols in this case.  */
1076   if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
1077       || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
1078       || bfd_get_arch (abfd) == bfd_arch_unknown)
1079     return;
1080
1081   dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
1082   if (dynsym_size < 0)
1083     return;
1084
1085   dynsyms = (asymbol **) xmalloc (dynsym_size);
1086   back_to = make_cleanup (xfree, dynsyms);
1087
1088   dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
1089   if (dynsym_count < 0)
1090     {
1091       do_cleanups (back_to);
1092       return;
1093     }
1094
1095   /* Enter dynamic symbols into the minimal symbol table
1096      if this is a stripped executable.  */
1097   if (bfd_get_symcount (abfd) <= 0)
1098     {
1099       symptr = dynsyms;
1100       for (counter = 0; counter < dynsym_count; counter++, symptr++)
1101         {
1102           asymbol *sym = *symptr;
1103           asection *sec;
1104           int type;
1105
1106           sec = bfd_get_section (sym);
1107
1108           /* BFD symbols are section relative.  */
1109           sym_value = sym->value + sec->vma;
1110
1111           if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
1112             {
1113               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1114               type = N_TEXT;
1115             }
1116           else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
1117             {
1118               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1119               type = N_DATA;
1120             }
1121           else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
1122             {
1123               sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
1124               type = N_BSS;
1125             }
1126           else
1127             continue;
1128
1129           if (sym->flags & BSF_GLOBAL)
1130             type |= N_EXT;
1131
1132           record_minimal_symbol ((char *) bfd_asymbol_name (sym), sym_value,
1133                                  type, objfile);
1134         }
1135     }
1136
1137   /* Symbols from shared libraries have a dynamic relocation entry
1138      that points to the associated slot in the procedure linkage table.
1139      We make a mininal symbol table entry with type mst_solib_trampoline
1140      at the address in the procedure linkage table.  */
1141   dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
1142   if (dynrel_size < 0)
1143     {
1144       do_cleanups (back_to);
1145       return;
1146     }
1147
1148   dynrels = (arelent **) xmalloc (dynrel_size);
1149   make_cleanup (xfree, dynrels);
1150
1151   dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
1152   if (dynrel_count < 0)
1153     {
1154       do_cleanups (back_to);
1155       return;
1156     }
1157
1158   for (counter = 0, relptr = dynrels;
1159        counter < dynrel_count;
1160        counter++, relptr++)
1161     {
1162       arelent *rel = *relptr;
1163       CORE_ADDR address =
1164       rel->address + ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1165
1166       switch (bfd_get_arch (abfd))
1167         {
1168         case bfd_arch_sparc:
1169           if (rel->howto->type != RELOC_JMP_SLOT)
1170             continue;
1171           break;
1172         case bfd_arch_m68k:
1173           /* `16' is the type BFD produces for a jump table relocation.  */
1174           if (rel->howto->type != 16)
1175             continue;
1176
1177           /* Adjust address in the jump table to point to
1178              the start of the bsr instruction.  */
1179           address -= 2;
1180           break;
1181         default:
1182           continue;
1183         }
1184
1185       name = (char *) bfd_asymbol_name (*rel->sym_ptr_ptr);
1186       prim_record_minimal_symbol (name, address, mst_solib_trampoline,
1187                                   objfile);
1188     }
1189
1190   do_cleanups (back_to);
1191 }
1192
1193 /* Setup partial_symtab's describing each source file for which
1194    debugging information is available. */
1195
1196 static void
1197 read_dbx_symtab (struct objfile *objfile)
1198 {
1199   register struct external_nlist *bufp = 0;     /* =0 avoids gcc -Wall glitch */
1200   struct internal_nlist nlist;
1201   CORE_ADDR text_addr;
1202   int text_size;
1203
1204   register char *namestring;
1205   int nsl;
1206   int past_first_source_file = 0;
1207   CORE_ADDR last_o_file_start = 0;
1208   CORE_ADDR last_function_start = 0;
1209   struct cleanup *back_to;
1210   bfd *abfd;
1211   int textlow_not_set;
1212
1213   /* Current partial symtab */
1214   struct partial_symtab *pst;
1215
1216   /* List of current psymtab's include files */
1217   char **psymtab_include_list;
1218   int includes_allocated;
1219   int includes_used;
1220
1221   /* Index within current psymtab dependency list */
1222   struct partial_symtab **dependency_list;
1223   int dependencies_used, dependencies_allocated;
1224
1225   text_addr = DBX_TEXT_ADDR (objfile);
1226   text_size = DBX_TEXT_SIZE (objfile);
1227
1228   /* FIXME.  We probably want to change stringtab_global rather than add this
1229      while processing every symbol entry.  FIXME.  */
1230   file_string_table_offset = 0;
1231   next_file_string_table_offset = 0;
1232
1233   stringtab_global = DBX_STRINGTAB (objfile);
1234
1235   pst = (struct partial_symtab *) 0;
1236
1237   includes_allocated = 30;
1238   includes_used = 0;
1239   psymtab_include_list = (char **) alloca (includes_allocated *
1240                                            sizeof (char *));
1241
1242   dependencies_allocated = 30;
1243   dependencies_used = 0;
1244   dependency_list =
1245     (struct partial_symtab **) alloca (dependencies_allocated *
1246                                        sizeof (struct partial_symtab *));
1247
1248   /* Init bincl list */
1249   init_bincl_list (20, objfile);
1250   back_to = make_cleanup_free_bincl_list (objfile);
1251
1252   last_source_file = NULL;
1253
1254   lowest_text_address = (CORE_ADDR) -1;
1255
1256   symfile_bfd = objfile->obfd;  /* For next_text_symbol */
1257   abfd = objfile->obfd;
1258   symbuf_end = symbuf_idx = 0;
1259   next_symbol_text_func = dbx_next_symbol_text;
1260   textlow_not_set = 1;
1261   has_line_numbers = 0;
1262
1263   for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
1264     {
1265       /* Get the symbol for this run and pull out some info */
1266       QUIT;                     /* allow this to be interruptable */
1267       if (symbuf_idx == symbuf_end)
1268         fill_symbuf (abfd);
1269       bufp = &symbuf[symbuf_idx++];
1270
1271       /*
1272        * Special case to speed up readin.
1273        */
1274       if (bfd_h_get_8 (abfd, bufp->e_type) == N_SLINE)
1275         {
1276           has_line_numbers = 1;
1277           continue;
1278         }
1279
1280       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1281       OBJSTAT (objfile, n_stabs++);
1282
1283       /* Ok.  There is a lot of code duplicated in the rest of this
1284          switch statement (for efficiency reasons).  Since I don't
1285          like duplicating code, I will do my penance here, and
1286          describe the code which is duplicated:
1287
1288          *) The assignment to namestring.
1289          *) The call to strchr.
1290          *) The addition of a partial symbol the the two partial
1291          symbol lists.  This last is a large section of code, so
1292          I've imbedded it in the following macro.
1293        */
1294
1295 /* Set namestring based on nlist.  If the string table index is invalid, 
1296    give a fake name, and print a single error message per symbol file read,
1297    rather than abort the symbol reading or flood the user with messages.  */
1298
1299 /*FIXME: Too many adds and indirections in here for the inner loop.  */
1300 #define SET_NAMESTRING()\
1301   if (((unsigned)CUR_SYMBOL_STRX + file_string_table_offset) >=         \
1302       DBX_STRINGTAB_SIZE (objfile)) {                                   \
1303     complain (&string_table_offset_complaint, symnum);                  \
1304     namestring = "<bad string table offset>";                           \
1305   } else                                                                \
1306     namestring = CUR_SYMBOL_STRX + file_string_table_offset +           \
1307                  DBX_STRINGTAB (objfile)
1308
1309 #define CUR_SYMBOL_TYPE nlist.n_type
1310 #define CUR_SYMBOL_VALUE nlist.n_value
1311 #define CUR_SYMBOL_STRX nlist.n_strx
1312 #define DBXREAD_ONLY
1313 #define START_PSYMTAB(ofile,fname,low,symoff,global_syms,static_syms)\
1314   start_psymtab(ofile, fname, low, symoff, global_syms, static_syms)
1315 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)\
1316   end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)
1317
1318 #include "partial-stab.h"
1319     }
1320
1321   /* If there's stuff to be cleaned up, clean it up.  */
1322   if (DBX_SYMCOUNT (objfile) > 0        /* We have some syms */
1323 /*FIXME, does this have a bug at start address 0? */
1324       && last_o_file_start
1325       && objfile->ei.entry_point < nlist.n_value
1326       && objfile->ei.entry_point >= last_o_file_start)
1327     {
1328       objfile->ei.entry_file_lowpc = last_o_file_start;
1329       objfile->ei.entry_file_highpc = nlist.n_value;
1330     }
1331
1332   if (pst)
1333     {
1334       /* Don't set pst->texthigh lower than it already is.  */
1335       CORE_ADDR text_end =
1336       (lowest_text_address == (CORE_ADDR) -1
1337        ? (text_addr + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))
1338        : lowest_text_address)
1339       + text_size;
1340
1341       end_psymtab (pst, psymtab_include_list, includes_used,
1342                    symnum * symbol_size,
1343                    text_end > pst->texthigh ? text_end : pst->texthigh,
1344                    dependency_list, dependencies_used, textlow_not_set);
1345     }
1346
1347   do_cleanups (back_to);
1348 }
1349
1350 /* Allocate and partially fill a partial symtab.  It will be
1351    completely filled at the end of the symbol list.
1352
1353    SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1354    is the address relative to which its symbols are (incremental) or 0
1355    (normal). */
1356
1357
1358 static struct partial_symtab *
1359 start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
1360                int ldsymoff, struct partial_symbol **global_syms,
1361                struct partial_symbol **static_syms)
1362 {
1363   struct partial_symtab *result =
1364   start_psymtab_common (objfile, objfile->section_offsets,
1365                         filename, textlow, global_syms, static_syms);
1366
1367   result->read_symtab_private = (char *)
1368     obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
1369   LDSYMOFF (result) = ldsymoff;
1370   result->read_symtab = dbx_psymtab_to_symtab;
1371   SYMBOL_SIZE (result) = symbol_size;
1372   SYMBOL_OFFSET (result) = symbol_table_offset;
1373   STRING_OFFSET (result) = string_table_offset;
1374   FILE_STRING_OFFSET (result) = file_string_table_offset;
1375
1376   /* If we're handling an ELF file, drag some section-relocation info
1377      for this source file out of the ELF symbol table, to compensate for
1378      Sun brain death.  This replaces the section_offsets in this psymtab,
1379      if successful.  */
1380   elfstab_offset_sections (objfile, result);
1381
1382   /* Deduce the source language from the filename for this psymtab. */
1383   psymtab_language = deduce_language_from_filename (filename);
1384
1385   return result;
1386 }
1387
1388 /* Close off the current usage of PST.  
1389    Returns PST or NULL if the partial symtab was empty and thrown away.
1390
1391    FIXME:  List variables and peculiarities of same.  */
1392
1393 struct partial_symtab *
1394 end_psymtab (struct partial_symtab *pst, char **include_list, int num_includes,
1395              int capping_symbol_offset, CORE_ADDR capping_text,
1396              struct partial_symtab **dependency_list, int number_dependencies,
1397              int textlow_not_set)
1398 {
1399   int i;
1400   struct objfile *objfile = pst->objfile;
1401
1402   if (capping_symbol_offset != -1)
1403     LDSYMLEN (pst) = capping_symbol_offset - LDSYMOFF (pst);
1404   pst->texthigh = capping_text;
1405
1406 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1407   /* Under Solaris, the N_SO symbols always have a value of 0,
1408      instead of the usual address of the .o file.  Therefore,
1409      we have to do some tricks to fill in texthigh and textlow.
1410      The first trick is in partial-stab.h: if we see a static
1411      or global function, and the textlow for the current pst
1412      is not set (ie: textlow_not_set), then we use that function's
1413      address for the textlow of the pst.  */
1414
1415   /* Now, to fill in texthigh, we remember the last function seen
1416      in the .o file (also in partial-stab.h).  Also, there's a hack in
1417      bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1418      to here via the misc_info field.  Therefore, we can fill in
1419      a reliable texthigh by taking the address plus size of the
1420      last function in the file.  */
1421
1422   if (pst->texthigh == 0 && last_function_name)
1423     {
1424       char *p;
1425       int n;
1426       struct minimal_symbol *minsym;
1427
1428       p = strchr (last_function_name, ':');
1429       if (p == NULL)
1430         p = last_function_name;
1431       n = p - last_function_name;
1432       p = alloca (n + 2);
1433       strncpy (p, last_function_name, n);
1434       p[n] = 0;
1435
1436       minsym = lookup_minimal_symbol (p, pst->filename, objfile);
1437       if (minsym == NULL)
1438         {
1439           /* Sun Fortran appends an underscore to the minimal symbol name,
1440              try again with an appended underscore if the minimal symbol
1441              was not found.  */
1442           p[n] = '_';
1443           p[n + 1] = 0;
1444           minsym = lookup_minimal_symbol (p, pst->filename, objfile);
1445         }
1446
1447       if (minsym)
1448         pst->texthigh = SYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym);
1449
1450       last_function_name = NULL;
1451     }
1452
1453   /* this test will be true if the last .o file is only data */
1454   if (textlow_not_set)
1455     pst->textlow = pst->texthigh;
1456   else
1457     {
1458       struct partial_symtab *p1;
1459
1460       /* If we know our own starting text address, then walk through all other
1461          psymtabs for this objfile, and if any didn't know their ending text
1462          address, set it to our starting address.  Take care to not set our
1463          own ending address to our starting address, nor to set addresses on
1464          `dependency' files that have both textlow and texthigh zero.  */
1465
1466       ALL_OBJFILE_PSYMTABS (objfile, p1)
1467       {
1468         if (p1->texthigh == 0 && p1->textlow != 0 && p1 != pst)
1469           {
1470             p1->texthigh = pst->textlow;
1471             /* if this file has only data, then make textlow match texthigh */
1472             if (p1->textlow == 0)
1473               p1->textlow = p1->texthigh;
1474           }
1475       }
1476     }
1477
1478   /* End of kludge for patching Solaris textlow and texthigh.  */
1479 #endif /* SOFUN_ADDRESS_MAYBE_MISSING.  */
1480
1481   pst->n_global_syms =
1482     objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
1483   pst->n_static_syms =
1484     objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
1485
1486   pst->number_of_dependencies = number_dependencies;
1487   if (number_dependencies)
1488     {
1489       pst->dependencies = (struct partial_symtab **)
1490         obstack_alloc (&objfile->psymbol_obstack,
1491                     number_dependencies * sizeof (struct partial_symtab *));
1492       memcpy (pst->dependencies, dependency_list,
1493               number_dependencies * sizeof (struct partial_symtab *));
1494     }
1495   else
1496     pst->dependencies = 0;
1497
1498   for (i = 0; i < num_includes; i++)
1499     {
1500       struct partial_symtab *subpst =
1501       allocate_psymtab (include_list[i], objfile);
1502
1503       /* Copy the sesction_offsets array from the main psymtab. */
1504       subpst->section_offsets = pst->section_offsets;
1505       subpst->read_symtab_private =
1506         (char *) obstack_alloc (&objfile->psymbol_obstack,
1507                                 sizeof (struct symloc));
1508       LDSYMOFF (subpst) =
1509         LDSYMLEN (subpst) =
1510         subpst->textlow =
1511         subpst->texthigh = 0;
1512
1513       /* We could save slight bits of space by only making one of these,
1514          shared by the entire set of include files.  FIXME-someday.  */
1515       subpst->dependencies = (struct partial_symtab **)
1516         obstack_alloc (&objfile->psymbol_obstack,
1517                        sizeof (struct partial_symtab *));
1518       subpst->dependencies[0] = pst;
1519       subpst->number_of_dependencies = 1;
1520
1521       subpst->globals_offset =
1522         subpst->n_global_syms =
1523         subpst->statics_offset =
1524         subpst->n_static_syms = 0;
1525
1526       subpst->readin = 0;
1527       subpst->symtab = 0;
1528       subpst->read_symtab = pst->read_symtab;
1529     }
1530
1531   sort_pst_symbols (pst);
1532
1533   /* If there is already a psymtab or symtab for a file of this name, remove it.
1534      (If there is a symtab, more drastic things also happen.)
1535      This happens in VxWorks.  */
1536   free_named_symtabs (pst->filename);
1537
1538   if (num_includes == 0
1539       && number_dependencies == 0
1540       && pst->n_global_syms == 0
1541       && pst->n_static_syms == 0
1542       && has_line_numbers == 0)
1543     {
1544       /* Throw away this psymtab, it's empty.  We can't deallocate it, since
1545          it is on the obstack, but we can forget to chain it on the list.  */
1546       /* Empty psymtabs happen as a result of header files which don't have
1547          any symbols in them.  There can be a lot of them.  But this check
1548          is wrong, in that a psymtab with N_SLINE entries but nothing else
1549          is not empty, but we don't realize that.  Fixing that without slowing
1550          things down might be tricky.  */
1551
1552       discard_psymtab (pst);
1553
1554       /* Indicate that psymtab was thrown away.  */
1555       pst = (struct partial_symtab *) NULL;
1556     }
1557   return pst;
1558 }
1559 \f
1560 static void
1561 dbx_psymtab_to_symtab_1 (struct partial_symtab *pst)
1562 {
1563   struct cleanup *old_chain;
1564   int i;
1565
1566   if (!pst)
1567     return;
1568
1569   if (pst->readin)
1570     {
1571       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
1572                           pst->filename);
1573       return;
1574     }
1575
1576   /* Read in all partial symtabs on which this one is dependent */
1577   for (i = 0; i < pst->number_of_dependencies; i++)
1578     if (!pst->dependencies[i]->readin)
1579       {
1580         /* Inform about additional files that need to be read in.  */
1581         if (info_verbose)
1582           {
1583             fputs_filtered (" ", gdb_stdout);
1584             wrap_here ("");
1585             fputs_filtered ("and ", gdb_stdout);
1586             wrap_here ("");
1587             printf_filtered ("%s...", pst->dependencies[i]->filename);
1588             wrap_here ("");     /* Flush output */
1589             gdb_flush (gdb_stdout);
1590           }
1591         dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
1592       }
1593
1594   if (LDSYMLEN (pst))           /* Otherwise it's a dummy */
1595     {
1596       /* Init stuff necessary for reading in symbols */
1597       stabsread_init ();
1598       buildsym_init ();
1599       old_chain = make_cleanup (really_free_pendings, 0);
1600       file_string_table_offset = FILE_STRING_OFFSET (pst);
1601       symbol_size = SYMBOL_SIZE (pst);
1602
1603       /* Read in this file's symbols */
1604       bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
1605       read_ofile_symtab (pst);
1606       sort_symtab_syms (pst->symtab);
1607
1608       do_cleanups (old_chain);
1609     }
1610
1611   pst->readin = 1;
1612 }
1613
1614 /* Read in all of the symbols for a given psymtab for real.
1615    Be verbose about it if the user wants that.  */
1616
1617 static void
1618 dbx_psymtab_to_symtab (struct partial_symtab *pst)
1619 {
1620   bfd *sym_bfd;
1621
1622   if (!pst)
1623     return;
1624
1625   if (pst->readin)
1626     {
1627       fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
1628                           pst->filename);
1629       return;
1630     }
1631
1632   if (LDSYMLEN (pst) || pst->number_of_dependencies)
1633     {
1634       /* Print the message now, before reading the string table,
1635          to avoid disconcerting pauses.  */
1636       if (info_verbose)
1637         {
1638           printf_filtered ("Reading in symbols for %s...", pst->filename);
1639           gdb_flush (gdb_stdout);
1640         }
1641
1642       sym_bfd = pst->objfile->obfd;
1643
1644       next_symbol_text_func = dbx_next_symbol_text;
1645
1646       dbx_psymtab_to_symtab_1 (pst);
1647
1648       /* Match with global symbols.  This only needs to be done once,
1649          after all of the symtabs and dependencies have been read in.   */
1650       scan_file_globals (pst->objfile);
1651
1652       /* Finish up the debug error message.  */
1653       if (info_verbose)
1654         printf_filtered ("done.\n");
1655     }
1656 }
1657
1658 /* Read in a defined section of a specific object file's symbols. */
1659
1660 static void
1661 read_ofile_symtab (struct partial_symtab *pst)
1662 {
1663   register char *namestring;
1664   register struct external_nlist *bufp;
1665   struct internal_nlist nlist;
1666   unsigned char type;
1667   unsigned max_symnum;
1668   register bfd *abfd;
1669   struct objfile *objfile;
1670   int sym_offset;               /* Offset to start of symbols to read */
1671   int sym_size;                 /* Size of symbols to read */
1672   CORE_ADDR text_offset;        /* Start of text segment for symbols */
1673   int text_size;                /* Size of text segment for symbols */
1674   struct section_offsets *section_offsets;
1675
1676   objfile = pst->objfile;
1677   sym_offset = LDSYMOFF (pst);
1678   sym_size = LDSYMLEN (pst);
1679   text_offset = pst->textlow;
1680   text_size = pst->texthigh - pst->textlow;
1681   /* This cannot be simply objfile->section_offsets because of
1682      elfstab_offset_sections() which initializes the psymtab section
1683      offsets information in a special way, and that is different from
1684      objfile->section_offsets. */ 
1685   section_offsets = pst->section_offsets;
1686
1687   current_objfile = objfile;
1688   subfile_stack = NULL;
1689
1690   stringtab_global = DBX_STRINGTAB (objfile);
1691   last_source_file = NULL;
1692
1693   abfd = objfile->obfd;
1694   symfile_bfd = objfile->obfd;  /* Implicit param to next_text_symbol */
1695   symbuf_end = symbuf_idx = 0;
1696
1697   /* It is necessary to actually read one symbol *before* the start
1698      of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1699      occurs before the N_SO symbol.
1700
1701      Detecting this in read_dbx_symtab
1702      would slow down initial readin, so we look for it here instead.  */
1703   if (!processing_acc_compilation && sym_offset >= (int) symbol_size)
1704     {
1705       bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
1706       fill_symbuf (abfd);
1707       bufp = &symbuf[symbuf_idx++];
1708       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1709       OBJSTAT (objfile, n_stabs++);
1710
1711       SET_NAMESTRING ();
1712
1713       processing_gcc_compilation = 0;
1714       if (nlist.n_type == N_TEXT)
1715         {
1716           const char *tempstring = namestring;
1717
1718           if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1719             processing_gcc_compilation = 1;
1720           else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1721             processing_gcc_compilation = 2;
1722           if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
1723             ++tempstring;
1724           if (STREQN (tempstring, "__gnu_compiled", 14))
1725             processing_gcc_compilation = 2;
1726         }
1727
1728       /* Try to select a C++ demangling based on the compilation unit
1729          producer. */
1730
1731 #if 0
1732       /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
1733          know whether it will use the old style or v3 mangling.  */
1734       if (processing_gcc_compilation)
1735         {
1736           if (AUTO_DEMANGLING)
1737             {
1738               set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1739             }
1740         }
1741 #endif
1742     }
1743   else
1744     {
1745       /* The N_SO starting this symtab is the first symbol, so we
1746          better not check the symbol before it.  I'm not this can
1747          happen, but it doesn't hurt to check for it.  */
1748       bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
1749       processing_gcc_compilation = 0;
1750     }
1751
1752   if (symbuf_idx == symbuf_end)
1753     fill_symbuf (abfd);
1754   bufp = &symbuf[symbuf_idx];
1755   if (bfd_h_get_8 (abfd, bufp->e_type) != N_SO)
1756     error ("First symbol in segment of executable not a source symbol");
1757
1758   max_symnum = sym_size / symbol_size;
1759
1760   for (symnum = 0;
1761        symnum < max_symnum;
1762        symnum++)
1763     {
1764       QUIT;                     /* Allow this to be interruptable */
1765       if (symbuf_idx == symbuf_end)
1766         fill_symbuf (abfd);
1767       bufp = &symbuf[symbuf_idx++];
1768       INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1769       OBJSTAT (objfile, n_stabs++);
1770
1771       type = bfd_h_get_8 (abfd, bufp->e_type);
1772
1773       SET_NAMESTRING ();
1774
1775       if (type & N_STAB)
1776         {
1777           process_one_symbol (type, nlist.n_desc, nlist.n_value,
1778                               namestring, section_offsets, objfile);
1779         }
1780       /* We skip checking for a new .o or -l file; that should never
1781          happen in this routine. */
1782       else if (type == N_TEXT)
1783         {
1784           /* I don't think this code will ever be executed, because
1785              the GCC_COMPILED_FLAG_SYMBOL usually is right before
1786              the N_SO symbol which starts this source file.
1787              However, there is no reason not to accept
1788              the GCC_COMPILED_FLAG_SYMBOL anywhere.  */
1789
1790           if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1791             processing_gcc_compilation = 1;
1792           else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1793             processing_gcc_compilation = 2;
1794
1795 #if 0
1796           /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
1797              know whether it will use the old style or v3 mangling.  */
1798           if (AUTO_DEMANGLING)
1799             {
1800               set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1801             }
1802 #endif
1803         }
1804       else if (type & N_EXT || type == (unsigned char) N_TEXT
1805                || type == (unsigned char) N_NBTEXT
1806         )
1807         {
1808           /* Global symbol: see if we came across a dbx defintion for
1809              a corresponding symbol.  If so, store the value.  Remove
1810              syms from the chain when their values are stored, but
1811              search the whole chain, as there may be several syms from
1812              different files with the same name. */
1813           /* This is probably not true.  Since the files will be read
1814              in one at a time, each reference to a global symbol will
1815              be satisfied in each file as it appears. So we skip this
1816              section. */
1817           ;
1818         }
1819     }
1820
1821   current_objfile = NULL;
1822
1823   /* In a Solaris elf file, this variable, which comes from the
1824      value of the N_SO symbol, will still be 0.  Luckily, text_offset,
1825      which comes from pst->textlow is correct. */
1826   if (last_source_start_addr == 0)
1827     last_source_start_addr = text_offset;
1828
1829   /* In reordered executables last_source_start_addr may not be the
1830      lower bound for this symtab, instead use text_offset which comes
1831      from pst->textlow which is correct.  */
1832   if (last_source_start_addr > text_offset)
1833     last_source_start_addr = text_offset;
1834
1835   pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
1836
1837   /* Process items which we had to "process_later" due to dependencies 
1838      on other stabs.  */
1839   process_now (objfile);
1840
1841   end_stabs ();
1842 }
1843 \f
1844
1845 /* This handles a single symbol from the symbol-file, building symbols
1846    into a GDB symtab.  It takes these arguments and an implicit argument.
1847
1848    TYPE is the type field of the ".stab" symbol entry.
1849    DESC is the desc field of the ".stab" entry.
1850    VALU is the value field of the ".stab" entry.
1851    NAME is the symbol name, in our address space.
1852    SECTION_OFFSETS is a set of amounts by which the sections of this object
1853    file were relocated when it was loaded into memory.
1854    Note that these section_offsets are not the 
1855    objfile->section_offsets but the pst->section_offsets.
1856    All symbols that refer
1857    to memory locations need to be offset by these amounts.
1858    OBJFILE is the object file from which we are reading symbols.
1859    It is used in end_symtab.  */
1860
1861 void
1862 process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
1863                     struct section_offsets *section_offsets,
1864                     struct objfile *objfile)
1865 {
1866 #ifdef SUN_FIXED_LBRAC_BUG
1867   /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
1868      to correct the address of N_LBRAC's.  If it is not defined, then
1869      we never need to correct the addresses.  */
1870
1871   /* This records the last pc address we've seen.  We depend on there being
1872      an SLINE or FUN or SO before the first LBRAC, since the variable does
1873      not get reset in between reads of different symbol files.  */
1874   static CORE_ADDR last_pc_address;
1875 #endif
1876
1877   register struct context_stack *new;
1878   /* This remembers the address of the start of a function.  It is used
1879      because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
1880      relative to the current function's start address.  On systems
1881      other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
1882      used to relocate these symbol types rather than SECTION_OFFSETS.  */
1883   static CORE_ADDR function_start_offset;
1884
1885   /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
1886      file.  Used to detect the SunPRO solaris compiler.  */
1887   static int n_opt_found;
1888
1889   /* The stab type used for the definition of the last function.
1890      N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers.  */
1891   static int function_stab_type = 0;
1892
1893   if (!block_address_function_relative)
1894     /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
1895        function start address, so just use the text offset.  */
1896     function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
1897
1898   /* Something is wrong if we see real data before
1899      seeing a source file name.  */
1900
1901   if (last_source_file == NULL && type != (unsigned char) N_SO)
1902     {
1903       /* Ignore any symbols which appear before an N_SO symbol.
1904          Currently no one puts symbols there, but we should deal
1905          gracefully with the case.  A complain()t might be in order,
1906          but this should not be an error ().  */
1907       return;
1908     }
1909
1910   switch (type)
1911     {
1912     case N_FUN:
1913     case N_FNAME:
1914
1915       if (*name == '\000')
1916         {
1917           /* This N_FUN marks the end of a function.  This closes off the
1918              current block.  */
1919           within_function = 0;
1920           new = pop_context ();
1921
1922           /* Make a block for the local symbols within.  */
1923           finish_block (new->name, &local_symbols, new->old_blocks,
1924                         new->start_addr, new->start_addr + valu,
1925                         objfile);
1926
1927           /* May be switching to an assembler file which may not be using
1928              block relative stabs, so reset the offset.  */
1929           if (block_address_function_relative)
1930             function_start_offset = 0;
1931
1932           break;
1933         }
1934
1935       /* Relocate for dynamic loading */
1936       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
1937 #ifdef SMASH_TEXT_ADDRESS
1938       SMASH_TEXT_ADDRESS (valu);
1939 #endif
1940       goto define_a_symbol;
1941
1942     case N_LBRAC:
1943       /* This "symbol" just indicates the start of an inner lexical
1944          context within a function.  */
1945
1946       /* Ignore extra outermost context from SunPRO cc and acc.  */
1947       if (n_opt_found && desc == 1)
1948         break;
1949
1950       if (block_address_function_relative)
1951         /* Relocate for Sun ELF acc fn-relative syms.  */
1952         valu += function_start_offset;
1953       else
1954         /* On most machines, the block addresses are relative to the
1955            N_SO, the linker did not relocate them (sigh).  */
1956         valu += last_source_start_addr;
1957
1958 #ifdef SUN_FIXED_LBRAC_BUG
1959       if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address)
1960         {
1961           /* Patch current LBRAC pc value to match last handy pc value */
1962           complain (&lbrac_complaint);
1963           valu = last_pc_address;
1964         }
1965 #endif
1966       new = push_context (desc, valu);
1967       break;
1968
1969     case N_RBRAC:
1970       /* This "symbol" just indicates the end of an inner lexical
1971          context that was started with N_LBRAC.  */
1972
1973       /* Ignore extra outermost context from SunPRO cc and acc.  */
1974       if (n_opt_found && desc == 1)
1975         break;
1976
1977       if (block_address_function_relative)
1978         /* Relocate for Sun ELF acc fn-relative syms.  */
1979         valu += function_start_offset;
1980       else
1981         /* On most machines, the block addresses are relative to the
1982            N_SO, the linker did not relocate them (sigh).  */
1983         valu += last_source_start_addr;
1984
1985       new = pop_context ();
1986       if (desc != new->depth)
1987         complain (&lbrac_mismatch_complaint, symnum);
1988
1989       /* Some compilers put the variable decls inside of an
1990          LBRAC/RBRAC block.  This macro should be nonzero if this
1991          is true.  DESC is N_DESC from the N_RBRAC symbol.
1992          GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
1993          or the GCC2_COMPILED_SYMBOL.  */
1994 #if !defined (VARIABLES_INSIDE_BLOCK)
1995 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
1996 #endif
1997
1998       /* Can only use new->locals as local symbols here if we're in
1999          gcc or on a machine that puts them before the lbrack.  */
2000       if (!VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2001         local_symbols = new->locals;
2002
2003       if (context_stack_depth
2004           > !VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2005         {
2006           /* This is not the outermost LBRAC...RBRAC pair in the function,
2007              its local symbols preceded it, and are the ones just recovered
2008              from the context stack.  Define the block for them (but don't
2009              bother if the block contains no symbols.  Should we complain
2010              on blocks without symbols?  I can't think of any useful purpose
2011              for them).  */
2012           if (local_symbols != NULL)
2013             {
2014               /* Muzzle a compiler bug that makes end < start.  (which
2015                  compilers?  Is this ever harmful?).  */
2016               if (new->start_addr > valu)
2017                 {
2018                   complain (&lbrac_rbrac_complaint);
2019                   new->start_addr = valu;
2020                 }
2021               /* Make a block for the local symbols within.  */
2022               finish_block (0, &local_symbols, new->old_blocks,
2023                             new->start_addr, valu, objfile);
2024             }
2025         }
2026       else
2027         {
2028           /* This is the outermost LBRAC...RBRAC pair.  There is no
2029              need to do anything; leave the symbols that preceded it
2030              to be attached to the function's own block.  We need to
2031              indicate that we just moved outside of the function.  */
2032           within_function = 0;
2033         }
2034
2035       if (VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2036         /* Now pop locals of block just finished.  */
2037         local_symbols = new->locals;
2038       break;
2039
2040     case N_FN:
2041     case N_FN_SEQ:
2042       /* This kind of symbol indicates the start of an object file.  */
2043       /* Relocate for dynamic loading */
2044       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2045       break;
2046
2047     case N_SO:
2048       /* This type of symbol indicates the start of data
2049          for one source file.
2050          Finish the symbol table of the previous source file
2051          (if any) and start accumulating a new symbol table.  */
2052       /* Relocate for dynamic loading */
2053       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2054
2055       n_opt_found = 0;
2056
2057 #ifdef SUN_FIXED_LBRAC_BUG
2058       last_pc_address = valu;   /* Save for SunOS bug circumcision */
2059 #endif
2060
2061 #ifdef PCC_SOL_BROKEN
2062       /* pcc bug, occasionally puts out SO for SOL.  */
2063       if (context_stack_depth > 0)
2064         {
2065           start_subfile (name, NULL);
2066           break;
2067         }
2068 #endif
2069       if (last_source_file)
2070         {
2071           /* Check if previous symbol was also an N_SO (with some
2072              sanity checks).  If so, that one was actually the directory
2073              name, and the current one is the real file name.
2074              Patch things up. */
2075           if (previous_stab_code == (unsigned char) N_SO)
2076             {
2077               patch_subfile_names (current_subfile, name);
2078               break;            /* Ignore repeated SOs */
2079             }
2080           end_symtab (valu, objfile, SECT_OFF_TEXT (objfile));
2081           end_stabs ();
2082         }
2083
2084       /* Null name means this just marks the end of text for this .o file.
2085          Don't start a new symtab in this case.  */
2086       if (*name == '\000')
2087         break;
2088
2089       if (block_address_function_relative)
2090         function_start_offset = 0;
2091
2092       start_stabs ();
2093       start_symtab (name, NULL, valu);
2094       record_debugformat ("stabs");
2095       break;
2096
2097     case N_SOL:
2098       /* This type of symbol indicates the start of data for
2099          a sub-source-file, one whose contents were copied or
2100          included in the compilation of the main source file
2101          (whose name was given in the N_SO symbol.)  */
2102       /* Relocate for dynamic loading */
2103       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2104       start_subfile (name, current_subfile->dirname);
2105       break;
2106
2107     case N_BINCL:
2108       push_subfile ();
2109       add_new_header_file (name, valu);
2110       start_subfile (name, current_subfile->dirname);
2111       break;
2112
2113     case N_EINCL:
2114       start_subfile (pop_subfile (), current_subfile->dirname);
2115       break;
2116
2117     case N_EXCL:
2118       add_old_header_file (name, valu);
2119       break;
2120
2121     case N_SLINE:
2122       /* This type of "symbol" really just records
2123          one line-number -- core-address correspondence.
2124          Enter it in the line list for this symbol table.  */
2125
2126       /* Relocate for dynamic loading and for ELF acc fn-relative syms.  */
2127       valu += function_start_offset;
2128
2129 #ifdef SUN_FIXED_LBRAC_BUG
2130       last_pc_address = valu;   /* Save for SunOS bug circumcision */
2131 #endif
2132       record_line (current_subfile, desc, valu);
2133       break;
2134
2135     case N_BCOMM:
2136       common_block_start (name, objfile);
2137       break;
2138
2139     case N_ECOMM:
2140       common_block_end (objfile);
2141       break;
2142
2143       /* The following symbol types need to have the appropriate offset added
2144          to their value; then we process symbol definitions in the name.  */
2145
2146     case N_STSYM:               /* Static symbol in data seg */
2147     case N_LCSYM:               /* Static symbol in BSS seg */
2148     case N_ROSYM:               /* Static symbol in Read-only data seg */
2149       /* HORRID HACK DEPT.  However, it's Sun's furgin' fault.
2150          Solaris2's stabs-in-elf makes *most* symbols relative
2151          but leaves a few absolute (at least for Solaris 2.1 and version
2152          2.0.1 of the SunPRO compiler).  N_STSYM and friends sit on the fence.
2153          .stab "foo:S...",N_STSYM        is absolute (ld relocates it)
2154          .stab "foo:V...",N_STSYM        is relative (section base subtracted).
2155          This leaves us no choice but to search for the 'S' or 'V'...
2156          (or pass the whole section_offsets stuff down ONE MORE function
2157          call level, which we really don't want to do).  */
2158       {
2159         char *p;
2160
2161         /* .o files and NLMs have non-zero text seg offsets, but don't need
2162            their static syms offset in this fashion.  XXX - This is really a
2163            crock that should be fixed in the solib handling code so that I
2164            don't have to work around it here. */
2165
2166         if (!symfile_relocatable)
2167           {
2168             p = strchr (name, ':');
2169             if (p != 0 && p[1] == 'S')
2170               {
2171                 /* The linker relocated it.  We don't want to add an
2172                    elfstab_offset_sections-type offset, but we *do* want
2173                    to add whatever solib.c passed to symbol_file_add as
2174                    addr (this is known to affect SunOS4, and I suspect ELF
2175                    too).  Since elfstab_offset_sections currently does not
2176                    muck with the text offset (there is no Ttext.text
2177                    symbol), we can get addr from the text offset.  If
2178                    elfstab_offset_sections ever starts dealing with the
2179                    text offset, and we still need to do this, we need to
2180                    invent a SECT_OFF_ADDR_KLUDGE or something.  */
2181                 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2182                 goto define_a_symbol;
2183               }
2184           }
2185         /* Since it's not the kludge case, re-dispatch to the right handler. */
2186         switch (type)
2187           {
2188           case N_STSYM:
2189             goto case_N_STSYM;
2190           case N_LCSYM:
2191             goto case_N_LCSYM;
2192           case N_ROSYM:
2193             goto case_N_ROSYM;
2194           default:
2195             internal_error (__FILE__, __LINE__, "failed internal consistency check");
2196           }
2197       }
2198
2199     case_N_STSYM:               /* Static symbol in data seg */
2200     case N_DSLINE:              /* Source line number, data seg */
2201       valu += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
2202       goto define_a_symbol;
2203
2204     case_N_LCSYM:               /* Static symbol in BSS seg */
2205     case N_BSLINE:              /* Source line number, bss seg */
2206       /*   N_BROWS:       overlaps with N_BSLINE */
2207       valu += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
2208       goto define_a_symbol;
2209
2210     case_N_ROSYM:               /* Static symbol in Read-only data seg */
2211       valu += ANOFFSET (section_offsets, SECT_OFF_RODATA (objfile));
2212       goto define_a_symbol;
2213
2214     case N_ENTRY:               /* Alternate entry point */
2215       /* Relocate for dynamic loading */
2216       valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2217       goto define_a_symbol;
2218
2219       /* The following symbol types we don't know how to process.  Handle
2220          them in a "default" way, but complain to people who care.  */
2221     default:
2222     case N_CATCH:               /* Exception handler catcher */
2223     case N_EHDECL:              /* Exception handler name */
2224     case N_PC:                  /* Global symbol in Pascal */
2225     case N_M2C:         /* Modula-2 compilation unit */
2226       /*   N_MOD2:        overlaps with N_EHDECL */
2227     case N_SCOPE:               /* Modula-2 scope information */
2228     case N_ECOML:               /* End common (local name) */
2229     case N_NBTEXT:              /* Gould Non-Base-Register symbols??? */
2230     case N_NBDATA:
2231     case N_NBBSS:
2232     case N_NBSTS:
2233     case N_NBLCS:
2234       complain (&unknown_symtype_complaint, local_hex_string (type));
2235       /* FALLTHROUGH */
2236
2237       /* The following symbol types don't need the address field relocated,
2238          since it is either unused, or is absolute.  */
2239     define_a_symbol:
2240     case N_GSYM:                /* Global variable */
2241     case N_NSYMS:               /* Number of symbols (ultrix) */
2242     case N_NOMAP:               /* No map?  (ultrix) */
2243     case N_RSYM:                /* Register variable */
2244     case N_DEFD:                /* Modula-2 GNU module dependency */
2245     case N_SSYM:                /* Struct or union element */
2246     case N_LSYM:                /* Local symbol in stack */
2247     case N_PSYM:                /* Parameter variable */
2248     case N_LENG:                /* Length of preceding symbol type */
2249       if (name)
2250         {
2251           int deftype;
2252           char *colon_pos = strchr (name, ':');
2253           if (colon_pos == NULL)
2254             deftype = '\0';
2255           else
2256             deftype = colon_pos[1];
2257
2258           switch (deftype)
2259             {
2260             case 'f':
2261             case 'F':
2262               function_stab_type = type;
2263
2264 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2265               /* Deal with the SunPRO 3.0 compiler which omits the address
2266                  from N_FUN symbols.  */
2267               if (type == N_FUN
2268                   && valu == ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile)))
2269                 valu = 
2270                   find_stab_function_addr (name, last_source_file, objfile);
2271 #endif
2272
2273 #ifdef SUN_FIXED_LBRAC_BUG
2274               /* The Sun acc compiler, under SunOS4, puts out
2275                  functions with N_GSYM or N_STSYM.  The problem is
2276                  that the address of the symbol is no good (for N_GSYM
2277                  it doesn't even attept an address; for N_STSYM it
2278                  puts out an address but then it gets relocated
2279                  relative to the data segment, not the text segment).
2280                  Currently we can't fix this up later as we do for
2281                  some types of symbol in scan_file_globals.
2282                  Fortunately we do have a way of finding the address -
2283                  we know that the value in last_pc_address is either
2284                  the one we want (if we're dealing with the first
2285                  function in an object file), or somewhere in the
2286                  previous function. This means that we can use the
2287                  minimal symbol table to get the address.  */
2288
2289               /* Starting with release 3.0, the Sun acc compiler,
2290                  under SunOS4, puts out functions with N_FUN and a value
2291                  of zero. This gets relocated to the start of the text
2292                  segment of the module, which is no good either.
2293                  Under SunOS4 we can deal with this as N_SLINE and N_SO
2294                  entries contain valid absolute addresses.
2295                  Release 3.0 acc also puts out N_OPT entries, which makes
2296                  it possible to discern acc from cc or gcc.  */
2297
2298               if (type == N_GSYM || type == N_STSYM
2299                   || (type == N_FUN
2300                       && n_opt_found && !block_address_function_relative))
2301                 {
2302                   struct minimal_symbol *m;
2303                   int l = colon_pos - name;
2304
2305                   m = lookup_minimal_symbol_by_pc (last_pc_address);
2306                   if (m && STREQN (SYMBOL_NAME (m), name, l)
2307                       && SYMBOL_NAME (m)[l] == '\0')
2308                     /* last_pc_address was in this function */
2309                     valu = SYMBOL_VALUE (m);
2310                   else if (m && SYMBOL_NAME (m + 1)
2311                            && STREQN (SYMBOL_NAME (m + 1), name, l)
2312                            && SYMBOL_NAME (m + 1)[l] == '\0')
2313                     /* last_pc_address was in last function */
2314                     valu = SYMBOL_VALUE (m + 1);
2315                   else
2316                     /* Not found - use last_pc_address (for finish_block) */
2317                     valu = last_pc_address;
2318                 }
2319
2320               last_pc_address = valu;   /* Save for SunOS bug circumcision */
2321 #endif
2322
2323               if (block_address_function_relative)
2324                 /* For Solaris 2.0 compilers, the block addresses and
2325                    N_SLINE's are relative to the start of the
2326                    function.  On normal systems, and when using gcc on
2327                    Solaris 2.0, these addresses are just absolute, or
2328                    relative to the N_SO, depending on
2329                    BLOCK_ADDRESS_ABSOLUTE.  */
2330                 function_start_offset = valu;
2331
2332               within_function = 1;
2333
2334               if (context_stack_depth > 1)
2335                 {
2336                   complain (&lbrac_unmatched_complaint, symnum);
2337                   break;
2338                 }
2339
2340               if (context_stack_depth > 0)
2341                 {
2342                   new = pop_context ();
2343                   /* Make a block for the local symbols within.  */
2344                   finish_block (new->name, &local_symbols, new->old_blocks,
2345                                 new->start_addr, valu, objfile);
2346                 }
2347
2348               new = push_context (0, valu);
2349               new->name = define_symbol (valu, name, desc, type, objfile);
2350               break;
2351
2352             default:
2353               define_symbol (valu, name, desc, type, objfile);
2354               break;
2355             }
2356         }
2357       break;
2358
2359       /* We use N_OPT to carry the gcc2_compiled flag.  Sun uses it
2360          for a bunch of other flags, too.  Someday we may parse their
2361          flags; for now we ignore theirs and hope they'll ignore ours.  */
2362     case N_OPT:         /* Solaris 2:  Compiler options */
2363       if (name)
2364         {
2365           if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
2366             {
2367               processing_gcc_compilation = 2;
2368 #if 0                           /* Works, but is experimental.  -fnf */
2369               /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2370                  know whether it will use the old style or v3 mangling.  */
2371               if (AUTO_DEMANGLING)
2372                 {
2373                   set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2374                 }
2375 #endif
2376             }
2377           else
2378             n_opt_found = 1;
2379         }
2380       break;
2381
2382     case N_MAIN:                /* Name of main routine.  */
2383       /* FIXME: If one has a symbol file with N_MAIN and then replaces
2384          it with a symbol file with "main" and without N_MAIN.  I'm
2385          not sure exactly what rule to follow but probably something
2386          like: N_MAIN takes precedence over "main" no matter what
2387          objfile it is in; If there is more than one N_MAIN, choose
2388          the one in the symfile_objfile; If there is more than one
2389          N_MAIN within a given objfile, complain() and choose
2390          arbitrarily. (kingdon) */
2391       if (name != NULL)
2392         set_main_name (name);
2393       break;
2394
2395       /* The following symbol types can be ignored.  */
2396     case N_OBJ:         /* Solaris 2:  Object file dir and name */
2397       /*   N_UNDF:                   Solaris 2:  file separator mark */
2398       /*   N_UNDF: -- we will never encounter it, since we only process one
2399          file's symbols at once.  */
2400     case N_ENDM:                /* Solaris 2:  End of module */
2401     case N_ALIAS:               /* SunPro F77: alias name, ignore for now.  */
2402       break;
2403     }
2404
2405   /* '#' is a GNU C extension to allow one symbol to refer to another
2406      related symbol.
2407
2408      Generally this is used so that an alias can refer to its main
2409      symbol.  */
2410   if (name[0] == '#')
2411     {
2412       /* Initialize symbol reference names and determine if this is 
2413          a definition.  If symbol reference is being defined, go 
2414          ahead and add it.  Otherwise, just return sym. */
2415
2416       char *s = name;
2417       int refnum;
2418
2419       /* If this stab defines a new reference ID that is not on the
2420          reference list, then put it on the reference list.
2421
2422          We go ahead and advance NAME past the reference, even though
2423          it is not strictly necessary at this time.  */
2424       refnum = symbol_reference_defined (&s);
2425       if (refnum >= 0)
2426         if (!ref_search (refnum))
2427           ref_add (refnum, 0, name, valu);
2428       name = s;
2429     }
2430
2431
2432   previous_stab_code = type;
2433 }
2434 \f
2435 /* FIXME: The only difference between this and elfstab_build_psymtabs
2436    is the call to install_minimal_symbols for elf, and the support for
2437    split sections.  If the differences are really that small, the code
2438    should be shared.  */
2439
2440 /* Scan and build partial symbols for an coff symbol file.
2441    The coff file has already been processed to get its minimal symbols.
2442
2443    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2444    rolled into one.
2445
2446    OBJFILE is the object file we are reading symbols from.
2447    ADDR is the address relative to which the symbols are (e.g.
2448    the base address of the text segment).
2449    MAINLINE is true if we are reading the main symbol
2450    table (as opposed to a shared lib or dynamically loaded file).
2451    TEXTADDR is the address of the text section.
2452    TEXTSIZE is the size of the text section.
2453    STABSECTS is the list of .stab sections in OBJFILE.
2454    STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2455    .stabstr section exists.
2456
2457    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2458    adjusted for coff details. */
2459
2460 void
2461 coffstab_build_psymtabs (struct objfile *objfile, int mainline,
2462                          CORE_ADDR textaddr, unsigned int textsize,
2463                          struct stab_section_list *stabsects,
2464                          file_ptr stabstroffset, unsigned int stabstrsize)
2465 {
2466   int val;
2467   bfd *sym_bfd = objfile->obfd;
2468   char *name = bfd_get_filename (sym_bfd);
2469   struct dbx_symfile_info *info;
2470   unsigned int stabsize;
2471
2472   /* There is already a dbx_symfile_info allocated by our caller.
2473      It might even contain some info from the coff symtab to help us.  */
2474   info = objfile->sym_stab_info;
2475
2476   DBX_TEXT_ADDR (objfile) = textaddr;
2477   DBX_TEXT_SIZE (objfile) = textsize;
2478
2479 #define COFF_STABS_SYMBOL_SIZE  12      /* XXX FIXME XXX */
2480   DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
2481   DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
2482
2483   if (stabstrsize > bfd_get_size (sym_bfd))
2484     error ("ridiculous string table size: %d bytes", stabstrsize);
2485   DBX_STRINGTAB (objfile) = (char *)
2486     obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
2487   OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
2488
2489   /* Now read in the string table in one big gulp.  */
2490
2491   val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2492   if (val < 0)
2493     perror_with_name (name);
2494   val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2495   if (val != stabstrsize)
2496     perror_with_name (name);
2497
2498   stabsread_new_init ();
2499   buildsym_new_init ();
2500   free_header_files ();
2501   init_header_files ();
2502
2503   processing_acc_compilation = 1;
2504
2505   /* In a coff file, we've already installed the minimal symbols that came
2506      from the coff (non-stab) symbol table, so always act like an
2507      incremental load here. */
2508   if (stabsects->next == NULL)
2509     {
2510       stabsize = bfd_section_size (sym_bfd, stabsects->section);
2511       DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2512       DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2513     }
2514   else
2515     {
2516       struct stab_section_list *stabsect;
2517
2518       DBX_SYMCOUNT (objfile) = 0;
2519       for (stabsect = stabsects; stabsect != NULL; stabsect = stabsect->next)
2520         {
2521           stabsize = bfd_section_size (sym_bfd, stabsect->section);
2522           DBX_SYMCOUNT (objfile) += stabsize / DBX_SYMBOL_SIZE (objfile);
2523         }
2524
2525       DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2526
2527       symbuf_sections = stabsects->next;
2528       symbuf_left = bfd_section_size (sym_bfd, stabsects->section);
2529       symbuf_read = 0;
2530     }
2531
2532   dbx_symfile_read (objfile, 0);
2533 }
2534 \f
2535 /* Scan and build partial symbols for an ELF symbol file.
2536    This ELF file has already been processed to get its minimal symbols,
2537    and any DWARF symbols that were in it.
2538
2539    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2540    rolled into one.
2541
2542    OBJFILE is the object file we are reading symbols from.
2543    ADDR is the address relative to which the symbols are (e.g.
2544    the base address of the text segment).
2545    MAINLINE is true if we are reading the main symbol
2546    table (as opposed to a shared lib or dynamically loaded file).
2547    STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2548    section exists.
2549    STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2550    .stabstr section exists.
2551
2552    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2553    adjusted for elf details. */
2554
2555 void
2556 elfstab_build_psymtabs (struct objfile *objfile, int mainline,
2557                         file_ptr staboffset, unsigned int stabsize,
2558                         file_ptr stabstroffset, unsigned int stabstrsize)
2559 {
2560   int val;
2561   bfd *sym_bfd = objfile->obfd;
2562   char *name = bfd_get_filename (sym_bfd);
2563   struct dbx_symfile_info *info;
2564
2565   /* There is already a dbx_symfile_info allocated by our caller.
2566      It might even contain some info from the ELF symtab to help us.  */
2567   info = objfile->sym_stab_info;
2568
2569   /* Find the first and last text address.  dbx_symfile_read seems to
2570      want this.  */
2571   find_text_range (sym_bfd, objfile);
2572
2573 #define ELF_STABS_SYMBOL_SIZE   12      /* XXX FIXME XXX */
2574   DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
2575   DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2576   DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
2577   DBX_SYMTAB_OFFSET (objfile) = staboffset;
2578
2579   if (stabstrsize > bfd_get_size (sym_bfd))
2580     error ("ridiculous string table size: %d bytes", stabstrsize);
2581   DBX_STRINGTAB (objfile) = (char *)
2582     obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
2583   OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
2584
2585   /* Now read in the string table in one big gulp.  */
2586
2587   val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2588   if (val < 0)
2589     perror_with_name (name);
2590   val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2591   if (val != stabstrsize)
2592     perror_with_name (name);
2593
2594   stabsread_new_init ();
2595   buildsym_new_init ();
2596   free_header_files ();
2597   init_header_files ();
2598   install_minimal_symbols (objfile);
2599
2600   processing_acc_compilation = 1;
2601
2602   /* In an elf file, we've already installed the minimal symbols that came
2603      from the elf (non-stab) symbol table, so always act like an
2604      incremental load here. */
2605   dbx_symfile_read (objfile, 0);
2606 }
2607 \f
2608 /* Scan and build partial symbols for a file with special sections for stabs
2609    and stabstrings.  The file has already been processed to get its minimal
2610    symbols, and any other symbols that might be necessary to resolve GSYMs.
2611
2612    This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2613    rolled into one.
2614
2615    OBJFILE is the object file we are reading symbols from.
2616    ADDR is the address relative to which the symbols are (e.g. the base address
2617    of the text segment).
2618    MAINLINE is true if we are reading the main symbol table (as opposed to a
2619    shared lib or dynamically loaded file).
2620    STAB_NAME is the name of the section that contains the stabs.
2621    STABSTR_NAME is the name of the section that contains the stab strings.
2622
2623    This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
2624
2625 void
2626 stabsect_build_psymtabs (struct objfile *objfile, int mainline, char *stab_name,
2627                          char *stabstr_name, char *text_name)
2628 {
2629   int val;
2630   bfd *sym_bfd = objfile->obfd;
2631   char *name = bfd_get_filename (sym_bfd);
2632   asection *stabsect;
2633   asection *stabstrsect;
2634   asection *text_sect;
2635
2636   stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
2637   stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
2638
2639   if (!stabsect)
2640     return;
2641
2642   if (!stabstrsect)
2643     error ("stabsect_build_psymtabs:  Found stabs (%s), but not string section (%s)",
2644            stab_name, stabstr_name);
2645
2646   objfile->sym_stab_info = (struct dbx_symfile_info *)
2647     xmalloc (sizeof (struct dbx_symfile_info));
2648   memset (objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
2649
2650   text_sect = bfd_get_section_by_name (sym_bfd, text_name);
2651   if (!text_sect)
2652     error ("Can't find %s section in symbol file", text_name);
2653   DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
2654   DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
2655
2656   DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
2657   DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
2658     / DBX_SYMBOL_SIZE (objfile);
2659   DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
2660   DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos;      /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
2661
2662   if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
2663     error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
2664   DBX_STRINGTAB (objfile) = (char *)
2665     obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
2666   OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile) + 1);
2667
2668   /* Now read in the string table in one big gulp.  */
2669
2670   val = bfd_get_section_contents (sym_bfd,      /* bfd */
2671                                   stabstrsect,  /* bfd section */
2672                                   DBX_STRINGTAB (objfile),      /* input buffer */
2673                                   0,    /* offset into section */
2674                                   DBX_STRINGTAB_SIZE (objfile));        /* amount to read */
2675
2676   if (!val)
2677     perror_with_name (name);
2678
2679   stabsread_new_init ();
2680   buildsym_new_init ();
2681   free_header_files ();
2682   init_header_files ();
2683   install_minimal_symbols (objfile);
2684
2685   /* Now, do an incremental load */
2686
2687   processing_acc_compilation = 1;
2688   dbx_symfile_read (objfile, 0);
2689 }
2690 \f
2691 static struct sym_fns aout_sym_fns =
2692 {
2693   bfd_target_aout_flavour,
2694   dbx_new_init,                 /* sym_new_init: init anything gbl to entire symtab */
2695   dbx_symfile_init,             /* sym_init: read initial info, setup for sym_read() */
2696   dbx_symfile_read,             /* sym_read: read a symbol file into symtab */
2697   dbx_symfile_finish,           /* sym_finish: finished with file, cleanup */
2698   default_symfile_offsets,      /* sym_offsets: parse user's offsets to internal form */
2699   NULL                          /* next: pointer to next struct sym_fns */
2700 };
2701
2702 void
2703 _initialize_dbxread (void)
2704 {
2705   add_symtab_fns (&aout_sym_fns);
2706 }