]> Git Repo - binutils.git/blob - gdb/dbxread.c
Fix demangling of destructors, and fix a minor indentation problem.
[binutils.git] / gdb / dbxread.c
1 /* Read dbx symbol tables and convert to internal format, for GDB.
2    Copyright (C) 1986-1991 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 /* This module provides three functions: dbx_symfile_init,
21    which initializes to read a symbol file; dbx_new_init, which 
22    discards existing cached information when all symbols are being
23    discarded; and dbx_symfile_read, which reads a symbol table
24    from a file.
25
26    dbx_symfile_read only does the minimum work necessary for letting the
27    user "name" things symbolically; it does not read the entire symtab.
28    Instead, it reads the external and static symbols and puts them in partial
29    symbol tables.  When more extensive information is requested of a
30    file, the corresponding partial symbol table is mutated into a full
31    fledged symbol table by going back and reading the symbols
32    for real.  dbx_psymtab_to_symtab() is the function that does this */
33
34 #include <stdio.h>
35 #include <string.h>
36 #include "defs.h"
37
38 #ifdef USG
39 #include <sys/types.h>
40 #include <fcntl.h>
41 #define L_SET 0
42 #define L_INCR 1
43 #endif
44
45 #include <obstack.h>
46 #include <sys/param.h>
47 #include <sys/file.h>
48 #include <sys/stat.h>
49 #include <ctype.h>
50 #include "symtab.h"
51 #include "breakpoint.h"
52 #include "command.h"
53 #include "target.h"
54 #include "gdbcore.h"            /* for bfd stuff */
55 #include "libaout.h"            /* FIXME Secret internal BFD stuff for a.out */
56 #include "symfile.h"
57 #include "buildsym.h"
58
59 #include "aout/aout64.h"
60 #include "aout/stab_gnu.h"      /* We always use GNU stabs, not native, now */
61
62 /* Information is passed among various dbxread routines for accessing
63    symbol files.  A pointer to this structure is kept in the sym_private
64    field of the struct sym_fns passed in by symfile.h.  */
65  
66 struct dbx_symfile_info {
67   asection *text_sect;          /* Text section accessor */
68   int symcount;                 /* How many symbols are there in the file */
69   char *stringtab;              /* The actual string table */
70   int stringtab_size;           /* Its size */
71   off_t symtab_offset;          /* Offset in file to symbol table */
72 };
73
74
75 /* Each partial symbol table entry contains a pointer to private data for the
76    read_symtab() function to use when expanding a partial symbol table entry
77    to a full symbol table entry.
78
79    For dbxread this structure contains the offset within the file symbol table
80    of first local symbol for this file, and length (in bytes) of the section
81    of the symbol table devoted to this file's symbols (actually, the section
82    bracketed may contain more than just this file's symbols).  If ldsymlen is
83    0, the only reason for this thing's existence is the dependency list.
84    Nothing else will happen when it is read in. */
85
86 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
87 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
88
89 struct symloc {
90   int ldsymoff;
91   int ldsymlen;
92 };
93
94 extern void qsort ();
95 extern double atof ();
96
97 /* Forward declarations */
98
99 static void read_dbx_symtab ();
100 static void init_psymbol_list ();
101 extern void process_one_symbol ();
102 void start_subfile ();
103 int hashname ();
104 static struct pending *copy_pending ();
105 static struct symtab *read_ofile_symtab ();
106 static void dbx_psymtab_to_symtab ();
107
108 /* Macro to determine which symbols to ignore when reading the first symbol
109    of a file.  Some machines override this definition. */
110 #ifndef IGNORE_SYMBOL
111 /* This code is used on Ultrix systems.  Ignore it */
112 #define IGNORE_SYMBOL(type)  (type == (int)N_NSYMS)
113 #endif
114
115 /* Macro for name of symbol to indicate a file compiled with gcc. */
116 #ifndef GCC_COMPILED_FLAG_SYMBOL
117 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
118 #endif
119
120 /* Macro for name of symbol to indicate a file compiled with gcc2. */
121 #ifndef GCC2_COMPILED_FLAG_SYMBOL
122 #define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
123 #endif
124
125 /* Define this as 1 if a pcc declaration of a char or short argument
126    gives the correct address.  Otherwise assume pcc gives the
127    address of the corresponding int, which is not the same on a
128    big-endian machine.  */
129
130 #ifndef BELIEVE_PCC_PROMOTION
131 #define BELIEVE_PCC_PROMOTION 0
132 #endif
133
134 /* Nonzero means give verbose info on gdb action.  From main.c.  */
135 extern int info_verbose;
136
137 /* The BFD for this file -- implicit parameter to next_symbol_text.  */
138
139 static bfd *symfile_bfd;
140
141 /* The objfile for this file -- only good in process_one_symbol().  */
142
143 static struct objfile *our_objfile;
144
145 /* String table for the main symbol file.  It is kept in memory
146    permanently, to speed up symbol reading.  Other files' symbol tables
147    are read in on demand.  FIXME, this should be cleaner.  */
148
149 static char *symfile_string_table;
150 static int symfile_string_table_size;
151
152 /* The size of each symbol in the symbol file (in external form).
153    This is set by dbx_symfile_read when building psymtabs, and by
154    dbx_psymtab_to_symtab when building symtabs.  */
155
156 static unsigned symbol_size;
157
158 /* Complaints about the symbols we have encountered.  */
159
160 struct complaint lbrac_complaint = 
161   {"bad block start address patched", 0, 0};
162
163 struct complaint string_table_offset_complaint =
164   {"bad string table offset in symbol %d", 0, 0};
165
166 struct complaint unknown_symtype_complaint =
167   {"unknown symbol type %s", 0, 0};
168
169 struct complaint lbrac_rbrac_complaint =
170   {"block start larger than block end", 0, 0};
171
172 struct complaint lbrac_unmatched_complaint =
173   {"unmatched N_LBRAC before symtab pos %d", 0, 0};
174
175 struct complaint lbrac_mismatch_complaint =
176   {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
177 \f
178 /* During initial symbol readin, we need to have a structure to keep
179    track of which psymtabs have which bincls in them.  This structure
180    is used during readin to setup the list of dependencies within each
181    partial symbol table. */
182
183 struct header_file_location
184 {
185   char *name;                   /* Name of header file */
186   int instance;                 /* See above */
187   struct partial_symtab *pst;   /* Partial symtab that has the
188                                    BINCL/EINCL defs for this file */
189 };
190
191 /* The actual list and controling variables */
192 static struct header_file_location *bincl_list, *next_bincl;
193 static int bincls_allocated;
194
195 /* Free up old header file tables, and allocate new ones.
196    We're reading a new symbol file now.  */
197
198 void
199 free_and_init_header_files ()
200 {
201   register int i;
202   for (i = 0; i < n_header_files; i++)
203     free (header_files[i].name);
204   if (header_files)                     /* First time null */
205     free (header_files);
206   if (this_object_header_files)         /* First time null */
207     free (this_object_header_files);
208
209   n_allocated_header_files = 10;
210   header_files = (struct header_file *) xmalloc (10 * sizeof (struct header_file));
211   n_header_files = 0;
212
213   n_allocated_this_object_header_files = 10;
214   this_object_header_files = (int *) xmalloc (10 * sizeof (int));
215 }
216
217 /* Called at the start of each object file's symbols.
218    Clear out the mapping of header file numbers to header files.  */
219
220 void
221 new_object_header_files ()
222 {
223   /* Leave FILENUM of 0 free for builtin types and this file's types.  */
224   n_this_object_header_files = 1;
225   header_file_prev_index = -1;
226 }
227
228 /* Add header file number I for this object file
229    at the next successive FILENUM.  */
230
231 static void
232 add_this_object_header_file (i)
233      int i;
234 {
235   if (n_this_object_header_files == n_allocated_this_object_header_files)
236     {
237       n_allocated_this_object_header_files *= 2;
238       this_object_header_files
239         = (int *) xrealloc (this_object_header_files,
240                             n_allocated_this_object_header_files * sizeof (int));
241     }
242
243   this_object_header_files[n_this_object_header_files++] = i;
244 }
245
246 /* Add to this file an "old" header file, one already seen in
247    a previous object file.  NAME is the header file's name.
248    INSTANCE is its instance code, to select among multiple
249    symbol tables for the same header file.  */
250
251 static void
252 add_old_header_file (name, instance)
253      char *name;
254      int instance;
255 {
256   register struct header_file *p = header_files;
257   register int i;
258
259   for (i = 0; i < n_header_files; i++)
260     if (!strcmp (p[i].name, name) && instance == p[i].instance)
261       {
262         add_this_object_header_file (i);
263         return;
264       }
265   error ("Invalid symbol data: \"repeated\" header file that hasn't been seen before, at symtab pos %d.",
266          symnum);
267 }
268
269 /* Add to this file a "new" header file: definitions for its types follow.
270    NAME is the header file's name.
271    Most often this happens only once for each distinct header file,
272    but not necessarily.  If it happens more than once, INSTANCE has
273    a different value each time, and references to the header file
274    use INSTANCE values to select among them.
275
276    dbx output contains "begin" and "end" markers for each new header file,
277    but at this level we just need to know which files there have been;
278    so we record the file when its "begin" is seen and ignore the "end".  */
279
280 static void
281 add_new_header_file (name, instance)
282      char *name;
283      int instance;
284 {
285   register int i;
286   header_file_prev_index = -1;
287
288   /* Make sure there is room for one more header file.  */
289
290   if (n_header_files == n_allocated_header_files)
291     {
292       n_allocated_header_files *= 2;
293       header_files = (struct header_file *)
294         xrealloc (header_files,
295                   (n_allocated_header_files
296                    * sizeof (struct header_file)));
297     }
298
299   /* Create an entry for this header file.  */
300
301   i = n_header_files++;
302   header_files[i].name = savestring (name, strlen(name));
303   header_files[i].instance = instance;
304   header_files[i].length = 10;
305   header_files[i].vector
306     = (struct type **) xmalloc (10 * sizeof (struct type *));
307   bzero (header_files[i].vector, 10 * sizeof (struct type *));
308
309   add_this_object_header_file (i);
310 }
311
312 #if 0
313 static struct type **
314 explicit_lookup_type (real_filenum, index)
315      int real_filenum, index;
316 {
317   register struct header_file *f = &header_files[real_filenum];
318
319   if (index >= f->length)
320     {
321       f->length *= 2;
322       f->vector = (struct type **)
323         xrealloc (f->vector, f->length * sizeof (struct type *));
324       bzero (&f->vector[f->length / 2],
325              f->length * sizeof (struct type *) / 2);
326     }
327   return &f->vector[index];
328 }
329 #endif
330 \f
331 static void
332 record_misc_function (name, address, type)
333      char *name;
334      CORE_ADDR address;
335      int type;
336 {
337   enum misc_function_type misc_type;
338
339   switch (type &~ N_EXT) {
340     case N_TEXT:  misc_type = mf_text; break;
341     case N_DATA:  misc_type = mf_data; break;
342     case N_BSS:   misc_type = mf_bss;  break;
343     case N_ABS:   misc_type = mf_abs;  break;
344 #ifdef N_SETV
345     case N_SETV:  misc_type = mf_data; break;
346 #endif
347     default:      misc_type = mf_unknown; break;
348   }
349
350   prim_record_misc_function (obsavestring (name, strlen (name)),
351                              address, misc_type);
352 }
353 \f
354 /* Scan and build partial symbols for a symbol file.
355    We have been initialized by a call to dbx_symfile_init, which 
356    put all the relevant info into a "struct dbx_symfile_info"
357    hung off the struct sym_fns SF.
358
359    ADDR is the address relative to which the symbols in it are (e.g.
360    the base address of the text segment).
361    MAINLINE is true if we are reading the main symbol
362    table (as opposed to a shared lib or dynamically loaded file).  */
363
364 static void
365 dbx_symfile_read (sf, addr, mainline)
366      struct sym_fns *sf;
367      CORE_ADDR addr;
368      int mainline;      /* FIXME comments above */
369 {
370   struct dbx_symfile_info *info = (struct dbx_symfile_info *) (sf->sym_private);
371   bfd *sym_bfd = sf->objfile->obfd;
372   int val;
373
374   val = bfd_seek (sf->objfile->obfd, info->symtab_offset, L_SET);
375   if (val < 0)
376     perror_with_name (sf->objfile->name);
377
378   /* If mainline, set global string table pointers, and reinitialize global
379      partial symbol list.  */
380   if (mainline) {
381     symfile_string_table = info->stringtab;
382     symfile_string_table_size = info->stringtab_size;
383   }
384
385   /* If we are reinitializing, or if we have never loaded syms yet, init */
386   if (mainline || global_psymbols.size == 0 || static_psymbols.size == 0)
387     init_psymbol_list (info->symcount);
388
389   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
390   symbol_size = obj_symbol_entry_size (sym_bfd);
391
392   pending_blocks = 0;
393   make_cleanup (really_free_pendings, 0);
394
395   init_misc_bunches ();
396   make_cleanup (discard_misc_bunches, 0);
397
398   /* Now that the symbol table data of the executable file are all in core,
399      process them and define symbols accordingly.  */
400
401   read_dbx_symtab (addr - bfd_section_vma (sym_bfd, info->text_sect), /*offset*/
402                    sf->objfile, info->stringtab, info->stringtab_size,
403                    info->symcount,
404                    bfd_section_vma  (sym_bfd, info->text_sect),
405                    bfd_section_size (sym_bfd, info->text_sect));
406
407   /* Go over the misc symbol bunches and install them in vector.  */
408
409   condense_misc_bunches (!mainline);
410
411   /* Free up any memory we allocated for ourselves.  */
412
413   if (!mainline) {
414     free (info->stringtab);     /* Stringtab is only saved for mainline */
415   }
416   free (info);
417   sf->sym_private = 0;          /* Zap pointer to our (now gone) info struct */
418
419   if (!partial_symtab_list) {
420     wrap_here ("");
421     printf_filtered ("(no debugging symbols found)...");
422     wrap_here ("");
423   }
424 }
425
426 /* Initialize anything that needs initializing when a completely new
427    symbol file is specified (not just adding some symbols from another
428    file, e.g. a shared library).  */
429
430 static void
431 dbx_new_init ()
432 {
433   buildsym_new_init ();
434
435   /* Don't put these on the cleanup chain; they need to stick around
436      until the next call to dbx_new_init.  *Then* we'll free them. */
437   if (symfile_string_table)
438     {
439       free (symfile_string_table);
440       symfile_string_table = 0;
441       symfile_string_table_size = 0;
442     }
443   free_and_init_header_files ();
444 }
445
446
447 /* dbx_symfile_init ()
448    is the dbx-specific initialization routine for reading symbols.
449    It is passed a struct sym_fns which contains, among other things,
450    the BFD for the file whose symbols are being read, and a slot for a pointer
451    to "private data" which we fill with goodies.
452
453    We read the string table into malloc'd space and stash a pointer to it.
454
455    Since BFD doesn't know how to read debug symbols in a format-independent
456    way (and may never do so...), we have to do it ourselves.  We will never
457    be called unless this is an a.out (or very similar) file. 
458    FIXME, there should be a cleaner peephole into the BFD environment here.  */
459
460 static void
461 dbx_symfile_init (sf)
462   struct sym_fns *sf;
463 {
464   int val;
465   bfd *sym_bfd = sf->objfile->obfd;
466   char *name = bfd_get_filename (sym_bfd);
467   struct dbx_symfile_info *info;
468   unsigned char size_temp[4];
469
470   /* Allocate struct to keep track of the symfile */
471   sf->sym_private = xmalloc (sizeof (*info));
472   info = (struct dbx_symfile_info *)sf->sym_private;
473
474   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
475 #define STRING_TABLE_OFFSET     (sym_bfd->origin + obj_str_filepos (sym_bfd))
476 #define SYMBOL_TABLE_OFFSET     (sym_bfd->origin + obj_sym_filepos (sym_bfd))
477   /* FIXME POKING INSIDE BFD DATA STRUCTURES */
478
479   info->text_sect = bfd_get_section_by_name (sym_bfd, ".text");
480   if (!info->text_sect)
481     abort();
482   info->symcount = bfd_get_symcount (sym_bfd);
483
484   /* Read the string table size and check it for bogosity.  */
485   val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
486   if (val < 0)
487       perror_with_name (name);
488
489   val = bfd_read (size_temp, sizeof (long), 1, sym_bfd);
490   if (val < 0)
491       perror_with_name (name);
492   info->stringtab_size = bfd_h_get_32 (sym_bfd, size_temp);
493   
494   if (info->stringtab_size >= 0)
495     {
496       info->stringtab = (char *) xmalloc (info->stringtab_size);
497       /* Caller is responsible for freeing the string table.  No cleanup. */
498     }
499   else
500     info->stringtab = NULL;
501   if (info->stringtab == NULL && info->stringtab_size != 0)
502     error ("ridiculous string table size: %d bytes", info->stringtab_size);
503
504   /* Now read in the string table in one big gulp.  */
505
506   val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
507   if (val < 0)
508     perror_with_name (name);
509   val = bfd_read (info->stringtab, info->stringtab_size, 1, sym_bfd);
510   if (val != info->stringtab_size)
511     perror_with_name (name);
512
513   /* Record the position of the symbol table for later use.  */
514
515   info->symtab_offset = SYMBOL_TABLE_OFFSET;
516 }
517 \f
518 /* Buffer for reading the symbol table entries.  */
519 static struct internal_nlist symbuf[4096];
520 static int symbuf_idx;
521 static int symbuf_end;
522
523 /* The address in memory of the string table of the object file we are
524    reading (which might not be the "main" object file, but might be a
525    shared library or some other dynamically loaded thing).  This is set
526    by read_dbx_symtab when building psymtabs, and by read_ofile_symtab 
527    when building symtabs, and is used only by next_symbol_text.  */
528 static char *stringtab_global;
529
530 /* Refill the symbol table input buffer
531    and set the variables that control fetching entries from it.
532    Reports an error if no data available.
533    This function can read past the end of the symbol table
534    (into the string table) but this does no harm.  */
535
536 static void
537 fill_symbuf (sym_bfd)
538      bfd *sym_bfd;
539 {
540   int nbytes = bfd_read (symbuf, sizeof (symbuf), 1, sym_bfd);
541   if (nbytes < 0)
542     perror_with_name (bfd_get_filename (sym_bfd));
543   else if (nbytes == 0)
544     error ("Premature end of file reading symbol table");
545   symbuf_end = nbytes / symbol_size;
546   symbuf_idx = 0;
547 }
548
549 #define SWAP_SYMBOL(symp, abfd) \
550   { \
551     (symp)->n_strx = bfd_h_get_32(abfd,                 \
552                                 (unsigned char *)&(symp)->n_strx);      \
553     (symp)->n_desc = bfd_h_get_16 (abfd,                        \
554                                 (unsigned char *)&(symp)->n_desc);      \
555     (symp)->n_value = bfd_h_get_32 (abfd,                       \
556                                 (unsigned char *)&(symp)->n_value);     \
557   }
558
559 /* Invariant: The symbol pointed to by symbuf_idx is the first one
560    that hasn't been swapped.  Swap the symbol at the same time
561    that symbuf_idx is incremented.  */
562
563 /* dbx allows the text of a symbol name to be continued into the
564    next symbol name!  When such a continuation is encountered
565    (a \ at the end of the text of a name)
566    call this function to get the continuation.  */
567
568 char *
569 dbx_next_symbol_text ()
570 {
571   if (symbuf_idx == symbuf_end)
572     fill_symbuf (symfile_bfd);
573   symnum++;
574   SWAP_SYMBOL(&symbuf[symbuf_idx], symfile_bfd);
575   return symbuf[symbuf_idx++].n_strx + stringtab_global;
576 }
577 \f
578 /* Initializes storage for all of the partial symbols that will be
579    created by read_dbx_symtab and subsidiaries.  */
580
581 static void
582 init_psymbol_list (total_symbols)
583      int total_symbols;
584 {
585   /* Free any previously allocated psymbol lists.  */
586   if (global_psymbols.list)
587     free (global_psymbols.list);
588   if (static_psymbols.list)
589     free (static_psymbols.list);
590
591   /* Current best guess is that there are approximately a twentieth
592      of the total symbols (in a debugging file) are global or static
593      oriented symbols */
594   global_psymbols.size = total_symbols / 10;
595   static_psymbols.size = total_symbols / 10;
596   global_psymbols.next = global_psymbols.list = (struct partial_symbol *)
597     xmalloc (global_psymbols.size * sizeof (struct partial_symbol));
598   static_psymbols.next = static_psymbols.list = (struct partial_symbol *)
599     xmalloc (static_psymbols.size * sizeof (struct partial_symbol));
600 }
601
602 /* Initialize the list of bincls to contain none and have some
603    allocated.  */
604
605 static void
606 init_bincl_list (number)
607      int number;
608 {
609   bincls_allocated = number;
610   next_bincl = bincl_list = (struct header_file_location *)
611       xmalloc (bincls_allocated * sizeof(struct header_file_location));
612 }
613
614 /* Add a bincl to the list.  */
615
616 static void
617 add_bincl_to_list (pst, name, instance)
618      struct partial_symtab *pst;
619      char *name;
620      int instance;
621 {
622   if (next_bincl >= bincl_list + bincls_allocated)
623     {
624       int offset = next_bincl - bincl_list;
625       bincls_allocated *= 2;
626       bincl_list = (struct header_file_location *)
627         xrealloc ((char *)bincl_list,
628                   bincls_allocated * sizeof (struct header_file_location));
629       next_bincl = bincl_list + offset;
630     }
631   next_bincl->pst = pst;
632   next_bincl->instance = instance;
633   next_bincl++->name = name;
634 }
635
636 /* Given a name, value pair, find the corresponding
637    bincl in the list.  Return the partial symtab associated
638    with that header_file_location.  */
639
640 static struct partial_symtab *
641 find_corresponding_bincl_psymtab (name, instance)
642      char *name;
643      int instance;
644 {
645   struct header_file_location *bincl;
646
647   for (bincl = bincl_list; bincl < next_bincl; bincl++)
648     if (bincl->instance == instance
649         && !strcmp (name, bincl->name))
650       return bincl->pst;
651
652   return (struct partial_symtab *) 0;
653 }
654
655 /* Free the storage allocated for the bincl list.  */
656
657 static void
658 free_bincl_list ()
659 {
660   free (bincl_list);
661   bincls_allocated = 0;
662 }
663
664 /* Given pointers to an a.out symbol table in core containing dbx
665    style data, setup partial_symtab's describing each source file for
666    which debugging information is available.  NLISTLEN is the number
667    of symbols in the symbol table.  All symbol names are given as
668    offsets relative to STRINGTAB.  STRINGTAB_SIZE is the size of
669    STRINGTAB.  SYMFILE_NAME is the name of the file we are reading from
670    and ADDR is its relocated address (if incremental) or 0 (if not).  */
671
672 static void
673 read_dbx_symtab (addr, objfile, stringtab, stringtab_size, nlistlen,
674                  text_addr, text_size)
675      CORE_ADDR addr;
676      struct objfile *objfile;
677      register char *stringtab;
678      register long stringtab_size;
679      register int nlistlen;
680      CORE_ADDR text_addr;
681      int text_size;
682 {
683   register struct internal_nlist *bufp;
684   register char *namestring;
685   int nsl;
686   int past_first_source_file = 0;
687   CORE_ADDR last_o_file_start = 0;
688   struct cleanup *old_chain;
689   bfd *abfd;
690
691   /* End of the text segment of the executable file.  */
692   CORE_ADDR end_of_text_addr;
693
694   /* Current partial symtab */
695   struct partial_symtab *pst;
696
697   /* List of current psymtab's include files */
698   char **psymtab_include_list;
699   int includes_allocated;
700   int includes_used;
701
702   /* Index within current psymtab dependency list */
703   struct partial_symtab **dependency_list;
704   int dependencies_used, dependencies_allocated;
705
706   stringtab_global = stringtab;
707   
708   pst = (struct partial_symtab *) 0;
709
710   includes_allocated = 30;
711   includes_used = 0;
712   psymtab_include_list = (char **) alloca (includes_allocated *
713                                            sizeof (char *));
714
715   dependencies_allocated = 30;
716   dependencies_used = 0;
717   dependency_list =
718     (struct partial_symtab **) alloca (dependencies_allocated *
719                                        sizeof (struct partial_symtab *));
720
721   old_chain = make_cleanup (free_objfile, objfile);
722
723   /* Init bincl list */
724   init_bincl_list (20);
725   make_cleanup (free_bincl_list, 0);
726
727   last_source_file = 0;
728
729 #ifdef END_OF_TEXT_DEFAULT
730   end_of_text_addr = END_OF_TEXT_DEFAULT;
731 #else
732   end_of_text_addr = text_addr + addr + text_size;      /* Relocate */
733 #endif
734
735   symfile_bfd = objfile->obfd;  /* For next_text_symbol */
736   abfd = objfile->obfd;
737   symbuf_end = symbuf_idx = 0;
738   next_symbol_text_func = dbx_next_symbol_text;
739
740   for (symnum = 0; symnum < nlistlen; symnum++)
741     {
742       /* Get the symbol for this run and pull out some info */
743       QUIT;     /* allow this to be interruptable */
744       if (symbuf_idx == symbuf_end)
745         fill_symbuf (abfd);
746       bufp = &symbuf[symbuf_idx++];
747
748       /*
749        * Special case to speed up readin.
750        */
751       if (bufp->n_type == (unsigned char)N_SLINE) continue;
752
753       SWAP_SYMBOL (bufp, abfd);
754
755       /* Ok.  There is a lot of code duplicated in the rest of this
756          switch statement (for efficiency reasons).  Since I don't
757          like duplicating code, I will do my penance here, and
758          describe the code which is duplicated:
759
760          *) The assignment to namestring.
761          *) The call to strchr.
762          *) The addition of a partial symbol the the two partial
763             symbol lists.  This last is a large section of code, so
764             I've imbedded it in the following macro.
765          */
766       
767 /* Set namestring based on bufp.  If the string table index is invalid, 
768    give a fake name, and print a single error message per symbol file read,
769    rather than abort the symbol reading or flood the user with messages.  */
770 #define SET_NAMESTRING()\
771   if (((unsigned)bufp->n_strx) >= stringtab_size) {     \
772     complain (&string_table_offset_complaint, symnum);                  \
773     namestring = "foo";                                                 \
774   } else                                                                \
775     namestring = bufp->n_strx + stringtab
776
777 #define CUR_SYMBOL_TYPE bufp->n_type
778 #define CUR_SYMBOL_VALUE bufp->n_value
779 #define DBXREAD_ONLY
780 #define START_PSYMTAB(ofile,addr,fname,low,symoff,global_syms,static_syms)\
781   start_psymtab(ofile, addr, fname, low, symoff, global_syms, static_syms)
782 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps)\
783   end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps)
784
785 #include "partial-stab.h"
786     }
787
788   /* If there's stuff to be cleaned up, clean it up.  */
789   if (nlistlen > 0                              /* We have some syms */
790       && entry_point < bufp->n_value
791       && entry_point >= last_o_file_start)
792     {
793       startup_file_start = last_o_file_start;
794       startup_file_end = bufp->n_value;
795     }
796
797   if (pst)
798     {
799       end_psymtab (pst, psymtab_include_list, includes_used,
800                    symnum * symbol_size, end_of_text_addr,
801                    dependency_list, dependencies_used);
802     }
803
804   free_bincl_list ();
805   discard_cleanups (old_chain);
806 }
807
808 /* Allocate and partially fill a partial symtab.  It will be
809    completely filled at the end of the symbol list.
810
811    SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
812    is the address relative to which its symbols are (incremental) or 0
813    (normal). */
814
815
816 struct partial_symtab *
817 start_psymtab (objfile, addr,
818                filename, textlow, ldsymoff, global_syms, static_syms)
819      struct objfile *objfile;
820      CORE_ADDR addr;
821      char *filename;
822      CORE_ADDR textlow;
823      int ldsymoff;
824      struct partial_symbol *global_syms;
825      struct partial_symbol *static_syms;
826 {
827   struct partial_symtab *result =
828     (struct partial_symtab *) obstack_alloc (psymbol_obstack,
829                                              sizeof (struct partial_symtab));
830
831   result->addr = addr;
832
833   result->filename =
834     (char *) obstack_alloc (psymbol_obstack,
835                             strlen (filename) + 1);
836   strcpy (result->filename, filename);
837
838   result->textlow = textlow;
839   result->read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
840                                                sizeof (struct symloc));
841   if (ldsymoff != -1)
842     LDSYMOFF(result) = ldsymoff;
843
844   result->readin = 0;
845   result->symtab = 0;
846   result->read_symtab = dbx_psymtab_to_symtab;
847
848   result->globals_offset = global_syms - global_psymbols.list;
849   result->statics_offset = static_syms - static_psymbols.list;
850
851   result->n_global_syms = 0;
852   result->n_static_syms = 0;
853
854   /* Chain it to the list owned by the current object file.  */
855   result->objfile = objfile;
856   result->objfile_chain = objfile->psymtabs;
857   objfile->psymtabs = result;
858
859   return result;
860 }
861
862 static int
863 compare_psymbols (s1, s2)
864      register struct partial_symbol *s1, *s2;
865 {
866   register char
867     *st1 = SYMBOL_NAME (s1),
868     *st2 = SYMBOL_NAME (s2);
869
870   if (st1[0] - st2[0])
871     return st1[0] - st2[0];
872   if (st1[1] - st2[1])
873     return st1[1] - st2[1];
874   return strcmp (st1 + 2, st2 + 2);
875 }
876
877 /* Close off the current usage of a partial_symbol table entry.  This
878    involves setting the correct number of includes (with a realloc),
879    setting the high text mark, setting the symbol length in the
880    executable, and setting the length of the global and static lists
881    of psymbols.
882
883    The global symbols and static symbols are then seperately sorted.
884
885    Then the partial symtab is put on the global list.
886    *** List variables and peculiarities of same. ***
887    */
888 void
889 end_psymtab (pst, include_list, num_includes, capping_symbol_offset,
890              capping_text, dependency_list, number_dependencies)
891      struct partial_symtab *pst;
892      char **include_list;
893      int num_includes;
894      int capping_symbol_offset;
895      CORE_ADDR capping_text;
896      struct partial_symtab **dependency_list;
897      int number_dependencies;
898 /*     struct partial_symbol *capping_global, *capping_static;*/
899 {
900   int i;
901
902   if (capping_symbol_offset != -1)
903       LDSYMLEN(pst) = capping_symbol_offset - LDSYMOFF(pst);
904   pst->texthigh = capping_text;
905
906   pst->n_global_syms =
907     global_psymbols.next - (global_psymbols.list + pst->globals_offset);
908   pst->n_static_syms =
909     static_psymbols.next - (static_psymbols.list + pst->statics_offset);
910
911   pst->number_of_dependencies = number_dependencies;
912   if (number_dependencies)
913     {
914       pst->dependencies = (struct partial_symtab **)
915         obstack_alloc (psymbol_obstack,
916                        number_dependencies * sizeof (struct partial_symtab *));
917       memcpy (pst->dependencies, dependency_list,
918              number_dependencies * sizeof (struct partial_symtab *));
919     }
920   else
921     pst->dependencies = 0;
922
923   for (i = 0; i < num_includes; i++)
924     {
925       struct partial_symtab *subpst =
926         (struct partial_symtab *)
927           obstack_alloc (psymbol_obstack,
928                          sizeof (struct partial_symtab));
929
930       subpst->filename =
931         (char *) obstack_alloc (psymbol_obstack,
932                                 strlen (include_list[i]) + 1);
933       strcpy (subpst->filename, include_list[i]);
934
935       /* Chain it to the list that this object file owns.  */
936       subpst->objfile = pst->objfile;
937       subpst->objfile_chain = pst->objfile->psymtabs;
938       pst->objfile->psymtabs = subpst;
939
940       subpst->addr = pst->addr;
941       subpst->read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
942                                                    sizeof (struct symloc));
943       LDSYMOFF(subpst) =
944         LDSYMLEN(subpst) =
945           subpst->textlow =
946             subpst->texthigh = 0;
947
948       /* We could save slight bits of space by only making one of these,
949          shared by the entire set of include files.  FIXME-someday.  */
950       subpst->dependencies = (struct partial_symtab **)
951         obstack_alloc (psymbol_obstack,
952                        sizeof (struct partial_symtab *));
953       subpst->dependencies[0] = pst;
954       subpst->number_of_dependencies = 1;
955
956       subpst->globals_offset =
957         subpst->n_global_syms =
958           subpst->statics_offset =
959             subpst->n_static_syms = 0;
960
961       subpst->readin = 0;
962       subpst->symtab = 0;
963       subpst->read_symtab = dbx_psymtab_to_symtab;
964
965       subpst->next = partial_symtab_list;
966       partial_symtab_list = subpst;
967     }
968
969   /* Sort the global list; don't sort the static list */
970   qsort (global_psymbols.list + pst->globals_offset, pst->n_global_syms,
971          sizeof (struct partial_symbol), compare_psymbols);
972
973   /* If there is already a psymtab or symtab for a file of this name, remove it.
974      (If there is a symtab, more drastic things also happen.)
975      This happens in VxWorks.  */
976   free_named_symtabs (pst->filename);
977
978   if (num_includes == 0
979    && number_dependencies == 0
980    && pst->n_global_syms == 0
981    && pst->n_static_syms == 0) {
982     /* Throw away this psymtab, it's empty.  We can't deallocate it, since
983        it is on the obstack, but we can forget to chain it on the list.  */
984     ;
985   } else {
986     /* Put the psymtab on the psymtab list */
987     pst->next = partial_symtab_list;
988     partial_symtab_list = pst;
989   }
990 }
991 \f
992 static void
993 psymtab_to_symtab_1 (pst, stringtab, stringtab_size, sym_offset)
994      struct partial_symtab *pst;
995      char *stringtab;
996      int stringtab_size;
997      int sym_offset;
998 {
999   struct cleanup *old_chain;
1000   int i;
1001   
1002   if (!pst)
1003     return;
1004
1005   if (pst->readin)
1006     {
1007       fprintf (stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
1008                pst->filename);
1009       return;
1010     }
1011
1012   /* Read in all partial symtabs on which this one is dependent */
1013   for (i = 0; i < pst->number_of_dependencies; i++)
1014     if (!pst->dependencies[i]->readin)
1015       {
1016         /* Inform about additional files that need to be read in.  */
1017         if (info_verbose)
1018           {
1019             fputs_filtered (" ", stdout);
1020             wrap_here ("");
1021             fputs_filtered ("and ", stdout);
1022             wrap_here ("");
1023             printf_filtered ("%s...", pst->dependencies[i]->filename);
1024             wrap_here ("");             /* Flush output */
1025             fflush (stdout);
1026           }
1027         psymtab_to_symtab_1 (pst->dependencies[i],
1028                              stringtab, stringtab_size, sym_offset);
1029       }
1030
1031   if (LDSYMLEN(pst))            /* Otherwise it's a dummy */
1032     {
1033       /* Init stuff necessary for reading in symbols */
1034       buildsym_init ();
1035       old_chain = make_cleanup (really_free_pendings, 0);
1036
1037       /* Read in this files symbols */
1038       bfd_seek (pst->objfile->obfd, sym_offset, L_SET);
1039       pst->symtab =
1040         read_ofile_symtab (pst->objfile, stringtab, stringtab_size,
1041                            LDSYMOFF(pst),
1042                            LDSYMLEN(pst), pst->textlow,
1043                            pst->texthigh - pst->textlow, pst->addr);
1044       sort_symtab_syms (pst->symtab);
1045
1046       do_cleanups (old_chain);
1047     }
1048
1049   pst->readin = 1;
1050 }
1051
1052 /*
1053  * Read in all of the symbols for a given psymtab for real.
1054  * Be verbose about it if the user wants that.
1055  */
1056 static void
1057 dbx_psymtab_to_symtab (pst)
1058      struct partial_symtab *pst;
1059 {
1060   char *stringtab;
1061   int stsize, val;
1062   bfd *sym_bfd;
1063   long st_temp;
1064
1065   if (!pst)
1066     return;
1067
1068   if (pst->readin)
1069     {
1070       fprintf (stderr, "Psymtab for %s already read in.  Shouldn't happen.\n",
1071                pst->filename);
1072       return;
1073     }
1074
1075   if (LDSYMLEN(pst) || pst->number_of_dependencies)
1076     {
1077       /* Print the message now, before reading the string table,
1078          to avoid disconcerting pauses.  */
1079       if (info_verbose)
1080         {
1081           printf_filtered ("Reading in symbols for %s...", pst->filename);
1082           fflush (stdout);
1083         }
1084
1085       sym_bfd = pst->objfile->obfd;
1086
1087       /* We keep the string table for the main symfile resident in memory, but
1088          not the string table for any other symbol files.  */
1089       if (symfile_objfile != pst->objfile)
1090         {
1091           /* Read in the string table */
1092
1093           /* FIXME, this uses internal BFD variables.  See above in
1094              dbx_symbol_file_open where the macro is defined!  */
1095           bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
1096
1097           val = bfd_read (&st_temp, sizeof st_temp, 1, sym_bfd);
1098           if (val < 0)
1099               perror_with_name (pst->objfile->name);
1100           stsize = bfd_h_get_32 (sym_bfd, (unsigned char *)&st_temp);
1101 #if 0
1102           /* BFD doesn't provide a way to know the total file size, sigh */
1103           struct stat statbuf;
1104           if (fstat (desc, &statbuf) < 0)
1105             perror_with_name (pst->objfile->name);
1106           
1107           if (stsize >= 0 && stsize < statbuf.st_size)
1108 #else
1109           if (stsize >= 0)
1110 #endif
1111             {
1112 #ifdef BROKEN_LARGE_ALLOCA
1113               stringtab = (char *) xmalloc (stsize);
1114               make_cleanup (free, stringtab);
1115 #else
1116               stringtab = (char *) alloca (stsize);
1117 #endif
1118             }
1119           else
1120             stringtab = NULL;
1121           if (stringtab == NULL && stsize != 0)
1122             error ("ridiculous string table size: %d bytes", stsize);
1123
1124           /* FIXME, this uses internal BFD variables.  See above in
1125              dbx_symbol_file_open where the macro is defined!  */
1126           val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
1127           if (val < 0)
1128             perror_with_name (pst->objfile->name);
1129           val = bfd_read (stringtab, stsize, 1, sym_bfd);
1130           if (val < 0)
1131             perror_with_name (pst->objfile->name);
1132         }
1133       else
1134         {
1135           stringtab = symfile_string_table;
1136           stsize = symfile_string_table_size;
1137         }
1138
1139       /* FIXME POKING INSIDE BFD DATA STRUCTURES */
1140       symbol_size = obj_symbol_entry_size (sym_bfd);
1141
1142       next_symbol_text_func = dbx_next_symbol_text;
1143
1144       /* FIXME, this uses internal BFD variables.  See above in
1145          dbx_symbol_file_open where the macro is defined!  */
1146       psymtab_to_symtab_1 (pst, stringtab, stsize,
1147                            SYMBOL_TABLE_OFFSET);
1148
1149       /* Match with global symbols.  This only needs to be done once,
1150          after all of the symtabs and dependencies have been read in.   */
1151       scan_file_globals ();
1152
1153       /* Finish up the debug error message.  */
1154       if (info_verbose)
1155         printf_filtered ("done.\n");
1156     }
1157 }
1158
1159 /*
1160  * Read in a defined section of a specific object file's symbols.
1161  *
1162  * DESC is the file descriptor for the file, positioned at the
1163  * beginning of the symtab
1164  * STRINGTAB is a pointer to the files string
1165  * table, already read in
1166  * SYM_OFFSET is the offset within the file of
1167  * the beginning of the symbols we want to read, NUM_SUMBOLS is the
1168  * number of symbols to read
1169  * TEXT_OFFSET is the beginning of the text segment we are reading symbols for
1170  * TEXT_SIZE is the size of the text segment read in.
1171  * OFFSET is a relocation offset which gets added to each symbol
1172  */
1173
1174 static struct symtab *
1175 read_ofile_symtab (objfile, stringtab, stringtab_size, sym_offset,
1176                    sym_size, text_offset, text_size, offset)
1177      struct objfile *objfile;
1178      register char *stringtab;
1179      unsigned int stringtab_size;
1180      int sym_offset;
1181      int sym_size;
1182      CORE_ADDR text_offset;
1183      int text_size;
1184      int offset;
1185 {
1186   register char *namestring;
1187   register struct internal_nlist *bufp;
1188   unsigned char type;
1189   unsigned max_symnum;
1190   register bfd *abfd;
1191
1192   subfile_stack = 0;
1193
1194   stringtab_global = stringtab;
1195   last_source_file = 0;
1196
1197   abfd = objfile->obfd;
1198   symfile_bfd = objfile->obfd;  /* Implicit param to next_text_symbol */
1199   our_objfile = objfile;  /* For end_symtab calls in process_one_symbol */
1200   symbuf_end = symbuf_idx = 0;
1201
1202   /* It is necessary to actually read one symbol *before* the start
1203      of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1204      occurs before the N_SO symbol.
1205
1206      Detecting this in read_dbx_symtab
1207      would slow down initial readin, so we look for it here instead.  */
1208   if (sym_offset >= (int)symbol_size)
1209     {
1210       bfd_seek (symfile_bfd, sym_offset - symbol_size, L_INCR);
1211       fill_symbuf (abfd);
1212       bufp = &symbuf[symbuf_idx++];
1213       SWAP_SYMBOL (bufp, abfd);
1214
1215       SET_NAMESTRING ();
1216
1217       processing_gcc_compilation =
1218         (bufp->n_type == N_TEXT
1219          && (strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL) == 0
1220              || strcmp(namestring, GCC2_COMPILED_FLAG_SYMBOL) == 0));
1221     }
1222   else
1223     {
1224       /* The N_SO starting this symtab is the first symbol, so we
1225          better not check the symbol before it.  I'm not this can
1226          happen, but it doesn't hurt to check for it.  */
1227       bfd_seek (symfile_bfd, sym_offset, L_INCR);
1228       processing_gcc_compilation = 0;
1229     }
1230
1231   if (symbuf_idx == symbuf_end)
1232     fill_symbuf (abfd);
1233   bufp = &symbuf[symbuf_idx];
1234   if (bufp->n_type != (unsigned char)N_SO)
1235     error("First symbol in segment of executable not a source symbol");
1236
1237   max_symnum = sym_size / symbol_size;
1238
1239   for (symnum = 0;
1240        symnum < max_symnum;
1241        symnum++)
1242     {
1243       QUIT;                     /* Allow this to be interruptable */
1244       if (symbuf_idx == symbuf_end)
1245         fill_symbuf(abfd);
1246       bufp = &symbuf[symbuf_idx++];
1247       SWAP_SYMBOL (bufp, abfd);
1248
1249       type = bufp->n_type;
1250       if (type == (unsigned char)N_CATCH)
1251         {
1252           /* N_CATCH is not fixed up by the linker, and unfortunately,
1253              there's no other place to put it in the .stab map.  */
1254           bufp->n_value += text_offset + offset;
1255         }
1256       else {
1257         type &= ~N_EXT;         /* Ignore external-bit */
1258         if (type == N_TEXT || type == N_DATA || type == N_BSS)
1259           bufp->n_value += offset;
1260         type = bufp->n_type;
1261       }
1262
1263       SET_NAMESTRING ();
1264
1265       if (type & N_STAB) {
1266         process_one_symbol (type, bufp->n_desc, bufp->n_value, namestring);
1267         /* our_objfile is an implicit parameter.  */
1268
1269       }
1270       /* We skip checking for a new .o or -l file; that should never
1271          happen in this routine. */
1272       else if (type == N_TEXT
1273                && (strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL) == 0
1274                    || strcmp (namestring, GCC2_COMPILED_FLAG_SYMBOL) == 0))
1275         /* I don't think this code will ever be executed, because
1276            the GCC_COMPILED_FLAG_SYMBOL usually is right before
1277            the N_SO symbol which starts this source file.
1278            However, there is no reason not to accept
1279            the GCC_COMPILED_FLAG_SYMBOL anywhere.  */
1280         processing_gcc_compilation = 1;
1281       else if (type & N_EXT || type == (unsigned char)N_TEXT
1282                || type == (unsigned char)N_NBTEXT
1283                ) {
1284           /* Global symbol: see if we came across a dbx defintion for
1285              a corresponding symbol.  If so, store the value.  Remove
1286              syms from the chain when their values are stored, but
1287              search the whole chain, as there may be several syms from
1288              different files with the same name. */
1289           /* This is probably not true.  Since the files will be read
1290              in one at a time, each reference to a global symbol will
1291              be satisfied in each file as it appears. So we skip this
1292              section. */
1293           ;
1294         }
1295     }
1296
1297   return end_symtab (text_offset + text_size, 0, 0, objfile);
1298 }
1299 \f
1300 int
1301 hashname (name)
1302      char *name;
1303 {
1304   register char *p = name;
1305   register int total = p[0];
1306   register int c;
1307
1308   c = p[1];
1309   total += c << 2;
1310   if (c)
1311     {
1312       c = p[2];
1313       total += c << 4;
1314       if (c)
1315         total += p[3] << 6;
1316     }
1317
1318   /* Ensure result is positive.  */
1319   if (total < 0) total += (1000 << 6);
1320   return total % HASHSIZE;
1321 }
1322
1323 \f
1324 void
1325 process_one_symbol (type, desc, valu, name)
1326      int type, desc;
1327      CORE_ADDR valu;
1328      char *name;
1329 {
1330 #ifndef SUN_FIXED_LBRAC_BUG
1331   /* This records the last pc address we've seen.  We depend on there being
1332      an SLINE or FUN or SO before the first LBRAC, since the variable does
1333      not get reset in between reads of different symbol files.  */
1334   static CORE_ADDR last_pc_address;
1335 #endif
1336   register struct context_stack *new;
1337   char *colon_pos;
1338
1339   /* Something is wrong if we see real data before
1340      seeing a source file name.  */
1341
1342   if (last_source_file == 0 && type != (unsigned char)N_SO)
1343     {
1344       /* Currently this ignores N_ENTRY on Gould machines, N_NSYM on machines
1345          where that code is defined.  */
1346       if (IGNORE_SYMBOL (type))
1347         return;
1348
1349       /* FIXME, this should not be an error, since it precludes extending
1350          the symbol table information in this way...  */
1351       error ("Invalid symbol data: does not start by identifying a source file.");
1352     }
1353
1354   switch (type)
1355     {
1356     case N_FUN:
1357     case N_FNAME:
1358       /* Either of these types of symbols indicates the start of
1359          a new function.  We must process its "name" normally for dbx,
1360          but also record the start of a new lexical context, and possibly
1361          also the end of the lexical context for the previous function.  */
1362       /* This is not always true.  This type of symbol may indicate a
1363          text segment variable.  */
1364
1365 #ifndef SUN_FIXED_LBRAC_BUG
1366       last_pc_address = valu;   /* Save for SunOS bug circumcision */
1367 #endif
1368
1369       colon_pos = strchr (name, ':');
1370       if (!colon_pos++
1371           || (*colon_pos != 'f' && *colon_pos != 'F'))
1372         {
1373           define_symbol (valu, name, desc, type);
1374           break;
1375         }
1376
1377       within_function = 1;
1378       if (context_stack_depth > 0)
1379         {
1380           new = pop_context ();
1381           /* Make a block for the local symbols within.  */
1382           finish_block (new->name, &local_symbols, new->old_blocks,
1383                         new->start_addr, valu);
1384         }
1385       /* Stack must be empty now.  */
1386       if (context_stack_depth != 0)
1387         complain (lbrac_unmatched_complaint, symnum);
1388
1389       new = push_context (0, valu);
1390       new->name = define_symbol (valu, name, desc, type);
1391       break;
1392
1393     case N_CATCH:
1394       /* Record the address at which this catch takes place.  */
1395       define_symbol (valu, name, desc, type);
1396       break;
1397
1398     case N_EHDECL:
1399       /* Don't know what to do with these yet.  */
1400       error ("action uncertain for eh extensions");
1401       break;
1402
1403     case N_LBRAC:
1404       /* This "symbol" just indicates the start of an inner lexical
1405          context within a function.  */
1406
1407 #if !defined (BLOCK_ADDRESS_ABSOLUTE)
1408       /* On most machines, the block addresses are relative to the
1409          N_SO, the linker did not relocate them (sigh).  */
1410       valu += last_source_start_addr;
1411 #endif
1412
1413 #ifndef SUN_FIXED_LBRAC_BUG
1414       if (valu < last_pc_address) {
1415         /* Patch current LBRAC pc value to match last handy pc value */
1416         complain (&lbrac_complaint, 0);
1417         valu = last_pc_address;
1418       }
1419 #endif
1420       new = push_context (desc, valu);
1421       break;
1422
1423     case N_RBRAC:
1424       /* This "symbol" just indicates the end of an inner lexical
1425          context that was started with N_LBRAC.  */
1426
1427 #if !defined (BLOCK_ADDRESS_ABSOLUTE)
1428       /* On most machines, the block addresses are relative to the
1429          N_SO, the linker did not relocate them (sigh).  */
1430       valu += last_source_start_addr;
1431 #endif
1432
1433       new = pop_context();
1434       if (desc != new->depth)
1435         complain (lbrac_mismatch_complaint, symnum);
1436
1437       /* Some compilers put the variable decls inside of an
1438          LBRAC/RBRAC block.  This macro should be nonzero if this
1439          is true.  DESC is N_DESC from the N_RBRAC symbol.
1440          GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
1441          or the GCC2_COMPILED_SYMBOL.  */
1442 #if !defined (VARIABLES_INSIDE_BLOCK)
1443 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
1444 #endif
1445
1446       /* Can only use new->locals as local symbols here if we're in
1447          gcc or on a machine that puts them before the lbrack.  */
1448       if (!VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1449         local_symbols = new->locals;
1450
1451       /* If this is not the outermost LBRAC...RBRAC pair in the
1452          function, its local symbols preceded it, and are the ones
1453          just recovered from the context stack.  Defined the block for them.
1454
1455          If this is the outermost LBRAC...RBRAC pair, there is no
1456          need to do anything; leave the symbols that preceded it
1457          to be attached to the function's own block.  However, if
1458          it is so, we need to indicate that we just moved outside
1459          of the function.  */
1460       if (local_symbols
1461           && (context_stack_depth
1462               > !VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation)))
1463         {
1464           /* FIXME Muzzle a compiler bug that makes end < start.  */
1465           if (new->start_addr > valu)
1466             {
1467               complain(&lbrac_rbrac_complaint, 0);
1468               new->start_addr = valu;
1469             }
1470           /* Make a block for the local symbols within.  */
1471           finish_block (0, &local_symbols, new->old_blocks,
1472                         new->start_addr, valu);
1473         }
1474       else
1475         {
1476           within_function = 0;
1477         }
1478       if (VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1479         /* Now pop locals of block just finished.  */
1480         local_symbols = new->locals;
1481       break;
1482
1483     case N_FN:
1484     case N_FN_SEQ:
1485       /* This kind of symbol indicates the start of an object file.  */
1486       break;
1487
1488     case N_SO:
1489       /* This type of symbol indicates the start of data
1490          for one source file.
1491          Finish the symbol table of the previous source file
1492          (if any) and start accumulating a new symbol table.  */
1493 #ifndef SUN_FIXED_LBRAC_BUG
1494       last_pc_address = valu;   /* Save for SunOS bug circumcision */
1495 #endif
1496   
1497 #ifdef PCC_SOL_BROKEN
1498       /* pcc bug, occasionally puts out SO for SOL.  */
1499       if (context_stack_depth > 0)
1500         {
1501           start_subfile (name, NULL);
1502           break;
1503         }
1504 #endif
1505       if (last_source_file)
1506         {
1507           /* Check if previous symbol was also an N_SO (with some
1508              sanity checks).  If so, that one was actually the directory
1509              name, and the current one is the real file name.
1510              Patch things up. */           
1511           if (previous_stab_code == N_SO
1512               && current_subfile && current_subfile->dirname == NULL
1513               && current_subfile->name != NULL
1514               && current_subfile->name[strlen(current_subfile->name)-1] == '/')
1515             {
1516               current_subfile->dirname = current_subfile->name;
1517               current_subfile->name = obsavestring (name, strlen (name));
1518               break;
1519             }
1520           (void)end_symtab (valu, 0, 0);
1521         }
1522       start_symtab (name, NULL, valu);
1523       break;
1524
1525     case N_SOL:
1526       /* This type of symbol indicates the start of data for
1527          a sub-source-file, one whose contents were copied or
1528          included in the compilation of the main source file
1529          (whose name was given in the N_SO symbol.)  */
1530       start_subfile (name, NULL);
1531       break;
1532
1533     case N_BINCL:
1534       push_subfile ();
1535       add_new_header_file (name, valu);
1536       start_subfile (name, NULL);
1537       break;
1538
1539     case N_EINCL:
1540       start_subfile (pop_subfile (), NULL);
1541       break;
1542
1543     case N_EXCL:
1544       add_old_header_file (name, valu);
1545       break;
1546
1547     case N_SLINE:
1548       /* This type of "symbol" really just records
1549          one line-number -- core-address correspondence.
1550          Enter it in the line list for this symbol table.  */
1551 #ifndef SUN_FIXED_LBRAC_BUG
1552       last_pc_address = valu;   /* Save for SunOS bug circumcision */
1553 #endif
1554       record_line (current_subfile, desc, valu);
1555       break;
1556
1557     case N_BCOMM:
1558       if (common_block)
1559         error ("Invalid symbol data: common within common at symtab pos %d",
1560                symnum);
1561       common_block = local_symbols;
1562       common_block_i = local_symbols ? local_symbols->nsyms : 0;
1563       break;
1564
1565     case N_ECOMM:
1566       /* Symbols declared since the BCOMM are to have the common block
1567          start address added in when we know it.  common_block points to
1568          the first symbol after the BCOMM in the local_symbols list;
1569          copy the list and hang it off the symbol for the common block name
1570          for later fixup.  */
1571       {
1572         int i;
1573         struct symbol *sym =
1574           (struct symbol *) xmalloc (sizeof (struct symbol));
1575         bzero (sym, sizeof *sym);
1576         SYMBOL_NAME (sym) = savestring (name, strlen (name));
1577         SYMBOL_CLASS (sym) = LOC_BLOCK;
1578         SYMBOL_NAMESPACE (sym) = (enum namespace)((long)
1579           copy_pending (local_symbols, common_block_i, common_block));
1580         i = hashname (SYMBOL_NAME (sym));
1581         SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
1582         global_sym_chain[i] = sym;
1583         common_block = 0;
1584         break;
1585       }
1586
1587     case N_ECOML:
1588     case N_LENG:
1589     case N_DEFD:                /* GNU Modula-2 symbol */
1590       break;
1591
1592     default:
1593       if (name)
1594         define_symbol (valu, name, desc, type);
1595     }
1596
1597   previous_stab_code = type;
1598 }
1599 \f
1600 /* Copy a pending list, used to record the contents of a common
1601    block for later fixup.  */
1602 static struct pending *
1603 copy_pending (beg, begi, end)
1604     struct pending *beg, *end;
1605     int begi;
1606 {
1607   struct pending *new = 0;
1608   struct pending *next;
1609
1610   for (next = beg; next != 0 && (next != end || begi < end->nsyms);
1611        next = next->next, begi = 0)
1612     {
1613       register int j;
1614       for (j = begi; j < next->nsyms; j++)
1615         add_symbol_to_list (next->symbol[j], &new);
1616     }
1617   return new;
1618 }
1619 \f
1620 /* Register our willingness to decode symbols for SunOS and a.out and
1621    b.out files handled by BFD... */
1622 static struct sym_fns sunos_sym_fns = {"sunOs", 6,
1623               dbx_new_init, dbx_symfile_init, dbx_symfile_read};
1624
1625 static struct sym_fns aout_sym_fns = {"a.out", 5,
1626               dbx_new_init, dbx_symfile_init, dbx_symfile_read};
1627
1628 static struct sym_fns bout_sym_fns = {"b.out", 5,
1629               dbx_new_init, dbx_symfile_init, dbx_symfile_read};
1630
1631 void
1632 _initialize_dbxread ()
1633 {
1634   add_symtab_fns(&sunos_sym_fns);
1635   add_symtab_fns(&aout_sym_fns);
1636   add_symtab_fns(&bout_sym_fns);
1637 }
This page took 0.112689 seconds and 4 git commands to generate.