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