1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1986-1991 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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. */
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
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 */
39 #include <sys/types.h>
46 #include <sys/param.h>
51 #include "breakpoint.h"
54 #include "gdbcore.h" /* for bfd stuff */
55 #include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
59 #include "aout/aout64.h"
60 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native, now */
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. */
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 */
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.
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. */
86 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
87 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
95 extern double atof ();
97 /* Forward declarations */
99 static void read_dbx_symtab ();
100 static void init_psymbol_list ();
101 extern void process_one_symbol ();
102 void start_subfile ();
104 static struct pending *copy_pending ();
105 static struct symtab *read_ofile_symtab ();
106 static void dbx_psymtab_to_symtab ();
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)
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."
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."
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. */
130 #ifndef BELIEVE_PCC_PROMOTION
131 #define BELIEVE_PCC_PROMOTION 0
134 /* Nonzero means give verbose info on gdb action. From main.c. */
135 extern int info_verbose;
137 /* The BFD for this file -- implicit parameter to next_symbol_text. */
139 static bfd *symfile_bfd;
141 /* The objfile for this file -- only good in process_one_symbol(). */
143 static struct objfile *our_objfile;
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. */
149 static char *symfile_string_table;
150 static int symfile_string_table_size;
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. */
156 static unsigned symbol_size;
158 /* Complaints about the symbols we have encountered. */
160 struct complaint lbrac_complaint =
161 {"bad block start address patched", 0, 0};
163 struct complaint string_table_offset_complaint =
164 {"bad string table offset in symbol %d", 0, 0};
166 struct complaint unknown_symtype_complaint =
167 {"unknown symbol type %s", 0, 0};
169 struct complaint lbrac_rbrac_complaint =
170 {"block start larger than block end", 0, 0};
172 struct complaint lbrac_unmatched_complaint =
173 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
175 struct complaint lbrac_mismatch_complaint =
176 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
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. */
183 struct header_file_location
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 */
191 /* The actual list and controling variables */
192 static struct header_file_location *bincl_list, *next_bincl;
193 static int bincls_allocated;
195 /* Free up old header file tables, and allocate new ones.
196 We're reading a new symbol file now. */
199 free_and_init_header_files ()
202 for (i = 0; i < n_header_files; i++)
203 free (header_files[i].name);
204 if (header_files) /* First time null */
206 if (this_object_header_files) /* First time null */
207 free (this_object_header_files);
209 n_allocated_header_files = 10;
210 header_files = (struct header_file *) xmalloc (10 * sizeof (struct header_file));
213 n_allocated_this_object_header_files = 10;
214 this_object_header_files = (int *) xmalloc (10 * sizeof (int));
217 /* Called at the start of each object file's symbols.
218 Clear out the mapping of header file numbers to header files. */
221 new_object_header_files ()
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;
228 /* Add header file number I for this object file
229 at the next successive FILENUM. */
232 add_this_object_header_file (i)
235 if (n_this_object_header_files == n_allocated_this_object_header_files)
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));
243 this_object_header_files[n_this_object_header_files++] = i;
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. */
252 add_old_header_file (name, instance)
256 register struct header_file *p = header_files;
259 for (i = 0; i < n_header_files; i++)
260 if (!strcmp (p[i].name, name) && instance == p[i].instance)
262 add_this_object_header_file (i);
265 error ("Invalid symbol data: \"repeated\" header file that hasn't been seen before, at symtab pos %d.",
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.
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". */
281 add_new_header_file (name, instance)
286 header_file_prev_index = -1;
288 /* Make sure there is room for one more header file. */
290 if (n_header_files == n_allocated_header_files)
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)));
299 /* Create an entry for this header file. */
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 *));
309 add_this_object_header_file (i);
313 static struct type **
314 explicit_lookup_type (real_filenum, index)
315 int real_filenum, index;
317 register struct header_file *f = &header_files[real_filenum];
319 if (index >= f->length)
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);
327 return &f->vector[index];
332 record_misc_function (name, address, type)
337 enum misc_function_type misc_type;
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;
345 case N_SETV: misc_type = mf_data; break;
347 default: misc_type = mf_unknown; break;
350 prim_record_misc_function (obsavestring (name, strlen (name)),
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.
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). */
365 dbx_symfile_read (sf, addr, mainline)
368 int mainline; /* FIXME comments above */
370 struct dbx_symfile_info *info = (struct dbx_symfile_info *) (sf->sym_private);
371 bfd *sym_bfd = sf->objfile->obfd;
374 val = bfd_seek (sf->objfile->obfd, info->symtab_offset, L_SET);
376 perror_with_name (sf->objfile->name);
378 /* If mainline, set global string table pointers, and reinitialize global
379 partial symbol list. */
381 symfile_string_table = info->stringtab;
382 symfile_string_table_size = info->stringtab_size;
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);
389 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
390 symbol_size = obj_symbol_entry_size (sym_bfd);
393 make_cleanup (really_free_pendings, 0);
395 init_misc_bunches ();
396 make_cleanup (discard_misc_bunches, 0);
398 /* Now that the symbol table data of the executable file are all in core,
399 process them and define symbols accordingly. */
401 read_dbx_symtab (addr - bfd_section_vma (sym_bfd, info->text_sect), /*offset*/
402 sf->objfile, info->stringtab, info->stringtab_size,
404 bfd_section_vma (sym_bfd, info->text_sect),
405 bfd_section_size (sym_bfd, info->text_sect));
407 /* Go over the misc symbol bunches and install them in vector. */
409 condense_misc_bunches (!mainline);
411 /* Free up any memory we allocated for ourselves. */
414 free (info->stringtab); /* Stringtab is only saved for mainline */
417 sf->sym_private = 0; /* Zap pointer to our (now gone) info struct */
419 if (!partial_symtab_list) {
421 printf_filtered ("(no debugging symbols found)...");
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). */
433 buildsym_new_init ();
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)
439 free (symfile_string_table);
440 symfile_string_table = 0;
441 symfile_string_table_size = 0;
443 free_and_init_header_files ();
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.
453 We read the string table into malloc'd space and stash a pointer to it.
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. */
461 dbx_symfile_init (sf)
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];
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;
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 */
479 info->text_sect = bfd_get_section_by_name (sym_bfd, ".text");
480 if (!info->text_sect)
482 info->symcount = bfd_get_symcount (sym_bfd);
484 /* Read the string table size and check it for bogosity. */
485 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
487 perror_with_name (name);
489 val = bfd_read (size_temp, sizeof (long), 1, sym_bfd);
491 perror_with_name (name);
492 info->stringtab_size = bfd_h_get_32 (sym_bfd, size_temp);
494 if (info->stringtab_size >= 0)
496 info->stringtab = (char *) xmalloc (info->stringtab_size);
497 /* Caller is responsible for freeing the string table. No cleanup. */
500 info->stringtab = NULL;
501 if (info->stringtab == NULL && info->stringtab_size != 0)
502 error ("ridiculous string table size: %d bytes", info->stringtab_size);
504 /* Now read in the string table in one big gulp. */
506 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, L_SET);
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);
513 /* Record the position of the symbol table for later use. */
515 info->symtab_offset = SYMBOL_TABLE_OFFSET;
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;
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;
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. */
537 fill_symbuf (sym_bfd)
540 int nbytes = bfd_read (symbuf, sizeof (symbuf), 1, sym_bfd);
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;
549 #define SWAP_SYMBOL(symp, abfd) \
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); \
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. */
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. */
569 dbx_next_symbol_text ()
571 if (symbuf_idx == symbuf_end)
572 fill_symbuf (symfile_bfd);
574 SWAP_SYMBOL(&symbuf[symbuf_idx], symfile_bfd);
575 return symbuf[symbuf_idx++].n_strx + stringtab_global;
578 /* Initializes storage for all of the partial symbols that will be
579 created by read_dbx_symtab and subsidiaries. */
582 init_psymbol_list (total_symbols)
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);
591 /* Current best guess is that there are approximately a twentieth
592 of the total symbols (in a debugging file) are global or static
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));
602 /* Initialize the list of bincls to contain none and have some
606 init_bincl_list (number)
609 bincls_allocated = number;
610 next_bincl = bincl_list = (struct header_file_location *)
611 xmalloc (bincls_allocated * sizeof(struct header_file_location));
614 /* Add a bincl to the list. */
617 add_bincl_to_list (pst, name, instance)
618 struct partial_symtab *pst;
622 if (next_bincl >= bincl_list + bincls_allocated)
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;
631 next_bincl->pst = pst;
632 next_bincl->instance = instance;
633 next_bincl++->name = name;
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. */
640 static struct partial_symtab *
641 find_corresponding_bincl_psymtab (name, instance)
645 struct header_file_location *bincl;
647 for (bincl = bincl_list; bincl < next_bincl; bincl++)
648 if (bincl->instance == instance
649 && !strcmp (name, bincl->name))
652 return (struct partial_symtab *) 0;
655 /* Free the storage allocated for the bincl list. */
661 bincls_allocated = 0;
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). */
673 read_dbx_symtab (addr, objfile, stringtab, stringtab_size, nlistlen,
674 text_addr, text_size)
676 struct objfile *objfile;
677 register char *stringtab;
678 register long stringtab_size;
679 register int nlistlen;
683 register struct internal_nlist *bufp;
684 register char *namestring;
686 int past_first_source_file = 0;
687 CORE_ADDR last_o_file_start = 0;
688 struct cleanup *old_chain;
691 /* End of the text segment of the executable file. */
692 CORE_ADDR end_of_text_addr;
694 /* Current partial symtab */
695 struct partial_symtab *pst;
697 /* List of current psymtab's include files */
698 char **psymtab_include_list;
699 int includes_allocated;
702 /* Index within current psymtab dependency list */
703 struct partial_symtab **dependency_list;
704 int dependencies_used, dependencies_allocated;
706 stringtab_global = stringtab;
708 pst = (struct partial_symtab *) 0;
710 includes_allocated = 30;
712 psymtab_include_list = (char **) alloca (includes_allocated *
715 dependencies_allocated = 30;
716 dependencies_used = 0;
718 (struct partial_symtab **) alloca (dependencies_allocated *
719 sizeof (struct partial_symtab *));
721 old_chain = make_cleanup (free_objfile, objfile);
723 /* Init bincl list */
724 init_bincl_list (20);
725 make_cleanup (free_bincl_list, 0);
727 last_source_file = 0;
729 #ifdef END_OF_TEXT_DEFAULT
730 end_of_text_addr = END_OF_TEXT_DEFAULT;
732 end_of_text_addr = text_addr + addr + text_size; /* Relocate */
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;
740 for (symnum = 0; symnum < nlistlen; symnum++)
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)
746 bufp = &symbuf[symbuf_idx++];
749 * Special case to speed up readin.
751 if (bufp->n_type == (unsigned char)N_SLINE) continue;
753 SWAP_SYMBOL (bufp, abfd);
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:
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.
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"; \
775 namestring = bufp->n_strx + stringtab
777 #define CUR_SYMBOL_TYPE bufp->n_type
778 #define CUR_SYMBOL_VALUE bufp->n_value
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)
785 #include "partial-stab.h"
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)
793 startup_file_start = last_o_file_start;
794 startup_file_end = bufp->n_value;
799 end_psymtab (pst, psymtab_include_list, includes_used,
800 symnum * symbol_size, end_of_text_addr,
801 dependency_list, dependencies_used);
805 discard_cleanups (old_chain);
808 /* Allocate and partially fill a partial symtab. It will be
809 completely filled at the end of the symbol list.
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
816 struct partial_symtab *
817 start_psymtab (objfile, addr,
818 filename, textlow, ldsymoff, global_syms, static_syms)
819 struct objfile *objfile;
824 struct partial_symbol *global_syms;
825 struct partial_symbol *static_syms;
827 struct partial_symtab *result =
828 (struct partial_symtab *) obstack_alloc (psymbol_obstack,
829 sizeof (struct partial_symtab));
834 (char *) obstack_alloc (psymbol_obstack,
835 strlen (filename) + 1);
836 strcpy (result->filename, filename);
838 result->textlow = textlow;
839 result->read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
840 sizeof (struct symloc));
842 LDSYMOFF(result) = ldsymoff;
846 result->read_symtab = dbx_psymtab_to_symtab;
848 result->globals_offset = global_syms - global_psymbols.list;
849 result->statics_offset = static_syms - static_psymbols.list;
851 result->n_global_syms = 0;
852 result->n_static_syms = 0;
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;
863 compare_psymbols (s1, s2)
864 register struct partial_symbol *s1, *s2;
867 *st1 = SYMBOL_NAME (s1),
868 *st2 = SYMBOL_NAME (s2);
871 return st1[0] - st2[0];
873 return st1[1] - st2[1];
874 return strcmp (st1 + 2, st2 + 2);
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
883 The global symbols and static symbols are then seperately sorted.
885 Then the partial symtab is put on the global list.
886 *** List variables and peculiarities of same. ***
889 end_psymtab (pst, include_list, num_includes, capping_symbol_offset,
890 capping_text, dependency_list, number_dependencies)
891 struct partial_symtab *pst;
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;*/
902 if (capping_symbol_offset != -1)
903 LDSYMLEN(pst) = capping_symbol_offset - LDSYMOFF(pst);
904 pst->texthigh = capping_text;
907 global_psymbols.next - (global_psymbols.list + pst->globals_offset);
909 static_psymbols.next - (static_psymbols.list + pst->statics_offset);
911 pst->number_of_dependencies = number_dependencies;
912 if (number_dependencies)
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 *));
921 pst->dependencies = 0;
923 for (i = 0; i < num_includes; i++)
925 struct partial_symtab *subpst =
926 (struct partial_symtab *)
927 obstack_alloc (psymbol_obstack,
928 sizeof (struct partial_symtab));
931 (char *) obstack_alloc (psymbol_obstack,
932 strlen (include_list[i]) + 1);
933 strcpy (subpst->filename, include_list[i]);
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;
940 subpst->addr = pst->addr;
941 subpst->read_symtab_private = (char *) obstack_alloc (psymbol_obstack,
942 sizeof (struct symloc));
946 subpst->texthigh = 0;
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;
956 subpst->globals_offset =
957 subpst->n_global_syms =
958 subpst->statics_offset =
959 subpst->n_static_syms = 0;
963 subpst->read_symtab = dbx_psymtab_to_symtab;
965 subpst->next = partial_symtab_list;
966 partial_symtab_list = subpst;
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);
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);
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. */
986 /* Put the psymtab on the psymtab list */
987 pst->next = partial_symtab_list;
988 partial_symtab_list = pst;
993 psymtab_to_symtab_1 (pst, stringtab, stringtab_size, sym_offset)
994 struct partial_symtab *pst;
999 struct cleanup *old_chain;
1007 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
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)
1016 /* Inform about additional files that need to be read in. */
1019 fputs_filtered (" ", stdout);
1021 fputs_filtered ("and ", stdout);
1023 printf_filtered ("%s...", pst->dependencies[i]->filename);
1024 wrap_here (""); /* Flush output */
1027 psymtab_to_symtab_1 (pst->dependencies[i],
1028 stringtab, stringtab_size, sym_offset);
1031 if (LDSYMLEN(pst)) /* Otherwise it's a dummy */
1033 /* Init stuff necessary for reading in symbols */
1035 old_chain = make_cleanup (really_free_pendings, 0);
1037 /* Read in this files symbols */
1038 bfd_seek (pst->objfile->obfd, sym_offset, L_SET);
1040 read_ofile_symtab (pst->objfile, stringtab, stringtab_size,
1042 LDSYMLEN(pst), pst->textlow,
1043 pst->texthigh - pst->textlow, pst->addr);
1044 sort_symtab_syms (pst->symtab);
1046 do_cleanups (old_chain);
1053 * Read in all of the symbols for a given psymtab for real.
1054 * Be verbose about it if the user wants that.
1057 dbx_psymtab_to_symtab (pst)
1058 struct partial_symtab *pst;
1070 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1075 if (LDSYMLEN(pst) || pst->number_of_dependencies)
1077 /* Print the message now, before reading the string table,
1078 to avoid disconcerting pauses. */
1081 printf_filtered ("Reading in symbols for %s...", pst->filename);
1085 sym_bfd = pst->objfile->obfd;
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)
1091 /* Read in the string table */
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);
1097 val = bfd_read (&st_temp, sizeof st_temp, 1, sym_bfd);
1099 perror_with_name (pst->objfile->name);
1100 stsize = bfd_h_get_32 (sym_bfd, (unsigned char *)&st_temp);
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);
1107 if (stsize >= 0 && stsize < statbuf.st_size)
1112 #ifdef BROKEN_LARGE_ALLOCA
1113 stringtab = (char *) xmalloc (stsize);
1114 make_cleanup (free, stringtab);
1116 stringtab = (char *) alloca (stsize);
1121 if (stringtab == NULL && stsize != 0)
1122 error ("ridiculous string table size: %d bytes", stsize);
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);
1128 perror_with_name (pst->objfile->name);
1129 val = bfd_read (stringtab, stsize, 1, sym_bfd);
1131 perror_with_name (pst->objfile->name);
1135 stringtab = symfile_string_table;
1136 stsize = symfile_string_table_size;
1139 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
1140 symbol_size = obj_symbol_entry_size (sym_bfd);
1142 next_symbol_text_func = dbx_next_symbol_text;
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);
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 ();
1153 /* Finish up the debug error message. */
1155 printf_filtered ("done.\n");
1160 * Read in a defined section of a specific object file's symbols.
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
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;
1182 CORE_ADDR text_offset;
1186 register char *namestring;
1187 register struct internal_nlist *bufp;
1189 unsigned max_symnum;
1194 stringtab_global = stringtab;
1195 last_source_file = 0;
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;
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.
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)
1210 bfd_seek (symfile_bfd, sym_offset - symbol_size, L_INCR);
1212 bufp = &symbuf[symbuf_idx++];
1213 SWAP_SYMBOL (bufp, abfd);
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));
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;
1231 if (symbuf_idx == symbuf_end)
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");
1237 max_symnum = sym_size / symbol_size;
1240 symnum < max_symnum;
1243 QUIT; /* Allow this to be interruptable */
1244 if (symbuf_idx == symbuf_end)
1246 bufp = &symbuf[symbuf_idx++];
1247 SWAP_SYMBOL (bufp, abfd);
1249 type = bufp->n_type;
1250 if (type == (unsigned char)N_CATCH)
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;
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;
1265 if (type & N_STAB) {
1266 process_one_symbol (type, bufp->n_desc, bufp->n_value, namestring);
1267 /* our_objfile is an implicit parameter. */
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
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
1297 return end_symtab (text_offset + text_size, 0, 0, objfile);
1304 register char *p = name;
1305 register int total = p[0];
1318 /* Ensure result is positive. */
1319 if (total < 0) total += (1000 << 6);
1320 return total % HASHSIZE;
1325 process_one_symbol (type, desc, valu, name)
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;
1336 register struct context_stack *new;
1339 /* Something is wrong if we see real data before
1340 seeing a source file name. */
1342 if (last_source_file == 0 && type != (unsigned char)N_SO)
1344 /* Currently this ignores N_ENTRY on Gould machines, N_NSYM on machines
1345 where that code is defined. */
1346 if (IGNORE_SYMBOL (type))
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.");
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. */
1365 #ifndef SUN_FIXED_LBRAC_BUG
1366 last_pc_address = valu; /* Save for SunOS bug circumcision */
1369 colon_pos = strchr (name, ':');
1371 || (*colon_pos != 'f' && *colon_pos != 'F'))
1373 define_symbol (valu, name, desc, type);
1377 within_function = 1;
1378 if (context_stack_depth > 0)
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);
1385 /* Stack must be empty now. */
1386 if (context_stack_depth != 0)
1387 complain (lbrac_unmatched_complaint, symnum);
1389 new = push_context (0, valu);
1390 new->name = define_symbol (valu, name, desc, type);
1394 /* Record the address at which this catch takes place. */
1395 define_symbol (valu, name, desc, type);
1399 /* Don't know what to do with these yet. */
1400 error ("action uncertain for eh extensions");
1404 /* This "symbol" just indicates the start of an inner lexical
1405 context within a function. */
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;
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;
1420 new = push_context (desc, valu);
1424 /* This "symbol" just indicates the end of an inner lexical
1425 context that was started with N_LBRAC. */
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;
1433 new = pop_context();
1434 if (desc != new->depth)
1435 complain (lbrac_mismatch_complaint, symnum);
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
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;
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.
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
1461 && (context_stack_depth
1462 > !VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation)))
1464 /* FIXME Muzzle a compiler bug that makes end < start. */
1465 if (new->start_addr > valu)
1467 complain(&lbrac_rbrac_complaint, 0);
1468 new->start_addr = valu;
1470 /* Make a block for the local symbols within. */
1471 finish_block (0, &local_symbols, new->old_blocks,
1472 new->start_addr, valu);
1476 within_function = 0;
1478 if (VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1479 /* Now pop locals of block just finished. */
1480 local_symbols = new->locals;
1485 /* This kind of symbol indicates the start of an object file. */
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 */
1497 #ifdef PCC_SOL_BROKEN
1498 /* pcc bug, occasionally puts out SO for SOL. */
1499 if (context_stack_depth > 0)
1501 start_subfile (name, NULL);
1505 if (last_source_file)
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.
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] == '/')
1516 current_subfile->dirname = current_subfile->name;
1517 current_subfile->name = obsavestring (name, strlen (name));
1520 (void)end_symtab (valu, 0, 0);
1522 start_symtab (name, NULL, valu);
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);
1535 add_new_header_file (name, valu);
1536 start_subfile (name, NULL);
1540 start_subfile (pop_subfile (), NULL);
1544 add_old_header_file (name, valu);
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 */
1554 record_line (current_subfile, desc, valu);
1559 error ("Invalid symbol data: common within common at symtab pos %d",
1561 common_block = local_symbols;
1562 common_block_i = local_symbols ? local_symbols->nsyms : 0;
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
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;
1589 case N_DEFD: /* GNU Modula-2 symbol */
1594 define_symbol (valu, name, desc, type);
1597 previous_stab_code = type;
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;
1607 struct pending *new = 0;
1608 struct pending *next;
1610 for (next = beg; next != 0 && (next != end || begi < end->nsyms);
1611 next = next->next, begi = 0)
1614 for (j = begi; j < next->nsyms; j++)
1615 add_symbol_to_list (next->symbol[j], &new);
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};
1625 static struct sym_fns aout_sym_fns = {"a.out", 5,
1626 dbx_new_init, dbx_symfile_init, dbx_symfile_read};
1628 static struct sym_fns bout_sym_fns = {"b.out", 5,
1629 dbx_new_init, dbx_symfile_init, dbx_symfile_read};
1632 _initialize_dbxread ()
1634 add_symtab_fns(&sunos_sym_fns);
1635 add_symtab_fns(&aout_sym_fns);
1636 add_symtab_fns(&bout_sym_fns);