1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* This module provides three functions: dbx_symfile_init,
22 which initializes to read a symbol file; dbx_new_init, which
23 discards existing cached information when all symbols are being
24 discarded; and dbx_symfile_read, which reads a symbol table
27 dbx_symfile_read only does the minimum work necessary for letting the
28 user "name" things symbolically; it does not read the entire symtab.
29 Instead, it reads the external and static symbols and puts them in partial
30 symbol tables. When more extensive information is requested of a
31 file, the corresponding partial symbol table is mutated into a full
32 fledged symbol table by going back and reading the symbols
33 for real. dbx_psymtab_to_symtab() is the function that does this */
38 #if defined(USG) || defined(__CYGNUSCLIB__)
39 #include <sys/types.h>
44 #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 "stabsread.h"
60 #include "gdb-stabs.h"
62 #include "language.h" /* Needed inside partial-stab.h */
63 #include "complaints.h"
65 #include "aout/aout64.h"
66 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native, now */
68 #if !defined (SEEK_SET)
73 /* Each partial symbol table entry contains a pointer to private data for the
74 read_symtab() function to use when expanding a partial symbol table entry
75 to a full symbol table entry.
77 For dbxread this structure contains the offset within the file symbol table
78 of first local symbol for this file, and length (in bytes) of the section
79 of the symbol table devoted to this file's symbols (actually, the section
80 bracketed may contain more than just this file's symbols). It also contains
81 further information needed to locate the symbols if they are in an ELF file.
83 If ldsymlen is 0, the only reason for this thing's existence is the
84 dependency list. 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)
88 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
89 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
90 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
91 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
92 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
100 int file_string_offset;
103 /* Macro to determine which symbols to ignore when reading the first symbol
104 of a file. Some machines override this definition. */
105 #ifndef IGNORE_SYMBOL
106 /* This code is used on Ultrix systems. Ignore it */
107 #define IGNORE_SYMBOL(type) (type == (int)N_NSYMS)
110 /* Remember what we deduced to be the source language of this psymtab. */
112 static enum language psymtab_language = language_unknown;
114 /* Nonzero means give verbose info on gdb action. From main.c. */
115 extern int info_verbose;
117 /* The BFD for this file -- implicit parameter to next_symbol_text. */
119 static bfd *symfile_bfd;
121 /* The size of each symbol in the symbol file (in external form).
122 This is set by dbx_symfile_read when building psymtabs, and by
123 dbx_psymtab_to_symtab when building symtabs. */
125 static unsigned symbol_size;
127 /* This is the offset of the symbol table in the executable file */
128 static unsigned symbol_table_offset;
130 /* This is the offset of the string table in the executable file */
131 static unsigned string_table_offset;
133 /* For elf+stab executables, the n_strx field is not a simple index
134 into the string table. Instead, each .o file has a base offset
135 in the string table, and the associated symbols contain offsets
136 from this base. The following two variables contain the base
137 offset for the current and next .o files. */
138 static unsigned int file_string_table_offset;
139 static unsigned int next_file_string_table_offset;
141 /* .o and NLM files contain unrelocated addresses which are based at 0. When
142 non-zero, this flag disables some of the special cases for Solaris elf+stab
143 text addresses at location 0. */
145 static int symfile_relocatable = 0;
147 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are relative
148 to the function start address. */
150 static int block_address_function_relative = 0;
152 /* This is the lowest text address we have yet encountered. */
153 static CORE_ADDR lowest_text_address;
155 /* Complaints about the symbols we have encountered. */
157 struct complaint lbrac_complaint =
158 {"bad block start address patched", 0, 0};
160 struct complaint string_table_offset_complaint =
161 {"bad string table offset in symbol %d", 0, 0};
163 struct complaint unknown_symtype_complaint =
164 {"unknown symbol type %s", 0, 0};
166 struct complaint unknown_symchar_complaint =
167 {"unknown symbol descriptor `%c'", 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 struct complaint repeated_header_complaint =
179 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
181 /* During initial symbol readin, we need to have a structure to keep
182 track of which psymtabs have which bincls in them. This structure
183 is used during readin to setup the list of dependencies within each
184 partial symbol table. */
186 struct header_file_location
188 char *name; /* Name of header file */
189 int instance; /* See above */
190 struct partial_symtab *pst; /* Partial symtab that has the
191 BINCL/EINCL defs for this file */
194 /* The actual list and controling variables */
195 static struct header_file_location *bincl_list, *next_bincl;
196 static int bincls_allocated;
198 /* Local function prototypes */
201 free_header_files PARAMS ((void));
204 init_header_files PARAMS ((void));
207 read_ofile_symtab PARAMS ((struct partial_symtab *));
210 dbx_psymtab_to_symtab PARAMS ((struct partial_symtab *));
213 dbx_psymtab_to_symtab_1 PARAMS ((struct partial_symtab *));
216 read_dbx_dynamic_symtab PARAMS ((struct section_offsets *,
217 struct objfile *objfile));
220 read_dbx_symtab PARAMS ((struct section_offsets *, struct objfile *,
224 free_bincl_list PARAMS ((struct objfile *));
226 static struct partial_symtab *
227 find_corresponding_bincl_psymtab PARAMS ((char *, int));
230 add_bincl_to_list PARAMS ((struct partial_symtab *, char *, int));
233 init_bincl_list PARAMS ((int, struct objfile *));
236 init_psymbol_list PARAMS ((struct objfile *));
239 dbx_next_symbol_text PARAMS ((void));
242 fill_symbuf PARAMS ((bfd *));
245 dbx_symfile_init PARAMS ((struct objfile *));
248 dbx_new_init PARAMS ((struct objfile *));
251 dbx_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
254 dbx_symfile_finish PARAMS ((struct objfile *));
257 record_minimal_symbol PARAMS ((char *, CORE_ADDR, int, struct objfile *));
260 add_new_header_file PARAMS ((char *, int));
263 add_old_header_file PARAMS ((char *, int));
266 add_this_object_header_file PARAMS ((int));
268 /* Free up old header file tables */
275 if (header_files != NULL)
277 for (i = 0; i < n_header_files; i++)
279 free (header_files[i].name);
281 free ((PTR)header_files);
285 if (this_object_header_files)
287 free ((PTR)this_object_header_files);
288 this_object_header_files = NULL;
290 n_allocated_header_files = 0;
291 n_allocated_this_object_header_files = 0;
294 /* Allocate new header file tables */
300 n_allocated_header_files = 10;
301 header_files = (struct header_file *)
302 xmalloc (10 * sizeof (struct header_file));
304 n_allocated_this_object_header_files = 10;
305 this_object_header_files = (int *) xmalloc (10 * sizeof (int));
308 /* Add header file number I for this object file
309 at the next successive FILENUM. */
312 add_this_object_header_file (i)
315 if (n_this_object_header_files == n_allocated_this_object_header_files)
317 n_allocated_this_object_header_files *= 2;
318 this_object_header_files
319 = (int *) xrealloc ((char *) this_object_header_files,
320 n_allocated_this_object_header_files * sizeof (int));
323 this_object_header_files[n_this_object_header_files++] = i;
326 /* Add to this file an "old" header file, one already seen in
327 a previous object file. NAME is the header file's name.
328 INSTANCE is its instance code, to select among multiple
329 symbol tables for the same header file. */
332 add_old_header_file (name, instance)
336 register struct header_file *p = header_files;
339 for (i = 0; i < n_header_files; i++)
340 if (STREQ (p[i].name, name) && instance == p[i].instance)
342 add_this_object_header_file (i);
345 complain (&repeated_header_complaint, name, symnum);
348 /* Add to this file a "new" header file: definitions for its types follow.
349 NAME is the header file's name.
350 Most often this happens only once for each distinct header file,
351 but not necessarily. If it happens more than once, INSTANCE has
352 a different value each time, and references to the header file
353 use INSTANCE values to select among them.
355 dbx output contains "begin" and "end" markers for each new header file,
356 but at this level we just need to know which files there have been;
357 so we record the file when its "begin" is seen and ignore the "end". */
360 add_new_header_file (name, instance)
366 /* Make sure there is room for one more header file. */
368 if (n_header_files == n_allocated_header_files)
370 n_allocated_header_files *= 2;
371 header_files = (struct header_file *)
372 xrealloc ((char *) header_files,
373 (n_allocated_header_files * sizeof (struct header_file)));
376 /* Create an entry for this header file. */
378 i = n_header_files++;
379 header_files[i].name = savestring (name, strlen(name));
380 header_files[i].instance = instance;
381 header_files[i].length = 10;
382 header_files[i].vector
383 = (struct type **) xmalloc (10 * sizeof (struct type *));
384 memset (header_files[i].vector, 0, 10 * sizeof (struct type *));
386 add_this_object_header_file (i);
390 static struct type **
391 explicit_lookup_type (real_filenum, index)
392 int real_filenum, index;
394 register struct header_file *f = &header_files[real_filenum];
396 if (index >= f->length)
399 f->vector = (struct type **)
400 xrealloc (f->vector, f->length * sizeof (struct type *));
401 memset (&f->vector[f->length / 2],
402 '\0', f->length * sizeof (struct type *) / 2);
404 return &f->vector[index];
409 record_minimal_symbol (name, address, type, objfile)
413 struct objfile *objfile;
415 enum minimal_symbol_type ms_type;
422 section = SECT_OFF_TEXT;
426 section = SECT_OFF_DATA;
430 section = SECT_OFF_BSS;
439 section = SECT_OFF_DATA;
442 /* I don't think this type actually exists; since a N_SETV is the result
443 of going over many .o files, it doesn't make sense to have one
445 ms_type = mst_file_data;
446 section = SECT_OFF_DATA;
453 ms_type = mst_file_text;
454 section = SECT_OFF_TEXT;
457 ms_type = mst_file_data;
459 /* Check for __DYNAMIC, which is used by Sun shared libraries.
460 Record it as global even if it's local, not global, so
461 lookup_minimal_symbol can find it. We don't check symbol_leading_char
462 because for SunOS4 it always is '_'. */
463 if (name[8] == 'C' && STREQ ("__DYNAMIC", name))
466 /* Same with virtual function tables, both global and static. */
468 char *tempstring = name;
469 if (tempstring[0] == bfd_get_symbol_leading_char (objfile->obfd))
471 if (VTBL_PREFIX_P ((tempstring)))
474 section = SECT_OFF_DATA;
477 ms_type = mst_file_bss;
478 section = SECT_OFF_BSS;
481 ms_type = mst_unknown;
486 if ((ms_type == mst_file_text || ms_type == mst_text)
487 && address < lowest_text_address)
488 lowest_text_address = address;
490 prim_record_minimal_symbol_and_info
491 (obsavestring (name, strlen (name), &objfile -> symbol_obstack),
499 /* Scan and build partial symbols for a symbol file.
500 We have been initialized by a call to dbx_symfile_init, which
501 put all the relevant info into a "struct dbx_symfile_info",
502 hung off the objfile structure.
504 SECTION_OFFSETS contains offsets relative to which the symbols in the
505 various sections are (depending where the sections were actually loaded).
506 MAINLINE is true if we are reading the main symbol
507 table (as opposed to a shared lib or dynamically loaded file). */
510 dbx_symfile_read (objfile, section_offsets, mainline)
511 struct objfile *objfile;
512 struct section_offsets *section_offsets;
513 int mainline; /* FIXME comments above */
517 struct cleanup *back_to;
519 val = strlen (objfile->name);
521 /* .o and .nlm files are relocatables with text, data and bss segs based at
522 0. This flag disables special (Solaris stabs-in-elf only) fixups for
523 symbols with a value of 0. XXX - This is a Krock. Solaris stabs-in-elf
524 should be fixed to determine pst->textlow without using this text seg of
527 if (strcmp (&objfile->name[val-2], ".o") == 0
528 || strcmp (&objfile->name[val-4], ".nlm") == 0)
529 symfile_relocatable = 1;
531 /* This is true for Solaris (and all other systems which put stabs
532 in sections, hopefully, since it would be silly to do things
533 differently from Solaris), and false for SunOS4 and other a.out
535 block_address_function_relative =
536 ((0 == strncmp (bfd_get_target (objfile->obfd), "elf", 3))
537 || (0 == strncmp (bfd_get_target (objfile->obfd), "som", 3))
538 || (0 == strncmp (bfd_get_target (objfile->obfd), "coff", 4))
539 || (0 == strncmp (bfd_get_target (objfile->obfd), "nlm", 3)));
541 sym_bfd = objfile->obfd;
542 val = bfd_seek (objfile->obfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
544 perror_with_name (objfile->name);
546 /* If we are reinitializing, or if we have never loaded syms yet, init */
547 if (mainline || objfile->global_psymbols.size == 0 || objfile->static_psymbols.size == 0)
548 init_psymbol_list (objfile);
550 symbol_size = DBX_SYMBOL_SIZE (objfile);
551 symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
554 back_to = make_cleanup (really_free_pendings, 0);
556 init_minimal_symbol_collection ();
557 make_cleanup (discard_minimal_symbols, 0);
559 /* Now that the symbol table data of the executable file are all in core,
560 process them and define symbols accordingly. */
562 read_dbx_symtab (section_offsets, objfile,
563 bfd_section_vma (sym_bfd, DBX_TEXT_SECT (objfile)),
564 bfd_section_size (sym_bfd, DBX_TEXT_SECT (objfile)));
566 /* Add the dynamic symbols. */
568 read_dbx_dynamic_symtab (section_offsets, objfile);
570 /* Install any minimal symbols that have been collected as the current
571 minimal symbols for this objfile. */
573 install_minimal_symbols (objfile);
575 do_cleanups (back_to);
578 /* Initialize anything that needs initializing when a completely new
579 symbol file is specified (not just adding some symbols from another
580 file, e.g. a shared library). */
583 dbx_new_init (ignore)
584 struct objfile *ignore;
586 stabsread_new_init ();
587 buildsym_new_init ();
588 init_header_files ();
592 /* dbx_symfile_init ()
593 is the dbx-specific initialization routine for reading symbols.
594 It is passed a struct objfile which contains, among other things,
595 the BFD for the file whose symbols are being read, and a slot for a pointer
596 to "private data" which we fill with goodies.
598 We read the string table into malloc'd space and stash a pointer to it.
600 Since BFD doesn't know how to read debug symbols in a format-independent
601 way (and may never do so...), we have to do it ourselves. We will never
602 be called unless this is an a.out (or very similar) file.
603 FIXME, there should be a cleaner peephole into the BFD environment here. */
605 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
608 dbx_symfile_init (objfile)
609 struct objfile *objfile;
612 bfd *sym_bfd = objfile->obfd;
613 char *name = bfd_get_filename (sym_bfd);
614 unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
616 /* Allocate struct to keep track of the symfile */
617 objfile->sym_stab_info = (PTR)
618 xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
620 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
621 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
622 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
624 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
626 DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
627 DBX_TEXT_SECT (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
628 if (!DBX_TEXT_SECT (objfile))
629 error ("Can't find .text section in symbol file");
631 DBX_SYMBOL_SIZE (objfile) = obj_symbol_entry_size (sym_bfd);
632 DBX_SYMCOUNT (objfile) = bfd_get_symcount (sym_bfd);
633 DBX_SYMTAB_OFFSET (objfile) = SYMBOL_TABLE_OFFSET;
635 /* Read the string table and stash it away in the psymbol_obstack. It is
636 only needed as long as we need to expand psymbols into full symbols,
637 so when we blow away the psymbol the string table goes away as well.
638 Note that gdb used to use the results of attempting to malloc the
639 string table, based on the size it read, as a form of sanity check
640 for botched byte swapping, on the theory that a byte swapped string
641 table size would be so totally bogus that the malloc would fail. Now
642 that we put in on the psymbol_obstack, we can't do this since gdb gets
643 a fatal error (out of virtual memory) if the size is bogus. We can
644 however at least check to see if the size is less than the size of
645 the size field itself, or larger than the size of the entire file.
646 Note that all valid string tables have a size greater than zero, since
647 the bytes used to hold the size are included in the count. */
649 if (STRING_TABLE_OFFSET == 0)
651 /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
652 will never be zero, even when there is no string table. This
653 would appear to be a bug in bfd. */
654 DBX_STRINGTAB_SIZE (objfile) = 0;
655 DBX_STRINGTAB (objfile) = NULL;
659 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
661 perror_with_name (name);
663 memset ((PTR) size_temp, 0, sizeof (size_temp));
664 val = bfd_read ((PTR) size_temp, sizeof (size_temp), 1, sym_bfd);
667 perror_with_name (name);
671 /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
672 EOF if there is no string table, and attempting to read the size
673 from EOF will read zero bytes. */
674 DBX_STRINGTAB_SIZE (objfile) = 0;
675 DBX_STRINGTAB (objfile) = NULL;
679 /* Read some data that would appear to be the string table size.
680 If there really is a string table, then it is probably the right
681 size. Byteswap if necessary and validate the size. Note that
682 the minimum is DBX_STRINGTAB_SIZE_SIZE. If we just read some
683 random data that happened to be at STRING_TABLE_OFFSET, because
684 bfd can't tell us there is no string table, the sanity checks may
685 or may not catch this. */
686 DBX_STRINGTAB_SIZE (objfile) = bfd_h_get_32 (sym_bfd, size_temp);
688 if (DBX_STRINGTAB_SIZE (objfile) < sizeof (size_temp)
689 || DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
690 error ("ridiculous string table size (%d bytes).",
691 DBX_STRINGTAB_SIZE (objfile));
693 DBX_STRINGTAB (objfile) =
694 (char *) obstack_alloc (&objfile -> psymbol_obstack,
695 DBX_STRINGTAB_SIZE (objfile));
697 /* Now read in the string table in one big gulp. */
699 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
701 perror_with_name (name);
702 val = bfd_read (DBX_STRINGTAB (objfile), DBX_STRINGTAB_SIZE (objfile), 1,
704 if (val != DBX_STRINGTAB_SIZE (objfile))
705 perror_with_name (name);
710 /* Perform any local cleanups required when we are done with a particular
711 objfile. I.E, we are in the process of discarding all symbol information
712 for an objfile, freeing up all memory held for it, and unlinking the
713 objfile struct from the global list of known objfiles. */
716 dbx_symfile_finish (objfile)
717 struct objfile *objfile;
719 if (objfile->sym_stab_info != NULL)
721 mfree (objfile -> md, objfile->sym_stab_info);
723 free_header_files ();
727 /* Buffer for reading the symbol table entries. */
728 static struct internal_nlist symbuf[4096];
729 static int symbuf_idx;
730 static int symbuf_end;
732 /* Name of last function encountered. Used in Solaris to approximate
733 object file boundaries. */
734 static char *last_function_name;
736 /* The address in memory of the string table of the object file we are
737 reading (which might not be the "main" object file, but might be a
738 shared library or some other dynamically loaded thing). This is set
739 by read_dbx_symtab when building psymtabs, and by read_ofile_symtab
740 when building symtabs, and is used only by next_symbol_text. */
741 static char *stringtab_global;
743 /* Refill the symbol table input buffer
744 and set the variables that control fetching entries from it.
745 Reports an error if no data available.
746 This function can read past the end of the symbol table
747 (into the string table) but this does no harm. */
750 fill_symbuf (sym_bfd)
753 int nbytes = bfd_read ((PTR)symbuf, sizeof (symbuf), 1, sym_bfd);
755 perror_with_name (bfd_get_filename (sym_bfd));
756 else if (nbytes == 0)
757 error ("Premature end of file reading symbol table");
758 symbuf_end = nbytes / symbol_size;
762 #define SWAP_SYMBOL(symp, abfd) \
764 (symp)->n_strx = bfd_h_get_32(abfd, \
765 (unsigned char *)&(symp)->n_strx); \
766 (symp)->n_desc = bfd_h_get_16 (abfd, \
767 (unsigned char *)&(symp)->n_desc); \
768 (symp)->n_value = bfd_h_get_32 (abfd, \
769 (unsigned char *)&(symp)->n_value); \
772 /* Invariant: The symbol pointed to by symbuf_idx is the first one
773 that hasn't been swapped. Swap the symbol at the same time
774 that symbuf_idx is incremented. */
776 /* dbx allows the text of a symbol name to be continued into the
777 next symbol name! When such a continuation is encountered
778 (a \ at the end of the text of a name)
779 call this function to get the continuation. */
782 dbx_next_symbol_text ()
784 if (symbuf_idx == symbuf_end)
785 fill_symbuf (symfile_bfd);
787 SWAP_SYMBOL(&symbuf[symbuf_idx], symfile_bfd);
788 return symbuf[symbuf_idx++].n_strx + stringtab_global
789 + file_string_table_offset;
792 /* Initializes storage for all of the partial symbols that will be
793 created by read_dbx_symtab and subsidiaries. */
796 init_psymbol_list (objfile)
797 struct objfile *objfile;
799 /* Free any previously allocated psymbol lists. */
800 if (objfile -> global_psymbols.list)
801 mfree (objfile -> md, (PTR)objfile -> global_psymbols.list);
802 if (objfile -> static_psymbols.list)
803 mfree (objfile -> md, (PTR)objfile -> static_psymbols.list);
805 /* Current best guess is that there are approximately a twentieth
806 of the total symbols (in a debugging file) are global or static
808 objfile -> global_psymbols.size = DBX_SYMCOUNT (objfile) / 10;
809 objfile -> static_psymbols.size = DBX_SYMCOUNT (objfile) / 10;
810 objfile -> global_psymbols.next = objfile -> global_psymbols.list = (struct partial_symbol *)
811 xmmalloc (objfile -> md, objfile -> global_psymbols.size * sizeof (struct partial_symbol));
812 objfile -> static_psymbols.next = objfile -> static_psymbols.list = (struct partial_symbol *)
813 xmmalloc (objfile -> md, objfile -> static_psymbols.size * sizeof (struct partial_symbol));
816 /* Initialize the list of bincls to contain none and have some
820 init_bincl_list (number, objfile)
822 struct objfile *objfile;
824 bincls_allocated = number;
825 next_bincl = bincl_list = (struct header_file_location *)
826 xmmalloc (objfile -> md, bincls_allocated * sizeof(struct header_file_location));
829 /* Add a bincl to the list. */
832 add_bincl_to_list (pst, name, instance)
833 struct partial_symtab *pst;
837 if (next_bincl >= bincl_list + bincls_allocated)
839 int offset = next_bincl - bincl_list;
840 bincls_allocated *= 2;
841 bincl_list = (struct header_file_location *)
842 xmrealloc (pst->objfile->md, (char *)bincl_list,
843 bincls_allocated * sizeof (struct header_file_location));
844 next_bincl = bincl_list + offset;
846 next_bincl->pst = pst;
847 next_bincl->instance = instance;
848 next_bincl++->name = name;
851 /* Given a name, value pair, find the corresponding
852 bincl in the list. Return the partial symtab associated
853 with that header_file_location. */
855 static struct partial_symtab *
856 find_corresponding_bincl_psymtab (name, instance)
860 struct header_file_location *bincl;
862 for (bincl = bincl_list; bincl < next_bincl; bincl++)
863 if (bincl->instance == instance
864 && STREQ (name, bincl->name))
867 complain (&repeated_header_complaint, name, symnum);
868 return (struct partial_symtab *) 0;
871 /* Free the storage allocated for the bincl list. */
874 free_bincl_list (objfile)
875 struct objfile *objfile;
877 mfree (objfile -> md, (PTR)bincl_list);
878 bincls_allocated = 0;
881 /* Scan a SunOs dynamic symbol table for symbols of interest and
882 add them to the minimal symbol table. */
885 read_dbx_dynamic_symtab (section_offsets, objfile)
886 struct section_offsets *section_offsets;
887 struct objfile *objfile;
889 bfd *abfd = objfile->obfd;
890 struct cleanup *back_to;
903 /* Check that the symbol file has dynamic symbols that we know about.
904 bfd_arch_unknown can happen if we are reading a sun3 symbol file
905 on a sun4 host (and vice versa) and bfd is not configured
906 --with-target=all. This would trigger an assertion in bfd/sunos.c,
907 so we ignore the dynamic symbols in this case. */
908 if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
909 || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
910 || bfd_get_arch (abfd) == bfd_arch_unknown)
913 dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
917 dynsyms = (asymbol **) xmalloc (dynsym_size);
918 back_to = make_cleanup (free, dynsyms);
920 dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
921 if (dynsym_count < 0)
923 do_cleanups (back_to);
927 /* Enter dynamic symbols into the minimal symbol table
928 if this is a stripped executable. */
929 if (bfd_get_symcount (abfd) <= 0)
932 for (counter = 0; counter < dynsym_count; counter++, symptr++)
934 asymbol *sym = *symptr;
938 sec = bfd_get_section (sym);
940 /* BFD symbols are section relative. */
941 sym_value = sym->value + sec->vma;
943 if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
945 sym_value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
948 else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
950 sym_value += ANOFFSET (section_offsets, SECT_OFF_DATA);
953 else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
955 sym_value += ANOFFSET (section_offsets, SECT_OFF_BSS);
961 if (sym->flags & BSF_GLOBAL)
964 name = (char *) bfd_asymbol_name (sym);
965 record_minimal_symbol
966 (obsavestring (name, strlen (name), &objfile -> symbol_obstack),
973 /* Symbols from shared libraries have a dynamic relocation entry
974 that points to the associated slot in the procedure linkage table.
975 We make a mininal symbol table entry with type mst_solib_trampoline
976 at the address in the procedure linkage table. */
977 dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
980 do_cleanups (back_to);
984 dynrels = (arelent **) xmalloc (dynrel_size);
985 make_cleanup (free, dynrels);
987 dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
988 if (dynrel_count < 0)
990 do_cleanups (back_to);
994 for (counter = 0, relptr = dynrels;
995 counter < dynrel_count;
998 arelent *rel = *relptr;
1000 rel->address + ANOFFSET (section_offsets, SECT_OFF_DATA);
1002 switch (bfd_get_arch (abfd))
1004 case bfd_arch_sparc:
1005 if (rel->howto->type != RELOC_JMP_SLOT)
1009 /* `16' is the type BFD produces for a jump table relocation. */
1010 if (rel->howto->type != 16)
1013 /* Adjust address in the jump table to point to
1014 the start of the bsr instruction. */
1021 name = bfd_asymbol_name (*rel->sym_ptr_ptr);
1022 prim_record_minimal_symbol
1023 (obsavestring (name, strlen (name), &objfile -> symbol_obstack),
1025 mst_solib_trampoline,
1029 do_cleanups (back_to);
1032 /* Given pointers to an a.out symbol table in core containing dbx
1033 style data, setup partial_symtab's describing each source file for
1034 which debugging information is available.
1035 SYMFILE_NAME is the name of the file we are reading from
1036 and SECTION_OFFSETS is the set of offsets for the various sections
1037 of the file (a set of zeros if the mainline program). */
1040 read_dbx_symtab (section_offsets, objfile, text_addr, text_size)
1041 struct section_offsets *section_offsets;
1042 struct objfile *objfile;
1043 CORE_ADDR text_addr;
1046 register struct internal_nlist *bufp = 0; /* =0 avoids gcc -Wall glitch */
1047 register char *namestring;
1049 int past_first_source_file = 0;
1050 CORE_ADDR last_o_file_start = 0;
1051 struct cleanup *back_to;
1054 /* Current partial symtab */
1055 struct partial_symtab *pst;
1057 /* List of current psymtab's include files */
1058 char **psymtab_include_list;
1059 int includes_allocated;
1062 /* Index within current psymtab dependency list */
1063 struct partial_symtab **dependency_list;
1064 int dependencies_used, dependencies_allocated;
1066 /* FIXME. We probably want to change stringtab_global rather than add this
1067 while processing every symbol entry. FIXME. */
1068 file_string_table_offset = 0;
1069 next_file_string_table_offset = 0;
1071 stringtab_global = DBX_STRINGTAB (objfile);
1073 pst = (struct partial_symtab *) 0;
1075 includes_allocated = 30;
1077 psymtab_include_list = (char **) alloca (includes_allocated *
1080 dependencies_allocated = 30;
1081 dependencies_used = 0;
1083 (struct partial_symtab **) alloca (dependencies_allocated *
1084 sizeof (struct partial_symtab *));
1086 /* Init bincl list */
1087 init_bincl_list (20, objfile);
1088 back_to = make_cleanup (free_bincl_list, objfile);
1090 last_source_file = NULL;
1092 lowest_text_address = (CORE_ADDR)-1;
1094 symfile_bfd = objfile->obfd; /* For next_text_symbol */
1095 abfd = objfile->obfd;
1096 symbuf_end = symbuf_idx = 0;
1097 next_symbol_text_func = dbx_next_symbol_text;
1099 for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
1101 /* Get the symbol for this run and pull out some info */
1102 QUIT; /* allow this to be interruptable */
1103 if (symbuf_idx == symbuf_end)
1105 bufp = &symbuf[symbuf_idx++];
1108 * Special case to speed up readin.
1110 if (bufp->n_type == (unsigned char)N_SLINE) continue;
1112 SWAP_SYMBOL (bufp, abfd);
1114 /* Ok. There is a lot of code duplicated in the rest of this
1115 switch statement (for efficiency reasons). Since I don't
1116 like duplicating code, I will do my penance here, and
1117 describe the code which is duplicated:
1119 *) The assignment to namestring.
1120 *) The call to strchr.
1121 *) The addition of a partial symbol the the two partial
1122 symbol lists. This last is a large section of code, so
1123 I've imbedded it in the following macro.
1126 /* Set namestring based on bufp. If the string table index is invalid,
1127 give a fake name, and print a single error message per symbol file read,
1128 rather than abort the symbol reading or flood the user with messages. */
1130 /*FIXME: Too many adds and indirections in here for the inner loop. */
1131 #define SET_NAMESTRING()\
1132 if (((unsigned)bufp->n_strx + file_string_table_offset) >= \
1133 DBX_STRINGTAB_SIZE (objfile)) { \
1134 complain (&string_table_offset_complaint, symnum); \
1135 namestring = "<bad string table offset>"; \
1137 namestring = bufp->n_strx + file_string_table_offset + \
1138 DBX_STRINGTAB (objfile)
1140 #define CUR_SYMBOL_TYPE bufp->n_type
1141 #define CUR_SYMBOL_VALUE bufp->n_value
1142 #define DBXREAD_ONLY
1143 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
1144 start_psymtab(ofile, secoff, fname, low, symoff, global_syms, static_syms)
1145 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps)\
1146 end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps)
1148 #include "partial-stab.h"
1151 /* If there's stuff to be cleaned up, clean it up. */
1152 if (DBX_SYMCOUNT (objfile) > 0 /* We have some syms */
1153 /*FIXME, does this have a bug at start address 0? */
1154 && last_o_file_start
1155 && objfile -> ei.entry_point < bufp->n_value
1156 && objfile -> ei.entry_point >= last_o_file_start)
1158 objfile -> ei.entry_file_lowpc = last_o_file_start;
1159 objfile -> ei.entry_file_highpc = bufp->n_value;
1164 end_psymtab (pst, psymtab_include_list, includes_used,
1165 symnum * symbol_size,
1166 (lowest_text_address == (CORE_ADDR)-1
1167 ? (text_addr + section_offsets->offsets[SECT_OFF_TEXT])
1168 : lowest_text_address)
1170 dependency_list, dependencies_used);
1173 do_cleanups (back_to);
1176 /* Allocate and partially fill a partial symtab. It will be
1177 completely filled at the end of the symbol list.
1179 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1180 is the address relative to which its symbols are (incremental) or 0
1184 struct partial_symtab *
1185 start_psymtab (objfile, section_offsets,
1186 filename, textlow, ldsymoff, global_syms, static_syms)
1187 struct objfile *objfile;
1188 struct section_offsets *section_offsets;
1192 struct partial_symbol *global_syms;
1193 struct partial_symbol *static_syms;
1195 struct partial_symtab *result =
1196 start_psymtab_common(objfile, section_offsets,
1197 filename, textlow, global_syms, static_syms);
1199 result->read_symtab_private = (char *)
1200 obstack_alloc (&objfile -> psymbol_obstack, sizeof (struct symloc));
1201 LDSYMOFF(result) = ldsymoff;
1202 result->read_symtab = dbx_psymtab_to_symtab;
1203 SYMBOL_SIZE(result) = symbol_size;
1204 SYMBOL_OFFSET(result) = symbol_table_offset;
1205 STRING_OFFSET(result) = string_table_offset;
1206 FILE_STRING_OFFSET(result) = file_string_table_offset;
1208 /* If we're handling an ELF file, drag some section-relocation info
1209 for this source file out of the ELF symbol table, to compensate for
1210 Sun brain death. This replaces the section_offsets in this psymtab,
1212 elfstab_offset_sections (objfile, result);
1214 /* Deduce the source language from the filename for this psymtab. */
1215 psymtab_language = deduce_language_from_filename (filename);
1220 /* Close off the current usage of PST.
1221 Returns PST or NULL if the partial symtab was empty and thrown away.
1223 FIXME: List variables and peculiarities of same. */
1225 struct partial_symtab *
1226 end_psymtab (pst, include_list, num_includes, capping_symbol_offset,
1227 capping_text, dependency_list, number_dependencies)
1228 struct partial_symtab *pst;
1229 char **include_list;
1231 int capping_symbol_offset;
1232 CORE_ADDR capping_text;
1233 struct partial_symtab **dependency_list;
1234 int number_dependencies;
1237 struct objfile *objfile = pst -> objfile;
1239 if (capping_symbol_offset != -1)
1240 LDSYMLEN(pst) = capping_symbol_offset - LDSYMOFF(pst);
1241 pst->texthigh = capping_text;
1243 #ifdef N_SO_ADDRESS_MAYBE_MISSING
1244 /* Under Solaris, the N_SO symbols always have a value of 0,
1245 instead of the usual address of the .o file. Therefore,
1246 we have to do some tricks to fill in texthigh and textlow.
1247 The first trick is in partial-stab.h: if we see a static
1248 or global function, and the textlow for the current pst
1249 is still 0, then we use that function's address for
1250 the textlow of the pst.
1252 Now, to fill in texthigh, we remember the last function seen
1253 in the .o file (also in partial-stab.h). Also, there's a hack in
1254 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1255 to here via the misc_info field. Therefore, we can fill in
1256 a reliable texthigh by taking the address plus size of the
1257 last function in the file.
1259 Unfortunately, that does not cover the case where the last function
1260 in the file is static. See the paragraph below for more comments
1263 Finally, if we have a valid textlow for the current file, we run
1264 down the partial_symtab_list filling in previous texthighs that
1265 are still unknown. */
1267 if (pst->texthigh == 0 && last_function_name) {
1270 struct minimal_symbol *minsym;
1272 p = strchr (last_function_name, ':');
1274 p = last_function_name;
1275 n = p - last_function_name;
1277 strncpy (p, last_function_name, n);
1280 minsym = lookup_minimal_symbol (p, objfile);
1283 pst->texthigh = SYMBOL_VALUE_ADDRESS (minsym) +
1284 (long) MSYMBOL_INFO (minsym);
1286 /* This file ends with a static function, and it's
1287 difficult to imagine how hard it would be to track down
1288 the elf symbol. Luckily, most of the time no one will notice,
1289 since the next file will likely be compiled with -g, so
1290 the code below will copy the first fuction's start address
1291 back to our texthigh variable. (Also, if this file is the
1292 last one in a dynamically linked program, texthigh already
1293 has the right value.) If the next file isn't compiled
1294 with -g, then the last function in this file winds up owning
1295 all of the text space up to the next -g file, or the end (minus
1296 shared libraries). This only matters for single stepping,
1297 and even then it will still work, except that it will single
1298 step through all of the covered functions, instead of setting
1299 breakpoints around them as it usualy does. This makes it
1300 pretty slow, but at least it doesn't fail.
1302 We can fix this with a fairly big change to bfd, but we need
1303 to coordinate better with Cygnus if we want to do that. FIXME. */
1305 last_function_name = NULL;
1308 /* this test will be true if the last .o file is only data */
1309 if (pst->textlow == 0)
1310 /* This loses if the text section really starts at address zero
1311 (generally true when we are debugging a .o file, for example).
1312 That is why this whole thing is inside N_SO_ADDRESS_MAYBE_MISSING. */
1313 pst->textlow = pst->texthigh;
1315 /* If we know our own starting text address, then walk through all other
1316 psymtabs for this objfile, and if any didn't know their ending text
1317 address, set it to our starting address. Take care to not set our
1318 own ending address to our starting address, nor to set addresses on
1319 `dependency' files that have both textlow and texthigh zero. */
1321 struct partial_symtab *p1;
1323 ALL_OBJFILE_PSYMTABS (objfile, p1) {
1324 if (p1->texthigh == 0 && p1->textlow != 0 && p1 != pst) {
1325 p1->texthigh = pst->textlow;
1326 /* if this file has only data, then make textlow match texthigh */
1327 if (p1->textlow == 0)
1328 p1->textlow = p1->texthigh;
1333 /* End of kludge for patching Solaris textlow and texthigh. */
1334 #endif /* N_SO_ADDRESS_MAYBE_MISSING. */
1336 pst->n_global_syms =
1337 objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
1338 pst->n_static_syms =
1339 objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
1341 pst->number_of_dependencies = number_dependencies;
1342 if (number_dependencies)
1344 pst->dependencies = (struct partial_symtab **)
1345 obstack_alloc (&objfile->psymbol_obstack,
1346 number_dependencies * sizeof (struct partial_symtab *));
1347 memcpy (pst->dependencies, dependency_list,
1348 number_dependencies * sizeof (struct partial_symtab *));
1351 pst->dependencies = 0;
1353 for (i = 0; i < num_includes; i++)
1355 struct partial_symtab *subpst =
1356 allocate_psymtab (include_list[i], objfile);
1358 subpst->section_offsets = pst->section_offsets;
1359 subpst->read_symtab_private =
1360 (char *) obstack_alloc (&objfile->psymbol_obstack,
1361 sizeof (struct symloc));
1365 subpst->texthigh = 0;
1367 /* We could save slight bits of space by only making one of these,
1368 shared by the entire set of include files. FIXME-someday. */
1369 subpst->dependencies = (struct partial_symtab **)
1370 obstack_alloc (&objfile->psymbol_obstack,
1371 sizeof (struct partial_symtab *));
1372 subpst->dependencies[0] = pst;
1373 subpst->number_of_dependencies = 1;
1375 subpst->globals_offset =
1376 subpst->n_global_syms =
1377 subpst->statics_offset =
1378 subpst->n_static_syms = 0;
1382 subpst->read_symtab = pst->read_symtab;
1385 sort_pst_symbols (pst);
1387 /* If there is already a psymtab or symtab for a file of this name, remove it.
1388 (If there is a symtab, more drastic things also happen.)
1389 This happens in VxWorks. */
1390 free_named_symtabs (pst->filename);
1392 if (num_includes == 0
1393 && number_dependencies == 0
1394 && pst->n_global_syms == 0
1395 && pst->n_static_syms == 0)
1397 /* Throw away this psymtab, it's empty. We can't deallocate it, since
1398 it is on the obstack, but we can forget to chain it on the list. */
1399 /* Empty psymtabs happen as a result of header files which don't have
1400 any symbols in them. There can be a lot of them. But this check
1401 is wrong, in that a psymtab with N_SLINE entries but nothing else
1402 is not empty, but we don't realize that. Fixing that without slowing
1403 things down might be tricky. */
1404 struct partial_symtab *prev_pst;
1406 /* First, snip it out of the psymtab chain */
1408 if (pst->objfile->psymtabs == pst)
1409 pst->objfile->psymtabs = pst->next;
1411 for (prev_pst = pst->objfile->psymtabs; prev_pst; prev_pst = pst->next)
1412 if (prev_pst->next == pst)
1413 prev_pst->next = pst->next;
1415 /* Next, put it on a free list for recycling */
1417 pst->next = pst->objfile->free_psymtabs;
1418 pst->objfile->free_psymtabs = pst;
1420 /* Indicate that psymtab was thrown away. */
1421 pst = (struct partial_symtab *)NULL;
1427 dbx_psymtab_to_symtab_1 (pst)
1428 struct partial_symtab *pst;
1430 struct cleanup *old_chain;
1438 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1443 /* Read in all partial symtabs on which this one is dependent */
1444 for (i = 0; i < pst->number_of_dependencies; i++)
1445 if (!pst->dependencies[i]->readin)
1447 /* Inform about additional files that need to be read in. */
1450 fputs_filtered (" ", gdb_stdout);
1452 fputs_filtered ("and ", gdb_stdout);
1454 printf_filtered ("%s...", pst->dependencies[i]->filename);
1455 wrap_here (""); /* Flush output */
1456 gdb_flush (gdb_stdout);
1458 dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
1461 if (LDSYMLEN(pst)) /* Otherwise it's a dummy */
1463 /* Init stuff necessary for reading in symbols */
1466 old_chain = make_cleanup (really_free_pendings, 0);
1467 file_string_table_offset = FILE_STRING_OFFSET (pst);
1468 symbol_size = SYMBOL_SIZE (pst);
1470 /* Read in this file's symbols */
1471 bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
1472 read_ofile_symtab (pst);
1473 sort_symtab_syms (pst->symtab);
1475 do_cleanups (old_chain);
1481 /* Read in all of the symbols for a given psymtab for real.
1482 Be verbose about it if the user wants that. */
1485 dbx_psymtab_to_symtab (pst)
1486 struct partial_symtab *pst;
1495 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1500 if (LDSYMLEN(pst) || pst->number_of_dependencies)
1502 /* Print the message now, before reading the string table,
1503 to avoid disconcerting pauses. */
1506 printf_filtered ("Reading in symbols for %s...", pst->filename);
1507 gdb_flush (gdb_stdout);
1510 sym_bfd = pst->objfile->obfd;
1512 next_symbol_text_func = dbx_next_symbol_text;
1514 dbx_psymtab_to_symtab_1 (pst);
1516 /* Match with global symbols. This only needs to be done once,
1517 after all of the symtabs and dependencies have been read in. */
1518 scan_file_globals (pst->objfile);
1520 /* Finish up the debug error message. */
1522 printf_filtered ("done.\n");
1526 /* Read in a defined section of a specific object file's symbols. */
1529 read_ofile_symtab (pst)
1530 struct partial_symtab *pst;
1532 register char *namestring;
1533 register struct internal_nlist *bufp;
1535 unsigned max_symnum;
1537 struct objfile *objfile;
1538 int sym_offset; /* Offset to start of symbols to read */
1539 int sym_size; /* Size of symbols to read */
1540 CORE_ADDR text_offset; /* Start of text segment for symbols */
1541 int text_size; /* Size of text segment for symbols */
1542 struct section_offsets *section_offsets;
1544 objfile = pst->objfile;
1545 sym_offset = LDSYMOFF(pst);
1546 sym_size = LDSYMLEN(pst);
1547 text_offset = pst->textlow;
1548 text_size = pst->texthigh - pst->textlow;
1549 section_offsets = pst->section_offsets;
1551 current_objfile = objfile;
1552 subfile_stack = NULL;
1554 stringtab_global = DBX_STRINGTAB (objfile);
1555 last_source_file = NULL;
1557 abfd = objfile->obfd;
1558 symfile_bfd = objfile->obfd; /* Implicit param to next_text_symbol */
1559 symbuf_end = symbuf_idx = 0;
1561 /* It is necessary to actually read one symbol *before* the start
1562 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1563 occurs before the N_SO symbol.
1565 Detecting this in read_dbx_symtab
1566 would slow down initial readin, so we look for it here instead. */
1567 if (!processing_acc_compilation && sym_offset >= (int)symbol_size)
1569 bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
1571 bufp = &symbuf[symbuf_idx++];
1572 SWAP_SYMBOL (bufp, abfd);
1576 processing_gcc_compilation = 0;
1577 if (bufp->n_type == N_TEXT)
1579 const char *tempstring = namestring;
1581 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1582 processing_gcc_compilation = 1;
1583 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1584 processing_gcc_compilation = 2;
1585 if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
1587 if (STREQN (tempstring, "__gnu_compiled", 14))
1588 processing_gcc_compilation = 2;
1591 /* Try to select a C++ demangling based on the compilation unit
1594 if (processing_gcc_compilation)
1596 if (AUTO_DEMANGLING)
1598 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1604 /* The N_SO starting this symtab is the first symbol, so we
1605 better not check the symbol before it. I'm not this can
1606 happen, but it doesn't hurt to check for it. */
1607 bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
1608 processing_gcc_compilation = 0;
1611 if (symbuf_idx == symbuf_end)
1613 bufp = &symbuf[symbuf_idx];
1614 if (bufp->n_type != (unsigned char)N_SO)
1615 error("First symbol in segment of executable not a source symbol");
1617 max_symnum = sym_size / symbol_size;
1620 symnum < max_symnum;
1623 QUIT; /* Allow this to be interruptable */
1624 if (symbuf_idx == symbuf_end)
1626 bufp = &symbuf[symbuf_idx++];
1627 SWAP_SYMBOL (bufp, abfd);
1629 type = bufp->n_type;
1633 if (type & N_STAB) {
1634 process_one_symbol (type, bufp->n_desc, bufp->n_value,
1635 namestring, section_offsets, objfile);
1637 /* We skip checking for a new .o or -l file; that should never
1638 happen in this routine. */
1639 else if (type == N_TEXT)
1641 /* I don't think this code will ever be executed, because
1642 the GCC_COMPILED_FLAG_SYMBOL usually is right before
1643 the N_SO symbol which starts this source file.
1644 However, there is no reason not to accept
1645 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
1647 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1648 processing_gcc_compilation = 1;
1649 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1650 processing_gcc_compilation = 2;
1652 if (AUTO_DEMANGLING)
1654 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1657 else if (type & N_EXT || type == (unsigned char)N_TEXT
1658 || type == (unsigned char)N_NBTEXT
1660 /* Global symbol: see if we came across a dbx defintion for
1661 a corresponding symbol. If so, store the value. Remove
1662 syms from the chain when their values are stored, but
1663 search the whole chain, as there may be several syms from
1664 different files with the same name. */
1665 /* This is probably not true. Since the files will be read
1666 in one at a time, each reference to a global symbol will
1667 be satisfied in each file as it appears. So we skip this
1673 current_objfile = NULL;
1675 /* In a Solaris elf file, this variable, which comes from the
1676 value of the N_SO symbol, will still be 0. Luckily, text_offset,
1677 which comes from pst->textlow is correct. */
1678 if (last_source_start_addr == 0)
1679 last_source_start_addr = text_offset;
1681 pst->symtab = end_symtab (text_offset + text_size, 0, 0, objfile,
1687 /* This handles a single symbol from the symbol-file, building symbols
1688 into a GDB symtab. It takes these arguments and an implicit argument.
1690 TYPE is the type field of the ".stab" symbol entry.
1691 DESC is the desc field of the ".stab" entry.
1692 VALU is the value field of the ".stab" entry.
1693 NAME is the symbol name, in our address space.
1694 SECTION_OFFSETS is a set of amounts by which the sections of this object
1695 file were relocated when it was loaded into memory.
1696 All symbols that refer
1697 to memory locations need to be offset by these amounts.
1698 OBJFILE is the object file from which we are reading symbols.
1699 It is used in end_symtab. */
1702 process_one_symbol (type, desc, valu, name, section_offsets, objfile)
1706 struct section_offsets *section_offsets;
1707 struct objfile *objfile;
1709 #ifdef SUN_FIXED_LBRAC_BUG
1710 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
1711 to correct the address of N_LBRAC's. If it is not defined, then
1712 we never need to correct the addresses. */
1714 /* This records the last pc address we've seen. We depend on there being
1715 an SLINE or FUN or SO before the first LBRAC, since the variable does
1716 not get reset in between reads of different symbol files. */
1717 static CORE_ADDR last_pc_address;
1720 register struct context_stack *new;
1721 /* This remembers the address of the start of a function. It is used
1722 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
1723 relative to the current function's start address. On systems
1724 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
1725 used to relocate these symbol types rather than SECTION_OFFSETS. */
1726 static CORE_ADDR function_start_offset;
1728 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
1729 file. Used to detect the SunPRO solaris compiler. */
1730 static int n_opt_found;
1732 /* The stab type used for the definition of the last function.
1733 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
1734 static int function_stab_type = 0;
1736 if (!block_address_function_relative)
1737 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
1738 function start address, so just use the text offset. */
1739 function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT);
1741 /* Something is wrong if we see real data before
1742 seeing a source file name. */
1744 if (last_source_file == NULL && type != (unsigned char)N_SO)
1746 /* Ignore any symbols which appear before an N_SO symbol. Currently
1747 no one puts symbols there, but we should deal gracefully with the
1748 case. A complain()t might be in order (if !IGNORE_SYMBOL (type)),
1749 but this should not be an error (). */
1757 /* Relocate for dynamic loading */
1758 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1759 goto define_a_symbol;
1762 /* This "symbol" just indicates the start of an inner lexical
1763 context within a function. */
1765 #if defined(BLOCK_ADDRESS_ABSOLUTE)
1766 /* Relocate for dynamic loading (?). */
1767 valu += function_start_offset;
1769 if (block_address_function_relative)
1770 /* Relocate for Sun ELF acc fn-relative syms. */
1771 valu += function_start_offset;
1773 /* On most machines, the block addresses are relative to the
1774 N_SO, the linker did not relocate them (sigh). */
1775 valu += last_source_start_addr;
1778 #ifdef SUN_FIXED_LBRAC_BUG
1779 if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address) {
1780 /* Patch current LBRAC pc value to match last handy pc value */
1781 complain (&lbrac_complaint);
1782 valu = last_pc_address;
1785 new = push_context (desc, valu);
1789 /* This "symbol" just indicates the end of an inner lexical
1790 context that was started with N_LBRAC. */
1792 #if defined(BLOCK_ADDRESS_ABSOLUTE)
1793 /* Relocate for dynamic loading (?). */
1794 valu += function_start_offset;
1796 if (block_address_function_relative)
1797 /* Relocate for Sun ELF acc fn-relative syms. */
1798 valu += function_start_offset;
1800 /* On most machines, the block addresses are relative to the
1801 N_SO, the linker did not relocate them (sigh). */
1802 valu += last_source_start_addr;
1805 new = pop_context();
1806 if (desc != new->depth)
1807 complain (&lbrac_mismatch_complaint, symnum);
1809 /* Some compilers put the variable decls inside of an
1810 LBRAC/RBRAC block. This macro should be nonzero if this
1811 is true. DESC is N_DESC from the N_RBRAC symbol.
1812 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
1813 or the GCC2_COMPILED_SYMBOL. */
1814 #if !defined (VARIABLES_INSIDE_BLOCK)
1815 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
1818 /* Can only use new->locals as local symbols here if we're in
1819 gcc or on a machine that puts them before the lbrack. */
1820 if (!VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1821 local_symbols = new->locals;
1823 if (context_stack_depth
1824 > !VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1826 /* This is not the outermost LBRAC...RBRAC pair in the function,
1827 its local symbols preceded it, and are the ones just recovered
1828 from the context stack. Define the block for them (but don't
1829 bother if the block contains no symbols. Should we complain
1830 on blocks without symbols? I can't think of any useful purpose
1832 if (local_symbols != NULL)
1834 /* Muzzle a compiler bug that makes end < start. (which
1835 compilers? Is this ever harmful?). */
1836 if (new->start_addr > valu)
1838 complain (&lbrac_rbrac_complaint);
1839 new->start_addr = valu;
1841 /* Make a block for the local symbols within. */
1842 finish_block (0, &local_symbols, new->old_blocks,
1843 new->start_addr, valu, objfile);
1848 /* This is the outermost LBRAC...RBRAC pair. There is no
1849 need to do anything; leave the symbols that preceded it
1850 to be attached to the function's own block. We need to
1851 indicate that we just moved outside of the function. */
1852 within_function = 0;
1855 if (VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1856 /* Now pop locals of block just finished. */
1857 local_symbols = new->locals;
1862 /* This kind of symbol indicates the start of an object file. */
1863 /* Relocate for dynamic loading */
1864 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1868 /* This type of symbol indicates the start of data
1869 for one source file.
1870 Finish the symbol table of the previous source file
1871 (if any) and start accumulating a new symbol table. */
1872 /* Relocate for dynamic loading */
1873 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1877 #ifdef SUN_FIXED_LBRAC_BUG
1878 last_pc_address = valu; /* Save for SunOS bug circumcision */
1881 #ifdef PCC_SOL_BROKEN
1882 /* pcc bug, occasionally puts out SO for SOL. */
1883 if (context_stack_depth > 0)
1885 start_subfile (name, NULL);
1889 if (last_source_file)
1891 /* Check if previous symbol was also an N_SO (with some
1892 sanity checks). If so, that one was actually the directory
1893 name, and the current one is the real file name.
1895 if (previous_stab_code == (unsigned char) N_SO)
1897 patch_subfile_names (current_subfile, name);
1898 break; /* Ignore repeated SOs */
1900 end_symtab (valu, 0, 0, objfile, SECT_OFF_TEXT);
1904 /* Null name means this just marks the end of text for this .o file.
1905 Don't start a new symtab in this case. */
1906 if (*name == '\000')
1910 start_symtab (name, NULL, valu);
1914 /* This type of symbol indicates the start of data for
1915 a sub-source-file, one whose contents were copied or
1916 included in the compilation of the main source file
1917 (whose name was given in the N_SO symbol.) */
1918 /* Relocate for dynamic loading */
1919 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1920 start_subfile (name, current_subfile->dirname);
1925 add_new_header_file (name, valu);
1926 start_subfile (name, current_subfile->dirname);
1930 start_subfile (pop_subfile (), current_subfile->dirname);
1934 add_old_header_file (name, valu);
1938 /* This type of "symbol" really just records
1939 one line-number -- core-address correspondence.
1940 Enter it in the line list for this symbol table. */
1941 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
1942 valu += function_start_offset;
1943 #ifdef SUN_FIXED_LBRAC_BUG
1944 last_pc_address = valu; /* Save for SunOS bug circumcision */
1946 record_line (current_subfile, desc, valu);
1950 common_block_start (name, objfile);
1954 common_block_end (objfile);
1957 /* The following symbol types need to have the appropriate offset added
1958 to their value; then we process symbol definitions in the name. */
1960 case N_STSYM: /* Static symbol in data seg */
1961 case N_LCSYM: /* Static symbol in BSS seg */
1962 case N_ROSYM: /* Static symbol in Read-only data seg */
1963 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
1964 Solaris2's stabs-in-elf makes *most* symbols relative
1965 but leaves a few absolute (at least for Solaris 2.1 and version
1966 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
1967 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
1968 .stab "foo:V...",N_STSYM is relative (section base subtracted).
1969 This leaves us no choice but to search for the 'S' or 'V'...
1970 (or pass the whole section_offsets stuff down ONE MORE function
1971 call level, which we really don't want to do). */
1975 /* .o files and NLMs have non-zero text seg offsets, but don't need
1976 their static syms offset in this fashion. XXX - This is really a
1977 crock that should be fixed in the solib handling code so that I
1978 don't have to work around it here. */
1980 if (!symfile_relocatable)
1982 p = strchr (name, ':');
1983 if (p != 0 && p[1] == 'S')
1985 /* The linker relocated it. We don't want to add an
1986 elfstab_offset_sections-type offset, but we *do* want
1987 to add whatever solib.c passed to symbol_file_add as
1988 addr (this is known to affect SunOS4, and I suspect ELF
1989 too). Since elfstab_offset_sections currently does not
1990 muck with the text offset (there is no Ttext.text
1991 symbol), we can get addr from the text offset. If
1992 elfstab_offset_sections ever starts dealing with the
1993 text offset, and we still need to do this, we need to
1994 invent a SECT_OFF_ADDR_KLUDGE or something. */
1995 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1996 goto define_a_symbol;
1999 /* Since it's not the kludge case, re-dispatch to the right handler. */
2001 case N_STSYM: goto case_N_STSYM;
2002 case N_LCSYM: goto case_N_LCSYM;
2003 case N_ROSYM: goto case_N_ROSYM;
2008 case_N_STSYM: /* Static symbol in data seg */
2009 case N_DSLINE: /* Source line number, data seg */
2010 valu += ANOFFSET (section_offsets, SECT_OFF_DATA);
2011 goto define_a_symbol;
2013 case_N_LCSYM: /* Static symbol in BSS seg */
2014 case N_BSLINE: /* Source line number, bss seg */
2015 /* N_BROWS: overlaps with N_BSLINE */
2016 valu += ANOFFSET (section_offsets, SECT_OFF_BSS);
2017 goto define_a_symbol;
2019 case_N_ROSYM: /* Static symbol in Read-only data seg */
2020 valu += ANOFFSET (section_offsets, SECT_OFF_RODATA);
2021 goto define_a_symbol;
2023 case N_ENTRY: /* Alternate entry point */
2024 /* Relocate for dynamic loading */
2025 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2026 goto define_a_symbol;
2028 /* The following symbol types we don't know how to process. Handle
2029 them in a "default" way, but complain to people who care. */
2031 case N_CATCH: /* Exception handler catcher */
2032 case N_EHDECL: /* Exception handler name */
2033 case N_PC: /* Global symbol in Pascal */
2034 case N_M2C: /* Modula-2 compilation unit */
2035 /* N_MOD2: overlaps with N_EHDECL */
2036 case N_SCOPE: /* Modula-2 scope information */
2037 case N_ECOML: /* End common (local name) */
2038 case N_NBTEXT: /* Gould Non-Base-Register symbols??? */
2043 complain (&unknown_symtype_complaint, local_hex_string (type));
2046 /* The following symbol types don't need the address field relocated,
2047 since it is either unused, or is absolute. */
2049 case N_GSYM: /* Global variable */
2050 case N_NSYMS: /* Number of symbols (ultrix) */
2051 case N_NOMAP: /* No map? (ultrix) */
2052 case N_RSYM: /* Register variable */
2053 case N_DEFD: /* Modula-2 GNU module dependency */
2054 case N_SSYM: /* Struct or union element */
2055 case N_LSYM: /* Local symbol in stack */
2056 case N_PSYM: /* Parameter variable */
2057 case N_LENG: /* Length of preceding symbol type */
2061 char *colon_pos = strchr (name, ':');
2062 if (colon_pos == NULL)
2065 deftype = colon_pos[1];
2071 function_stab_type = type;
2073 #ifdef SUN_FIXED_LBRAC_BUG
2074 /* The Sun acc compiler, under SunOS4, puts out
2075 functions with N_GSYM or N_STSYM. The problem is
2076 that the address of the symbol is no good (for N_GSYM
2077 it doesn't even attept an address; for N_STSYM it
2078 puts out an address but then it gets relocated
2079 relative to the data segment, not the text segment).
2080 Currently we can't fix this up later as we do for
2081 some types of symbol in scan_file_globals.
2082 Fortunately we do have a way of finding the address -
2083 we know that the value in last_pc_address is either
2084 the one we want (if we're dealing with the first
2085 function in an object file), or somewhere in the
2086 previous function. This means that we can use the
2087 minimal symbol table to get the address. */
2089 /* On solaris up to 2.2, the N_FUN stab gets relocated.
2090 On Solaris 2.3, ld no longer relocates stabs (which
2091 is good), and the N_FUN's value is now always zero.
2092 The following code can't deal with this, because
2093 last_pc_address depends on getting the address from a
2094 N_SLINE or some such and in Solaris those are function
2095 relative. Best fix is probably to create a Ttext.text symbol
2096 and handle this like Ddata.data and so on. */
2098 if (type == N_GSYM || type == N_STSYM)
2100 struct minimal_symbol *m;
2101 int l = colon_pos - name;
2103 m = lookup_minimal_symbol_by_pc (last_pc_address);
2104 if (m && STREQN (SYMBOL_NAME (m), name, l))
2105 /* last_pc_address was in this function */
2106 valu = SYMBOL_VALUE (m);
2107 else if (m && STREQN (SYMBOL_NAME (m+1), name, l))
2108 /* last_pc_address was in last function */
2109 valu = SYMBOL_VALUE (m+1);
2111 /* Not found - use last_pc_address (for finish_block) */
2112 valu = last_pc_address;
2115 last_pc_address = valu; /* Save for SunOS bug circumcision */
2118 if (block_address_function_relative)
2119 /* For Solaris 2.0 compilers, the block addresses and
2120 N_SLINE's are relative to the start of the
2121 function. On normal systems, and when using gcc on
2122 Solaris 2.0, these addresses are just absolute, or
2123 relative to the N_SO, depending on
2124 BLOCK_ADDRESS_ABSOLUTE. */
2125 function_start_offset = valu;
2127 within_function = 1;
2128 if (context_stack_depth > 0)
2130 new = pop_context ();
2131 /* Make a block for the local symbols within. */
2132 finish_block (new->name, &local_symbols, new->old_blocks,
2133 new->start_addr, valu, objfile);
2135 /* Stack must be empty now. */
2136 if (context_stack_depth != 0)
2137 complain (&lbrac_unmatched_complaint, symnum);
2139 new = push_context (0, valu);
2140 new->name = define_symbol (valu, name, desc, type, objfile);
2144 define_symbol (valu, name, desc, type, objfile);
2150 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
2151 for a bunch of other flags, too. Someday we may parse their
2152 flags; for now we ignore theirs and hope they'll ignore ours. */
2153 case N_OPT: /* Solaris 2: Compiler options */
2156 if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
2158 processing_gcc_compilation = 2;
2159 #if 1 /* Works, but is experimental. -fnf */
2160 if (AUTO_DEMANGLING)
2162 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2171 /* The following symbol types can be ignored. */
2172 case N_OBJ: /* Solaris 2: Object file dir and name */
2173 /* N_UNDF: Solaris 2: file separator mark */
2174 /* N_UNDF: -- we will never encounter it, since we only process one
2175 file's symbols at once. */
2176 case N_ENDM: /* Solaris 2: End of module */
2177 case N_MAIN: /* Name of main routine. */
2181 previous_stab_code = type;
2184 /* FIXME: The only difference between this and elfstab_build_psymtabs is
2185 the call to install_minimal_symbols for elf. If the differences are
2186 really that small, the code should be shared. */
2188 /* Scan and build partial symbols for an coff symbol file.
2189 The coff file has already been processed to get its minimal symbols.
2191 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2194 OBJFILE is the object file we are reading symbols from.
2195 ADDR is the address relative to which the symbols are (e.g.
2196 the base address of the text segment).
2197 MAINLINE is true if we are reading the main symbol
2198 table (as opposed to a shared lib or dynamically loaded file).
2199 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2201 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2202 .stabstr section exists.
2204 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2205 adjusted for coff details. */
2208 coffstab_build_psymtabs (objfile, section_offsets, mainline,
2209 staboffset, stabsize,
2210 stabstroffset, stabstrsize)
2211 struct objfile *objfile;
2212 struct section_offsets *section_offsets;
2214 file_ptr staboffset;
2215 unsigned int stabsize;
2216 file_ptr stabstroffset;
2217 unsigned int stabstrsize;
2220 bfd *sym_bfd = objfile->obfd;
2221 char *name = bfd_get_filename (sym_bfd);
2222 struct dbx_symfile_info *info;
2224 /* There is already a dbx_symfile_info allocated by our caller.
2225 It might even contain some info from the coff symtab to help us. */
2226 info = (struct dbx_symfile_info *) objfile->sym_stab_info;
2228 DBX_TEXT_SECT (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
2229 if (!DBX_TEXT_SECT (objfile))
2230 error ("Can't find .text section in symbol file");
2232 #define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2233 DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
2234 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2235 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
2236 DBX_SYMTAB_OFFSET (objfile) = staboffset;
2238 if (stabstrsize > bfd_get_size (sym_bfd))
2239 error ("ridiculous string table size: %d bytes", stabstrsize);
2240 DBX_STRINGTAB (objfile) = (char *)
2241 obstack_alloc (&objfile->psymbol_obstack, stabstrsize+1);
2243 /* Now read in the string table in one big gulp. */
2245 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2247 perror_with_name (name);
2248 val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2249 if (val != stabstrsize)
2250 perror_with_name (name);
2252 stabsread_new_init ();
2253 buildsym_new_init ();
2254 free_header_files ();
2255 init_header_files ();
2257 processing_acc_compilation = 1;
2259 /* In a coff file, we've already installed the minimal symbols that came
2260 from the coff (non-stab) symbol table, so always act like an
2261 incremental load here. */
2262 dbx_symfile_read (objfile, section_offsets, 0);
2265 /* Scan and build partial symbols for an ELF symbol file.
2266 This ELF file has already been processed to get its minimal symbols,
2267 and any DWARF symbols that were in it.
2269 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2272 OBJFILE is the object file we are reading symbols from.
2273 ADDR is the address relative to which the symbols are (e.g.
2274 the base address of the text segment).
2275 MAINLINE is true if we are reading the main symbol
2276 table (as opposed to a shared lib or dynamically loaded file).
2277 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2279 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2280 .stabstr section exists.
2282 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2283 adjusted for elf details. */
2286 elfstab_build_psymtabs (objfile, section_offsets, mainline,
2287 staboffset, stabsize,
2288 stabstroffset, stabstrsize)
2289 struct objfile *objfile;
2290 struct section_offsets *section_offsets;
2292 file_ptr staboffset;
2293 unsigned int stabsize;
2294 file_ptr stabstroffset;
2295 unsigned int stabstrsize;
2298 bfd *sym_bfd = objfile->obfd;
2299 char *name = bfd_get_filename (sym_bfd);
2300 struct dbx_symfile_info *info;
2302 /* There is already a dbx_symfile_info allocated by our caller.
2303 It might even contain some info from the ELF symtab to help us. */
2304 info = (struct dbx_symfile_info *) objfile->sym_stab_info;
2306 DBX_TEXT_SECT (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
2307 if (!DBX_TEXT_SECT (objfile))
2308 error ("Can't find .text section in symbol file");
2310 #define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2311 DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
2312 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2313 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
2314 DBX_SYMTAB_OFFSET (objfile) = staboffset;
2316 if (stabstrsize > bfd_get_size (sym_bfd))
2317 error ("ridiculous string table size: %d bytes", stabstrsize);
2318 DBX_STRINGTAB (objfile) = (char *)
2319 obstack_alloc (&objfile->psymbol_obstack, stabstrsize+1);
2321 /* Now read in the string table in one big gulp. */
2323 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2325 perror_with_name (name);
2326 val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2327 if (val != stabstrsize)
2328 perror_with_name (name);
2330 stabsread_new_init ();
2331 buildsym_new_init ();
2332 free_header_files ();
2333 init_header_files ();
2334 install_minimal_symbols (objfile);
2336 processing_acc_compilation = 1;
2338 /* In an elf file, we've already installed the minimal symbols that came
2339 from the elf (non-stab) symbol table, so always act like an
2340 incremental load here. */
2341 dbx_symfile_read (objfile, section_offsets, 0);
2344 /* Scan and build partial symbols for a file with special sections for stabs
2345 and stabstrings. The file has already been processed to get its minimal
2346 symbols, and any other symbols that might be necessary to resolve GSYMs.
2348 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2351 OBJFILE is the object file we are reading symbols from.
2352 ADDR is the address relative to which the symbols are (e.g. the base address
2353 of the text segment).
2354 MAINLINE is true if we are reading the main symbol table (as opposed to a
2355 shared lib or dynamically loaded file).
2356 STAB_NAME is the name of the section that contains the stabs.
2357 STABSTR_NAME is the name of the section that contains the stab strings.
2359 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
2362 stabsect_build_psymtabs (objfile, section_offsets, mainline, stab_name,
2363 stabstr_name, text_name)
2364 struct objfile *objfile;
2365 struct section_offsets *section_offsets;
2372 bfd *sym_bfd = objfile->obfd;
2373 char *name = bfd_get_filename (sym_bfd);
2375 asection *stabstrsect;
2377 stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
2378 stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
2384 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
2385 stab_name, stabstr_name);
2387 objfile->sym_stab_info = (PTR) xmalloc (sizeof (struct dbx_symfile_info));
2388 memset (DBX_SYMFILE_INFO (objfile), 0, sizeof (struct dbx_symfile_info));
2390 DBX_TEXT_SECT (objfile) = bfd_get_section_by_name (sym_bfd, text_name);
2391 if (!DBX_TEXT_SECT (objfile))
2392 error ("Can't find %s section in symbol file", text_name);
2394 DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
2395 DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
2396 / DBX_SYMBOL_SIZE (objfile);
2397 DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
2398 DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
2400 if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
2401 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
2402 DBX_STRINGTAB (objfile) = (char *)
2403 obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
2405 /* Now read in the string table in one big gulp. */
2407 val = bfd_get_section_contents (sym_bfd, /* bfd */
2408 stabstrsect, /* bfd section */
2409 DBX_STRINGTAB (objfile), /* input buffer */
2410 0, /* offset into section */
2411 DBX_STRINGTAB_SIZE (objfile)); /* amount to read */
2414 perror_with_name (name);
2416 stabsread_new_init ();
2417 buildsym_new_init ();
2418 free_header_files ();
2419 init_header_files ();
2420 install_minimal_symbols (objfile);
2422 /* Now, do an incremental load */
2424 processing_acc_compilation = 1;
2425 dbx_symfile_read (objfile, section_offsets, 0);
2428 /* Parse the user's idea of an offset for dynamic linking, into our idea
2429 of how to represent it for fast symbol reading. */
2431 static struct section_offsets *
2432 dbx_symfile_offsets (objfile, addr)
2433 struct objfile *objfile;
2436 struct section_offsets *section_offsets;
2439 objfile->num_sections = SECT_OFF_MAX;
2440 section_offsets = (struct section_offsets *)
2441 obstack_alloc (&objfile -> psymbol_obstack,
2442 sizeof (struct section_offsets)
2443 + sizeof (section_offsets->offsets) * (SECT_OFF_MAX-1));
2445 for (i = 0; i < SECT_OFF_MAX; i++)
2446 ANOFFSET (section_offsets, i) = addr;
2448 return section_offsets;
2451 static struct sym_fns aout_sym_fns =
2453 bfd_target_aout_flavour,
2454 dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */
2455 dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2456 dbx_symfile_read, /* sym_read: read a symbol file into symtab */
2457 dbx_symfile_finish, /* sym_finish: finished with file, cleanup */
2458 dbx_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
2459 NULL /* next: pointer to next struct sym_fns */
2463 _initialize_dbxread ()
2465 add_symtab_fns(&aout_sym_fns);