1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* This module provides three functions: dbx_symfile_init,
24 which initializes to read a symbol file; dbx_new_init, which
25 discards existing cached information when all symbols are being
26 discarded; and dbx_symfile_read, which reads a symbol table
29 dbx_symfile_read only does the minimum work necessary for letting the
30 user "name" things symbolically; it does not read the entire symtab.
31 Instead, it reads the external and static symbols and puts them in partial
32 symbol tables. When more extensive information is requested of a
33 file, the corresponding partial symbol table is mutated into a full
34 fledged symbol table by going back and reading the symbols
35 for real. dbx_psymtab_to_symtab() is the function that does this */
38 #include "gdb_string.h"
40 #if defined(USG) || defined(__CYGNUSCLIB__)
41 #include <sys/types.h>
48 #include "breakpoint.h"
50 #include "gdbcore.h" /* for bfd stuff */
51 #include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
55 #include "stabsread.h"
56 #include "gdb-stabs.h"
58 #include "language.h" /* Needed for local_hex_string */
59 #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
79 /* The start (inclusive) and end (exclusive) addresses for this
80 partial symtab's text. STABS doesn't reliably give us nice
81 start and end addresses for each function. Instead, we are
82 told the addresses of various boundary points, and we have to
83 gather those together to build ranges. These are our running
84 best guess as to the range of text addresses for this psymtab. */
85 CORE_ADDR textlow
, texthigh
;
87 /* Offset within the file symbol table of first local symbol for this
92 /* Length (in bytes) of the section of the symbol table devoted to
93 this file's symbols (actually, the section bracketed may contain
94 more than just this file's symbols). If ldsymlen is 0, the only
95 reason for this thing's existence is the dependency list. Nothing
96 else will happen when it is read in. */
100 /* The size of each symbol in the symbol file (in external form). */
104 /* Further information needed to locate the symbols if they are in
109 int file_string_offset
;
112 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
113 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
114 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
115 #define TEXTLOW(p) (SYMLOC(p)->textlow)
116 #define TEXTHIGH(p) (SYMLOC(p)->texthigh)
117 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
118 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
119 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
120 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
123 /* Remember what we deduced to be the source language of this psymtab. */
125 static enum language psymtab_language
= language_unknown
;
127 /* The BFD for this file -- implicit parameter to next_symbol_text. */
129 static bfd
*symfile_bfd
;
131 /* The size of each symbol in the symbol file (in external form).
132 This is set by dbx_symfile_read when building psymtabs, and by
133 dbx_psymtab_to_symtab when building symtabs. */
135 static unsigned symbol_size
;
137 /* This is the offset of the symbol table in the executable file. */
139 static unsigned symbol_table_offset
;
141 /* This is the offset of the string table in the executable file. */
143 static unsigned string_table_offset
;
145 /* For elf+stab executables, the n_strx field is not a simple index
146 into the string table. Instead, each .o file has a base offset in
147 the string table, and the associated symbols contain offsets from
148 this base. The following two variables contain the base offset for
149 the current and next .o files. */
151 static unsigned int file_string_table_offset
;
152 static unsigned int next_file_string_table_offset
;
154 /* .o and NLM files contain unrelocated addresses which are based at
155 0. When non-zero, this flag disables some of the special cases for
156 Solaris elf+stab text addresses at location 0. */
158 static int symfile_relocatable
= 0;
160 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
161 relative to the function start address. */
163 static int block_address_function_relative
= 0;
165 /* The lowest text address we have yet encountered. This is needed
166 because in an a.out file, there is no header field which tells us
167 what address the program is actually going to be loaded at, so we
168 need to make guesses based on the symbols (which *are* relocated to
169 reflect the address it will be loaded at). */
171 static CORE_ADDR lowest_text_address
;
173 /* Non-zero if there is any line number info in the objfile. Prevents
174 end_psymtab from discarding an otherwise empty psymtab. */
176 static int has_line_numbers
;
178 /* Complaints about the symbols we have encountered. */
180 struct complaint lbrac_complaint
=
181 {"bad block start address patched", 0, 0};
183 struct complaint string_table_offset_complaint
=
184 {"bad string table offset in symbol %d", 0, 0};
186 struct complaint unknown_symtype_complaint
=
187 {"unknown symbol type %s", 0, 0};
189 struct complaint unknown_symchar_complaint
=
190 {"unknown symbol descriptor `%c'", 0, 0};
192 struct complaint lbrac_rbrac_complaint
=
193 {"block start larger than block end", 0, 0};
195 struct complaint lbrac_unmatched_complaint
=
196 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
198 struct complaint lbrac_mismatch_complaint
=
199 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
201 struct complaint repeated_header_complaint
=
202 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
204 struct complaint unclaimed_bincl_complaint
=
205 {"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
207 /* find_text_range --- find start and end of loadable code sections
209 The find_text_range function finds the shortest address range that
210 encloses all sections containing executable code, and stores it in
211 objfile's text_addr and text_size members.
213 dbx_symfile_read will use this to finish off the partial symbol
214 table, in some cases. */
217 find_text_range (bfd
* sym_bfd
, struct objfile
*objfile
)
224 for (sec
= sym_bfd
->sections
; sec
; sec
= sec
->next
)
225 if (bfd_get_section_flags (sym_bfd
, sec
) & SEC_CODE
)
227 CORE_ADDR sec_start
= bfd_section_vma (sym_bfd
, sec
);
228 CORE_ADDR sec_end
= sec_start
+ bfd_section_size (sym_bfd
, sec
);
232 if (sec_start
< start
)
247 error ("Can't find any code sections in symbol file");
249 DBX_TEXT_ADDR (objfile
) = start
;
250 DBX_TEXT_SIZE (objfile
) = end
- start
;
255 /* During initial symbol readin, we need to have a structure to keep
256 track of which psymtabs have which bincls in them. This structure
257 is used during readin to setup the list of dependencies within each
258 partial symbol table. */
260 struct header_file_location
262 char *name
; /* Name of header file */
263 int instance
; /* See above */
264 struct partial_symtab
*pst
; /* Partial symtab that has the
265 BINCL/EINCL defs for this file */
268 /* The actual list and controling variables */
269 static struct header_file_location
*bincl_list
, *next_bincl
;
270 static int bincls_allocated
;
272 /* Local function prototypes */
274 extern void _initialize_dbxread (void);
276 static void process_now (struct objfile
*);
278 static void read_ofile_symtab (struct partial_symtab
*);
280 static void dbx_psymtab_to_symtab (struct partial_symtab
*);
282 static void dbx_psymtab_to_symtab_1 (struct partial_symtab
*);
284 static void read_dbx_dynamic_symtab (struct objfile
*objfile
);
286 static void read_dbx_symtab (struct objfile
*);
288 static void free_bincl_list (struct objfile
*);
290 static struct partial_symtab
*find_corresponding_bincl_psymtab (char *, int);
292 static void add_bincl_to_list (struct partial_symtab
*, char *, int);
294 static void init_bincl_list (int, struct objfile
*);
296 static char *dbx_next_symbol_text (struct objfile
*);
298 static void fill_symbuf (bfd
*);
300 static void dbx_symfile_init (struct objfile
*);
302 static void dbx_new_init (struct objfile
*);
304 static void dbx_symfile_read (struct objfile
*, int);
306 static void dbx_symfile_finish (struct objfile
*);
308 static void record_minimal_symbol (char *, CORE_ADDR
, int, struct objfile
*);
310 static void add_new_header_file (char *, int);
312 static void add_old_header_file (char *, int);
314 static void add_this_object_header_file (int);
316 static struct partial_symtab
*start_psymtab (struct objfile
*, char *,
318 struct partial_symbol
**,
319 struct partial_symbol
**);
321 /* Free up old header file tables */
324 free_header_files (void)
326 if (this_object_header_files
)
328 xfree (this_object_header_files
);
329 this_object_header_files
= NULL
;
331 n_allocated_this_object_header_files
= 0;
334 /* Allocate new header file tables */
337 init_header_files (void)
339 n_allocated_this_object_header_files
= 10;
340 this_object_header_files
= (int *) xmalloc (10 * sizeof (int));
343 /* Add header file number I for this object file
344 at the next successive FILENUM. */
347 add_this_object_header_file (int i
)
349 if (n_this_object_header_files
== n_allocated_this_object_header_files
)
351 n_allocated_this_object_header_files
*= 2;
352 this_object_header_files
353 = (int *) xrealloc ((char *) this_object_header_files
,
354 n_allocated_this_object_header_files
* sizeof (int));
357 this_object_header_files
[n_this_object_header_files
++] = i
;
360 /* Add to this file an "old" header file, one already seen in
361 a previous object file. NAME is the header file's name.
362 INSTANCE is its instance code, to select among multiple
363 symbol tables for the same header file. */
366 add_old_header_file (char *name
, int instance
)
368 register struct header_file
*p
= HEADER_FILES (current_objfile
);
371 for (i
= 0; i
< N_HEADER_FILES (current_objfile
); i
++)
372 if (STREQ (p
[i
].name
, name
) && instance
== p
[i
].instance
)
374 add_this_object_header_file (i
);
377 complain (&repeated_header_complaint
, name
, symnum
);
380 /* Add to this file a "new" header file: definitions for its types follow.
381 NAME is the header file's name.
382 Most often this happens only once for each distinct header file,
383 but not necessarily. If it happens more than once, INSTANCE has
384 a different value each time, and references to the header file
385 use INSTANCE values to select among them.
387 dbx output contains "begin" and "end" markers for each new header file,
388 but at this level we just need to know which files there have been;
389 so we record the file when its "begin" is seen and ignore the "end". */
392 add_new_header_file (char *name
, int instance
)
395 register struct header_file
*hfile
;
397 /* Make sure there is room for one more header file. */
399 i
= N_ALLOCATED_HEADER_FILES (current_objfile
);
401 if (N_HEADER_FILES (current_objfile
) == i
)
405 N_ALLOCATED_HEADER_FILES (current_objfile
) = 10;
406 HEADER_FILES (current_objfile
) = (struct header_file
*)
407 xmalloc (10 * sizeof (struct header_file
));
412 N_ALLOCATED_HEADER_FILES (current_objfile
) = i
;
413 HEADER_FILES (current_objfile
) = (struct header_file
*)
414 xrealloc ((char *) HEADER_FILES (current_objfile
),
415 (i
* sizeof (struct header_file
)));
419 /* Create an entry for this header file. */
421 i
= N_HEADER_FILES (current_objfile
)++;
422 hfile
= HEADER_FILES (current_objfile
) + i
;
423 hfile
->name
= savestring (name
, strlen (name
));
424 hfile
->instance
= instance
;
427 = (struct type
**) xmalloc (10 * sizeof (struct type
*));
428 memset (hfile
->vector
, 0, 10 * sizeof (struct type
*));
430 add_this_object_header_file (i
);
434 static struct type
**
435 explicit_lookup_type (int real_filenum
, int index
)
437 register struct header_file
*f
= &HEADER_FILES (current_objfile
)[real_filenum
];
439 if (index
>= f
->length
)
442 f
->vector
= (struct type
**)
443 xrealloc (f
->vector
, f
->length
* sizeof (struct type
*));
444 memset (&f
->vector
[f
->length
/ 2],
445 '\0', f
->length
* sizeof (struct type
*) / 2);
447 return &f
->vector
[index
];
452 record_minimal_symbol (char *name
, CORE_ADDR address
, int type
,
453 struct objfile
*objfile
)
455 enum minimal_symbol_type ms_type
;
457 asection
*bfd_section
;
463 section
= SECT_OFF_TEXT (objfile
);
464 bfd_section
= DBX_TEXT_SECTION (objfile
);
468 section
= SECT_OFF_DATA (objfile
);
469 bfd_section
= DBX_DATA_SECTION (objfile
);
473 section
= SECT_OFF_BSS (objfile
);
474 bfd_section
= DBX_BSS_SECTION (objfile
);
484 section
= SECT_OFF_DATA (objfile
);
485 bfd_section
= DBX_DATA_SECTION (objfile
);
488 /* I don't think this type actually exists; since a N_SETV is the result
489 of going over many .o files, it doesn't make sense to have one
491 ms_type
= mst_file_data
;
492 section
= SECT_OFF_DATA (objfile
);
493 bfd_section
= DBX_DATA_SECTION (objfile
);
500 ms_type
= mst_file_text
;
501 section
= SECT_OFF_TEXT (objfile
);
502 bfd_section
= DBX_TEXT_SECTION (objfile
);
505 ms_type
= mst_file_data
;
507 /* Check for __DYNAMIC, which is used by Sun shared libraries.
508 Record it as global even if it's local, not global, so
509 lookup_minimal_symbol can find it. We don't check symbol_leading_char
510 because for SunOS4 it always is '_'. */
511 if (name
[8] == 'C' && STREQ ("__DYNAMIC", name
))
514 /* Same with virtual function tables, both global and static. */
516 char *tempstring
= name
;
517 if (tempstring
[0] == bfd_get_symbol_leading_char (objfile
->obfd
))
519 if (is_vtable_name (tempstring
))
522 section
= SECT_OFF_DATA (objfile
);
523 bfd_section
= DBX_DATA_SECTION (objfile
);
526 ms_type
= mst_file_bss
;
527 section
= SECT_OFF_BSS (objfile
);
528 bfd_section
= DBX_BSS_SECTION (objfile
);
531 ms_type
= mst_unknown
;
537 if ((ms_type
== mst_file_text
|| ms_type
== mst_text
)
538 && address
< lowest_text_address
)
539 lowest_text_address
= address
;
541 prim_record_minimal_symbol_and_info
542 (name
, address
, ms_type
, NULL
, section
, bfd_section
, objfile
);
545 /* Scan and build partial symbols for a symbol file.
546 We have been initialized by a call to dbx_symfile_init, which
547 put all the relevant info into a "struct dbx_symfile_info",
548 hung off the objfile structure.
550 MAINLINE is true if we are reading the main symbol
551 table (as opposed to a shared lib or dynamically loaded file). */
554 dbx_symfile_read (struct objfile
*objfile
, int mainline
)
558 struct cleanup
*back_to
;
560 sym_bfd
= objfile
->obfd
;
562 /* .o and .nlm files are relocatables with text, data and bss segs based at
563 0. This flag disables special (Solaris stabs-in-elf only) fixups for
564 symbols with a value of 0. */
566 symfile_relocatable
= bfd_get_file_flags (sym_bfd
) & HAS_RELOC
;
568 /* This is true for Solaris (and all other systems which put stabs
569 in sections, hopefully, since it would be silly to do things
570 differently from Solaris), and false for SunOS4 and other a.out
572 block_address_function_relative
=
573 ((0 == strncmp (bfd_get_target (sym_bfd
), "elf", 3))
574 || (0 == strncmp (bfd_get_target (sym_bfd
), "som", 3))
575 || (0 == strncmp (bfd_get_target (sym_bfd
), "coff", 4))
576 || (0 == strncmp (bfd_get_target (sym_bfd
), "pe", 2))
577 || (0 == strncmp (bfd_get_target (sym_bfd
), "epoc-pe", 7))
578 || (0 == strncmp (bfd_get_target (sym_bfd
), "nlm", 3)));
580 val
= bfd_seek (sym_bfd
, DBX_SYMTAB_OFFSET (objfile
), SEEK_SET
);
582 perror_with_name (objfile
->name
);
584 /* If we are reinitializing, or if we have never loaded syms yet, init */
586 || (objfile
->global_psymbols
.size
== 0
587 && objfile
->static_psymbols
.size
== 0))
588 init_psymbol_list (objfile
, DBX_SYMCOUNT (objfile
));
590 symbol_size
= DBX_SYMBOL_SIZE (objfile
);
591 symbol_table_offset
= DBX_SYMTAB_OFFSET (objfile
);
593 free_pending_blocks ();
594 back_to
= make_cleanup (really_free_pendings
, 0);
596 init_minimal_symbol_collection ();
597 make_cleanup_discard_minimal_symbols ();
599 /* Read stabs data from executable file and define symbols. */
601 read_dbx_symtab (objfile
);
603 /* Add the dynamic symbols. */
605 read_dbx_dynamic_symtab (objfile
);
607 /* Take the text ranges the STABS partial symbol scanner computed
608 for each of the psymtabs and convert it into the canonical form
611 struct partial_symtab
*p
;
613 ALL_OBJFILE_PSYMTABS (objfile
, p
)
615 p
->textlow
= TEXTLOW (p
);
616 p
->texthigh
= TEXTHIGH (p
);
620 /* Install any minimal symbols that have been collected as the current
621 minimal symbols for this objfile. */
623 install_minimal_symbols (objfile
);
625 do_cleanups (back_to
);
628 /* Initialize anything that needs initializing when a completely new
629 symbol file is specified (not just adding some symbols from another
630 file, e.g. a shared library). */
633 dbx_new_init (struct objfile
*ignore
)
635 stabsread_new_init ();
636 buildsym_new_init ();
637 init_header_files ();
641 /* dbx_symfile_init ()
642 is the dbx-specific initialization routine for reading symbols.
643 It is passed a struct objfile which contains, among other things,
644 the BFD for the file whose symbols are being read, and a slot for a pointer
645 to "private data" which we fill with goodies.
647 We read the string table into malloc'd space and stash a pointer to it.
649 Since BFD doesn't know how to read debug symbols in a format-independent
650 way (and may never do so...), we have to do it ourselves. We will never
651 be called unless this is an a.out (or very similar) file.
652 FIXME, there should be a cleaner peephole into the BFD environment here. */
654 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
657 dbx_symfile_init (struct objfile
*objfile
)
660 bfd
*sym_bfd
= objfile
->obfd
;
661 char *name
= bfd_get_filename (sym_bfd
);
663 unsigned char size_temp
[DBX_STRINGTAB_SIZE_SIZE
];
665 /* Allocate struct to keep track of the symfile */
666 objfile
->sym_stab_info
= (struct dbx_symfile_info
*)
667 xmmalloc (objfile
->md
, sizeof (struct dbx_symfile_info
));
668 memset ((PTR
) objfile
->sym_stab_info
, 0, sizeof (struct dbx_symfile_info
));
670 DBX_TEXT_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".text");
671 DBX_DATA_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".data");
672 DBX_BSS_SECTION (objfile
) = bfd_get_section_by_name (sym_bfd
, ".bss");
674 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
675 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
676 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
678 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
680 DBX_SYMFILE_INFO (objfile
)->stab_section_info
= NULL
;
682 text_sect
= bfd_get_section_by_name (sym_bfd
, ".text");
684 error ("Can't find .text section in symbol file");
685 DBX_TEXT_ADDR (objfile
) = bfd_section_vma (sym_bfd
, text_sect
);
686 DBX_TEXT_SIZE (objfile
) = bfd_section_size (sym_bfd
, text_sect
);
688 DBX_SYMBOL_SIZE (objfile
) = obj_symbol_entry_size (sym_bfd
);
689 DBX_SYMCOUNT (objfile
) = bfd_get_symcount (sym_bfd
);
690 DBX_SYMTAB_OFFSET (objfile
) = SYMBOL_TABLE_OFFSET
;
692 /* Read the string table and stash it away in the psymbol_obstack. It is
693 only needed as long as we need to expand psymbols into full symbols,
694 so when we blow away the psymbol the string table goes away as well.
695 Note that gdb used to use the results of attempting to malloc the
696 string table, based on the size it read, as a form of sanity check
697 for botched byte swapping, on the theory that a byte swapped string
698 table size would be so totally bogus that the malloc would fail. Now
699 that we put in on the psymbol_obstack, we can't do this since gdb gets
700 a fatal error (out of virtual memory) if the size is bogus. We can
701 however at least check to see if the size is less than the size of
702 the size field itself, or larger than the size of the entire file.
703 Note that all valid string tables have a size greater than zero, since
704 the bytes used to hold the size are included in the count. */
706 if (STRING_TABLE_OFFSET
== 0)
708 /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
709 will never be zero, even when there is no string table. This
710 would appear to be a bug in bfd. */
711 DBX_STRINGTAB_SIZE (objfile
) = 0;
712 DBX_STRINGTAB (objfile
) = NULL
;
716 val
= bfd_seek (sym_bfd
, STRING_TABLE_OFFSET
, SEEK_SET
);
718 perror_with_name (name
);
720 memset ((PTR
) size_temp
, 0, sizeof (size_temp
));
721 val
= bfd_bread ((PTR
) size_temp
, sizeof (size_temp
), sym_bfd
);
724 perror_with_name (name
);
728 /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
729 EOF if there is no string table, and attempting to read the size
730 from EOF will read zero bytes. */
731 DBX_STRINGTAB_SIZE (objfile
) = 0;
732 DBX_STRINGTAB (objfile
) = NULL
;
736 /* Read some data that would appear to be the string table size.
737 If there really is a string table, then it is probably the right
738 size. Byteswap if necessary and validate the size. Note that
739 the minimum is DBX_STRINGTAB_SIZE_SIZE. If we just read some
740 random data that happened to be at STRING_TABLE_OFFSET, because
741 bfd can't tell us there is no string table, the sanity checks may
742 or may not catch this. */
743 DBX_STRINGTAB_SIZE (objfile
) = bfd_h_get_32 (sym_bfd
, size_temp
);
745 if (DBX_STRINGTAB_SIZE (objfile
) < sizeof (size_temp
)
746 || DBX_STRINGTAB_SIZE (objfile
) > bfd_get_size (sym_bfd
))
747 error ("ridiculous string table size (%d bytes).",
748 DBX_STRINGTAB_SIZE (objfile
));
750 DBX_STRINGTAB (objfile
) =
751 (char *) obstack_alloc (&objfile
->psymbol_obstack
,
752 DBX_STRINGTAB_SIZE (objfile
));
753 OBJSTAT (objfile
, sz_strtab
+= DBX_STRINGTAB_SIZE (objfile
));
755 /* Now read in the string table in one big gulp. */
757 val
= bfd_seek (sym_bfd
, STRING_TABLE_OFFSET
, SEEK_SET
);
759 perror_with_name (name
);
760 val
= bfd_bread (DBX_STRINGTAB (objfile
),
761 DBX_STRINGTAB_SIZE (objfile
),
763 if (val
!= DBX_STRINGTAB_SIZE (objfile
))
764 perror_with_name (name
);
769 /* Perform any local cleanups required when we are done with a particular
770 objfile. I.E, we are in the process of discarding all symbol information
771 for an objfile, freeing up all memory held for it, and unlinking the
772 objfile struct from the global list of known objfiles. */
775 dbx_symfile_finish (struct objfile
*objfile
)
777 if (objfile
->sym_stab_info
!= NULL
)
779 if (HEADER_FILES (objfile
) != NULL
)
781 register int i
= N_HEADER_FILES (objfile
);
782 register struct header_file
*hfiles
= HEADER_FILES (objfile
);
786 xfree (hfiles
[i
].name
);
787 xfree (hfiles
[i
].vector
);
791 xmfree (objfile
->md
, objfile
->sym_stab_info
);
793 free_header_files ();
797 /* Buffer for reading the symbol table entries. */
798 static struct external_nlist symbuf
[4096];
799 static int symbuf_idx
;
800 static int symbuf_end
;
802 /* cont_elem is used for continuing information in cfront.
803 It saves information about which types need to be fixed up and
804 completed after all the stabs are read. */
807 /* sym and stabstring for continuing information in cfront */
810 /* state dependencies (statics that must be preserved) */
814 int (*func
) (struct objfile
*, struct symbol
*, char *);
815 /* other state dependencies include:
816 (assumption is that these will not change since process_now FIXME!!)
823 static struct cont_elem
*cont_list
= 0;
824 static int cont_limit
= 0;
825 static int cont_count
= 0;
827 /* Arrange for function F to be called with arguments SYM and P later
828 in the stabs reading process. */
830 process_later (struct symbol
*sym
, char *p
,
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 (struct objfile
*objfile
)
869 int (*func
) (struct objfile
*, struct symbol
*, char *);
871 /* Save the state of our caller, we'll want to restore it before
873 save_symbuf_idx
= symbuf_idx
;
874 save_symbuf_end
= symbuf_end
;
875 save_symnum
= symnum
;
877 /* Iterate over all the deferred stabs. */
878 for (i
= 0; i
< cont_count
; i
++)
880 /* Restore the state for this deferred stab. */
881 symbuf_idx
= cont_list
[i
].sym_idx
;
882 symbuf_end
= cont_list
[i
].sym_end
;
883 symnum
= cont_list
[i
].symnum
;
884 sym
= cont_list
[i
].sym
;
885 stabs
= cont_list
[i
].stabs
;
886 func
= cont_list
[i
].func
;
888 /* Call the function to handle this deferrd stab. */
889 err
= (*func
) (objfile
, sym
, stabs
);
891 error ("Internal error: unable to resolve stab.\n");
894 /* Restore our caller's state. */
895 symbuf_idx
= save_symbuf_idx
;
896 symbuf_end
= save_symbuf_end
;
897 symnum
= save_symnum
;
902 /* Name of last function encountered. Used in Solaris to approximate
903 object file boundaries. */
904 static char *last_function_name
;
906 /* The address in memory of the string table of the object file we are
907 reading (which might not be the "main" object file, but might be a
908 shared library or some other dynamically loaded thing). This is
909 set by read_dbx_symtab when building psymtabs, and by
910 read_ofile_symtab when building symtabs, and is used only by
911 next_symbol_text. FIXME: If that is true, we don't need it when
912 building psymtabs, right? */
913 static char *stringtab_global
;
915 /* These variables are used to control fill_symbuf when the stabs
916 symbols are not contiguous (as may be the case when a COFF file is
917 linked using --split-by-reloc). */
918 static struct stab_section_list
*symbuf_sections
;
919 static unsigned int symbuf_left
;
920 static unsigned int symbuf_read
;
922 /* Refill the symbol table input buffer
923 and set the variables that control fetching entries from it.
924 Reports an error if no data available.
925 This function can read past the end of the symbol table
926 (into the string table) but this does no harm. */
929 fill_symbuf (bfd
*sym_bfd
)
934 if (symbuf_sections
== NULL
)
935 count
= sizeof (symbuf
);
938 if (symbuf_left
<= 0)
940 file_ptr filepos
= symbuf_sections
->section
->filepos
;
941 if (bfd_seek (sym_bfd
, filepos
, SEEK_SET
) != 0)
942 perror_with_name (bfd_get_filename (sym_bfd
));
943 symbuf_left
= bfd_section_size (sym_bfd
, symbuf_sections
->section
);
944 symbol_table_offset
= filepos
- symbuf_read
;
945 symbuf_sections
= symbuf_sections
->next
;
949 if (count
> sizeof (symbuf
))
950 count
= sizeof (symbuf
);
953 nbytes
= bfd_bread ((PTR
) symbuf
, count
, sym_bfd
);
955 perror_with_name (bfd_get_filename (sym_bfd
));
956 else if (nbytes
== 0)
957 error ("Premature end of file reading symbol table");
958 symbuf_end
= nbytes
/ symbol_size
;
960 symbuf_left
-= nbytes
;
961 symbuf_read
+= nbytes
;
964 #define INTERNALIZE_SYMBOL(intern, extern, abfd) \
966 (intern).n_type = bfd_h_get_8 (abfd, (extern)->e_type); \
967 (intern).n_strx = bfd_h_get_32 (abfd, (extern)->e_strx); \
968 (intern).n_desc = bfd_h_get_16 (abfd, (extern)->e_desc); \
969 if (bfd_get_sign_extend_vma (abfd)) \
970 (intern).n_value = bfd_h_get_signed_32 (abfd, (extern)->e_value); \
972 (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value); \
975 /* Invariant: The symbol pointed to by symbuf_idx is the first one
976 that hasn't been swapped. Swap the symbol at the same time
977 that symbuf_idx is incremented. */
979 /* dbx allows the text of a symbol name to be continued into the
980 next symbol name! When such a continuation is encountered
981 (a \ at the end of the text of a name)
982 call this function to get the continuation. */
985 dbx_next_symbol_text (struct objfile
*objfile
)
987 struct internal_nlist nlist
;
989 if (symbuf_idx
== symbuf_end
)
990 fill_symbuf (symfile_bfd
);
993 INTERNALIZE_SYMBOL (nlist
, &symbuf
[symbuf_idx
], symfile_bfd
);
994 OBJSTAT (objfile
, n_stabs
++);
998 return nlist
.n_strx
+ stringtab_global
+ file_string_table_offset
;
1001 /* Initialize the list of bincls to contain none and have some
1005 init_bincl_list (int number
, struct objfile
*objfile
)
1007 bincls_allocated
= number
;
1008 next_bincl
= bincl_list
= (struct header_file_location
*)
1009 xmmalloc (objfile
->md
, bincls_allocated
* sizeof (struct header_file_location
));
1012 /* Add a bincl to the list. */
1015 add_bincl_to_list (struct partial_symtab
*pst
, char *name
, int instance
)
1017 if (next_bincl
>= bincl_list
+ bincls_allocated
)
1019 int offset
= next_bincl
- bincl_list
;
1020 bincls_allocated
*= 2;
1021 bincl_list
= (struct header_file_location
*)
1022 xmrealloc (pst
->objfile
->md
, (char *) bincl_list
,
1023 bincls_allocated
* sizeof (struct header_file_location
));
1024 next_bincl
= bincl_list
+ offset
;
1026 next_bincl
->pst
= pst
;
1027 next_bincl
->instance
= instance
;
1028 next_bincl
++->name
= name
;
1031 /* Given a name, value pair, find the corresponding
1032 bincl in the list. Return the partial symtab associated
1033 with that header_file_location. */
1035 static struct partial_symtab
*
1036 find_corresponding_bincl_psymtab (char *name
, int instance
)
1038 struct header_file_location
*bincl
;
1040 for (bincl
= bincl_list
; bincl
< next_bincl
; bincl
++)
1041 if (bincl
->instance
== instance
1042 && STREQ (name
, bincl
->name
))
1045 complain (&repeated_header_complaint
, name
, symnum
);
1046 return (struct partial_symtab
*) 0;
1049 /* Free the storage allocated for the bincl list. */
1052 free_bincl_list (struct objfile
*objfile
)
1054 xmfree (objfile
->md
, (PTR
) bincl_list
);
1055 bincls_allocated
= 0;
1059 do_free_bincl_list_cleanup (void *objfile
)
1061 free_bincl_list (objfile
);
1064 static struct cleanup
*
1065 make_cleanup_free_bincl_list (struct objfile
*objfile
)
1067 return make_cleanup (do_free_bincl_list_cleanup
, objfile
);
1070 /* Set namestring based on nlist. If the string table index is invalid,
1071 give a fake name, and print a single error message per symbol file read,
1072 rather than abort the symbol reading or flood the user with messages. */
1075 set_namestring (struct objfile
*objfile
, struct internal_nlist nlist
)
1079 if (((unsigned) nlist
.n_strx
+ file_string_table_offset
) >=
1080 DBX_STRINGTAB_SIZE (objfile
))
1082 complain (&string_table_offset_complaint
, symnum
);
1083 namestring
= "<bad string table offset>";
1086 namestring
= nlist
.n_strx
+ file_string_table_offset
+
1087 DBX_STRINGTAB (objfile
);
1091 /* Scan a SunOs dynamic symbol table for symbols of interest and
1092 add them to the minimal symbol table. */
1095 read_dbx_dynamic_symtab (struct objfile
*objfile
)
1097 bfd
*abfd
= objfile
->obfd
;
1098 struct cleanup
*back_to
;
1108 CORE_ADDR sym_value
;
1111 /* Check that the symbol file has dynamic symbols that we know about.
1112 bfd_arch_unknown can happen if we are reading a sun3 symbol file
1113 on a sun4 host (and vice versa) and bfd is not configured
1114 --with-target=all. This would trigger an assertion in bfd/sunos.c,
1115 so we ignore the dynamic symbols in this case. */
1116 if (bfd_get_flavour (abfd
) != bfd_target_aout_flavour
1117 || (bfd_get_file_flags (abfd
) & DYNAMIC
) == 0
1118 || bfd_get_arch (abfd
) == bfd_arch_unknown
)
1121 dynsym_size
= bfd_get_dynamic_symtab_upper_bound (abfd
);
1122 if (dynsym_size
< 0)
1125 dynsyms
= (asymbol
**) xmalloc (dynsym_size
);
1126 back_to
= make_cleanup (xfree
, dynsyms
);
1128 dynsym_count
= bfd_canonicalize_dynamic_symtab (abfd
, dynsyms
);
1129 if (dynsym_count
< 0)
1131 do_cleanups (back_to
);
1135 /* Enter dynamic symbols into the minimal symbol table
1136 if this is a stripped executable. */
1137 if (bfd_get_symcount (abfd
) <= 0)
1140 for (counter
= 0; counter
< dynsym_count
; counter
++, symptr
++)
1142 asymbol
*sym
= *symptr
;
1146 sec
= bfd_get_section (sym
);
1148 /* BFD symbols are section relative. */
1149 sym_value
= sym
->value
+ sec
->vma
;
1151 if (bfd_get_section_flags (abfd
, sec
) & SEC_CODE
)
1153 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1156 else if (bfd_get_section_flags (abfd
, sec
) & SEC_DATA
)
1158 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1161 else if (bfd_get_section_flags (abfd
, sec
) & SEC_ALLOC
)
1163 sym_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_BSS (objfile
));
1169 if (sym
->flags
& BSF_GLOBAL
)
1172 record_minimal_symbol ((char *) bfd_asymbol_name (sym
), sym_value
,
1177 /* Symbols from shared libraries have a dynamic relocation entry
1178 that points to the associated slot in the procedure linkage table.
1179 We make a mininal symbol table entry with type mst_solib_trampoline
1180 at the address in the procedure linkage table. */
1181 dynrel_size
= bfd_get_dynamic_reloc_upper_bound (abfd
);
1182 if (dynrel_size
< 0)
1184 do_cleanups (back_to
);
1188 dynrels
= (arelent
**) xmalloc (dynrel_size
);
1189 make_cleanup (xfree
, dynrels
);
1191 dynrel_count
= bfd_canonicalize_dynamic_reloc (abfd
, dynrels
, dynsyms
);
1192 if (dynrel_count
< 0)
1194 do_cleanups (back_to
);
1198 for (counter
= 0, relptr
= dynrels
;
1199 counter
< dynrel_count
;
1200 counter
++, relptr
++)
1202 arelent
*rel
= *relptr
;
1204 rel
->address
+ ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1206 switch (bfd_get_arch (abfd
))
1208 case bfd_arch_sparc
:
1209 if (rel
->howto
->type
!= RELOC_JMP_SLOT
)
1213 /* `16' is the type BFD produces for a jump table relocation. */
1214 if (rel
->howto
->type
!= 16)
1217 /* Adjust address in the jump table to point to
1218 the start of the bsr instruction. */
1225 name
= (char *) bfd_asymbol_name (*rel
->sym_ptr_ptr
);
1226 prim_record_minimal_symbol (name
, address
, mst_solib_trampoline
,
1230 do_cleanups (back_to
);
1233 /* Setup partial_symtab's describing each source file for which
1234 debugging information is available. */
1237 read_dbx_symtab (struct objfile
*objfile
)
1239 register struct external_nlist
*bufp
= 0; /* =0 avoids gcc -Wall glitch */
1240 struct internal_nlist nlist
;
1241 CORE_ADDR text_addr
;
1244 register char *namestring
;
1246 int past_first_source_file
= 0;
1247 CORE_ADDR last_o_file_start
= 0;
1248 CORE_ADDR last_function_start
= 0;
1249 struct cleanup
*back_to
;
1251 int textlow_not_set
;
1253 /* Current partial symtab */
1254 struct partial_symtab
*pst
;
1256 /* List of current psymtab's include files */
1257 char **psymtab_include_list
;
1258 int includes_allocated
;
1261 /* Index within current psymtab dependency list */
1262 struct partial_symtab
**dependency_list
;
1263 int dependencies_used
, dependencies_allocated
;
1265 text_addr
= DBX_TEXT_ADDR (objfile
);
1266 text_size
= DBX_TEXT_SIZE (objfile
);
1268 /* FIXME. We probably want to change stringtab_global rather than add this
1269 while processing every symbol entry. FIXME. */
1270 file_string_table_offset
= 0;
1271 next_file_string_table_offset
= 0;
1273 stringtab_global
= DBX_STRINGTAB (objfile
);
1275 pst
= (struct partial_symtab
*) 0;
1277 includes_allocated
= 30;
1279 psymtab_include_list
= (char **) alloca (includes_allocated
*
1282 dependencies_allocated
= 30;
1283 dependencies_used
= 0;
1285 (struct partial_symtab
**) alloca (dependencies_allocated
*
1286 sizeof (struct partial_symtab
*));
1288 /* Init bincl list */
1289 init_bincl_list (20, objfile
);
1290 back_to
= make_cleanup_free_bincl_list (objfile
);
1292 last_source_file
= NULL
;
1294 lowest_text_address
= (CORE_ADDR
) -1;
1296 symfile_bfd
= objfile
->obfd
; /* For next_text_symbol */
1297 abfd
= objfile
->obfd
;
1298 symbuf_end
= symbuf_idx
= 0;
1299 next_symbol_text_func
= dbx_next_symbol_text
;
1300 textlow_not_set
= 1;
1301 has_line_numbers
= 0;
1303 for (symnum
= 0; symnum
< DBX_SYMCOUNT (objfile
); symnum
++)
1305 /* Get the symbol for this run and pull out some info */
1306 QUIT
; /* allow this to be interruptable */
1307 if (symbuf_idx
== symbuf_end
)
1309 bufp
= &symbuf
[symbuf_idx
++];
1312 * Special case to speed up readin.
1314 if (bfd_h_get_8 (abfd
, bufp
->e_type
) == N_SLINE
)
1316 has_line_numbers
= 1;
1320 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
1321 OBJSTAT (objfile
, n_stabs
++);
1323 /* Ok. There is a lot of code duplicated in the rest of this
1324 switch statement (for efficiency reasons). Since I don't
1325 like duplicating code, I will do my penance here, and
1326 describe the code which is duplicated:
1328 *) The assignment to namestring.
1329 *) The call to strchr.
1330 *) The addition of a partial symbol the the two partial
1331 symbol lists. This last is a large section of code, so
1332 I've imbedded it in the following macro.
1335 switch (nlist
.n_type
)
1337 static struct complaint function_outside_compilation_unit
= {
1338 "function `%s' appears to be defined outside of all compilation units", 0, 0
1342 * Standard, external, non-debugger, symbols
1345 case N_TEXT
| N_EXT
:
1346 case N_NBTEXT
| N_EXT
:
1347 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1350 case N_DATA
| N_EXT
:
1351 case N_NBDATA
| N_EXT
:
1352 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1357 case N_NBBSS
| N_EXT
:
1358 case N_SETV
| N_EXT
: /* FIXME, is this in BSS? */
1359 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_BSS (objfile
));
1364 namestring
= set_namestring (objfile
, nlist
);
1367 record_minimal_symbol (namestring
, nlist
.n_value
,
1368 nlist
.n_type
, objfile
); /* Always */
1371 /* Standard, local, non-debugger, symbols */
1375 /* We need to be able to deal with both N_FN or N_TEXT,
1376 because we have no way of knowing whether the sys-supplied ld
1377 or GNU ld was used to make the executable. Sequents throw
1378 in another wrinkle -- they renumbered N_FN. */
1383 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1384 namestring
= set_namestring (objfile
, nlist
);
1386 if ((namestring
[0] == '-' && namestring
[1] == 'l')
1387 || (namestring
[(nsl
= strlen (namestring
)) - 1] == 'o'
1388 && namestring
[nsl
- 2] == '.'))
1390 if (objfile
->ei
.entry_point
< nlist
.n_value
&&
1391 objfile
->ei
.entry_point
>= last_o_file_start
)
1393 objfile
->ei
.entry_file_lowpc
= last_o_file_start
;
1394 objfile
->ei
.entry_file_highpc
= nlist
.n_value
;
1396 if (past_first_source_file
&& pst
1397 /* The gould NP1 uses low values for .o and -l symbols
1398 which are not the address. */
1399 && nlist
.n_value
>= TEXTLOW (pst
))
1401 end_psymtab (pst
, psymtab_include_list
, includes_used
,
1402 symnum
* symbol_size
,
1403 nlist
.n_value
> TEXTHIGH (pst
)
1404 ? nlist
.n_value
: TEXTHIGH (pst
),
1405 dependency_list
, dependencies_used
, textlow_not_set
);
1406 pst
= (struct partial_symtab
*) 0;
1408 dependencies_used
= 0;
1411 past_first_source_file
= 1;
1412 last_o_file_start
= nlist
.n_value
;
1419 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1422 case N_UNDF
| N_EXT
:
1423 if (nlist
.n_value
!= 0)
1425 /* This is a "Fortran COMMON" symbol. See if the target
1426 environment knows where it has been relocated to. */
1430 namestring
= set_namestring (objfile
, nlist
);
1431 if (target_lookup_symbol (namestring
, &reladdr
))
1433 continue; /* Error in lookup; ignore symbol for now. */
1435 nlist
.n_type
^= (N_BSS
^ N_UNDF
); /* Define it as a bss-symbol */
1436 nlist
.n_value
= reladdr
;
1437 goto bss_ext_symbol
;
1439 continue; /* Just undefined, not COMMON */
1442 if (processing_acc_compilation
&& nlist
.n_strx
== 1)
1444 /* Deal with relative offsets in the string table
1445 used in ELF+STAB under Solaris. If we want to use the
1446 n_strx field, which contains the name of the file,
1447 we must adjust file_string_table_offset *before* calling
1448 set_namestring(). */
1449 past_first_source_file
= 1;
1450 file_string_table_offset
= next_file_string_table_offset
;
1451 next_file_string_table_offset
=
1452 file_string_table_offset
+ nlist
.n_value
;
1453 if (next_file_string_table_offset
< file_string_table_offset
)
1454 error ("string table offset backs up at %d", symnum
);
1455 /* FIXME -- replace error() with complaint. */
1460 /* Lots of symbol types we can just ignore. */
1467 /* Keep going . . . */
1470 * Special symbol types for GNU
1473 case N_INDR
| N_EXT
:
1475 case N_SETA
| N_EXT
:
1477 case N_SETT
| N_EXT
:
1479 case N_SETD
| N_EXT
:
1481 case N_SETB
| N_EXT
:
1492 static int prev_so_symnum
= -10;
1493 static int first_so_symnum
;
1495 int prev_textlow_not_set
;
1497 valu
= nlist
.n_value
+ ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1499 prev_textlow_not_set
= textlow_not_set
;
1501 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1502 /* A zero value is probably an indication for the SunPRO 3.0
1503 compiler. end_psymtab explicitly tests for zero, so
1504 don't relocate it. */
1506 if (nlist
.n_value
== 0)
1508 textlow_not_set
= 1;
1512 textlow_not_set
= 0;
1514 textlow_not_set
= 0;
1516 past_first_source_file
= 1;
1518 if (prev_so_symnum
!= symnum
- 1)
1519 { /* Here if prev stab wasn't N_SO */
1520 first_so_symnum
= symnum
;
1524 end_psymtab (pst
, psymtab_include_list
, includes_used
,
1525 symnum
* symbol_size
,
1526 valu
> TEXTHIGH (pst
) ? valu
: TEXTHIGH (pst
),
1527 dependency_list
, dependencies_used
,
1528 prev_textlow_not_set
);
1529 pst
= (struct partial_symtab
*) 0;
1531 dependencies_used
= 0;
1535 prev_so_symnum
= symnum
;
1537 /* End the current partial symtab and start a new one */
1539 namestring
= set_namestring (objfile
, nlist
);
1541 /* Null name means end of .o file. Don't start a new one. */
1542 if (*namestring
== '\000')
1545 /* Some compilers (including gcc) emit a pair of initial N_SOs.
1546 The first one is a directory name; the second the file name.
1547 If pst exists, is empty, and has a filename ending in '/',
1548 we assume the previous N_SO was a directory name. */
1550 p
= strrchr (namestring
, '/');
1551 if (p
&& *(p
+ 1) == '\000')
1552 continue; /* Simply ignore directory name SOs */
1554 /* Some other compilers (C++ ones in particular) emit useless
1555 SOs for non-existant .c files. We ignore all subsequent SOs that
1556 immediately follow the first. */
1559 pst
= start_psymtab (objfile
,
1561 first_so_symnum
* symbol_size
,
1562 objfile
->global_psymbols
.next
,
1563 objfile
->static_psymbols
.next
);
1569 enum language tmp_language
;
1570 /* Add this bincl to the bincl_list for future EXCLs. No
1571 need to save the string; it'll be around until
1572 read_dbx_symtab function returns */
1574 namestring
= set_namestring (objfile
, nlist
);
1575 tmp_language
= deduce_language_from_filename (namestring
);
1577 /* Only change the psymtab's language if we've learned
1578 something useful (eg. tmp_language is not language_unknown).
1579 In addition, to match what start_subfile does, never change
1581 if (tmp_language
!= language_unknown
1582 && (tmp_language
!= language_c
1583 || psymtab_language
!= language_cplus
))
1584 psymtab_language
= tmp_language
;
1588 /* FIXME: we should not get here without a PST to work on.
1589 Attempt to recover. */
1590 complain (&unclaimed_bincl_complaint
, namestring
, symnum
);
1593 add_bincl_to_list (pst
, namestring
, nlist
.n_value
);
1595 /* Mark down an include file in the current psymtab */
1597 goto record_include_file
;
1602 enum language tmp_language
;
1603 /* Mark down an include file in the current psymtab */
1605 namestring
= set_namestring (objfile
, nlist
);
1606 tmp_language
= deduce_language_from_filename (namestring
);
1608 /* Only change the psymtab's language if we've learned
1609 something useful (eg. tmp_language is not language_unknown).
1610 In addition, to match what start_subfile does, never change
1612 if (tmp_language
!= language_unknown
1613 && (tmp_language
!= language_c
1614 || psymtab_language
!= language_cplus
))
1615 psymtab_language
= tmp_language
;
1617 /* In C++, one may expect the same filename to come round many
1618 times, when code is coming alternately from the main file
1619 and from inline functions in other files. So I check to see
1620 if this is a file we've seen before -- either the main
1621 source file, or a previously included file.
1623 This seems to be a lot of time to be spending on N_SOL, but
1624 things like "break c-exp.y:435" need to work (I
1625 suppose the psymtab_include_list could be hashed or put
1626 in a binary tree, if profiling shows this is a major hog). */
1627 if (pst
&& STREQ (namestring
, pst
->filename
))
1631 for (i
= 0; i
< includes_used
; i
++)
1632 if (STREQ (namestring
, psymtab_include_list
[i
]))
1641 record_include_file
:
1643 psymtab_include_list
[includes_used
++] = namestring
;
1644 if (includes_used
>= includes_allocated
)
1646 char **orig
= psymtab_include_list
;
1648 psymtab_include_list
= (char **)
1649 alloca ((includes_allocated
*= 2) *
1651 memcpy ((PTR
) psymtab_include_list
, (PTR
) orig
,
1652 includes_used
* sizeof (char *));
1656 case N_LSYM
: /* Typedef or automatic variable. */
1657 case N_STSYM
: /* Data seg var -- static */
1658 case N_LCSYM
: /* BSS " */
1659 case N_ROSYM
: /* Read-only data seg var -- static. */
1660 case N_NBSTS
: /* Gould nobase. */
1661 case N_NBLCS
: /* symbols. */
1663 case N_GSYM
: /* Global (extern) variable; can be
1664 data or bss (sigh FIXME). */
1666 /* Following may probably be ignored; I'll leave them here
1667 for now (until I do Pascal and Modula 2 extensions). */
1669 case N_PC
: /* I may or may not need this; I
1671 case N_M2C
: /* I suspect that I can ignore this here. */
1672 case N_SCOPE
: /* Same. */
1674 namestring
= set_namestring (objfile
, nlist
);
1676 /* See if this is an end of function stab. */
1677 if (pst
&& nlist
.n_type
== N_FUN
&& *namestring
== '\000')
1681 /* It's value is the size (in bytes) of the function for
1682 function relative stabs, or the address of the function's
1683 end for old style stabs. */
1684 valu
= nlist
.n_value
+ last_function_start
;
1685 if (TEXTHIGH (pst
) == 0 || valu
> TEXTHIGH (pst
))
1686 TEXTHIGH (pst
) = valu
;
1690 p
= (char *) strchr (namestring
, ':');
1692 continue; /* Not a debugging symbol. */
1696 /* Main processing section for debugging symbols which
1697 the initial read through the symbol tables needs to worry
1698 about. If we reach this point, the symbol which we are
1699 considering is definitely one we are interested in.
1700 p must also contain the (valid) index into the namestring
1701 which indicates the debugging type symbol. */
1706 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1707 #ifdef STATIC_TRANSFORM_NAME
1708 namestring
= STATIC_TRANSFORM_NAME (namestring
);
1710 add_psymbol_to_list (namestring
, p
- namestring
,
1711 VAR_NAMESPACE
, LOC_STATIC
,
1712 &objfile
->static_psymbols
,
1714 psymtab_language
, objfile
);
1717 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
1718 /* The addresses in these entries are reported to be
1719 wrong. See the code that reads 'G's for symtabs. */
1720 add_psymbol_to_list (namestring
, p
- namestring
,
1721 VAR_NAMESPACE
, LOC_STATIC
,
1722 &objfile
->global_psymbols
,
1724 psymtab_language
, objfile
);
1728 /* When a 'T' entry is defining an anonymous enum, it
1729 may have a name which is the empty string, or a
1730 single space. Since they're not really defining a
1731 symbol, those shouldn't go in the partial symbol
1732 table. We do pick up the elements of such enums at
1733 'check_enum:', below. */
1734 if (p
>= namestring
+ 2
1735 || (p
== namestring
+ 1
1736 && namestring
[0] != ' '))
1738 add_psymbol_to_list (namestring
, p
- namestring
,
1739 STRUCT_NAMESPACE
, LOC_TYPEDEF
,
1740 &objfile
->static_psymbols
,
1742 psymtab_language
, objfile
);
1745 /* Also a typedef with the same name. */
1746 add_psymbol_to_list (namestring
, p
- namestring
,
1747 VAR_NAMESPACE
, LOC_TYPEDEF
,
1748 &objfile
->static_psymbols
,
1750 psymtab_language
, objfile
);
1753 /* The semantics of C++ state that "struct foo { ... }"
1754 also defines a typedef for "foo". Unfortuantely, cfront
1755 never makes the typedef when translating from C++ to C.
1756 We make the typedef here so that "ptype foo" works as
1757 expected for cfront translated code. */
1758 else if (psymtab_language
== language_cplus
)
1760 /* Also a typedef with the same name. */
1761 add_psymbol_to_list (namestring
, p
- namestring
,
1762 VAR_NAMESPACE
, LOC_TYPEDEF
,
1763 &objfile
->static_psymbols
,
1765 psymtab_language
, objfile
);
1770 if (p
!= namestring
) /* a name is there, not just :T... */
1772 add_psymbol_to_list (namestring
, p
- namestring
,
1773 VAR_NAMESPACE
, LOC_TYPEDEF
,
1774 &objfile
->static_psymbols
,
1776 psymtab_language
, objfile
);
1779 /* If this is an enumerated type, we need to
1780 add all the enum constants to the partial symbol
1781 table. This does not cover enums without names, e.g.
1782 "enum {a, b} c;" in C, but fortunately those are
1783 rare. There is no way for GDB to find those from the
1784 enum type without spending too much time on it. Thus
1785 to solve this problem, the compiler needs to put out the
1786 enum in a nameless type. GCC2 does this. */
1788 /* We are looking for something of the form
1789 <name> ":" ("t" | "T") [<number> "="] "e"
1790 {<constant> ":" <value> ","} ";". */
1792 /* Skip over the colon and the 't' or 'T'. */
1794 /* This type may be given a number. Also, numbers can come
1795 in pairs like (0,26). Skip over it. */
1796 while ((*p
>= '0' && *p
<= '9')
1797 || *p
== '(' || *p
== ',' || *p
== ')'
1803 /* The aix4 compiler emits extra crud before the members. */
1806 /* Skip over the type (?). */
1810 /* Skip over the colon. */
1814 /* We have found an enumerated type. */
1815 /* According to comments in read_enum_type
1816 a comma could end it instead of a semicolon.
1817 I don't know where that happens.
1819 while (*p
&& *p
!= ';' && *p
!= ',')
1823 /* Check for and handle cretinous dbx symbol name
1825 if (*p
== '\\' || (*p
== '?' && p
[1] == '\0'))
1826 p
= next_symbol_text (objfile
);
1828 /* Point to the character after the name
1829 of the enum constant. */
1830 for (q
= p
; *q
&& *q
!= ':'; q
++)
1832 /* Note that the value doesn't matter for
1833 enum constants in psymtabs, just in symtabs. */
1834 add_psymbol_to_list (p
, q
- p
,
1835 VAR_NAMESPACE
, LOC_CONST
,
1836 &objfile
->static_psymbols
, 0,
1837 0, psymtab_language
, objfile
);
1838 /* Point past the name. */
1840 /* Skip over the value. */
1841 while (*p
&& *p
!= ',')
1843 /* Advance past the comma. */
1850 /* Constant, e.g. from "const" in Pascal. */
1851 add_psymbol_to_list (namestring
, p
- namestring
,
1852 VAR_NAMESPACE
, LOC_CONST
,
1853 &objfile
->static_psymbols
, nlist
.n_value
,
1854 0, psymtab_language
, objfile
);
1860 int name_len
= p
- namestring
;
1861 char *name
= xmalloc (name_len
+ 1);
1862 memcpy (name
, namestring
, name_len
);
1863 name
[name_len
] = '\0';
1864 complain (&function_outside_compilation_unit
, name
);
1867 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1868 /* Kludges for ELF/STABS with Sun ACC */
1869 last_function_name
= namestring
;
1870 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1871 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1872 value for the bottom of the text seg in those cases. */
1873 if (nlist
.n_value
== ANOFFSET (objfile
->section_offsets
,
1874 SECT_OFF_TEXT (objfile
)))
1876 CORE_ADDR minsym_valu
=
1877 find_stab_function_addr (namestring
, pst
->filename
, objfile
);
1878 /* find_stab_function_addr will return 0 if the minimal
1879 symbol wasn't found. (Unfortunately, this might also
1880 be a valid address.) Anyway, if it *does* return 0,
1881 it is likely that the value was set correctly to begin
1883 if (minsym_valu
!= 0)
1884 nlist
.n_value
= minsym_valu
;
1886 if (pst
&& textlow_not_set
)
1888 TEXTLOW (pst
) = nlist
.n_value
;
1889 textlow_not_set
= 0;
1894 /* Keep track of the start of the last function so we
1895 can handle end of function symbols. */
1896 last_function_start
= nlist
.n_value
;
1898 /* In reordered executables this function may lie outside
1899 the bounds created by N_SO symbols. If that's the case
1900 use the address of this function as the low bound for
1901 the partial symbol table. */
1904 || (nlist
.n_value
< TEXTLOW (pst
)
1906 != ANOFFSET (objfile
->section_offsets
,
1907 SECT_OFF_TEXT (objfile
))))))
1909 TEXTLOW (pst
) = nlist
.n_value
;
1910 textlow_not_set
= 0;
1912 add_psymbol_to_list (namestring
, p
- namestring
,
1913 VAR_NAMESPACE
, LOC_BLOCK
,
1914 &objfile
->static_psymbols
,
1916 psymtab_language
, objfile
);
1919 /* Global functions were ignored here, but now they
1920 are put into the global psymtab like one would expect.
1921 They're also in the minimal symbol table. */
1925 int name_len
= p
- namestring
;
1926 char *name
= xmalloc (name_len
+ 1);
1927 memcpy (name
, namestring
, name_len
);
1928 name
[name_len
] = '\0';
1929 complain (&function_outside_compilation_unit
, name
);
1932 nlist
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
1933 /* Kludges for ELF/STABS with Sun ACC */
1934 last_function_name
= namestring
;
1935 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1936 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1937 value for the bottom of the text seg in those cases. */
1938 if (nlist
.n_value
== ANOFFSET (objfile
->section_offsets
,
1939 SECT_OFF_TEXT (objfile
)))
1941 CORE_ADDR minsym_valu
=
1942 find_stab_function_addr (namestring
, pst
->filename
, objfile
);
1943 /* find_stab_function_addr will return 0 if the minimal
1944 symbol wasn't found. (Unfortunately, this might also
1945 be a valid address.) Anyway, if it *does* return 0,
1946 it is likely that the value was set correctly to begin
1948 if (minsym_valu
!= 0)
1949 nlist
.n_value
= minsym_valu
;
1951 if (pst
&& textlow_not_set
)
1953 TEXTLOW (pst
) = nlist
.n_value
;
1954 textlow_not_set
= 0;
1959 /* Keep track of the start of the last function so we
1960 can handle end of function symbols. */
1961 last_function_start
= nlist
.n_value
;
1963 /* In reordered executables this function may lie outside
1964 the bounds created by N_SO symbols. If that's the case
1965 use the address of this function as the low bound for
1966 the partial symbol table. */
1969 || (nlist
.n_value
< TEXTLOW (pst
)
1971 != ANOFFSET (objfile
->section_offsets
,
1972 SECT_OFF_TEXT (objfile
))))))
1974 TEXTLOW (pst
) = nlist
.n_value
;
1975 textlow_not_set
= 0;
1977 add_psymbol_to_list (namestring
, p
- namestring
,
1978 VAR_NAMESPACE
, LOC_BLOCK
,
1979 &objfile
->global_psymbols
,
1981 psymtab_language
, objfile
);
1984 /* Two things show up here (hopefully); static symbols of
1985 local scope (static used inside braces) or extensions
1986 of structure symbols. We can ignore both. */
2000 case '#': /* for symbol identification (used in live ranges) */
2001 /* added to support cfront stabs strings */
2002 case 'Z': /* for definition continuations */
2003 case 'P': /* for prototypes */
2007 /* It is a C++ nested symbol. We don't need to record it
2008 (I don't think); if we try to look up foo::bar::baz,
2009 then symbols for the symtab containing foo should get
2010 read in, I think. */
2011 /* Someone says sun cc puts out symbols like
2012 /foo/baz/maclib::/usr/local/bin/maclib,
2013 which would get here with a symbol type of ':'. */
2017 /* Unexpected symbol descriptor. The second and subsequent stabs
2018 of a continued stab can show up here. The question is
2019 whether they ever can mimic a normal stab--it would be
2020 nice if not, since we certainly don't want to spend the
2021 time searching to the end of every string looking for
2024 complain (&unknown_symchar_complaint
, p
[1]);
2026 /* Ignore it; perhaps it is an extension that we don't
2033 namestring
= set_namestring (objfile
, nlist
);
2035 /* Find the corresponding bincl and mark that psymtab on the
2036 psymtab dependency list */
2038 struct partial_symtab
*needed_pst
=
2039 find_corresponding_bincl_psymtab (namestring
, nlist
.n_value
);
2041 /* If this include file was defined earlier in this file,
2043 if (needed_pst
== pst
)
2051 for (i
= 0; i
< dependencies_used
; i
++)
2052 if (dependency_list
[i
] == needed_pst
)
2058 /* If it's already in the list, skip the rest. */
2062 dependency_list
[dependencies_used
++] = needed_pst
;
2063 if (dependencies_used
>= dependencies_allocated
)
2065 struct partial_symtab
**orig
= dependency_list
;
2067 (struct partial_symtab
**)
2068 alloca ((dependencies_allocated
*= 2)
2069 * sizeof (struct partial_symtab
*));
2070 memcpy ((PTR
) dependency_list
, (PTR
) orig
,
2072 * sizeof (struct partial_symtab
*)));
2074 fprintf_unfiltered (gdb_stderr
, "Had to reallocate dependency list.\n");
2075 fprintf_unfiltered (gdb_stderr
, "New dependencies allocated: %d\n",
2076 dependencies_allocated
);
2084 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2085 /* Solaris 2 end of module, finish current partial symbol table.
2086 end_psymtab will set TEXTHIGH (pst) to the proper value, which
2087 is necessary if a module compiled without debugging info
2088 follows this module. */
2091 end_psymtab (pst
, psymtab_include_list
, includes_used
,
2092 symnum
* symbol_size
,
2094 dependency_list
, dependencies_used
, textlow_not_set
);
2095 pst
= (struct partial_symtab
*) 0;
2097 dependencies_used
= 0;
2104 HANDLE_RBRAC (nlist
.n_value
);
2110 case N_SSYM
: /* Claim: Structure or union element.
2111 Hopefully, I can ignore this. */
2112 case N_ENTRY
: /* Alternate entry point; can ignore. */
2113 case N_MAIN
: /* Can definitely ignore this. */
2114 case N_CATCH
: /* These are GNU C++ extensions */
2115 case N_EHDECL
: /* that can safely be ignored here. */
2125 case N_NSYMS
: /* Ultrix 4.0: symbol count */
2126 case N_DEFD
: /* GNU Modula-2 */
2127 case N_ALIAS
: /* SunPro F77: alias name, ignore for now. */
2129 case N_OBJ
: /* useless types from Solaris */
2131 /* These symbols aren't interesting; don't worry about them */
2136 /* If we haven't found it yet, ignore it. It's probably some
2137 new type we don't know about yet. */
2138 complain (&unknown_symtype_complaint
,
2139 local_hex_string (nlist
.n_type
));
2144 /* If there's stuff to be cleaned up, clean it up. */
2145 if (DBX_SYMCOUNT (objfile
) > 0 /* We have some syms */
2146 /*FIXME, does this have a bug at start address 0? */
2147 && last_o_file_start
2148 && objfile
->ei
.entry_point
< nlist
.n_value
2149 && objfile
->ei
.entry_point
>= last_o_file_start
)
2151 objfile
->ei
.entry_file_lowpc
= last_o_file_start
;
2152 objfile
->ei
.entry_file_highpc
= nlist
.n_value
;
2157 /* Don't set pst->texthigh lower than it already is. */
2158 CORE_ADDR text_end
=
2159 (lowest_text_address
== (CORE_ADDR
) -1
2160 ? (text_addr
+ ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
)))
2161 : lowest_text_address
)
2164 end_psymtab (pst
, psymtab_include_list
, includes_used
,
2165 symnum
* symbol_size
,
2166 text_end
> TEXTHIGH (pst
) ? text_end
: TEXTHIGH (pst
),
2167 dependency_list
, dependencies_used
, textlow_not_set
);
2170 do_cleanups (back_to
);
2173 /* Allocate and partially fill a partial symtab. It will be
2174 completely filled at the end of the symbol list.
2176 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2177 is the address relative to which its symbols are (incremental) or 0
2181 static struct partial_symtab
*
2182 start_psymtab (struct objfile
*objfile
, char *filename
, CORE_ADDR textlow
,
2183 int ldsymoff
, struct partial_symbol
**global_syms
,
2184 struct partial_symbol
**static_syms
)
2186 struct partial_symtab
*result
=
2187 start_psymtab_common (objfile
, objfile
->section_offsets
,
2188 filename
, textlow
, global_syms
, static_syms
);
2190 result
->read_symtab_private
= (char *)
2191 obstack_alloc (&objfile
->psymbol_obstack
, sizeof (struct symloc
));
2192 TEXTLOW (result
) = result
->textlow
;
2193 TEXTHIGH (result
) = result
->texthigh
;
2194 LDSYMOFF (result
) = ldsymoff
;
2195 result
->read_symtab
= dbx_psymtab_to_symtab
;
2196 SYMBOL_SIZE (result
) = symbol_size
;
2197 SYMBOL_OFFSET (result
) = symbol_table_offset
;
2198 STRING_OFFSET (result
) = string_table_offset
;
2199 FILE_STRING_OFFSET (result
) = file_string_table_offset
;
2201 /* If we're handling an ELF file, drag some section-relocation info
2202 for this source file out of the ELF symbol table, to compensate for
2203 Sun brain death. This replaces the section_offsets in this psymtab,
2205 elfstab_offset_sections (objfile
, result
);
2207 /* Deduce the source language from the filename for this psymtab. */
2208 psymtab_language
= deduce_language_from_filename (filename
);
2213 /* Close off the current usage of PST.
2214 Returns PST or NULL if the partial symtab was empty and thrown away.
2216 FIXME: List variables and peculiarities of same. */
2218 struct partial_symtab
*
2219 end_psymtab (struct partial_symtab
*pst
, char **include_list
, int num_includes
,
2220 int capping_symbol_offset
, CORE_ADDR capping_text
,
2221 struct partial_symtab
**dependency_list
, int number_dependencies
,
2222 int textlow_not_set
)
2225 struct objfile
*objfile
= pst
->objfile
;
2227 if (capping_symbol_offset
!= -1)
2228 LDSYMLEN (pst
) = capping_symbol_offset
- LDSYMOFF (pst
);
2229 TEXTHIGH (pst
) = capping_text
;
2231 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2232 /* Under Solaris, the N_SO symbols always have a value of 0,
2233 instead of the usual address of the .o file. Therefore,
2234 we have to do some tricks to fill in texthigh and textlow.
2235 The first trick is: if we see a static
2236 or global function, and the textlow for the current pst
2237 is not set (ie: textlow_not_set), then we use that function's
2238 address for the textlow of the pst. */
2240 /* Now, to fill in texthigh, we remember the last function seen
2241 in the .o file. Also, there's a hack in
2242 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
2243 to here via the misc_info field. Therefore, we can fill in
2244 a reliable texthigh by taking the address plus size of the
2245 last function in the file. */
2247 if (TEXTHIGH (pst
) == 0 && last_function_name
)
2251 struct minimal_symbol
*minsym
;
2253 p
= strchr (last_function_name
, ':');
2255 p
= last_function_name
;
2256 n
= p
- last_function_name
;
2258 strncpy (p
, last_function_name
, n
);
2261 minsym
= lookup_minimal_symbol (p
, pst
->filename
, objfile
);
2264 /* Sun Fortran appends an underscore to the minimal symbol name,
2265 try again with an appended underscore if the minimal symbol
2269 minsym
= lookup_minimal_symbol (p
, pst
->filename
, objfile
);
2273 TEXTHIGH (pst
) = SYMBOL_VALUE_ADDRESS (minsym
) + MSYMBOL_SIZE (minsym
);
2275 last_function_name
= NULL
;
2278 /* this test will be true if the last .o file is only data */
2279 if (textlow_not_set
)
2280 TEXTLOW (pst
) = TEXTHIGH (pst
);
2283 struct partial_symtab
*p1
;
2285 /* If we know our own starting text address, then walk through all other
2286 psymtabs for this objfile, and if any didn't know their ending text
2287 address, set it to our starting address. Take care to not set our
2288 own ending address to our starting address, nor to set addresses on
2289 `dependency' files that have both textlow and texthigh zero. */
2291 ALL_OBJFILE_PSYMTABS (objfile
, p1
)
2293 if (TEXTHIGH (p1
) == 0 && TEXTLOW (p1
) != 0 && p1
!= pst
)
2295 TEXTHIGH (p1
) = TEXTLOW (pst
);
2296 /* if this file has only data, then make textlow match texthigh */
2297 if (TEXTLOW (p1
) == 0)
2298 TEXTLOW (p1
) = TEXTHIGH (p1
);
2303 /* End of kludge for patching Solaris textlow and texthigh. */
2304 #endif /* SOFUN_ADDRESS_MAYBE_MISSING. */
2306 pst
->n_global_syms
=
2307 objfile
->global_psymbols
.next
- (objfile
->global_psymbols
.list
+ pst
->globals_offset
);
2308 pst
->n_static_syms
=
2309 objfile
->static_psymbols
.next
- (objfile
->static_psymbols
.list
+ pst
->statics_offset
);
2311 pst
->number_of_dependencies
= number_dependencies
;
2312 if (number_dependencies
)
2314 pst
->dependencies
= (struct partial_symtab
**)
2315 obstack_alloc (&objfile
->psymbol_obstack
,
2316 number_dependencies
* sizeof (struct partial_symtab
*));
2317 memcpy (pst
->dependencies
, dependency_list
,
2318 number_dependencies
* sizeof (struct partial_symtab
*));
2321 pst
->dependencies
= 0;
2323 for (i
= 0; i
< num_includes
; i
++)
2325 struct partial_symtab
*subpst
=
2326 allocate_psymtab (include_list
[i
], objfile
);
2328 /* Copy the sesction_offsets array from the main psymtab. */
2329 subpst
->section_offsets
= pst
->section_offsets
;
2330 subpst
->read_symtab_private
=
2331 (char *) obstack_alloc (&objfile
->psymbol_obstack
,
2332 sizeof (struct symloc
));
2336 TEXTHIGH (subpst
) = 0;
2338 /* We could save slight bits of space by only making one of these,
2339 shared by the entire set of include files. FIXME-someday. */
2340 subpst
->dependencies
= (struct partial_symtab
**)
2341 obstack_alloc (&objfile
->psymbol_obstack
,
2342 sizeof (struct partial_symtab
*));
2343 subpst
->dependencies
[0] = pst
;
2344 subpst
->number_of_dependencies
= 1;
2346 subpst
->globals_offset
=
2347 subpst
->n_global_syms
=
2348 subpst
->statics_offset
=
2349 subpst
->n_static_syms
= 0;
2353 subpst
->read_symtab
= pst
->read_symtab
;
2356 sort_pst_symbols (pst
);
2358 /* If there is already a psymtab or symtab for a file of this name, remove it.
2359 (If there is a symtab, more drastic things also happen.)
2360 This happens in VxWorks. */
2361 free_named_symtabs (pst
->filename
);
2363 if (num_includes
== 0
2364 && number_dependencies
== 0
2365 && pst
->n_global_syms
== 0
2366 && pst
->n_static_syms
== 0
2367 && has_line_numbers
== 0)
2369 /* Throw away this psymtab, it's empty. We can't deallocate it, since
2370 it is on the obstack, but we can forget to chain it on the list. */
2371 /* Empty psymtabs happen as a result of header files which don't have
2372 any symbols in them. There can be a lot of them. But this check
2373 is wrong, in that a psymtab with N_SLINE entries but nothing else
2374 is not empty, but we don't realize that. Fixing that without slowing
2375 things down might be tricky. */
2377 discard_psymtab (pst
);
2379 /* Indicate that psymtab was thrown away. */
2380 pst
= (struct partial_symtab
*) NULL
;
2386 dbx_psymtab_to_symtab_1 (struct partial_symtab
*pst
)
2388 struct cleanup
*old_chain
;
2396 fprintf_unfiltered (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
2401 /* Read in all partial symtabs on which this one is dependent */
2402 for (i
= 0; i
< pst
->number_of_dependencies
; i
++)
2403 if (!pst
->dependencies
[i
]->readin
)
2405 /* Inform about additional files that need to be read in. */
2408 fputs_filtered (" ", gdb_stdout
);
2410 fputs_filtered ("and ", gdb_stdout
);
2412 printf_filtered ("%s...", pst
->dependencies
[i
]->filename
);
2413 wrap_here (""); /* Flush output */
2414 gdb_flush (gdb_stdout
);
2416 dbx_psymtab_to_symtab_1 (pst
->dependencies
[i
]);
2419 if (LDSYMLEN (pst
)) /* Otherwise it's a dummy */
2421 /* Init stuff necessary for reading in symbols */
2424 old_chain
= make_cleanup (really_free_pendings
, 0);
2425 file_string_table_offset
= FILE_STRING_OFFSET (pst
);
2426 symbol_size
= SYMBOL_SIZE (pst
);
2428 /* Read in this file's symbols */
2429 bfd_seek (pst
->objfile
->obfd
, SYMBOL_OFFSET (pst
), SEEK_SET
);
2430 read_ofile_symtab (pst
);
2431 sort_symtab_syms (pst
->symtab
);
2433 do_cleanups (old_chain
);
2439 /* Read in all of the symbols for a given psymtab for real.
2440 Be verbose about it if the user wants that. */
2443 dbx_psymtab_to_symtab (struct partial_symtab
*pst
)
2452 fprintf_unfiltered (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
2457 if (LDSYMLEN (pst
) || pst
->number_of_dependencies
)
2459 /* Print the message now, before reading the string table,
2460 to avoid disconcerting pauses. */
2463 printf_filtered ("Reading in symbols for %s...", pst
->filename
);
2464 gdb_flush (gdb_stdout
);
2467 sym_bfd
= pst
->objfile
->obfd
;
2469 next_symbol_text_func
= dbx_next_symbol_text
;
2471 dbx_psymtab_to_symtab_1 (pst
);
2473 /* Match with global symbols. This only needs to be done once,
2474 after all of the symtabs and dependencies have been read in. */
2475 scan_file_globals (pst
->objfile
);
2477 /* Finish up the debug error message. */
2479 printf_filtered ("done.\n");
2483 /* Read in a defined section of a specific object file's symbols. */
2486 read_ofile_symtab (struct partial_symtab
*pst
)
2488 register char *namestring
;
2489 register struct external_nlist
*bufp
;
2490 struct internal_nlist nlist
;
2492 unsigned max_symnum
;
2494 struct objfile
*objfile
;
2495 int sym_offset
; /* Offset to start of symbols to read */
2496 int sym_size
; /* Size of symbols to read */
2497 CORE_ADDR text_offset
; /* Start of text segment for symbols */
2498 int text_size
; /* Size of text segment for symbols */
2499 struct section_offsets
*section_offsets
;
2501 objfile
= pst
->objfile
;
2502 sym_offset
= LDSYMOFF (pst
);
2503 sym_size
= LDSYMLEN (pst
);
2504 text_offset
= TEXTLOW (pst
);
2505 text_size
= TEXTHIGH (pst
) - TEXTLOW (pst
);
2506 /* This cannot be simply objfile->section_offsets because of
2507 elfstab_offset_sections() which initializes the psymtab section
2508 offsets information in a special way, and that is different from
2509 objfile->section_offsets. */
2510 section_offsets
= pst
->section_offsets
;
2512 current_objfile
= objfile
;
2513 subfile_stack
= NULL
;
2515 stringtab_global
= DBX_STRINGTAB (objfile
);
2516 last_source_file
= NULL
;
2518 abfd
= objfile
->obfd
;
2519 symfile_bfd
= objfile
->obfd
; /* Implicit param to next_text_symbol */
2520 symbuf_end
= symbuf_idx
= 0;
2522 /* It is necessary to actually read one symbol *before* the start
2523 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
2524 occurs before the N_SO symbol.
2526 Detecting this in read_dbx_symtab
2527 would slow down initial readin, so we look for it here instead. */
2528 if (!processing_acc_compilation
&& sym_offset
>= (int) symbol_size
)
2530 bfd_seek (symfile_bfd
, sym_offset
- symbol_size
, SEEK_CUR
);
2532 bufp
= &symbuf
[symbuf_idx
++];
2533 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
2534 OBJSTAT (objfile
, n_stabs
++);
2536 namestring
= set_namestring (objfile
, nlist
);
2538 processing_gcc_compilation
= 0;
2539 if (nlist
.n_type
== N_TEXT
)
2541 const char *tempstring
= namestring
;
2543 if (STREQ (namestring
, GCC_COMPILED_FLAG_SYMBOL
))
2544 processing_gcc_compilation
= 1;
2545 else if (STREQ (namestring
, GCC2_COMPILED_FLAG_SYMBOL
))
2546 processing_gcc_compilation
= 2;
2547 if (tempstring
[0] == bfd_get_symbol_leading_char (symfile_bfd
))
2549 if (STREQN (tempstring
, "__gnu_compiled", 14))
2550 processing_gcc_compilation
= 2;
2553 /* Try to select a C++ demangling based on the compilation unit
2557 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2558 know whether it will use the old style or v3 mangling. */
2559 if (processing_gcc_compilation
)
2561 if (AUTO_DEMANGLING
)
2563 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
2570 /* The N_SO starting this symtab is the first symbol, so we
2571 better not check the symbol before it. I'm not this can
2572 happen, but it doesn't hurt to check for it. */
2573 bfd_seek (symfile_bfd
, sym_offset
, SEEK_CUR
);
2574 processing_gcc_compilation
= 0;
2577 if (symbuf_idx
== symbuf_end
)
2579 bufp
= &symbuf
[symbuf_idx
];
2580 if (bfd_h_get_8 (abfd
, bufp
->e_type
) != N_SO
)
2581 error ("First symbol in segment of executable not a source symbol");
2583 max_symnum
= sym_size
/ symbol_size
;
2586 symnum
< max_symnum
;
2589 QUIT
; /* Allow this to be interruptable */
2590 if (symbuf_idx
== symbuf_end
)
2592 bufp
= &symbuf
[symbuf_idx
++];
2593 INTERNALIZE_SYMBOL (nlist
, bufp
, abfd
);
2594 OBJSTAT (objfile
, n_stabs
++);
2596 type
= bfd_h_get_8 (abfd
, bufp
->e_type
);
2598 namestring
= set_namestring (objfile
, nlist
);
2602 process_one_symbol (type
, nlist
.n_desc
, nlist
.n_value
,
2603 namestring
, section_offsets
, objfile
);
2605 /* We skip checking for a new .o or -l file; that should never
2606 happen in this routine. */
2607 else if (type
== N_TEXT
)
2609 /* I don't think this code will ever be executed, because
2610 the GCC_COMPILED_FLAG_SYMBOL usually is right before
2611 the N_SO symbol which starts this source file.
2612 However, there is no reason not to accept
2613 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
2615 if (STREQ (namestring
, GCC_COMPILED_FLAG_SYMBOL
))
2616 processing_gcc_compilation
= 1;
2617 else if (STREQ (namestring
, GCC2_COMPILED_FLAG_SYMBOL
))
2618 processing_gcc_compilation
= 2;
2621 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2622 know whether it will use the old style or v3 mangling. */
2623 if (AUTO_DEMANGLING
)
2625 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
2629 else if (type
& N_EXT
|| type
== (unsigned char) N_TEXT
2630 || type
== (unsigned char) N_NBTEXT
2633 /* Global symbol: see if we came across a dbx defintion for
2634 a corresponding symbol. If so, store the value. Remove
2635 syms from the chain when their values are stored, but
2636 search the whole chain, as there may be several syms from
2637 different files with the same name. */
2638 /* This is probably not true. Since the files will be read
2639 in one at a time, each reference to a global symbol will
2640 be satisfied in each file as it appears. So we skip this
2646 current_objfile
= NULL
;
2648 /* In a Solaris elf file, this variable, which comes from the
2649 value of the N_SO symbol, will still be 0. Luckily, text_offset,
2650 which comes from TEXTLOW (pst) is correct. */
2651 if (last_source_start_addr
== 0)
2652 last_source_start_addr
= text_offset
;
2654 /* In reordered executables last_source_start_addr may not be the
2655 lower bound for this symtab, instead use text_offset which comes
2656 from TEXTLOW (pst) which is correct. */
2657 if (last_source_start_addr
> text_offset
)
2658 last_source_start_addr
= text_offset
;
2660 pst
->symtab
= end_symtab (text_offset
+ text_size
, objfile
, SECT_OFF_TEXT (objfile
));
2662 /* Process items which we had to "process_later" due to dependencies
2664 process_now (objfile
);
2670 /* This handles a single symbol from the symbol-file, building symbols
2671 into a GDB symtab. It takes these arguments and an implicit argument.
2673 TYPE is the type field of the ".stab" symbol entry.
2674 DESC is the desc field of the ".stab" entry.
2675 VALU is the value field of the ".stab" entry.
2676 NAME is the symbol name, in our address space.
2677 SECTION_OFFSETS is a set of amounts by which the sections of this object
2678 file were relocated when it was loaded into memory.
2679 Note that these section_offsets are not the
2680 objfile->section_offsets but the pst->section_offsets.
2681 All symbols that refer
2682 to memory locations need to be offset by these amounts.
2683 OBJFILE is the object file from which we are reading symbols.
2684 It is used in end_symtab. */
2687 process_one_symbol (int type
, int desc
, CORE_ADDR valu
, char *name
,
2688 struct section_offsets
*section_offsets
,
2689 struct objfile
*objfile
)
2691 #ifdef SUN_FIXED_LBRAC_BUG
2692 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
2693 to correct the address of N_LBRAC's. If it is not defined, then
2694 we never need to correct the addresses. */
2696 /* This records the last pc address we've seen. We depend on there being
2697 an SLINE or FUN or SO before the first LBRAC, since the variable does
2698 not get reset in between reads of different symbol files. */
2699 static CORE_ADDR last_pc_address
;
2702 register struct context_stack
*new;
2703 /* This remembers the address of the start of a function. It is used
2704 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
2705 relative to the current function's start address. On systems
2706 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
2707 used to relocate these symbol types rather than SECTION_OFFSETS. */
2708 static CORE_ADDR function_start_offset
;
2710 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
2711 file. Used to detect the SunPRO solaris compiler. */
2712 static int n_opt_found
;
2714 /* The stab type used for the definition of the last function.
2715 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
2716 static int function_stab_type
= 0;
2718 if (!block_address_function_relative
)
2719 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
2720 function start address, so just use the text offset. */
2721 function_start_offset
= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2723 /* Something is wrong if we see real data before
2724 seeing a source file name. */
2726 if (last_source_file
== NULL
&& type
!= (unsigned char) N_SO
)
2728 /* Ignore any symbols which appear before an N_SO symbol.
2729 Currently no one puts symbols there, but we should deal
2730 gracefully with the case. A complain()t might be in order,
2731 but this should not be an error (). */
2740 if (*name
== '\000')
2742 /* This N_FUN marks the end of a function. This closes off the
2744 within_function
= 0;
2745 new = pop_context ();
2747 /* Make a block for the local symbols within. */
2748 finish_block (new->name
, &local_symbols
, new->old_blocks
,
2749 new->start_addr
, new->start_addr
+ valu
,
2752 /* May be switching to an assembler file which may not be using
2753 block relative stabs, so reset the offset. */
2754 if (block_address_function_relative
)
2755 function_start_offset
= 0;
2760 /* Relocate for dynamic loading */
2761 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2762 valu
= SMASH_TEXT_ADDRESS (valu
);
2763 goto define_a_symbol
;
2766 /* This "symbol" just indicates the start of an inner lexical
2767 context within a function. */
2769 /* Ignore extra outermost context from SunPRO cc and acc. */
2770 if (n_opt_found
&& desc
== 1)
2773 if (block_address_function_relative
)
2774 /* Relocate for Sun ELF acc fn-relative syms. */
2775 valu
+= function_start_offset
;
2777 /* On most machines, the block addresses are relative to the
2778 N_SO, the linker did not relocate them (sigh). */
2779 valu
+= last_source_start_addr
;
2781 #ifdef SUN_FIXED_LBRAC_BUG
2782 if (!SUN_FIXED_LBRAC_BUG
&& valu
< last_pc_address
)
2784 /* Patch current LBRAC pc value to match last handy pc value */
2785 complain (&lbrac_complaint
);
2786 valu
= last_pc_address
;
2789 new = push_context (desc
, valu
);
2793 /* This "symbol" just indicates the end of an inner lexical
2794 context that was started with N_LBRAC. */
2796 /* Ignore extra outermost context from SunPRO cc and acc. */
2797 if (n_opt_found
&& desc
== 1)
2800 if (block_address_function_relative
)
2801 /* Relocate for Sun ELF acc fn-relative syms. */
2802 valu
+= function_start_offset
;
2804 /* On most machines, the block addresses are relative to the
2805 N_SO, the linker did not relocate them (sigh). */
2806 valu
+= last_source_start_addr
;
2808 new = pop_context ();
2809 if (desc
!= new->depth
)
2810 complain (&lbrac_mismatch_complaint
, symnum
);
2812 /* Some compilers put the variable decls inside of an
2813 LBRAC/RBRAC block. This macro should be nonzero if this
2814 is true. DESC is N_DESC from the N_RBRAC symbol.
2815 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
2816 or the GCC2_COMPILED_SYMBOL. */
2817 #if !defined (VARIABLES_INSIDE_BLOCK)
2818 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
2821 /* Can only use new->locals as local symbols here if we're in
2822 gcc or on a machine that puts them before the lbrack. */
2823 if (!VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2824 local_symbols
= new->locals
;
2826 if (context_stack_depth
2827 > !VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2829 /* This is not the outermost LBRAC...RBRAC pair in the function,
2830 its local symbols preceded it, and are the ones just recovered
2831 from the context stack. Define the block for them (but don't
2832 bother if the block contains no symbols. Should we complain
2833 on blocks without symbols? I can't think of any useful purpose
2835 if (local_symbols
!= NULL
)
2837 /* Muzzle a compiler bug that makes end < start. (which
2838 compilers? Is this ever harmful?). */
2839 if (new->start_addr
> valu
)
2841 complain (&lbrac_rbrac_complaint
);
2842 new->start_addr
= valu
;
2844 /* Make a block for the local symbols within. */
2845 finish_block (0, &local_symbols
, new->old_blocks
,
2846 new->start_addr
, valu
, objfile
);
2851 /* This is the outermost LBRAC...RBRAC pair. There is no
2852 need to do anything; leave the symbols that preceded it
2853 to be attached to the function's own block. We need to
2854 indicate that we just moved outside of the function. */
2855 within_function
= 0;
2858 if (VARIABLES_INSIDE_BLOCK (desc
, processing_gcc_compilation
))
2859 /* Now pop locals of block just finished. */
2860 local_symbols
= new->locals
;
2865 /* This kind of symbol indicates the start of an object file. */
2866 /* Relocate for dynamic loading */
2867 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2871 /* This type of symbol indicates the start of data
2872 for one source file.
2873 Finish the symbol table of the previous source file
2874 (if any) and start accumulating a new symbol table. */
2875 /* Relocate for dynamic loading */
2876 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2880 #ifdef SUN_FIXED_LBRAC_BUG
2881 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
2884 #ifdef PCC_SOL_BROKEN
2885 /* pcc bug, occasionally puts out SO for SOL. */
2886 if (context_stack_depth
> 0)
2888 start_subfile (name
, NULL
);
2892 if (last_source_file
)
2894 /* Check if previous symbol was also an N_SO (with some
2895 sanity checks). If so, that one was actually the directory
2896 name, and the current one is the real file name.
2898 if (previous_stab_code
== (unsigned char) N_SO
)
2900 patch_subfile_names (current_subfile
, name
);
2901 break; /* Ignore repeated SOs */
2903 end_symtab (valu
, objfile
, SECT_OFF_TEXT (objfile
));
2907 /* Null name means this just marks the end of text for this .o file.
2908 Don't start a new symtab in this case. */
2909 if (*name
== '\000')
2912 if (block_address_function_relative
)
2913 function_start_offset
= 0;
2916 start_symtab (name
, NULL
, valu
);
2917 record_debugformat ("stabs");
2921 /* This type of symbol indicates the start of data for
2922 a sub-source-file, one whose contents were copied or
2923 included in the compilation of the main source file
2924 (whose name was given in the N_SO symbol.) */
2925 /* Relocate for dynamic loading */
2926 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
2927 start_subfile (name
, current_subfile
->dirname
);
2932 add_new_header_file (name
, valu
);
2933 start_subfile (name
, current_subfile
->dirname
);
2937 start_subfile (pop_subfile (), current_subfile
->dirname
);
2941 add_old_header_file (name
, valu
);
2945 /* This type of "symbol" really just records
2946 one line-number -- core-address correspondence.
2947 Enter it in the line list for this symbol table. */
2949 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
2950 valu
+= function_start_offset
;
2952 #ifdef SUN_FIXED_LBRAC_BUG
2953 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
2955 record_line (current_subfile
, desc
, valu
);
2959 common_block_start (name
, objfile
);
2963 common_block_end (objfile
);
2966 /* The following symbol types need to have the appropriate offset added
2967 to their value; then we process symbol definitions in the name. */
2969 case N_STSYM
: /* Static symbol in data seg */
2970 case N_LCSYM
: /* Static symbol in BSS seg */
2971 case N_ROSYM
: /* Static symbol in Read-only data seg */
2972 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
2973 Solaris2's stabs-in-elf makes *most* symbols relative
2974 but leaves a few absolute (at least for Solaris 2.1 and version
2975 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
2976 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
2977 .stab "foo:V...",N_STSYM is relative (section base subtracted).
2978 This leaves us no choice but to search for the 'S' or 'V'...
2979 (or pass the whole section_offsets stuff down ONE MORE function
2980 call level, which we really don't want to do). */
2984 /* .o files and NLMs have non-zero text seg offsets, but don't need
2985 their static syms offset in this fashion. XXX - This is really a
2986 crock that should be fixed in the solib handling code so that I
2987 don't have to work around it here. */
2989 if (!symfile_relocatable
)
2991 p
= strchr (name
, ':');
2992 if (p
!= 0 && p
[1] == 'S')
2994 /* The linker relocated it. We don't want to add an
2995 elfstab_offset_sections-type offset, but we *do* want
2996 to add whatever solib.c passed to symbol_file_add as
2997 addr (this is known to affect SunOS4, and I suspect ELF
2998 too). Since elfstab_offset_sections currently does not
2999 muck with the text offset (there is no Ttext.text
3000 symbol), we can get addr from the text offset. If
3001 elfstab_offset_sections ever starts dealing with the
3002 text offset, and we still need to do this, we need to
3003 invent a SECT_OFF_ADDR_KLUDGE or something. */
3004 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
3005 goto define_a_symbol
;
3008 /* Since it's not the kludge case, re-dispatch to the right handler. */
3018 internal_error (__FILE__
, __LINE__
, "failed internal consistency check");
3022 case_N_STSYM
: /* Static symbol in data seg */
3023 case N_DSLINE
: /* Source line number, data seg */
3024 valu
+= ANOFFSET (section_offsets
, SECT_OFF_DATA (objfile
));
3025 goto define_a_symbol
;
3027 case_N_LCSYM
: /* Static symbol in BSS seg */
3028 case N_BSLINE
: /* Source line number, bss seg */
3029 /* N_BROWS: overlaps with N_BSLINE */
3030 valu
+= ANOFFSET (section_offsets
, SECT_OFF_BSS (objfile
));
3031 goto define_a_symbol
;
3033 case_N_ROSYM
: /* Static symbol in Read-only data seg */
3034 valu
+= ANOFFSET (section_offsets
, SECT_OFF_RODATA (objfile
));
3035 goto define_a_symbol
;
3037 case N_ENTRY
: /* Alternate entry point */
3038 /* Relocate for dynamic loading */
3039 valu
+= ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
));
3040 goto define_a_symbol
;
3042 /* The following symbol types we don't know how to process. Handle
3043 them in a "default" way, but complain to people who care. */
3045 case N_CATCH
: /* Exception handler catcher */
3046 case N_EHDECL
: /* Exception handler name */
3047 case N_PC
: /* Global symbol in Pascal */
3048 case N_M2C
: /* Modula-2 compilation unit */
3049 /* N_MOD2: overlaps with N_EHDECL */
3050 case N_SCOPE
: /* Modula-2 scope information */
3051 case N_ECOML
: /* End common (local name) */
3052 case N_NBTEXT
: /* Gould Non-Base-Register symbols??? */
3057 complain (&unknown_symtype_complaint
, local_hex_string (type
));
3060 /* The following symbol types don't need the address field relocated,
3061 since it is either unused, or is absolute. */
3063 case N_GSYM
: /* Global variable */
3064 case N_NSYMS
: /* Number of symbols (ultrix) */
3065 case N_NOMAP
: /* No map? (ultrix) */
3066 case N_RSYM
: /* Register variable */
3067 case N_DEFD
: /* Modula-2 GNU module dependency */
3068 case N_SSYM
: /* Struct or union element */
3069 case N_LSYM
: /* Local symbol in stack */
3070 case N_PSYM
: /* Parameter variable */
3071 case N_LENG
: /* Length of preceding symbol type */
3075 char *colon_pos
= strchr (name
, ':');
3076 if (colon_pos
== NULL
)
3079 deftype
= colon_pos
[1];
3085 function_stab_type
= type
;
3087 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
3088 /* Deal with the SunPRO 3.0 compiler which omits the address
3089 from N_FUN symbols. */
3091 && valu
== ANOFFSET (section_offsets
, SECT_OFF_TEXT (objfile
)))
3093 CORE_ADDR minsym_valu
=
3094 find_stab_function_addr (name
, last_source_file
, objfile
);
3096 /* find_stab_function_addr will return 0 if the minimal
3097 symbol wasn't found. (Unfortunately, this might also
3098 be a valid address.) Anyway, if it *does* return 0,
3099 it is likely that the value was set correctly to begin
3101 if (minsym_valu
!= 0)
3106 #ifdef SUN_FIXED_LBRAC_BUG
3107 /* The Sun acc compiler, under SunOS4, puts out
3108 functions with N_GSYM or N_STSYM. The problem is
3109 that the address of the symbol is no good (for N_GSYM
3110 it doesn't even attept an address; for N_STSYM it
3111 puts out an address but then it gets relocated
3112 relative to the data segment, not the text segment).
3113 Currently we can't fix this up later as we do for
3114 some types of symbol in scan_file_globals.
3115 Fortunately we do have a way of finding the address -
3116 we know that the value in last_pc_address is either
3117 the one we want (if we're dealing with the first
3118 function in an object file), or somewhere in the
3119 previous function. This means that we can use the
3120 minimal symbol table to get the address. */
3122 /* Starting with release 3.0, the Sun acc compiler,
3123 under SunOS4, puts out functions with N_FUN and a value
3124 of zero. This gets relocated to the start of the text
3125 segment of the module, which is no good either.
3126 Under SunOS4 we can deal with this as N_SLINE and N_SO
3127 entries contain valid absolute addresses.
3128 Release 3.0 acc also puts out N_OPT entries, which makes
3129 it possible to discern acc from cc or gcc. */
3131 if (type
== N_GSYM
|| type
== N_STSYM
3133 && n_opt_found
&& !block_address_function_relative
))
3135 struct minimal_symbol
*m
;
3136 int l
= colon_pos
- name
;
3138 m
= lookup_minimal_symbol_by_pc (last_pc_address
);
3139 if (m
&& STREQN (SYMBOL_NAME (m
), name
, l
)
3140 && SYMBOL_NAME (m
)[l
] == '\0')
3141 /* last_pc_address was in this function */
3142 valu
= SYMBOL_VALUE (m
);
3143 else if (m
&& SYMBOL_NAME (m
+ 1)
3144 && STREQN (SYMBOL_NAME (m
+ 1), name
, l
)
3145 && SYMBOL_NAME (m
+ 1)[l
] == '\0')
3146 /* last_pc_address was in last function */
3147 valu
= SYMBOL_VALUE (m
+ 1);
3149 /* Not found - use last_pc_address (for finish_block) */
3150 valu
= last_pc_address
;
3153 last_pc_address
= valu
; /* Save for SunOS bug circumcision */
3156 if (block_address_function_relative
)
3157 /* For Solaris 2.0 compilers, the block addresses and
3158 N_SLINE's are relative to the start of the
3159 function. On normal systems, and when using gcc on
3160 Solaris 2.0, these addresses are just absolute, or
3161 relative to the N_SO, depending on
3162 BLOCK_ADDRESS_ABSOLUTE. */
3163 function_start_offset
= valu
;
3165 within_function
= 1;
3167 if (context_stack_depth
> 1)
3169 complain (&lbrac_unmatched_complaint
, symnum
);
3173 if (context_stack_depth
> 0)
3175 new = pop_context ();
3176 /* Make a block for the local symbols within. */
3177 finish_block (new->name
, &local_symbols
, new->old_blocks
,
3178 new->start_addr
, valu
, objfile
);
3181 new = push_context (0, valu
);
3182 new->name
= define_symbol (valu
, name
, desc
, type
, objfile
);
3186 define_symbol (valu
, name
, desc
, type
, objfile
);
3192 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
3193 for a bunch of other flags, too. Someday we may parse their
3194 flags; for now we ignore theirs and hope they'll ignore ours. */
3195 case N_OPT
: /* Solaris 2: Compiler options */
3198 if (STREQ (name
, GCC2_COMPILED_FLAG_SYMBOL
))
3200 processing_gcc_compilation
= 2;
3201 #if 0 /* Works, but is experimental. -fnf */
3202 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
3203 know whether it will use the old style or v3 mangling. */
3204 if (AUTO_DEMANGLING
)
3206 set_demangling_style (GNU_DEMANGLING_STYLE_STRING
);
3215 case N_MAIN
: /* Name of main routine. */
3216 /* FIXME: If one has a symbol file with N_MAIN and then replaces
3217 it with a symbol file with "main" and without N_MAIN. I'm
3218 not sure exactly what rule to follow but probably something
3219 like: N_MAIN takes precedence over "main" no matter what
3220 objfile it is in; If there is more than one N_MAIN, choose
3221 the one in the symfile_objfile; If there is more than one
3222 N_MAIN within a given objfile, complain() and choose
3223 arbitrarily. (kingdon) */
3225 set_main_name (name
);
3228 /* The following symbol types can be ignored. */
3229 case N_OBJ
: /* Solaris 2: Object file dir and name */
3230 /* N_UNDF: Solaris 2: file separator mark */
3231 /* N_UNDF: -- we will never encounter it, since we only process one
3232 file's symbols at once. */
3233 case N_ENDM
: /* Solaris 2: End of module */
3234 case N_ALIAS
: /* SunPro F77: alias name, ignore for now. */
3238 /* '#' is a GNU C extension to allow one symbol to refer to another
3241 Generally this is used so that an alias can refer to its main
3245 /* Initialize symbol reference names and determine if this is
3246 a definition. If symbol reference is being defined, go
3247 ahead and add it. Otherwise, just return sym. */
3252 /* If this stab defines a new reference ID that is not on the
3253 reference list, then put it on the reference list.
3255 We go ahead and advance NAME past the reference, even though
3256 it is not strictly necessary at this time. */
3257 refnum
= symbol_reference_defined (&s
);
3259 if (!ref_search (refnum
))
3260 ref_add (refnum
, 0, name
, valu
);
3265 previous_stab_code
= type
;
3268 /* FIXME: The only difference between this and elfstab_build_psymtabs
3269 is the call to install_minimal_symbols for elf, and the support for
3270 split sections. If the differences are really that small, the code
3271 should be shared. */
3273 /* Scan and build partial symbols for an coff symbol file.
3274 The coff file has already been processed to get its minimal symbols.
3276 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3279 OBJFILE is the object file we are reading symbols from.
3280 ADDR is the address relative to which the symbols are (e.g.
3281 the base address of the text segment).
3282 MAINLINE is true if we are reading the main symbol
3283 table (as opposed to a shared lib or dynamically loaded file).
3284 TEXTADDR is the address of the text section.
3285 TEXTSIZE is the size of the text section.
3286 STABSECTS is the list of .stab sections in OBJFILE.
3287 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3288 .stabstr section exists.
3290 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3291 adjusted for coff details. */
3294 coffstab_build_psymtabs (struct objfile
*objfile
, int mainline
,
3295 CORE_ADDR textaddr
, unsigned int textsize
,
3296 struct stab_section_list
*stabsects
,
3297 file_ptr stabstroffset
, unsigned int stabstrsize
)
3300 bfd
*sym_bfd
= objfile
->obfd
;
3301 char *name
= bfd_get_filename (sym_bfd
);
3302 struct dbx_symfile_info
*info
;
3303 unsigned int stabsize
;
3305 /* There is already a dbx_symfile_info allocated by our caller.
3306 It might even contain some info from the coff symtab to help us. */
3307 info
= objfile
->sym_stab_info
;
3309 DBX_TEXT_ADDR (objfile
) = textaddr
;
3310 DBX_TEXT_SIZE (objfile
) = textsize
;
3312 #define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
3313 DBX_SYMBOL_SIZE (objfile
) = COFF_STABS_SYMBOL_SIZE
;
3314 DBX_STRINGTAB_SIZE (objfile
) = stabstrsize
;
3316 if (stabstrsize
> bfd_get_size (sym_bfd
))
3317 error ("ridiculous string table size: %d bytes", stabstrsize
);
3318 DBX_STRINGTAB (objfile
) = (char *)
3319 obstack_alloc (&objfile
->psymbol_obstack
, stabstrsize
+ 1);
3320 OBJSTAT (objfile
, sz_strtab
+= stabstrsize
+ 1);
3322 /* Now read in the string table in one big gulp. */
3324 val
= bfd_seek (sym_bfd
, stabstroffset
, SEEK_SET
);
3326 perror_with_name (name
);
3327 val
= bfd_bread (DBX_STRINGTAB (objfile
), stabstrsize
, sym_bfd
);
3328 if (val
!= stabstrsize
)
3329 perror_with_name (name
);
3331 stabsread_new_init ();
3332 buildsym_new_init ();
3333 free_header_files ();
3334 init_header_files ();
3336 processing_acc_compilation
= 1;
3338 /* In a coff file, we've already installed the minimal symbols that came
3339 from the coff (non-stab) symbol table, so always act like an
3340 incremental load here. */
3341 if (stabsects
->next
== NULL
)
3343 stabsize
= bfd_section_size (sym_bfd
, stabsects
->section
);
3344 DBX_SYMCOUNT (objfile
) = stabsize
/ DBX_SYMBOL_SIZE (objfile
);
3345 DBX_SYMTAB_OFFSET (objfile
) = stabsects
->section
->filepos
;
3349 struct stab_section_list
*stabsect
;
3351 DBX_SYMCOUNT (objfile
) = 0;
3352 for (stabsect
= stabsects
; stabsect
!= NULL
; stabsect
= stabsect
->next
)
3354 stabsize
= bfd_section_size (sym_bfd
, stabsect
->section
);
3355 DBX_SYMCOUNT (objfile
) += stabsize
/ DBX_SYMBOL_SIZE (objfile
);
3358 DBX_SYMTAB_OFFSET (objfile
) = stabsects
->section
->filepos
;
3360 symbuf_sections
= stabsects
->next
;
3361 symbuf_left
= bfd_section_size (sym_bfd
, stabsects
->section
);
3365 dbx_symfile_read (objfile
, 0);
3368 /* Scan and build partial symbols for an ELF symbol file.
3369 This ELF file has already been processed to get its minimal symbols,
3370 and any DWARF symbols that were in it.
3372 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3375 OBJFILE is the object file we are reading symbols from.
3376 ADDR is the address relative to which the symbols are (e.g.
3377 the base address of the text segment).
3378 MAINLINE is true if we are reading the main symbol
3379 table (as opposed to a shared lib or dynamically loaded file).
3380 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
3382 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3383 .stabstr section exists.
3385 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3386 adjusted for elf details. */
3389 elfstab_build_psymtabs (struct objfile
*objfile
, int mainline
,
3390 file_ptr staboffset
, unsigned int stabsize
,
3391 file_ptr stabstroffset
, unsigned int stabstrsize
)
3394 bfd
*sym_bfd
= objfile
->obfd
;
3395 char *name
= bfd_get_filename (sym_bfd
);
3396 struct dbx_symfile_info
*info
;
3398 /* There is already a dbx_symfile_info allocated by our caller.
3399 It might even contain some info from the ELF symtab to help us. */
3400 info
= objfile
->sym_stab_info
;
3402 /* Find the first and last text address. dbx_symfile_read seems to
3404 find_text_range (sym_bfd
, objfile
);
3406 #define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
3407 DBX_SYMBOL_SIZE (objfile
) = ELF_STABS_SYMBOL_SIZE
;
3408 DBX_SYMCOUNT (objfile
) = stabsize
/ DBX_SYMBOL_SIZE (objfile
);
3409 DBX_STRINGTAB_SIZE (objfile
) = stabstrsize
;
3410 DBX_SYMTAB_OFFSET (objfile
) = staboffset
;
3412 if (stabstrsize
> bfd_get_size (sym_bfd
))
3413 error ("ridiculous string table size: %d bytes", stabstrsize
);
3414 DBX_STRINGTAB (objfile
) = (char *)
3415 obstack_alloc (&objfile
->psymbol_obstack
, stabstrsize
+ 1);
3416 OBJSTAT (objfile
, sz_strtab
+= stabstrsize
+ 1);
3418 /* Now read in the string table in one big gulp. */
3420 val
= bfd_seek (sym_bfd
, stabstroffset
, SEEK_SET
);
3422 perror_with_name (name
);
3423 val
= bfd_bread (DBX_STRINGTAB (objfile
), stabstrsize
, sym_bfd
);
3424 if (val
!= stabstrsize
)
3425 perror_with_name (name
);
3427 stabsread_new_init ();
3428 buildsym_new_init ();
3429 free_header_files ();
3430 init_header_files ();
3431 install_minimal_symbols (objfile
);
3433 processing_acc_compilation
= 1;
3435 /* In an elf file, we've already installed the minimal symbols that came
3436 from the elf (non-stab) symbol table, so always act like an
3437 incremental load here. */
3438 dbx_symfile_read (objfile
, 0);
3441 /* Scan and build partial symbols for a file with special sections for stabs
3442 and stabstrings. The file has already been processed to get its minimal
3443 symbols, and any other symbols that might be necessary to resolve GSYMs.
3445 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3448 OBJFILE is the object file we are reading symbols from.
3449 ADDR is the address relative to which the symbols are (e.g. the base address
3450 of the text segment).
3451 MAINLINE is true if we are reading the main symbol table (as opposed to a
3452 shared lib or dynamically loaded file).
3453 STAB_NAME is the name of the section that contains the stabs.
3454 STABSTR_NAME is the name of the section that contains the stab strings.
3456 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
3459 stabsect_build_psymtabs (struct objfile
*objfile
, int mainline
, char *stab_name
,
3460 char *stabstr_name
, char *text_name
)
3463 bfd
*sym_bfd
= objfile
->obfd
;
3464 char *name
= bfd_get_filename (sym_bfd
);
3466 asection
*stabstrsect
;
3467 asection
*text_sect
;
3469 stabsect
= bfd_get_section_by_name (sym_bfd
, stab_name
);
3470 stabstrsect
= bfd_get_section_by_name (sym_bfd
, stabstr_name
);
3476 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
3477 stab_name
, stabstr_name
);
3479 objfile
->sym_stab_info
= (struct dbx_symfile_info
*)
3480 xmalloc (sizeof (struct dbx_symfile_info
));
3481 memset (objfile
->sym_stab_info
, 0, sizeof (struct dbx_symfile_info
));
3483 text_sect
= bfd_get_section_by_name (sym_bfd
, text_name
);
3485 error ("Can't find %s section in symbol file", text_name
);
3486 DBX_TEXT_ADDR (objfile
) = bfd_section_vma (sym_bfd
, text_sect
);
3487 DBX_TEXT_SIZE (objfile
) = bfd_section_size (sym_bfd
, text_sect
);
3489 DBX_SYMBOL_SIZE (objfile
) = sizeof (struct external_nlist
);
3490 DBX_SYMCOUNT (objfile
) = bfd_section_size (sym_bfd
, stabsect
)
3491 / DBX_SYMBOL_SIZE (objfile
);
3492 DBX_STRINGTAB_SIZE (objfile
) = bfd_section_size (sym_bfd
, stabstrsect
);
3493 DBX_SYMTAB_OFFSET (objfile
) = stabsect
->filepos
; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
3495 if (DBX_STRINGTAB_SIZE (objfile
) > bfd_get_size (sym_bfd
))
3496 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile
));
3497 DBX_STRINGTAB (objfile
) = (char *)
3498 obstack_alloc (&objfile
->psymbol_obstack
, DBX_STRINGTAB_SIZE (objfile
) + 1);
3499 OBJSTAT (objfile
, sz_strtab
+= DBX_STRINGTAB_SIZE (objfile
) + 1);
3501 /* Now read in the string table in one big gulp. */
3503 val
= bfd_get_section_contents (sym_bfd
, /* bfd */
3504 stabstrsect
, /* bfd section */
3505 DBX_STRINGTAB (objfile
), /* input buffer */
3506 0, /* offset into section */
3507 DBX_STRINGTAB_SIZE (objfile
)); /* amount to read */
3510 perror_with_name (name
);
3512 stabsread_new_init ();
3513 buildsym_new_init ();
3514 free_header_files ();
3515 init_header_files ();
3516 install_minimal_symbols (objfile
);
3518 /* Now, do an incremental load */
3520 processing_acc_compilation
= 1;
3521 dbx_symfile_read (objfile
, 0);
3524 static struct sym_fns aout_sym_fns
=
3526 bfd_target_aout_flavour
,
3527 dbx_new_init
, /* sym_new_init: init anything gbl to entire symtab */
3528 dbx_symfile_init
, /* sym_init: read initial info, setup for sym_read() */
3529 dbx_symfile_read
, /* sym_read: read a symbol file into symtab */
3530 dbx_symfile_finish
, /* sym_finish: finished with file, cleanup */
3531 default_symfile_offsets
, /* sym_offsets: parse user's offsets to internal form */
3532 NULL
/* next: pointer to next struct sym_fns */
3536 _initialize_dbxread (void)
3538 add_symtab_fns (&aout_sym_fns
);