1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright 1986, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 1998
3 Free Software Foundation, Inc.
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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* This module provides three functions: dbx_symfile_init,
23 which initializes to read a symbol file; dbx_new_init, which
24 discards existing cached information when all symbols are being
25 discarded; and dbx_symfile_read, which reads a symbol table
28 dbx_symfile_read only does the minimum work necessary for letting the
29 user "name" things symbolically; it does not read the entire symtab.
30 Instead, it reads the external and static symbols and puts them in partial
31 symbol tables. When more extensive information is requested of a
32 file, the corresponding partial symbol table is mutated into a full
33 fledged symbol table by going back and reading the symbols
34 for real. dbx_psymtab_to_symtab() is the function that does this */
37 #include "gdb_string.h"
39 #if defined(USG) || defined(__CYGNUSCLIB__)
40 #include <sys/types.h>
48 #include "breakpoint.h"
51 #include "gdbcore.h" /* for bfd stuff */
52 #include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
56 #include "stabsread.h"
57 #include "gdb-stabs.h"
59 #include "language.h" /* Needed inside partial-stab.h */
60 #include "complaints.h"
62 #include "aout/aout64.h"
63 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native, now */
66 /* This macro returns the size field of a minimal symbol, which is normally
67 stored in the "info" field. The macro can be overridden for specific
68 targets (e.g. MIPS16) that use the info field for other purposes. */
70 #define MSYMBOL_SIZE(msym) ((long) MSYMBOL_INFO (msym))
74 /* We put a pointer to this structure in the read_symtab_private field
80 /* Offset within the file symbol table of first local symbol for this
85 /* Length (in bytes) of the section of the symbol table devoted to
86 this file's symbols (actually, the section bracketed may contain
87 more than just this file's symbols). If ldsymlen is 0, the only
88 reason for this thing's existence is the dependency list. Nothing
89 else will happen when it is read in. */
93 /* The size of each symbol in the symbol file (in external form). */
97 /* Further information needed to locate the symbols if they are in
102 int file_string_offset
;
105 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
106 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
107 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
108 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
109 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
110 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
111 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
114 /* Remember what we deduced to be the source language of this psymtab. */
116 static enum language psymtab_language
= language_unknown
;
118 /* Nonzero means give verbose info on gdb action. From main.c. */
120 extern int info_verbose
;
122 /* The BFD for this file -- implicit parameter to next_symbol_text. */
124 static bfd
*symfile_bfd
;
126 /* The size of each symbol in the symbol file (in external form).
127 This is set by dbx_symfile_read when building psymtabs, and by
128 dbx_psymtab_to_symtab when building symtabs. */
130 static unsigned symbol_size
;
132 /* This is the offset of the symbol table in the executable file. */
134 static unsigned symbol_table_offset
;
136 /* This is the offset of the string table in the executable file. */
138 static unsigned string_table_offset
;
140 /* For elf+stab executables, the n_strx field is not a simple index
141 into the string table. Instead, each .o file has a base offset in
142 the string table, and the associated symbols contain offsets from
143 this base. The following two variables contain the base offset for
144 the current and next .o files. */
146 static unsigned int file_string_table_offset
;
147 static unsigned int next_file_string_table_offset
;
149 /* .o and NLM files contain unrelocated addresses which are based at
150 0. When non-zero, this flag disables some of the special cases for
151 Solaris elf+stab text addresses at location 0. */
153 static int symfile_relocatable
= 0;
155 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
156 relative to the function start address. */
158 static int block_address_function_relative
= 0;
160 /* The lowest text address we have yet encountered. This is needed
161 because in an a.out file, there is no header field which tells us
162 what address the program is actually going to be loaded at, so we
163 need to make guesses based on the symbols (which *are* relocated to
164 reflect the address it will be loaded at). */
166 static CORE_ADDR lowest_text_address
;
168 /* Non-zero if there is any line number info in the objfile. Prevents
169 end_psymtab from discarding an otherwise empty psymtab. */
171 static int has_line_numbers
;
173 /* Complaints about the symbols we have encountered. */
175 struct complaint lbrac_complaint
=
176 {"bad block start address patched", 0, 0};
178 struct complaint string_table_offset_complaint
=
179 {"bad string table offset in symbol %d", 0, 0};
181 struct complaint unknown_symtype_complaint
=
182 {"unknown symbol type %s", 0, 0};
184 struct complaint unknown_symchar_complaint
=
185 {"unknown symbol descriptor `%c'", 0, 0};
187 struct complaint lbrac_rbrac_complaint
=
188 {"block start larger than block end", 0, 0};
190 struct complaint lbrac_unmatched_complaint
=
191 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
193 struct complaint lbrac_mismatch_complaint
=
194 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
196 struct complaint repeated_header_complaint
=
197 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
199 struct complaint unclaimed_bincl_complaint
=
200 {"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
202 /* find_text_range --- find start and end of loadable code sections
204 The find_text_range function finds the shortest address range that
205 encloses all sections containing executable code, and stores it in
206 objfile's text_addr and text_size members.
208 dbx_symfile_read will use this to finish off the partial symbol
209 table, in some cases. */
212 find_text_range (bfd
* sym_bfd
, struct objfile
*objfile
)
216 CORE_ADDR start
, end
;
218 for (sec
= sym_bfd
->sections
; sec
; sec
= sec
->next
)
219 if (bfd_get_section_flags (sym_bfd
, sec
) & SEC_CODE
)
221 CORE_ADDR sec_start
= bfd_section_vma (sym_bfd
, sec
);
222 CORE_ADDR sec_end
= sec_start
+ bfd_section_size (sym_bfd
, sec
);
226 if (sec_start
< start
)
241 error ("Can't find any code sections in symbol file");
243 DBX_TEXT_ADDR (objfile
) = start
;
244 DBX_TEXT_SIZE (objfile
) = end
- start
;
249 /* During initial symbol readin, we need to have a structure to keep
250 track of which psymtabs have which bincls in them. This structure
251 is used during readin to setup the list of dependencies within each
252 partial symbol table. */
254 struct header_file_location
256 char *name
; /* Name of header file */
257 int instance
; /* See above */
258 struct partial_symtab
*pst
; /* Partial symtab that has the
259 BINCL/EINCL defs for this file */
262 /* The actual list and controling variables */
263 static struct header_file_location
*bincl_list
, *next_bincl
;
264 static int bincls_allocated
;
266 /* Local function prototypes */
268 extern void _initialize_dbxread (void);
270 static void process_now (struct objfile
*);
272 static void free_header_files (void);
274 static void init_header_files (void);
276 static void read_ofile_symtab (struct partial_symtab
*);
278 static void dbx_psymtab_to_symtab (struct partial_symtab
*);
280 static void dbx_psymtab_to_symtab_1 (struct partial_symtab
*);
282 static void read_dbx_dynamic_symtab (struct objfile
*objfile
);
284 static void read_dbx_symtab (struct objfile
*);
286 static void free_bincl_list (struct objfile
*);
288 static struct partial_symtab
*find_corresponding_bincl_psymtab (char *, int);
290 static void add_bincl_to_list (struct partial_symtab
*, char *, int);
292 static void init_bincl_list (int, struct objfile
*);
294 static char *dbx_next_symbol_text (struct objfile
*);
296 static void fill_symbuf (bfd
*);
298 static void dbx_symfile_init (struct objfile
*);
300 static void dbx_new_init (struct objfile
*);
302 static void dbx_symfile_read (struct objfile
*, int);
304 static void dbx_symfile_finish (struct objfile
*);
306 static void record_minimal_symbol (char *, CORE_ADDR
, int, struct objfile
*);
308 static void add_new_header_file (char *, int);
310 static void add_old_header_file (char *, int);
312 static void add_this_object_header_file (int);
314 static struct partial_symtab
*start_psymtab (struct objfile
*, char *,
316 struct partial_symbol
**,
317 struct partial_symbol
**);
319 /* Free up old header file tables */
324 if (this_object_header_files
)
326 free ((PTR
) this_object_header_files
);
327 this_object_header_files
= NULL
;
329 n_allocated_this_object_header_files
= 0;
332 /* Allocate new header file tables */
337 n_allocated_this_object_header_files
= 10;
338 this_object_header_files
= (int *) xmalloc (10 * sizeof (int));
341 /* Add header file number I for this object file
342 at the next successive FILENUM. */
345 add_this_object_header_file (i
)
348 if (n_this_object_header_files
== n_allocated_this_object_header_files
)
350 n_allocated_this_object_header_files
*= 2;
351 this_object_header_files
352 = (int *) xrealloc ((char *) this_object_header_files
,
353 n_allocated_this_object_header_files
* sizeof (int));
356 this_object_header_files
[n_this_object_header_files
++] = i
;
359 /* Add to this file an "old" header file, one already seen in
360 a previous object file. NAME is the header file's name.
361 INSTANCE is its instance code, to select among multiple
362 symbol tables for the same header file. */
365 add_old_header_file (name
, instance
)
369 register struct header_file
*p
= HEADER_FILES (current_objfile
);
372 for (i
= 0; i
< N_HEADER_FILES (current_objfile
); i
++)
373 if (STREQ (p
[i
].name
, name
) && instance
== p
[i
].instance
)
375 add_this_object_header_file (i
);
378 complain (&repeated_header_complaint
, name
, symnum
);
381 /* Add to this file a "new" header file: definitions for its types follow.
382 NAME is the header file's name.
383 Most often this happens only once for each distinct header file,
384 but not necessarily. If it happens more than once, INSTANCE has
385 a different value each time, and references to the header file
386 use INSTANCE values to select among them.
388 dbx output contains "begin" and "end" markers for each new header file,
389 but at this level we just need to know which files there have been;
390 so we record the file when its "begin" is seen and ignore the "end". */
393 add_new_header_file (name
, instance
)
398 register struct header_file
*hfile
;
400 /* Make sure there is room for one more header file. */
402 i
= N_ALLOCATED_HEADER_FILES (current_objfile
);
404 if (N_HEADER_FILES (current_objfile
) == i
)
408 N_ALLOCATED_HEADER_FILES (current_objfile
) = 10;
409 HEADER_FILES (current_objfile
) = (struct header_file
*)
410 xmalloc (10 * sizeof (struct header_file
));
415 N_ALLOCATED_HEADER_FILES (current_objfile
) = i
;
416 HEADER_FILES (current_objfile
) = (struct header_file
*)
417 xrealloc ((char *) HEADER_FILES (current_objfile
),
418 (i
* sizeof (struct header_file
)));
422 /* Create an entry for this header file. */
424 i
= N_HEADER_FILES (current_objfile
)++;
425 hfile
= HEADER_FILES (current_objfile
) + i
;
426 hfile
->name
= savestring (name
, strlen (name
));
427 hfile
->instance
= instance
;
430 = (struct type
**) xmalloc (10 * sizeof (struct type
*));
431 memset (hfile
->vector
, 0, 10 * sizeof (struct type
*));
433 add_this_object_header_file (i
);
437 static struct type
**
438 explicit_lookup_type (real_filenum
, index
)
439 int real_filenum
, index
;
441 register struct header_file
*f
= &HEADER_FILES (current_objfile
)[real_filenum
];
443 if (index
>= f
->length
)
446 f
->vector
= (struct type
**)
447 xrealloc (f
->vector
, f
->length
* sizeof (struct type
*));
448 memset (&f
->vector
[f
->length
/ 2],
449 '\0', f
->length
* sizeof (struct type
*) / 2);
451 return &f
->vector
[index
];
456 record_minimal_symbol (name
, address
, type
, objfile
)
460 struct objfile
*objfile
;
462 enum minimal_symbol_type ms_type
;
464 asection
*bfd_section
;
470 section
= SECT_OFF_TEXT (objfile
);
471 bfd_section
= DBX_TEXT_SECTION (objfile
);
475 section
= SECT_OFF_DATA (objfile
);
476 bfd_section
= DBX_DATA_SECTION (objfile
);
480 section
= SECT_OFF_BSS (objfile
);
481 bfd_section
= DBX_BSS_SECTION (objfile
);
491 section
= SECT_OFF_DATA (objfile
);
492 bfd_section
= DBX_DATA_SECTION (objfile
);
495 /* I don't think this type actually exists; since a N_SETV is the result
496 of going over many .o files, it doesn't make sense to have one
498 ms_type
= mst_file_data
;
499 section
= SECT_OFF_DATA (objfile
);
500 bfd_section
= DBX_DATA_SECTION (objfile
);
507 ms_type
= mst_file_text
;
508 section
= SECT_OFF_TEXT (objfile
);
509 bfd_section
= DBX_TEXT_SECTION (objfile
);
512 ms_type
= mst_file_data
;
514 /* Check for __DYNAMIC, which is used by Sun shared libraries.
515 Record it as global even if it's local, not global, so
516 lookup_minimal_symbol can find it. We don't check symbol_leading_char
517 because for SunOS4 it always is '_'. */
518 if (name
[8] == 'C' && STREQ ("__DYNAMIC", name
))
521 /* Same with virtual function tables, both global and static. */
523 char *tempstring
= name
;
524 if (tempstring
[0] == bfd_get_symbol_leading_char (objfile
->obfd
))
526 if (VTBL_PREFIX_P ((tempstring
)))
529 section
= SECT_OFF_DATA (objfile
);
530 bfd_section
= DBX_DATA_SECTION (objfile
);
533 ms_type
= mst_file_bss
;
534 section
= SECT_OFF_BSS (objfile
);
535 bfd_section
= DBX_BSS_SECTION (objfile
);
538 ms_type
= mst_unknown
;
544 if ((ms_type
== mst_file_text
|| ms_type
== mst_text
)
545 && address
< lowest_text_address
)
546 lowest_text_address
= address
;
548 prim_record_minimal_symbol_and_info
549 (name
, address
, ms_type
, NULL
, section
, bfd_section
, objfile
);
552 /* Scan and build partial symbols for a symbol file.
553 We have been initialized by a call to dbx_symfile_init, which
554 put all the relevant info into a "struct dbx_symfile_info",
555 hung off the objfile structure.
557 MAINLINE is true if we are reading the main symbol
558 table (as opposed to a shared lib or dynamically loaded file). */
561 dbx_symfile_read (objfile
, mainline
)
562 struct objfile
*objfile
;
563 int mainline
; /* FIXME comments above */
567 struct cleanup
*back_to
;
569 sym_bfd
= objfile
->obfd
;
571 /* .o and .nlm files are relocatables with text, data and bss segs based at
572 0. This flag disables special (Solaris stabs-in-elf only) fixups for
573 symbols with a value of 0. */
575 symfile_relocatable
= bfd_get_file_flags (sym_bfd
) & HAS_RELOC
;
577 /* This is true for Solaris (and all other systems which put stabs
578 in sections, hopefully, since it would be silly to do things
579 differently from Solaris), and false for SunOS4 and other a.out
581 block_address_function_relative
=
582 ((0 == strncmp (bfd_get_target (sym_bfd
), "elf", 3))
583 || (0 == strncmp (bfd_get_target (sym_bfd
), "som", 3))
584 || (0 == strncmp (bfd_get_target (sym_bfd
), "coff", 4))
585 || (0 == strncmp (bfd_get_target (sym_bfd
), "pe", 2))
586 || (0 == strncmp (bfd_get_target (sym_bfd
), "epoc-pe", 7))
587 || (0 == strncmp (bfd_get_target (sym_bfd
), "nlm", 3)));
589 val
= bfd_seek (sym_bfd
, DBX_SYMTAB_OFFSET (objfile
), SEEK_SET
);
591 perror_with_name (objfile
->name
);
593 /* If we are reinitializing, or if we have never loaded syms yet, init */
595 || objfile
->global_psymbols
.size
== 0
596 || objfile
->static_psymbols
.size
== 0)
597 init_psymbol_list (objfile
, DBX_SYMCOUNT (objfile
));
599 symbol_size
= DBX_SYMBOL_SIZE (objfile
);
600 symbol_table_offset
= DBX_SYMTAB_OFFSET (objfile
);
602 free_pending_blocks ();
603 back_to
= make_cleanup (really_free_pendings
, 0);
605 init_minimal_symbol_collection ();
606 make_cleanup_discard_minimal_symbols ();
608 /* Read stabs data from executable file and define symbols. */
610 read_dbx_symtab (objfile
);
612 /* Add the dynamic symbols. */
614 read_dbx_dynamic_symtab (objfile
);
616 /* Install any minimal symbols that have been collected as the current
617 minimal symbols for this objfile. */
619 install_minimal_symbols (objfile
);
621 do_cleanups (back_to
);
624 /* Initialize anything that needs initializing when a completely new
625 symbol file is specified (not just adding some symbols from another
626 file, e.g. a shared library). */
629 dbx_new_init (ignore
)
630 struct objfile
*ignore
;
632 stabsread_new_init ();
633 buildsym_new_init ();
634 init_header_files ();
638 /* dbx_symfile_init ()
639 is the dbx-specific initialization routine for reading symbols.
640 It is passed a struct objfile which contains, among other things,
641 the BFD for the file whose symbols are being read, and a slot for a pointer
642 to "private data" which we fill with goodies.
644 We read the string table into malloc'd space and stash a pointer to it.
646 Since BFD doesn't know how to read debug symbols in a format-independent
647 way (and may never do so...), we have to do it ourselves. We will never
648 be called unless this is an a.out (or very similar) file.
649 FIXME, there should be a cleaner peephole into the BFD environment here. */
651 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
654 dbx_symfile_init (objfile
)
655 struct objfile
*objfile
;
658 bfd
*sym_bfd
= objfile
->obfd
;
659 char *name
= bfd_get_filename (sym_bfd
);
661 unsigned char size_temp
[DBX_STRINGTAB_SIZE_SIZE
];
663 /* Allocate struct to keep track of the symfile */
664 objfile
->sym_stab_info
= (struct dbx_symfile_info
*)
665 xmmalloc (objfile
->md
, sizeof (struct dbx_symfile_info
));
666 memset ((PTR
) objfile
->sym_stab_info
, 0, sizeof (struct dbx_symfile_info
));
668 DBX_TEXT_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".text");
669 DBX_DATA_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".data");
670 DBX_BSS_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".bss");
672 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
673 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
674 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
676 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
678 DBX_SYMFILE_INFO (objfile
)->stab_section_info
= NULL
;
680 text_sect
= bfd_get_section_by_name (sym_bfd
, ".text");
682 error ("Can't find .text section in symbol file");
683 DBX_TEXT_ADDR (objfile
) = bfd_section_vma (sym_bfd
, text_sect
);
684 DBX_TEXT_SIZE (objfile
) = bfd_section_size (sym_bfd
, text_sect
);
686 DBX_SYMBOL_SIZE (objfile
) = obj_symbol_entry_size (sym_bfd
);
687 DBX_SYMCOUNT (objfile
) = bfd_get_symcount (sym_bfd
);
688 DBX_SYMTAB_OFFSET (objfile
) = SYMBOL_TABLE_OFFSET
;
690 /* Read the string table and stash it away in the psymbol_obstack. It is
691 only needed as long as we need to expand psymbols into full symbols,
692 so when we blow away the psymbol the string table goes away as well.
693 Note that gdb used to use the results of attempting to malloc the
694 string table, based on the size it read, as a form of sanity check
695 for botched byte swapping, on the theory that a byte swapped string
696 table size would be so totally bogus that the malloc would fail. Now
697 that we put in on the psymbol_obstack, we can't do this since gdb gets
698 a fatal error (out of virtual memory) if the size is bogus. We can
699 however at least check to see if the size is less than the size of
700 the size field itself, or larger than the size of the entire file.
701 Note that all valid string tables have a size greater than zero, since
702 the bytes used to hold the size are included in the count. */
704 if (STRING_TABLE_OFFSET
== 0)
706 /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
707 will never be zero, even when there is no string table. This
708 would appear to be a bug in bfd. */
709 DBX_STRINGTAB_SIZE (objfile
) = 0;
710 DBX_STRINGTAB (objfile
) = NULL
;
714 val
= bfd_seek (sym_bfd
, STRING_TABLE_OFFSET
, SEEK_SET
);
716 perror_with_name (name
);
718 memset ((PTR
) size_temp
, 0, sizeof (size_temp
));
719 val
= bfd_read ((PTR
) size_temp
, sizeof (size_temp
), 1, sym_bfd
);
722 perror_with_name (name
);
726 /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
727 EOF if there is no string table, and attempting to read the size
728 from EOF will read zero bytes. */
729 DBX_STRINGTAB_SIZE (objfile
) = 0;
730 DBX_STRINGTAB (objfile
) = NULL
;
734 /* Read some data that would appear to be the string table size.
735 If there really is a string table, then it is probably the right
736 size. Byteswap if necessary and validate the size. Note that
737 the minimum is DBX_STRINGTAB_SIZE_SIZE. If we just read some
738 random data that happened to be at STRING_TABLE_OFFSET, because
739 bfd can't tell us there is no string table, the sanity checks may
740 or may not catch this. */
741 DBX_STRINGTAB_SIZE (objfile
) = bfd_h_get_32 (sym_bfd
, size_temp
);
743 if (DBX_STRINGTAB_SIZE (objfile
) < sizeof (size_temp
)
744 || DBX_STRINGTAB_SIZE (objfile
) > bfd_get_size (sym_bfd
))
745 error ("ridiculous string table size (%d bytes).",
746 DBX_STRINGTAB_SIZE (objfile
));
748 DBX_STRINGTAB (objfile
) =
749 (char *) obstack_alloc (&objfile
->psymbol_obstack
,
750 DBX_STRINGTAB_SIZE (objfile
));
751 OBJSTAT (objfile
, sz_strtab
+= DBX_STRINGTAB_SIZE (objfile
));
753 /* Now read in the string table in one big gulp. */
755 val
= bfd_seek (sym_bfd
, STRING_TABLE_OFFSET
, SEEK_SET
);
757 perror_with_name (name
);
758 val
= bfd_read (DBX_STRINGTAB (objfile
), DBX_STRINGTAB_SIZE (objfile
), 1,
760 if (val
!= DBX_STRINGTAB_SIZE (objfile
))
761 perror_with_name (name
);
766 /* Perform any local cleanups required when we are done with a particular
767 objfile. I.E, we are in the process of discarding all symbol information
768 for an objfile, freeing up all memory held for it, and unlinking the
769 objfile struct from the global list of known objfiles. */
772 dbx_symfile_finish (objfile
)
773 struct objfile
*objfile
;
775 if (objfile
->sym_stab_info
!= NULL
)
777 if (HEADER_FILES (objfile
) != NULL
)
779 register int i
= N_HEADER_FILES (objfile
);
780 register struct header_file
*hfiles
= HEADER_FILES (objfile
);
784 free (hfiles
[i
].name
);
785 free (hfiles
[i
].vector
);
789 mfree (objfile
->md
, objfile
->sym_stab_info
);
791 free_header_files ();
795 /* Buffer for reading the symbol table entries. */
796 static struct external_nlist symbuf
[4096];
797 static int symbuf_idx
;
798 static int symbuf_end
;
800 /* cont_elem is used for continuing information in cfront.
801 It saves information about which types need to be fixed up and
802 completed after all the stabs are read. */
805 /* sym and stabsstring for continuing information in cfront */
808 /* state dependancies (statics that must be preserved) */
812 int (*func
) (struct objfile
*, struct symbol
*, char *);
813 /* other state dependancies include:
814 (assumption is that these will not change since process_now FIXME!!)
821 static struct cont_elem
*cont_list
= 0;
822 static int cont_limit
= 0;
823 static int cont_count
= 0;
825 /* Arrange for function F to be called with arguments SYM and P later
826 in the stabs reading process. */
828 process_later (sym
, p
, f
)
831 int (*f
) (struct objfile
*, struct symbol
*, char *);
834 /* Allocate more space for the deferred list. */
835 if (cont_count
>= cont_limit
- 1)
837 cont_limit
+= 32; /* chunk size */
840 = (struct cont_elem
*) xrealloc (cont_list
,
842 * sizeof (struct cont_elem
)));
844 error ("Virtual memory exhausted\n");
847 /* Save state variables so we can process these stabs later. */
848 cont_list
[cont_count
].sym_idx
= symbuf_idx
;
849 cont_list
[cont_count
].sym_end
= symbuf_end
;
850 cont_list
[cont_count
].symnum
= symnum
;
851 cont_list
[cont_count
].sym
= sym
;
852 cont_list
[cont_count
].stabs
= p
;
853 cont_list
[cont_count
].func
= f
;
857 /* Call deferred funtions in CONT_LIST. */
860 process_now (objfile
)
861 struct objfile
*objfile
;
870 int (*func
) (struct objfile
*, struct symbol
*, char *);
872 /* Save the state of our caller, we'll want to restore it before
874 save_symbuf_idx
= symbuf_idx
;
875 save_symbuf_end
= symbuf_end
;
876 save_symnum
= symnum
;
878 /* Iterate over all the deferred stabs. */
879 for (i
= 0; i
< cont_count
; i
++)
881 /* Restore the state for this deferred stab. */
882 symbuf_idx
= cont_list
[i
].sym_idx
;
883 symbuf_end
= cont_list
[i
].sym_end
;
884 symnum
= cont_list
[i
].symnum
;
885 sym
= cont_list
[i
].sym
;
886 stabs
= cont_list
[i
].stabs
;
887 func
= cont_list
[i
].func
;
889 /* Call the function to handle this deferrd stab. */
890 err
= (*func
) (objfile
, sym
, stabs
);
892 error ("Internal error: unable to resolve stab.\n");
895 /* Restore our caller's state. */
896 symbuf_idx
= save_symbuf_idx
;
897 symbuf_end
= save_symbuf_end
;
898 symnum
= save_symnum
;
903 /* Name of last function encountered. Used in Solaris to approximate
904 object file boundaries. */
905 static char *last_function_name
;
907 /* The address in memory of the string table of the object file we are
908 reading (which might not be the "main" object file, but might be a
909 shared library or some other dynamically loaded thing). This is
910 set by read_dbx_symtab when building psymtabs, and by
911 read_ofile_symtab when building symtabs, and is used only by
912 next_symbol_text. FIXME: If that is true, we don't need it when
913 building psymtabs, right? */
914 static char *stringtab_global
;
916 /* These variables are used to control fill_symbuf when the stabs
917 symbols are not contiguous (as may be the case when a COFF file is
918 linked using --split-by-reloc). */
919 static struct stab_section_list
*symbuf_sections
;
920 static unsigned int symbuf_left
;
921 static unsigned int symbuf_read
;
923 /* Refill the symbol table input buffer
924 and set the variables that control fetching entries from it.
925 Reports an error if no data available.
926 This function can read past the end of the symbol table
927 (into the string table) but this does no harm. */
930 fill_symbuf (sym_bfd
)
936 if (symbuf_sections
== NULL
)
937 count
= sizeof (symbuf
);
940 if (symbuf_left
<= 0)
942 file_ptr filepos
= symbuf_sections
->section
->filepos
;
943 if (bfd_seek (sym_bfd
, filepos
, SEEK_SET
) != 0)
944 perror_with_name (bfd_get_filename (sym_bfd
));
945 symbuf_left
= bfd_section_size (sym_bfd
, symbuf_sections
->section
);
946 symbol_table_offset
= filepos
- symbuf_read
;
947 symbuf_sections
= symbuf_sections
->next
;
951 if (count
> sizeof (symbuf
))
952 count
= sizeof (symbuf
);
955 nbytes
= bfd_read ((PTR
) symbuf
, count
, 1, sym_bfd
);
957 perror_with_name (bfd_get_filename (sym_bfd
));
958 else if (nbytes
== 0)
959 error ("Premature end of file reading symbol table");
960 symbuf_end
= nbytes
/ symbol_size
;
962 symbuf_left
-= nbytes
;
963 symbuf_read
+= nbytes
;
966 #define SWAP_SYMBOL(symp, abfd) \
968 (symp)->n_strx = bfd_h_get_32(abfd, \
969 (unsigned char *)&(symp)->n_strx); \
970 (symp)->n_desc = bfd_h_get_16 (abfd, \
971 (unsigned char *)&(symp)->n_desc); \
972 (symp)->n_value = bfd_h_get_32 (abfd, \
973 (unsigned char *)&(symp)->n_value); \
976 #define INTERNALIZE_SYMBOL(intern, extern, abfd) \
978 (intern).n_type = bfd_h_get_8 (abfd, (extern)->e_type); \
979 (intern).n_strx = bfd_h_get_32 (abfd, (extern)->e_strx); \
980 (intern).n_desc = bfd_h_get_16 (abfd, (extern)->e_desc); \
981 (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value); \
984 /* Invariant: The symbol pointed to by symbuf_idx is the first one
985 that hasn't been swapped. Swap the symbol at the same time
986 that symbuf_idx is incremented. */
988 /* dbx allows the text of a symbol name to be continued into the
989 next symbol name! When such a continuation is encountered
990 (a \ at the end of the text of a name)
991 call this function to get the continuation. */
994 dbx_next_symbol_text (objfile
)
995 struct objfile
*objfile
;
997 struct internal_nlist nlist
;
999 if (symbuf_idx
== symbuf_end
)
1000 fill_symbuf (symfile_bfd
);
1003 INTERNALIZE_SYMBOL (nlist
, &symbuf
[symbuf_idx
], symfile_bfd
);
1004 OBJSTAT (objfile
, n_stabs
++);
1008 return nlist
.n_strx
+ stringtab_global
+ file_string_table_offset
;
1011 /* Initialize the list of bincls to contain none and have some
1015 init_bincl_list (number
, objfile
)
1017 struct objfile
*objfile
;
1019 bincls_allocated
= number
;
1020 next_bincl
= bincl_list
= (struct header_file_location
*)
1021 xmmalloc (objfile
->md
, bincls_allocated
* sizeof (struct header_file_location
));
1024 /* Add a bincl to the list. */
1027 add_bincl_to_list (pst
, name
, instance
)
1028 struct partial_symtab
*pst
;
1032 if (next_bincl
>= bincl_list
+ bincls_allocated
)
1034 int offset
= next_bincl
- bincl_list
;
1035 bincls_allocated
*= 2;
1036 bincl_list
= (struct header_file_location
*)
1037 xmrealloc (pst
->objfile
->md
, (char *) bincl_list
,
1038 bincls_allocated
* sizeof (struct header_file_location
));
1039 next_bincl
= bincl_list
+ offset
;
1041 next_bincl
->pst
= pst
;
1042 next_bincl
->instance
= instance
;
1043 next_bincl
++->name
= name
;
1046 /* Given a name, value pair, find the corresponding
1047 bincl in the list. Return the partial symtab associated
1048 with that header_file_location. */
1050 static struct partial_symtab
*
1051 find_corresponding_bincl_psymtab (name
, instance
)
1055 struct header_file_location
*bincl
;
1057 for (bincl
= bincl_list
; bincl
< next_bincl
; bincl
++)
1058 if (bincl
->instance
== instance
1059 && STREQ (name
, bincl
->name
))
1062 complain (&repeated_header_complaint
, name
, symnum
);
1063 return (struct partial_symtab
*) 0;
1066 /* Free the storage allocated for the bincl list. */
1069 free_bincl_list (objfile
)
1070 struct objfile
*objfile
;
1072 mfree (objfile
->md
, (PTR
) bincl_list
);
1073 bincls_allocated
= 0;
1077 do_free_bincl_list_cleanup (void *objfile
)
1079 free_bincl_list (objfile
);
1082 static struct cleanup
*
1083 make_cleanup_free_bincl_list (struct objfile
*objfile
)
1085 return make_cleanup (do_free_bincl_list_cleanup
, objfile
);
1088 /* Scan a SunOs dynamic symbol table for symbols of interest and
1089 add them to the minimal symbol table. */
1092 read_dbx_dynamic_symtab (objfile
)
1093 struct objfile
*objfile
;
1095 bfd
*abfd
= objfile
->obfd
;
1096 struct cleanup
*back_to
;
1106 CORE_ADDR sym_value
;
1109 /* Check that the symbol file has dynamic symbols that we know about.
1110 bfd_arch_unknown can happen if we are reading a sun3 symbol file
1111 on a sun4 host (and vice versa) and bfd is not configured
1112 --with-target=all. This would trigger an assertion in bfd/sunos.c,
1113 so we ignore the dynamic symbols in this case. */
1114 if (bfd_get_flavour (abfd
) != bfd_target_aout_flavour
1115 || (bfd_get_file_flags (abfd
) & DYNAMIC
) == 0
1116 || bfd_get_arch (abfd
) == bfd_arch_unknown
)
1119 dynsym_size
= bfd_get_dynamic_symtab_upper_bound (abfd
);
1120 if (dynsym_size
< 0)
1123 dynsyms
= (asymbol
**) xmalloc (dynsym_size
);
1124 back_to
= make_cleanup (free
, dynsyms
);
1126 dynsym_count
= bfd_canonicalize_dynamic_symtab (abfd
, dynsyms
);
1127 if (dynsym_count
< 0)
1129 do_cleanups (back_to
);
1133 /* Enter dynamic symbols into the minimal symbol table
1134 if this is a stripped executable. */
1135 if (bfd_get_symcount (abfd
) <= 0)
1138 for (counter
= 0; counter
< dynsym_count
; counter
++, symptr
++)
1140 asymbol
*sym
= *symptr
;
1144 sec
= bfd_get_section (sym
);
1146 /* BFD symbols are section relative. */
1147 sym_value
= sym
->value
+ sec
->vma
;
1149 if (bfd_get_section_flags (abfd
, sec
) & SEC_CODE
)
1151 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1154 else if (bfd_get_section_flags (abfd
, sec
) & SEC_DATA
)
1156 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1159 else if (bfd_get_section_flags (abfd
, sec
) & SEC_ALLOC
)
1161 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_BSS (objfile
));
1167 if (sym
->flags
& BSF_GLOBAL
)
1170 record_minimal_symbol ((char *) bfd_asymbol_name (sym
), sym_value
,
1175 /* Symbols from shared libraries have a dynamic relocation entry
1176 that points to the associated slot in the procedure linkage table.
1177 We make a mininal symbol table entry with type mst_solib_trampoline
1178 at the address in the procedure linkage table. */
1179 dynrel_size
= bfd_get_dynamic_reloc_upper_bound (abfd
);
1180 if (dynrel_size
< 0)
1182 do_cleanups (back_to
);
1186 dynrels
= (arelent
**) xmalloc (dynrel_size
);
1187 make_cleanup (free
, dynrels
);
1189 dynrel_count
= bfd_canonicalize_dynamic_reloc (abfd
, dynrels
, dynsyms
);
1190 if (dynrel_count
< 0)
1192 do_cleanups (back_to
);
1196 for (counter
= 0, relptr
= dynrels
;
1197 counter
< dynrel_count
;
1198 counter
++, relptr
++)
1200 arelent
*rel
= *relptr
;
1202 rel
->address
+ ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1204 switch (bfd_get_arch (abfd
))
1206 case bfd_arch_sparc
:
1207 if (rel
->howto
->type
!= RELOC_JMP_SLOT
)
1211 /* `16' is the type BFD produces for a jump table relocation. */
1212 if (rel
->howto
->type
!= 16)
1215 /* Adjust address in the jump table to point to
1216 the start of the bsr instruction. */
1223 name
= (char *) bfd_asymbol_name (*rel
->sym_ptr_ptr
);
1224 prim_record_minimal_symbol (name
, address
, mst_solib_trampoline
,
1228 do_cleanups (back_to
);
1231 /* Setup partial_symtab's describing each source file for which
1232 debugging information is available. */
1235 read_dbx_symtab (objfile
)
1236 struct objfile
*objfile
;
1238 register struct external_nlist
*bufp
= 0; /* =0 avoids gcc -Wall glitch */
1239 struct internal_nlist nlist
;
1240 CORE_ADDR text_addr
;
1243 register char *namestring
;
1245 int past_first_source_file
= 0;
1246 CORE_ADDR last_o_file_start
= 0;
1247 CORE_ADDR last_function_start
= 0;
1248 struct cleanup
*back_to
;
1250 int textlow_not_set
;
1252 /* Current partial symtab */
1253 struct partial_symtab
*pst
;
1255 /* List of current psymtab's include files */
1256 char **psymtab_include_list
;
1257 int includes_allocated
;
1260 /* Index within current psymtab dependency list */
1261 struct partial_symtab
**dependency_list
;
1262 int dependencies_used
, dependencies_allocated
;
1264 text_addr
= DBX_TEXT_ADDR (objfile
);
1265 text_size
= DBX_TEXT_SIZE (objfile
);
1267 /* FIXME. We probably want to change stringtab_global rather than add this
1268 while processing every symbol entry. FIXME. */
1269 file_string_table_offset
= 0;
1270 next_file_string_table_offset
= 0;
1272 stringtab_global
= DBX_STRINGTAB (objfile
);
1274 pst
= (struct partial_symtab
*) 0;
1276 includes_allocated
= 30;
1278 psymtab_include_list
= (char **) alloca (includes_allocated
*
1281 dependencies_allocated
= 30;
1282 dependencies_used
= 0;
1284 (struct partial_symtab
**) alloca (dependencies_allocated
*
1285 sizeof (struct partial_symtab
*));
1287 /* Init bincl list */
1288 init_bincl_list (20, objfile
);
1289 back_to
= make_cleanup_free_bincl_list (objfile
);
1291 last_source_file
= NULL
;
1293 lowest_text_address
= (CORE_ADDR
) -1;
1295 symfile_bfd
= objfile
->obfd
; /* For next_text_symbol */
1296 abfd
= objfile
->obfd
;
1297 symbuf_end
= symbuf_idx
= 0;
1298 next_symbol_text_func
= dbx_next_symbol_text
;
1299 textlow_not_set
= 1;
1300 has_line_numbers
= 0;
1302 for (symnum
= 0; symnum
< DBX_SYMCOUNT (objfile
); symnum
++)
1304 /* Get the symbol for this run and pull out some info */
1305 QUIT
; /* allow this to be interruptable */
1306 if (symbuf_idx
== symbuf_end
)
1308 bufp
= &symbuf
[symbuf_idx
++];
1311 * Special case to speed up readin.
1313 if (bfd_h_get_8 (abfd
, bufp
->e_type
) == N_SLINE
)
1315 has_line_numbers
= 1;
1319 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
1320 OBJSTAT (objfile
, n_stabs
++);
1322 /* Ok. There is a lot of code duplicated in the rest of this
1323 switch statement (for efficiency reasons). Since I don't
1324 like duplicating code, I will do my penance here, and
1325 describe the code which is duplicated:
1327 *) The assignment to namestring.
1328 *) The call to strchr.
1329 *) The addition of a partial symbol the the two partial
1330 symbol lists. This last is a large section of code, so
1331 I've imbedded it in the following macro.
1334 /* Set namestring based on nlist. If the string table index is invalid,
1335 give a fake name, and print a single error message per symbol file read,
1336 rather than abort the symbol reading or flood the user with messages. */
1338 /*FIXME: Too many adds and indirections in here for the inner loop. */
1339 #define SET_NAMESTRING()\
1340 if (((unsigned)CUR_SYMBOL_STRX + file_string_table_offset) >= \
1341 DBX_STRINGTAB_SIZE (objfile)) { \
1342 complain (&string_table_offset_complaint, symnum); \
1343 namestring = "<bad string table offset>"; \
1345 namestring = CUR_SYMBOL_STRX + file_string_table_offset + \
1346 DBX_STRINGTAB (objfile)
1348 #define CUR_SYMBOL_TYPE nlist.n_type
1349 #define CUR_SYMBOL_VALUE nlist.n_value
1350 #define CUR_SYMBOL_STRX nlist.n_strx
1351 #define DBXREAD_ONLY
1352 #define START_PSYMTAB(ofile,fname,low,symoff,global_syms,static_syms)\
1353 start_psymtab(ofile, fname, low, symoff, global_syms, static_syms)
1354 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)\
1355 end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)
1357 #include "partial-stab.h"
1360 /* If there's stuff to be cleaned up, clean it up. */
1361 if (DBX_SYMCOUNT (objfile
) > 0 /* We have some syms */
1362 /*FIXME, does this have a bug at start address 0? */
1363 && last_o_file_start
1364 && objfile
->ei
.entry_point
< nlist
.n_value
1365 && objfile
->ei
.entry_point
>= last_o_file_start
)
1367 objfile
->ei
.entry_file_lowpc
= last_o_file_start
;
1368 objfile
->ei
.entry_file_highpc
= nlist
.n_value
;
1373 /* Don't set pst->texthigh lower than it already is. */
1374 CORE_ADDR text_end
=
1375 (lowest_text_address
== (CORE_ADDR
) -1
1376 ? (text_addr
+ ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
)))
1377 : lowest_text_address
)
1380 end_psymtab (pst
, psymtab_include_list
, includes_used
,
1381 symnum
* symbol_size
,
1382 text_end
> pst
->texthigh
? text_end
: pst
->texthigh
,
1383 dependency_list
, dependencies_used
, textlow_not_set
);
1386 do_cleanups (back_to
);
1389 /* Allocate and partially fill a partial symtab. It will be
1390 completely filled at the end of the symbol list.
1392 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1393 is the address relative to which its symbols are (incremental) or 0
1397 static struct partial_symtab
*
1398 start_psymtab (objfile
, filename
, textlow
, ldsymoff
, global_syms
, static_syms
)
1399 struct objfile
*objfile
;
1403 struct partial_symbol
**global_syms
;
1404 struct partial_symbol
**static_syms
;
1406 struct partial_symtab
*result
=
1407 start_psymtab_common (objfile
, objfile
->section_offsets
,
1408 filename
, textlow
, global_syms
, static_syms
);
1410 result
->read_symtab_private
= (char *)
1411 obstack_alloc (&objfile
->psymbol_obstack
, sizeof (struct symloc
));
1412 LDSYMOFF (result
) = ldsymoff
;
1413 result
->read_symtab
= dbx_psymtab_to_symtab
;
1414 SYMBOL_SIZE (result
) = symbol_size
;
1415 SYMBOL_OFFSET (result
) = symbol_table_offset
;
1416 STRING_OFFSET (result
) = string_table_offset
;
1417 FILE_STRING_OFFSET (result
) = file_string_table_offset
;
1419 /* If we're handling an ELF file, drag some section-relocation info
1420 for this source file out of the ELF symbol table, to compensate for
1421 Sun brain death. This replaces the section_offsets in this psymtab,
1423 elfstab_offset_sections (objfile
, result
);
1425 /* Deduce the source language from the filename for this psymtab. */
1426 psymtab_language
= deduce_language_from_filename (filename
);
1431 /* Close off the current usage of PST.
1432 Returns PST or NULL if the partial symtab was empty and thrown away.
1434 FIXME: List variables and peculiarities of same. */
1436 struct partial_symtab
*
1437 end_psymtab (pst
, include_list
, num_includes
, capping_symbol_offset
,
1438 capping_text
, dependency_list
, number_dependencies
, textlow_not_set
)
1439 struct partial_symtab
*pst
;
1440 char **include_list
;
1442 int capping_symbol_offset
;
1443 CORE_ADDR capping_text
;
1444 struct partial_symtab
**dependency_list
;
1445 int number_dependencies
;
1446 int textlow_not_set
;
1449 struct objfile
*objfile
= pst
->objfile
;
1451 if (capping_symbol_offset
!= -1)
1452 LDSYMLEN (pst
) = capping_symbol_offset
- LDSYMOFF (pst
);
1453 pst
->texthigh
= capping_text
;
1455 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1456 /* Under Solaris, the N_SO symbols always have a value of 0,
1457 instead of the usual address of the .o file. Therefore,
1458 we have to do some tricks to fill in texthigh and textlow.
1459 The first trick is in partial-stab.h: if we see a static
1460 or global function, and the textlow for the current pst
1461 is not set (ie: textlow_not_set), then we use that function's
1462 address for the textlow of the pst. */
1464 /* Now, to fill in texthigh, we remember the last function seen
1465 in the .o file (also in partial-stab.h). Also, there's a hack in
1466 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1467 to here via the misc_info field. Therefore, we can fill in
1468 a reliable texthigh by taking the address plus size of the
1469 last function in the file. */
1471 if (pst
->texthigh
== 0 && last_function_name
)
1475 struct minimal_symbol
*minsym
;
1477 p
= strchr (last_function_name
, ':');
1479 p
= last_function_name
;
1480 n
= p
- last_function_name
;
1482 strncpy (p
, last_function_name
, n
);
1485 minsym
= lookup_minimal_symbol (p
, pst
->filename
, objfile
);
1488 /* Sun Fortran appends an underscore to the minimal symbol name,
1489 try again with an appended underscore if the minimal symbol
1493 minsym
= lookup_minimal_symbol (p
, pst
->filename
, objfile
);
1497 pst
->texthigh
= SYMBOL_VALUE_ADDRESS (minsym
) + MSYMBOL_SIZE (minsym
);
1499 last_function_name
= NULL
;
1502 /* this test will be true if the last .o file is only data */
1503 if (textlow_not_set
)
1504 pst
->textlow
= pst
->texthigh
;
1507 struct partial_symtab
*p1
;
1509 /* If we know our own starting text address, then walk through all other
1510 psymtabs for this objfile, and if any didn't know their ending text
1511 address, set it to our starting address. Take care to not set our
1512 own ending address to our starting address, nor to set addresses on
1513 `dependency' files that have both textlow and texthigh zero. */
1515 ALL_OBJFILE_PSYMTABS (objfile
, p1
)
1517 if (p1
->texthigh
== 0 && p1
->textlow
!= 0 && p1
!= pst
)
1519 p1
->texthigh
= pst
->textlow
;
1520 /* if this file has only data, then make textlow match texthigh */
1521 if (p1
->textlow
== 0)
1522 p1
->textlow
= p1
->texthigh
;
1527 /* End of kludge for patching Solaris textlow and texthigh. */
1528 #endif /* SOFUN_ADDRESS_MAYBE_MISSING. */
1530 pst
->n_global_syms
=
1531 objfile
->global_psymbols
.next
- (objfile
->global_psymbols
.list
+ pst
->globals_offset
);
1532 pst
->n_static_syms
=
1533 objfile
->static_psymbols
.next
- (objfile
->static_psymbols
.list
+ pst
->statics_offset
);
1535 pst
->number_of_dependencies
= number_dependencies
;
1536 if (number_dependencies
)
1538 pst
->dependencies
= (struct partial_symtab
**)
1539 obstack_alloc (&objfile
->psymbol_obstack
,
1540 number_dependencies
* sizeof (struct partial_symtab
*));
1541 memcpy (pst
->dependencies
, dependency_list
,
1542 number_dependencies
* sizeof (struct partial_symtab
*));
1545 pst
->dependencies
= 0;
1547 for (i
= 0; i
< num_includes
; i
++)
1549 struct partial_symtab
*subpst
=
1550 allocate_psymtab (include_list
[i
], objfile
);
1552 /* Copy the sesction_offsets array from the main psymtab. */
1553 subpst
->section_offsets
= pst
->section_offsets
;
1554 subpst
->read_symtab_private
=
1555 (char *) obstack_alloc (&objfile
->psymbol_obstack
,
1556 sizeof (struct symloc
));
1560 subpst
->texthigh
= 0;
1562 /* We could save slight bits of space by only making one of these,
1563 shared by the entire set of include files. FIXME-someday. */
1564 subpst
->dependencies
= (struct partial_symtab
**)
1565 obstack_alloc (&objfile
->psymbol_obstack
,
1566 sizeof (struct partial_symtab
*));
1567 subpst
->dependencies
[0] = pst
;
1568 subpst
->number_of_dependencies
= 1;
1570 subpst
->globals_offset
=
1571 subpst
->n_global_syms
=
1572 subpst
->statics_offset
=
1573 subpst
->n_static_syms
= 0;
1577 subpst
->read_symtab
= pst
->read_symtab
;
1580 sort_pst_symbols (pst
);
1582 /* If there is already a psymtab or symtab for a file of this name, remove it.
1583 (If there is a symtab, more drastic things also happen.)
1584 This happens in VxWorks. */
1585 free_named_symtabs (pst
->filename
);
1587 if (num_includes
== 0
1588 && number_dependencies
== 0
1589 && pst
->n_global_syms
== 0
1590 && pst
->n_static_syms
== 0
1591 && has_line_numbers
== 0)
1593 /* Throw away this psymtab, it's empty. We can't deallocate it, since
1594 it is on the obstack, but we can forget to chain it on the list. */
1595 /* Empty psymtabs happen as a result of header files which don't have
1596 any symbols in them. There can be a lot of them. But this check
1597 is wrong, in that a psymtab with N_SLINE entries but nothing else
1598 is not empty, but we don't realize that. Fixing that without slowing
1599 things down might be tricky. */
1601 discard_psymtab (pst
);
1603 /* Indicate that psymtab was thrown away. */
1604 pst
= (struct partial_symtab
*) NULL
;
1610 dbx_psymtab_to_symtab_1 (pst
)
1611 struct partial_symtab
*pst
;
1613 struct cleanup
*old_chain
;
1621 fprintf_unfiltered (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
1626 /* Read in all partial symtabs on which this one is dependent */
1627 for (i
= 0; i
< pst
->number_of_dependencies
; i
++)
1628 if (!pst
->dependencies
[i
]->readin
)
1630 /* Inform about additional files that need to be read in. */
1633 fputs_filtered (" ", gdb_stdout
);
1635 fputs_filtered ("and ", gdb_stdout
);
1637 printf_filtered ("%s...", pst
->dependencies
[i
]->filename
);
1638 wrap_here (""); /* Flush output */
1639 gdb_flush (gdb_stdout
);
1641 dbx_psymtab_to_symtab_1 (pst
->dependencies
[i
]);
1644 if (LDSYMLEN (pst
)) /* Otherwise it's a dummy */
1646 /* Init stuff necessary for reading in symbols */
1649 old_chain
= make_cleanup (really_free_pendings
, 0);
1650 file_string_table_offset
= FILE_STRING_OFFSET (pst
);
1651 symbol_size
= SYMBOL_SIZE (pst
);
1653 /* Read in this file's symbols */
1654 bfd_seek (pst
->objfile
->obfd
, SYMBOL_OFFSET (pst
), SEEK_SET
);
1655 read_ofile_symtab (pst
);
1656 sort_symtab_syms (pst
->symtab
);
1658 do_cleanups (old_chain
);
1664 /* Read in all of the symbols for a given psymtab for real.
1665 Be verbose about it if the user wants that. */
1668 dbx_psymtab_to_symtab (pst
)
1669 struct partial_symtab
*pst
;
1678 fprintf_unfiltered (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
1683 if (LDSYMLEN (pst
) || pst
->number_of_dependencies
)
1685 /* Print the message now, before reading the string table,
1686 to avoid disconcerting pauses. */
1689 printf_filtered ("Reading in symbols for %s...", pst
->filename
);
1690 gdb_flush (gdb_stdout
);
1693 sym_bfd
= pst
->objfile
->obfd
;
1695 next_symbol_text_func
= dbx_next_symbol_text
;
1697 dbx_psymtab_to_symtab_1 (pst
);
1699 /* Match with global symbols. This only needs to be done once,
1700 after all of the symtabs and dependencies have been read in. */
1701 scan_file_globals (pst
->objfile
);
1703 /* Finish up the debug error message. */
1705 printf_filtered ("done.\n");
1709 /* Read in a defined section of a specific object file's symbols. */
1712 read_ofile_symtab (pst
)
1713 struct partial_symtab
*pst
;
1715 register char *namestring
;
1716 register struct external_nlist
*bufp
;
1717 struct internal_nlist nlist
;
1719 unsigned max_symnum
;
1721 struct objfile
*objfile
;
1722 int sym_offset
; /* Offset to start of symbols to read */
1723 int sym_size
; /* Size of symbols to read */
1724 CORE_ADDR text_offset
; /* Start of text segment for symbols */
1725 int text_size
; /* Size of text segment for symbols */
1726 struct section_offsets
*section_offsets
;
1728 objfile
= pst
->objfile
;
1729 sym_offset
= LDSYMOFF (pst
);
1730 sym_size
= LDSYMLEN (pst
);
1731 text_offset
= pst
->textlow
;
1732 text_size
= pst
->texthigh
- pst
->textlow
;
1733 /* This cannot be simply objfile->section_offsets because of
1734 elfstab_offset_sections() which initializes the psymtab section
1735 offsets information in a special way, and that is different from
1736 objfile->section_offsets. */
1737 section_offsets
= pst
->section_offsets
;
1739 current_objfile
= objfile
;
1740 subfile_stack
= NULL
;
1742 stringtab_global
= DBX_STRINGTAB (objfile
);
1743 last_source_file
= NULL
;
1745 abfd
= objfile
->obfd
;
1746 symfile_bfd
= objfile
->obfd
; /* Implicit param to next_text_symbol */
1747 symbuf_end
= symbuf_idx
= 0;
1749 /* It is necessary to actually read one symbol *before* the start
1750 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1751 occurs before the N_SO symbol.
1753 Detecting this in read_dbx_symtab
1754 would slow down initial readin, so we look for it here instead. */
1755 if (!processing_acc_compilation
&& sym_offset
>= (int) symbol_size
)
1757 bfd_seek (symfile_bfd
, sym_offset
- symbol_size
, SEEK_CUR
);
1759 bufp
= &symbuf
[symbuf_idx
++];
1760 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
1761 OBJSTAT (objfile
, n_stabs
++);
1765 processing_gcc_compilation
= 0;
1766 if (nlist
.n_type
== N_TEXT
)
1768 const char *tempstring
= namestring
;
1770 if (STREQ (namestring
, GCC_COMPILED_FLAG_SYMBOL
))
1771 processing_gcc_compilation
= 1;
1772 else if (STREQ (namestring
, GCC2_COMPILED_FLAG_SYMBOL
))
1773 processing_gcc_compilation
= 2;
1774 if (tempstring
[0] == bfd_get_symbol_leading_char (symfile_bfd
))
1776 if (STREQN (tempstring
, "__gnu_compiled", 14))
1777 processing_gcc_compilation
= 2;
1780 /* Try to select a C++ demangling based on the compilation unit
1783 if (processing_gcc_compilation
)
1785 if (AUTO_DEMANGLING
)
1787 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
1793 /* The N_SO starting this symtab is the first symbol, so we
1794 better not check the symbol before it. I'm not this can
1795 happen, but it doesn't hurt to check for it. */
1796 bfd_seek (symfile_bfd
, sym_offset
, SEEK_CUR
);
1797 processing_gcc_compilation
= 0;
1800 if (symbuf_idx
== symbuf_end
)
1802 bufp
= &symbuf
[symbuf_idx
];
1803 if (bfd_h_get_8 (abfd
, bufp
->e_type
) != N_SO
)
1804 error ("First symbol in segment of executable not a source symbol");
1806 max_symnum
= sym_size
/ symbol_size
;
1809 symnum
< max_symnum
;
1812 QUIT
; /* Allow this to be interruptable */
1813 if (symbuf_idx
== symbuf_end
)
1815 bufp
= &symbuf
[symbuf_idx
++];
1816 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
1817 OBJSTAT (objfile
, n_stabs
++);
1819 type
= bfd_h_get_8 (abfd
, bufp
->e_type
);
1825 process_one_symbol (type
, nlist
.n_desc
, nlist
.n_value
,
1826 namestring
, section_offsets
, objfile
);
1828 /* We skip checking for a new .o or -l file; that should never
1829 happen in this routine. */
1830 else if (type
== N_TEXT
)
1832 /* I don't think this code will ever be executed, because
1833 the GCC_COMPILED_FLAG_SYMBOL usually is right before
1834 the N_SO symbol which starts this source file.
1835 However, there is no reason not to accept
1836 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
1838 if (STREQ (namestring
, GCC_COMPILED_FLAG_SYMBOL
))
1839 processing_gcc_compilation
= 1;
1840 else if (STREQ (namestring
, GCC2_COMPILED_FLAG_SYMBOL
))
1841 processing_gcc_compilation
= 2;
1843 if (AUTO_DEMANGLING
)
1845 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
1848 else if (type
& N_EXT
|| type
== (unsigned char) N_TEXT
1849 || type
== (unsigned char) N_NBTEXT
1852 /* Global symbol: see if we came across a dbx defintion for
1853 a corresponding symbol. If so, store the value. Remove
1854 syms from the chain when their values are stored, but
1855 search the whole chain, as there may be several syms from
1856 different files with the same name. */
1857 /* This is probably not true. Since the files will be read
1858 in one at a time, each reference to a global symbol will
1859 be satisfied in each file as it appears. So we skip this
1865 current_objfile
= NULL
;
1867 /* In a Solaris elf file, this variable, which comes from the
1868 value of the N_SO symbol, will still be 0. Luckily, text_offset,
1869 which comes from pst->textlow is correct. */
1870 if (last_source_start_addr
== 0)
1871 last_source_start_addr
= text_offset
;
1873 /* In reordered executables last_source_start_addr may not be the
1874 lower bound for this symtab, instead use text_offset which comes
1875 from pst->textlow which is correct. */
1876 if (last_source_start_addr
> text_offset
)
1877 last_source_start_addr
= text_offset
;
1879 pst
->symtab
= end_symtab (text_offset
+ text_size
, objfile
, SECT_OFF_TEXT (objfile
));
1881 /* Process items which we had to "process_later" due to dependancies
1883 process_now (objfile
);
1889 /* This handles a single symbol from the symbol-file, building symbols
1890 into a GDB symtab. It takes these arguments and an implicit argument.
1892 TYPE is the type field of the ".stab" symbol entry.
1893 DESC is the desc field of the ".stab" entry.
1894 VALU is the value field of the ".stab" entry.
1895 NAME is the symbol name, in our address space.
1896 SECTION_OFFSETS is a set of amounts by which the sections of this object
1897 file were relocated when it was loaded into memory.
1898 Note that these section_offsets are not the
1899 objfile->section_offsets but the pst->section_offsets.
1900 All symbols that refer
1901 to memory locations need to be offset by these amounts.
1902 OBJFILE is the object file from which we are reading symbols.
1903 It is used in end_symtab. */
1906 process_one_symbol (type
, desc
, valu
, name
, section_offsets
, objfile
)
1910 struct section_offsets
*section_offsets
;
1911 struct objfile
*objfile
;
1913 #ifdef SUN_FIXED_LBRAC_BUG
1914 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
1915 to correct the address of N_LBRAC's. If it is not defined, then
1916 we never need to correct the addresses. */
1918 /* This records the last pc address we've seen. We depend on there being
1919 an SLINE or FUN or SO before the first LBRAC, since the variable does
1920 not get reset in between reads of different symbol files. */
1921 static CORE_ADDR last_pc_address
;
1924 register struct context_stack
*new;
1925 /* This remembers the address of the start of a function. It is used
1926 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
1927 relative to the current function's start address. On systems
1928 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
1929 used to relocate these symbol types rather than SECTION_OFFSETS. */
1930 static CORE_ADDR function_start_offset
;
1932 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
1933 file. Used to detect the SunPRO solaris compiler. */
1934 static int n_opt_found
;
1936 /* The stab type used for the definition of the last function.
1937 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
1938 static int function_stab_type
= 0;
1940 if (!block_address_function_relative
)
1941 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
1942 function start address, so just use the text offset. */
1943 function_start_offset
= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
1945 /* Something is wrong if we see real data before
1946 seeing a source file name. */
1948 if (last_source_file
== NULL
&& type
!= (unsigned char) N_SO
)
1950 /* Ignore any symbols which appear before an N_SO symbol.
1951 Currently no one puts symbols there, but we should deal
1952 gracefully with the case. A complain()t might be in order,
1953 but this should not be an error (). */
1962 if (*name
== '\000')
1964 /* This N_FUN marks the end of a function. This closes off the
1966 within_function
= 0;
1967 new = pop_context ();
1969 /* Make a block for the local symbols within. */
1970 finish_block (new->name
, &local_symbols
, new->old_blocks
,
1971 new->start_addr
, new->start_addr
+ valu
,
1974 /* May be switching to an assembler file which may not be using
1975 block relative stabs, so reset the offset. */
1976 if (block_address_function_relative
)
1977 function_start_offset
= 0;
1982 /* Relocate for dynamic loading */
1983 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
1984 #ifdef SMASH_TEXT_ADDRESS
1985 SMASH_TEXT_ADDRESS (valu
);
1987 goto define_a_symbol
;
1990 /* This "symbol" just indicates the start of an inner lexical
1991 context within a function. */
1993 /* Ignore extra outermost context from SunPRO cc and acc. */
1994 if (n_opt_found
&& desc
== 1)
1997 if (block_address_function_relative
)
1998 /* Relocate for Sun ELF acc fn-relative syms. */
1999 valu
+= function_start_offset
;
2001 /* On most machines, the block addresses are relative to the
2002 N_SO, the linker did not relocate them (sigh). */
2003 valu
+= last_source_start_addr
;
2005 #ifdef SUN_FIXED_LBRAC_BUG
2006 if (!SUN_FIXED_LBRAC_BUG
&& valu
< last_pc_address
)
2008 /* Patch current LBRAC pc value to match last handy pc value */
2009 complain (&lbrac_complaint
);
2010 valu
= last_pc_address
;
2013 new = push_context (desc
, valu
);
2017 /* This "symbol" just indicates the end of an inner lexical
2018 context that was started with N_LBRAC. */
2020 /* Ignore extra outermost context from SunPRO cc and acc. */
2021 if (n_opt_found
&& desc
== 1)
2024 if (block_address_function_relative
)
2025 /* Relocate for Sun ELF acc fn-relative syms. */
2026 valu
+= function_start_offset
;
2028 /* On most machines, the block addresses are relative to the
2029 N_SO, the linker did not relocate them (sigh). */
2030 valu
+= last_source_start_addr
;
2032 new = pop_context ();
2033 if (desc
!= new->depth
)
2034 complain (&lbrac_mismatch_complaint
, symnum
);
2036 /* Some compilers put the variable decls inside of an
2037 LBRAC/RBRAC block. This macro should be nonzero if this
2038 is true. DESC is N_DESC from the N_RBRAC symbol.
2039 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
2040 or the GCC2_COMPILED_SYMBOL. */
2041 #if !defined (VARIABLES_INSIDE_BLOCK)
2042 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
2045 /* Can only use new->locals as local symbols here if we're in
2046 gcc or on a machine that puts them before the lbrack. */
2047 if (!VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2048 local_symbols
= new->locals
;
2050 if (context_stack_depth
2051 > !VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2053 /* This is not the outermost LBRAC...RBRAC pair in the function,
2054 its local symbols preceded it, and are the ones just recovered
2055 from the context stack. Define the block for them (but don't
2056 bother if the block contains no symbols. Should we complain
2057 on blocks without symbols? I can't think of any useful purpose
2059 if (local_symbols
!= NULL
)
2061 /* Muzzle a compiler bug that makes end < start. (which
2062 compilers? Is this ever harmful?). */
2063 if (new->start_addr
> valu
)
2065 complain (&lbrac_rbrac_complaint
);
2066 new->start_addr
= valu
;
2068 /* Make a block for the local symbols within. */
2069 finish_block (0, &local_symbols
, new->old_blocks
,
2070 new->start_addr
, valu
, objfile
);
2075 /* This is the outermost LBRAC...RBRAC pair. There is no
2076 need to do anything; leave the symbols that preceded it
2077 to be attached to the function's own block. We need to
2078 indicate that we just moved outside of the function. */
2079 within_function
= 0;
2082 if (VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2083 /* Now pop locals of block just finished. */
2084 local_symbols
= new->locals
;
2089 /* This kind of symbol indicates the start of an object file. */
2090 /* Relocate for dynamic loading */
2091 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2095 /* This type of symbol indicates the start of data
2096 for one source file.
2097 Finish the symbol table of the previous source file
2098 (if any) and start accumulating a new symbol table. */
2099 /* Relocate for dynamic loading */
2100 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2104 #ifdef SUN_FIXED_LBRAC_BUG
2105 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
2108 #ifdef PCC_SOL_BROKEN
2109 /* pcc bug, occasionally puts out SO for SOL. */
2110 if (context_stack_depth
> 0)
2112 start_subfile (name
, NULL
);
2116 if (last_source_file
)
2118 /* Check if previous symbol was also an N_SO (with some
2119 sanity checks). If so, that one was actually the directory
2120 name, and the current one is the real file name.
2122 if (previous_stab_code
== (unsigned char) N_SO
)
2124 patch_subfile_names (current_subfile
, name
);
2125 break; /* Ignore repeated SOs */
2127 end_symtab (valu
, objfile
, SECT_OFF_TEXT (objfile
));
2131 /* Null name means this just marks the end of text for this .o file.
2132 Don't start a new symtab in this case. */
2133 if (*name
== '\000')
2136 if (block_address_function_relative
)
2137 function_start_offset
= 0;
2140 start_symtab (name
, NULL
, valu
);
2141 record_debugformat ("stabs");
2145 /* This type of symbol indicates the start of data for
2146 a sub-source-file, one whose contents were copied or
2147 included in the compilation of the main source file
2148 (whose name was given in the N_SO symbol.) */
2149 /* Relocate for dynamic loading */
2150 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2151 start_subfile (name
, current_subfile
->dirname
);
2156 add_new_header_file (name
, valu
);
2157 start_subfile (name
, current_subfile
->dirname
);
2161 start_subfile (pop_subfile (), current_subfile
->dirname
);
2165 add_old_header_file (name
, valu
);
2169 /* This type of "symbol" really just records
2170 one line-number -- core-address correspondence.
2171 Enter it in the line list for this symbol table. */
2173 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
2174 valu
+= function_start_offset
;
2176 #ifdef SUN_FIXED_LBRAC_BUG
2177 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
2179 record_line (current_subfile
, desc
, valu
);
2183 common_block_start (name
, objfile
);
2187 common_block_end (objfile
);
2190 /* The following symbol types need to have the appropriate offset added
2191 to their value; then we process symbol definitions in the name. */
2193 case N_STSYM
: /* Static symbol in data seg */
2194 case N_LCSYM
: /* Static symbol in BSS seg */
2195 case N_ROSYM
: /* Static symbol in Read-only data seg */
2196 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
2197 Solaris2's stabs-in-elf makes *most* symbols relative
2198 but leaves a few absolute (at least for Solaris 2.1 and version
2199 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
2200 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
2201 .stab "foo:V...",N_STSYM is relative (section base subtracted).
2202 This leaves us no choice but to search for the 'S' or 'V'...
2203 (or pass the whole section_offsets stuff down ONE MORE function
2204 call level, which we really don't want to do). */
2208 /* .o files and NLMs have non-zero text seg offsets, but don't need
2209 their static syms offset in this fashion. XXX - This is really a
2210 crock that should be fixed in the solib handling code so that I
2211 don't have to work around it here. */
2213 if (!symfile_relocatable
)
2215 p
= strchr (name
, ':');
2216 if (p
!= 0 && p
[1] == 'S')
2218 /* The linker relocated it. We don't want to add an
2219 elfstab_offset_sections-type offset, but we *do* want
2220 to add whatever solib.c passed to symbol_file_add as
2221 addr (this is known to affect SunOS4, and I suspect ELF
2222 too). Since elfstab_offset_sections currently does not
2223 muck with the text offset (there is no Ttext.text
2224 symbol), we can get addr from the text offset. If
2225 elfstab_offset_sections ever starts dealing with the
2226 text offset, and we still need to do this, we need to
2227 invent a SECT_OFF_ADDR_KLUDGE or something. */
2228 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2229 goto define_a_symbol
;
2232 /* Since it's not the kludge case, re-dispatch to the right handler. */
2246 case_N_STSYM
: /* Static symbol in data seg */
2247 case N_DSLINE
: /* Source line number, data seg */
2248 valu
+= ANOFFSET (section_offsets
, SECT_OFF_DATA (objfile
));
2249 goto define_a_symbol
;
2251 case_N_LCSYM
: /* Static symbol in BSS seg */
2252 case N_BSLINE
: /* Source line number, bss seg */
2253 /* N_BROWS: overlaps with N_BSLINE */
2254 valu
+= ANOFFSET (section_offsets
, SECT_OFF_BSS (objfile
));
2255 goto define_a_symbol
;
2257 case_N_ROSYM
: /* Static symbol in Read-only data seg */
2258 valu
+= ANOFFSET (section_offsets
, SECT_OFF_RODATA (objfile
));
2259 goto define_a_symbol
;
2261 case N_ENTRY
: /* Alternate entry point */
2262 /* Relocate for dynamic loading */
2263 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2264 goto define_a_symbol
;
2266 /* The following symbol types we don't know how to process. Handle
2267 them in a "default" way, but complain to people who care. */
2269 case N_CATCH
: /* Exception handler catcher */
2270 case N_EHDECL
: /* Exception handler name */
2271 case N_PC
: /* Global symbol in Pascal */
2272 case N_M2C
: /* Modula-2 compilation unit */
2273 /* N_MOD2: overlaps with N_EHDECL */
2274 case N_SCOPE
: /* Modula-2 scope information */
2275 case N_ECOML
: /* End common (local name) */
2276 case N_NBTEXT
: /* Gould Non-Base-Register symbols??? */
2281 complain (&unknown_symtype_complaint
, local_hex_string (type
));
2284 /* The following symbol types don't need the address field relocated,
2285 since it is either unused, or is absolute. */
2287 case N_GSYM
: /* Global variable */
2288 case N_NSYMS
: /* Number of symbols (ultrix) */
2289 case N_NOMAP
: /* No map? (ultrix) */
2290 case N_RSYM
: /* Register variable */
2291 case N_DEFD
: /* Modula-2 GNU module dependency */
2292 case N_SSYM
: /* Struct or union element */
2293 case N_LSYM
: /* Local symbol in stack */
2294 case N_PSYM
: /* Parameter variable */
2295 case N_LENG
: /* Length of preceding symbol type */
2299 char *colon_pos
= strchr (name
, ':');
2300 if (colon_pos
== NULL
)
2303 deftype
= colon_pos
[1];
2309 function_stab_type
= type
;
2311 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2312 /* Deal with the SunPRO 3.0 compiler which omits the address
2313 from N_FUN symbols. */
2315 && valu
== ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
)))
2317 find_stab_function_addr (name
, last_source_file
, objfile
);
2320 #ifdef SUN_FIXED_LBRAC_BUG
2321 /* The Sun acc compiler, under SunOS4, puts out
2322 functions with N_GSYM or N_STSYM. The problem is
2323 that the address of the symbol is no good (for N_GSYM
2324 it doesn't even attept an address; for N_STSYM it
2325 puts out an address but then it gets relocated
2326 relative to the data segment, not the text segment).
2327 Currently we can't fix this up later as we do for
2328 some types of symbol in scan_file_globals.
2329 Fortunately we do have a way of finding the address -
2330 we know that the value in last_pc_address is either
2331 the one we want (if we're dealing with the first
2332 function in an object file), or somewhere in the
2333 previous function. This means that we can use the
2334 minimal symbol table to get the address. */
2336 /* Starting with release 3.0, the Sun acc compiler,
2337 under SunOS4, puts out functions with N_FUN and a value
2338 of zero. This gets relocated to the start of the text
2339 segment of the module, which is no good either.
2340 Under SunOS4 we can deal with this as N_SLINE and N_SO
2341 entries contain valid absolute addresses.
2342 Release 3.0 acc also puts out N_OPT entries, which makes
2343 it possible to discern acc from cc or gcc. */
2345 if (type
== N_GSYM
|| type
== N_STSYM
2347 && n_opt_found
&& !block_address_function_relative
))
2349 struct minimal_symbol
*m
;
2350 int l
= colon_pos
- name
;
2352 m
= lookup_minimal_symbol_by_pc (last_pc_address
);
2353 if (m
&& STREQN (SYMBOL_NAME (m
), name
, l
)
2354 && SYMBOL_NAME (m
)[l
] == '\0')
2355 /* last_pc_address was in this function */
2356 valu
= SYMBOL_VALUE (m
);
2357 else if (m
&& SYMBOL_NAME (m
+ 1)
2358 && STREQN (SYMBOL_NAME (m
+ 1), name
, l
)
2359 && SYMBOL_NAME (m
+ 1)[l
] == '\0')
2360 /* last_pc_address was in last function */
2361 valu
= SYMBOL_VALUE (m
+ 1);
2363 /* Not found - use last_pc_address (for finish_block) */
2364 valu
= last_pc_address
;
2367 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
2370 if (block_address_function_relative
)
2371 /* For Solaris 2.0 compilers, the block addresses and
2372 N_SLINE's are relative to the start of the
2373 function. On normal systems, and when using gcc on
2374 Solaris 2.0, these addresses are just absolute, or
2375 relative to the N_SO, depending on
2376 BLOCK_ADDRESS_ABSOLUTE. */
2377 function_start_offset
= valu
;
2379 within_function
= 1;
2381 if (context_stack_depth
> 1)
2383 complain (&lbrac_unmatched_complaint
, symnum
);
2387 if (context_stack_depth
> 0)
2389 new = pop_context ();
2390 /* Make a block for the local symbols within. */
2391 finish_block (new->name
, &local_symbols
, new->old_blocks
,
2392 new->start_addr
, valu
, objfile
);
2395 new = push_context (0, valu
);
2396 new->name
= define_symbol (valu
, name
, desc
, type
, objfile
);
2400 define_symbol (valu
, name
, desc
, type
, objfile
);
2406 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
2407 for a bunch of other flags, too. Someday we may parse their
2408 flags; for now we ignore theirs and hope they'll ignore ours. */
2409 case N_OPT
: /* Solaris 2: Compiler options */
2412 if (STREQ (name
, GCC2_COMPILED_FLAG_SYMBOL
))
2414 processing_gcc_compilation
= 2;
2415 #if 1 /* Works, but is experimental. -fnf */
2416 if (AUTO_DEMANGLING
)
2418 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
2427 /* The following symbol types can be ignored. */
2428 case N_OBJ
: /* Solaris 2: Object file dir and name */
2429 /* N_UNDF: Solaris 2: file separator mark */
2430 /* N_UNDF: -- we will never encounter it, since we only process one
2431 file's symbols at once. */
2432 case N_ENDM
: /* Solaris 2: End of module */
2433 case N_MAIN
: /* Name of main routine. */
2434 case N_ALIAS
: /* SunPro F77: alias name, ignore for now. */
2438 /* '#' is a GNU C extension to allow one symbol to refer to another
2441 Generally this is used so that an alias can refer to its main
2445 /* Initialize symbol reference names and determine if this is
2446 a definition. If symbol reference is being defined, go
2447 ahead and add it. Otherwise, just return sym. */
2452 /* If this stab defines a new reference ID that is not on the
2453 reference list, then put it on the reference list.
2455 We go ahead and advance NAME past the reference, even though
2456 it is not strictly necessary at this time. */
2457 refnum
= symbol_reference_defined (&s
);
2459 if (!ref_search (refnum
))
2460 ref_add (refnum
, 0, name
, valu
);
2465 previous_stab_code
= type
;
2468 /* FIXME: The only difference between this and elfstab_build_psymtabs
2469 is the call to install_minimal_symbols for elf, and the support for
2470 split sections. If the differences are really that small, the code
2471 should be shared. */
2473 /* Scan and build partial symbols for an coff symbol file.
2474 The coff file has already been processed to get its minimal symbols.
2476 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2479 OBJFILE is the object file we are reading symbols from.
2480 ADDR is the address relative to which the symbols are (e.g.
2481 the base address of the text segment).
2482 MAINLINE is true if we are reading the main symbol
2483 table (as opposed to a shared lib or dynamically loaded file).
2484 TEXTADDR is the address of the text section.
2485 TEXTSIZE is the size of the text section.
2486 STABSECTS is the list of .stab sections in OBJFILE.
2487 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2488 .stabstr section exists.
2490 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2491 adjusted for coff details. */
2494 coffstab_build_psymtabs (objfile
, mainline
,
2495 textaddr
, textsize
, stabsects
,
2496 stabstroffset
, stabstrsize
)
2497 struct objfile
*objfile
;
2500 unsigned int textsize
;
2501 struct stab_section_list
*stabsects
;
2502 file_ptr stabstroffset
;
2503 unsigned int stabstrsize
;
2506 bfd
*sym_bfd
= objfile
->obfd
;
2507 char *name
= bfd_get_filename (sym_bfd
);
2508 struct dbx_symfile_info
*info
;
2509 unsigned int stabsize
;
2511 /* There is already a dbx_symfile_info allocated by our caller.
2512 It might even contain some info from the coff symtab to help us. */
2513 info
= objfile
->sym_stab_info
;
2515 DBX_TEXT_ADDR (objfile
) = textaddr
;
2516 DBX_TEXT_SIZE (objfile
) = textsize
;
2518 #define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2519 DBX_SYMBOL_SIZE (objfile
) = COFF_STABS_SYMBOL_SIZE
;
2520 DBX_STRINGTAB_SIZE (objfile
) = stabstrsize
;
2522 if (stabstrsize
> bfd_get_size (sym_bfd
))
2523 error ("ridiculous string table size: %d bytes", stabstrsize
);
2524 DBX_STRINGTAB (objfile
) = (char *)
2525 obstack_alloc (&objfile
->psymbol_obstack
, stabstrsize
+ 1);
2526 OBJSTAT (objfile
, sz_strtab
+= stabstrsize
+ 1);
2528 /* Now read in the string table in one big gulp. */
2530 val
= bfd_seek (sym_bfd
, stabstroffset
, SEEK_SET
);
2532 perror_with_name (name
);
2533 val
= bfd_read (DBX_STRINGTAB (objfile
), stabstrsize
, 1, sym_bfd
);
2534 if (val
!= stabstrsize
)
2535 perror_with_name (name
);
2537 stabsread_new_init ();
2538 buildsym_new_init ();
2539 free_header_files ();
2540 init_header_files ();
2542 processing_acc_compilation
= 1;
2544 /* In a coff file, we've already installed the minimal symbols that came
2545 from the coff (non-stab) symbol table, so always act like an
2546 incremental load here. */
2547 if (stabsects
->next
== NULL
)
2549 stabsize
= bfd_section_size (sym_bfd
, stabsects
->section
);
2550 DBX_SYMCOUNT (objfile
) = stabsize
/ DBX_SYMBOL_SIZE (objfile
);
2551 DBX_SYMTAB_OFFSET (objfile
) = stabsects
->section
->filepos
;
2555 struct stab_section_list
*stabsect
;
2557 DBX_SYMCOUNT (objfile
) = 0;
2558 for (stabsect
= stabsects
; stabsect
!= NULL
; stabsect
= stabsect
->next
)
2560 stabsize
= bfd_section_size (sym_bfd
, stabsect
->section
);
2561 DBX_SYMCOUNT (objfile
) += stabsize
/ DBX_SYMBOL_SIZE (objfile
);
2564 DBX_SYMTAB_OFFSET (objfile
) = stabsects
->section
->filepos
;
2566 symbuf_sections
= stabsects
->next
;
2567 symbuf_left
= bfd_section_size (sym_bfd
, stabsects
->section
);
2571 dbx_symfile_read (objfile
, 0);
2574 /* Scan and build partial symbols for an ELF symbol file.
2575 This ELF file has already been processed to get its minimal symbols,
2576 and any DWARF symbols that were in it.
2578 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2581 OBJFILE is the object file we are reading symbols from.
2582 ADDR is the address relative to which the symbols are (e.g.
2583 the base address of the text segment).
2584 MAINLINE is true if we are reading the main symbol
2585 table (as opposed to a shared lib or dynamically loaded file).
2586 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2588 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2589 .stabstr section exists.
2591 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2592 adjusted for elf details. */
2595 elfstab_build_psymtabs (objfile
, mainline
,
2596 staboffset
, stabsize
,
2597 stabstroffset
, stabstrsize
)
2598 struct objfile
*objfile
;
2600 file_ptr staboffset
;
2601 unsigned int stabsize
;
2602 file_ptr stabstroffset
;
2603 unsigned int stabstrsize
;
2606 bfd
*sym_bfd
= objfile
->obfd
;
2607 char *name
= bfd_get_filename (sym_bfd
);
2608 struct dbx_symfile_info
*info
;
2610 /* There is already a dbx_symfile_info allocated by our caller.
2611 It might even contain some info from the ELF symtab to help us. */
2612 info
= objfile
->sym_stab_info
;
2614 /* Find the first and last text address. dbx_symfile_read seems to
2616 find_text_range (sym_bfd
, objfile
);
2618 #define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2619 DBX_SYMBOL_SIZE (objfile
) = ELF_STABS_SYMBOL_SIZE
;
2620 DBX_SYMCOUNT (objfile
) = stabsize
/ DBX_SYMBOL_SIZE (objfile
);
2621 DBX_STRINGTAB_SIZE (objfile
) = stabstrsize
;
2622 DBX_SYMTAB_OFFSET (objfile
) = staboffset
;
2624 if (stabstrsize
> bfd_get_size (sym_bfd
))
2625 error ("ridiculous string table size: %d bytes", stabstrsize
);
2626 DBX_STRINGTAB (objfile
) = (char *)
2627 obstack_alloc (&objfile
->psymbol_obstack
, stabstrsize
+ 1);
2628 OBJSTAT (objfile
, sz_strtab
+= stabstrsize
+ 1);
2630 /* Now read in the string table in one big gulp. */
2632 val
= bfd_seek (sym_bfd
, stabstroffset
, SEEK_SET
);
2634 perror_with_name (name
);
2635 val
= bfd_read (DBX_STRINGTAB (objfile
), stabstrsize
, 1, sym_bfd
);
2636 if (val
!= stabstrsize
)
2637 perror_with_name (name
);
2639 stabsread_new_init ();
2640 buildsym_new_init ();
2641 free_header_files ();
2642 init_header_files ();
2643 install_minimal_symbols (objfile
);
2645 processing_acc_compilation
= 1;
2647 /* In an elf file, we've already installed the minimal symbols that came
2648 from the elf (non-stab) symbol table, so always act like an
2649 incremental load here. */
2650 dbx_symfile_read (objfile
, 0);
2653 /* Scan and build partial symbols for a file with special sections for stabs
2654 and stabstrings. The file has already been processed to get its minimal
2655 symbols, and any other symbols that might be necessary to resolve GSYMs.
2657 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2660 OBJFILE is the object file we are reading symbols from.
2661 ADDR is the address relative to which the symbols are (e.g. the base address
2662 of the text segment).
2663 MAINLINE is true if we are reading the main symbol table (as opposed to a
2664 shared lib or dynamically loaded file).
2665 STAB_NAME is the name of the section that contains the stabs.
2666 STABSTR_NAME is the name of the section that contains the stab strings.
2668 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
2671 stabsect_build_psymtabs (objfile
, mainline
, stab_name
,
2672 stabstr_name
, text_name
)
2673 struct objfile
*objfile
;
2680 bfd
*sym_bfd
= objfile
->obfd
;
2681 char *name
= bfd_get_filename (sym_bfd
);
2683 asection
*stabstrsect
;
2684 asection
*text_sect
;
2686 stabsect
= bfd_get_section_by_name (sym_bfd
, stab_name
);
2687 stabstrsect
= bfd_get_section_by_name (sym_bfd
, stabstr_name
);
2693 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
2694 stab_name
, stabstr_name
);
2696 objfile
->sym_stab_info
= (struct dbx_symfile_info
*)
2697 xmalloc (sizeof (struct dbx_symfile_info
));
2698 memset (objfile
->sym_stab_info
, 0, sizeof (struct dbx_symfile_info
));
2700 text_sect
= bfd_get_section_by_name (sym_bfd
, text_name
);
2702 error ("Can't find %s section in symbol file", text_name
);
2703 DBX_TEXT_ADDR (objfile
) = bfd_section_vma (sym_bfd
, text_sect
);
2704 DBX_TEXT_SIZE (objfile
) = bfd_section_size (sym_bfd
, text_sect
);
2706 DBX_SYMBOL_SIZE (objfile
) = sizeof (struct external_nlist
);
2707 DBX_SYMCOUNT (objfile
) = bfd_section_size (sym_bfd
, stabsect
)
2708 / DBX_SYMBOL_SIZE (objfile
);
2709 DBX_STRINGTAB_SIZE (objfile
) = bfd_section_size (sym_bfd
, stabstrsect
);
2710 DBX_SYMTAB_OFFSET (objfile
) = stabsect
->filepos
; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
2712 if (DBX_STRINGTAB_SIZE (objfile
) > bfd_get_size (sym_bfd
))
2713 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile
));
2714 DBX_STRINGTAB (objfile
) = (char *)
2715 obstack_alloc (&objfile
->psymbol_obstack
, DBX_STRINGTAB_SIZE (objfile
) + 1);
2716 OBJSTAT (objfile
, sz_strtab
+= DBX_STRINGTAB_SIZE (objfile
) + 1);
2718 /* Now read in the string table in one big gulp. */
2720 val
= bfd_get_section_contents (sym_bfd
, /* bfd */
2721 stabstrsect
, /* bfd section */
2722 DBX_STRINGTAB (objfile
), /* input buffer */
2723 0, /* offset into section */
2724 DBX_STRINGTAB_SIZE (objfile
)); /* amount to read */
2727 perror_with_name (name
);
2729 stabsread_new_init ();
2730 buildsym_new_init ();
2731 free_header_files ();
2732 init_header_files ();
2733 install_minimal_symbols (objfile
);
2735 /* Now, do an incremental load */
2737 processing_acc_compilation
= 1;
2738 dbx_symfile_read (objfile
, 0);
2741 static struct sym_fns aout_sym_fns
=
2743 bfd_target_aout_flavour
,
2744 dbx_new_init
, /* sym_new_init: init anything gbl to entire symtab */
2745 dbx_symfile_init
, /* sym_init: read initial info, setup for sym_read() */
2746 dbx_symfile_read
, /* sym_read: read a symbol file into symtab */
2747 dbx_symfile_finish
, /* sym_finish: finished with file, cleanup */
2748 default_symfile_offsets
, /* sym_offsets: parse user's offsets to internal form */
2749 NULL
/* next: pointer to next struct sym_fns */
2753 _initialize_dbxread ()
2755 add_symtab_fns (&aout_sym_fns
);