2001-11-06 Fred Fish <fnf@redhat.com>
[deliverable/binutils-gdb.git] / gdb / dbxread.c
CommitLineData
c906108c 1/* Read dbx symbol tables and convert to internal format, for GDB.
b6ba6518
KB
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001
c906108c
SS
4 Free Software Foundation, Inc.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b
JM
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. */
c906108c
SS
22
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
27 from a file.
28
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 */
36
37#include "defs.h"
38#include "gdb_string.h"
39
40#if defined(USG) || defined(__CYGNUSCLIB__)
41#include <sys/types.h>
42#include <fcntl.h>
43#endif
44
45#include "obstack.h"
46#include "gdb_stat.h"
c906108c
SS
47#include "symtab.h"
48#include "breakpoint.h"
c906108c
SS
49#include "target.h"
50#include "gdbcore.h" /* for bfd stuff */
c5aa993b 51#include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
c906108c
SS
52#include "symfile.h"
53#include "objfiles.h"
54#include "buildsym.h"
55#include "stabsread.h"
56#include "gdb-stabs.h"
57#include "demangle.h"
58#include "language.h" /* Needed inside partial-stab.h */
59#include "complaints.h"
015a42b4 60#include "cp-abi.h"
c906108c
SS
61
62#include "aout/aout64.h"
63#include "aout/stab_gnu.h" /* We always use GNU stabs, not native, now */
c906108c 64\f
c5aa993b 65
c906108c
SS
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. */
69#ifndef MSYMBOL_SIZE
70#define MSYMBOL_SIZE(msym) ((long) MSYMBOL_INFO (msym))
71#endif
72
73
74/* We put a pointer to this structure in the read_symtab_private field
75 of the psymtab. */
76
c5aa993b
JM
77struct symloc
78 {
3973eadd
JB
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;
c906108c 86
c5aa993b
JM
87 /* Offset within the file symbol table of first local symbol for this
88 file. */
c906108c 89
c5aa993b 90 int ldsymoff;
c906108c 91
c5aa993b
JM
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. */
c906108c 97
c5aa993b 98 int ldsymlen;
c906108c 99
c5aa993b 100 /* The size of each symbol in the symbol file (in external form). */
c906108c 101
c5aa993b 102 int symbol_size;
c906108c 103
c5aa993b
JM
104 /* Further information needed to locate the symbols if they are in
105 an ELF file. */
c906108c 106
c5aa993b
JM
107 int symbol_offset;
108 int string_offset;
109 int file_string_offset;
110 };
c906108c
SS
111
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))
3973eadd
JB
115#define TEXTLOW(p) (SYMLOC(p)->textlow)
116#define TEXTHIGH(p) (SYMLOC(p)->texthigh)
c906108c
SS
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)
c906108c 121\f
c5aa993b 122
c906108c
SS
123/* Remember what we deduced to be the source language of this psymtab. */
124
125static enum language psymtab_language = language_unknown;
126
c906108c
SS
127/* The BFD for this file -- implicit parameter to next_symbol_text. */
128
129static bfd *symfile_bfd;
130
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. */
134
135static unsigned symbol_size;
136
137/* This is the offset of the symbol table in the executable file. */
138
139static unsigned symbol_table_offset;
140
141/* This is the offset of the string table in the executable file. */
142
143static unsigned string_table_offset;
144
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. */
150
151static unsigned int file_string_table_offset;
152static unsigned int next_file_string_table_offset;
153
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. */
157
158static int symfile_relocatable = 0;
159
160/* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
161 relative to the function start address. */
162
163static int block_address_function_relative = 0;
164\f
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). */
170
171static CORE_ADDR lowest_text_address;
172
173/* Non-zero if there is any line number info in the objfile. Prevents
174 end_psymtab from discarding an otherwise empty psymtab. */
175
176static int has_line_numbers;
177
178/* Complaints about the symbols we have encountered. */
179
c5aa993b
JM
180struct complaint lbrac_complaint =
181{"bad block start address patched", 0, 0};
c906108c
SS
182
183struct complaint string_table_offset_complaint =
c5aa993b 184{"bad string table offset in symbol %d", 0, 0};
c906108c
SS
185
186struct complaint unknown_symtype_complaint =
c5aa993b 187{"unknown symbol type %s", 0, 0};
c906108c
SS
188
189struct complaint unknown_symchar_complaint =
c5aa993b 190{"unknown symbol descriptor `%c'", 0, 0};
c906108c
SS
191
192struct complaint lbrac_rbrac_complaint =
c5aa993b 193{"block start larger than block end", 0, 0};
c906108c
SS
194
195struct complaint lbrac_unmatched_complaint =
c5aa993b 196{"unmatched N_LBRAC before symtab pos %d", 0, 0};
c906108c
SS
197
198struct complaint lbrac_mismatch_complaint =
c5aa993b 199{"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
c906108c
SS
200
201struct complaint repeated_header_complaint =
c5aa993b 202{"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
c906108c
SS
203
204struct complaint unclaimed_bincl_complaint =
c5aa993b 205{"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
7a292a7a
SS
206\f
207/* find_text_range --- find start and end of loadable code sections
208
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.
212
213 dbx_symfile_read will use this to finish off the partial symbol
214 table, in some cases. */
215
216static void
c5aa993b 217find_text_range (bfd * sym_bfd, struct objfile *objfile)
7a292a7a
SS
218{
219 asection *sec;
220 int found_any = 0;
b9179dbc
EZ
221 CORE_ADDR start = 0;
222 CORE_ADDR end = 0;
c5aa993b 223
7a292a7a
SS
224 for (sec = sym_bfd->sections; sec; sec = sec->next)
225 if (bfd_get_section_flags (sym_bfd, sec) & SEC_CODE)
226 {
227 CORE_ADDR sec_start = bfd_section_vma (sym_bfd, sec);
228 CORE_ADDR sec_end = sec_start + bfd_section_size (sym_bfd, sec);
229
230 if (found_any)
231 {
c5aa993b
JM
232 if (sec_start < start)
233 start = sec_start;
234 if (sec_end > end)
235 end = sec_end;
7a292a7a
SS
236 }
237 else
238 {
239 start = sec_start;
240 end = sec_end;
241 }
242
243 found_any = 1;
244 }
245
c5aa993b 246 if (!found_any)
7a292a7a
SS
247 error ("Can't find any code sections in symbol file");
248
249 DBX_TEXT_ADDR (objfile) = start;
250 DBX_TEXT_SIZE (objfile) = end - start;
251}
c5aa993b 252\f
7a292a7a
SS
253
254
c906108c
SS
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. */
259
260struct header_file_location
261{
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 */
266};
267
268/* The actual list and controling variables */
269static struct header_file_location *bincl_list, *next_bincl;
270static int bincls_allocated;
271
272/* Local function prototypes */
273
a14ed312 274extern void _initialize_dbxread (void);
392a587b 275
a14ed312 276static void process_now (struct objfile *);
c906108c 277
a14ed312 278static void read_ofile_symtab (struct partial_symtab *);
c906108c 279
a14ed312 280static void dbx_psymtab_to_symtab (struct partial_symtab *);
c906108c 281
a14ed312 282static void dbx_psymtab_to_symtab_1 (struct partial_symtab *);
c906108c 283
a14ed312 284static void read_dbx_dynamic_symtab (struct objfile *objfile);
c906108c 285
a14ed312 286static void read_dbx_symtab (struct objfile *);
c906108c 287
a14ed312 288static void free_bincl_list (struct objfile *);
c906108c 289
a14ed312 290static struct partial_symtab *find_corresponding_bincl_psymtab (char *, int);
c906108c 291
a14ed312 292static void add_bincl_to_list (struct partial_symtab *, char *, int);
c906108c 293
a14ed312 294static void init_bincl_list (int, struct objfile *);
c906108c 295
a14ed312 296static char *dbx_next_symbol_text (struct objfile *);
c906108c 297
a14ed312 298static void fill_symbuf (bfd *);
c906108c 299
a14ed312 300static void dbx_symfile_init (struct objfile *);
c906108c 301
a14ed312 302static void dbx_new_init (struct objfile *);
c906108c 303
a14ed312 304static void dbx_symfile_read (struct objfile *, int);
c906108c 305
a14ed312 306static void dbx_symfile_finish (struct objfile *);
c906108c 307
a14ed312 308static void record_minimal_symbol (char *, CORE_ADDR, int, struct objfile *);
c906108c 309
a14ed312 310static void add_new_header_file (char *, int);
c906108c 311
a14ed312 312static void add_old_header_file (char *, int);
c906108c 313
a14ed312 314static void add_this_object_header_file (int);
c906108c 315
a14ed312
KB
316static struct partial_symtab *start_psymtab (struct objfile *, char *,
317 CORE_ADDR, int,
318 struct partial_symbol **,
319 struct partial_symbol **);
d4f3574e 320
c906108c
SS
321/* Free up old header file tables */
322
d3d55eeb 323void
fba45db2 324free_header_files (void)
c906108c
SS
325{
326 if (this_object_header_files)
327 {
b8c9b27d 328 xfree (this_object_header_files);
c906108c
SS
329 this_object_header_files = NULL;
330 }
331 n_allocated_this_object_header_files = 0;
332}
333
334/* Allocate new header file tables */
335
d3d55eeb 336void
fba45db2 337init_header_files (void)
c906108c
SS
338{
339 n_allocated_this_object_header_files = 10;
340 this_object_header_files = (int *) xmalloc (10 * sizeof (int));
341}
342
343/* Add header file number I for this object file
344 at the next successive FILENUM. */
345
346static void
fba45db2 347add_this_object_header_file (int i)
c906108c
SS
348{
349 if (n_this_object_header_files == n_allocated_this_object_header_files)
350 {
351 n_allocated_this_object_header_files *= 2;
352 this_object_header_files
353 = (int *) xrealloc ((char *) this_object_header_files,
c5aa993b 354 n_allocated_this_object_header_files * sizeof (int));
c906108c
SS
355 }
356
357 this_object_header_files[n_this_object_header_files++] = i;
358}
359
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. */
364
365static void
fba45db2 366add_old_header_file (char *name, int instance)
c906108c
SS
367{
368 register struct header_file *p = HEADER_FILES (current_objfile);
369 register int i;
370
371 for (i = 0; i < N_HEADER_FILES (current_objfile); i++)
372 if (STREQ (p[i].name, name) && instance == p[i].instance)
373 {
374 add_this_object_header_file (i);
375 return;
376 }
377 complain (&repeated_header_complaint, name, symnum);
378}
379
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.
386
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". */
390
391static void
fba45db2 392add_new_header_file (char *name, int instance)
c906108c
SS
393{
394 register int i;
395 register struct header_file *hfile;
396
397 /* Make sure there is room for one more header file. */
398
399 i = N_ALLOCATED_HEADER_FILES (current_objfile);
400
401 if (N_HEADER_FILES (current_objfile) == i)
402 {
403 if (i == 0)
404 {
405 N_ALLOCATED_HEADER_FILES (current_objfile) = 10;
406 HEADER_FILES (current_objfile) = (struct header_file *)
407 xmalloc (10 * sizeof (struct header_file));
408 }
409 else
410 {
411 i *= 2;
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)));
416 }
417 }
418
419 /* Create an entry for this header file. */
420
421 i = N_HEADER_FILES (current_objfile)++;
422 hfile = HEADER_FILES (current_objfile) + i;
c5aa993b 423 hfile->name = savestring (name, strlen (name));
c906108c
SS
424 hfile->instance = instance;
425 hfile->length = 10;
426 hfile->vector
427 = (struct type **) xmalloc (10 * sizeof (struct type *));
428 memset (hfile->vector, 0, 10 * sizeof (struct type *));
429
430 add_this_object_header_file (i);
431}
432
433#if 0
434static struct type **
fba45db2 435explicit_lookup_type (int real_filenum, int index)
c906108c
SS
436{
437 register struct header_file *f = &HEADER_FILES (current_objfile)[real_filenum];
438
439 if (index >= f->length)
440 {
441 f->length *= 2;
442 f->vector = (struct type **)
443 xrealloc (f->vector, f->length * sizeof (struct type *));
444 memset (&f->vector[f->length / 2],
c5aa993b 445 '\0', f->length * sizeof (struct type *) / 2);
c906108c
SS
446 }
447 return &f->vector[index];
448}
449#endif
450\f
451static void
fba45db2
KB
452record_minimal_symbol (char *name, CORE_ADDR address, int type,
453 struct objfile *objfile)
c906108c
SS
454{
455 enum minimal_symbol_type ms_type;
456 int section;
457 asection *bfd_section;
458
459 switch (type)
460 {
461 case N_TEXT | N_EXT:
462 ms_type = mst_text;
b8fbeb18 463 section = SECT_OFF_TEXT (objfile);
c906108c
SS
464 bfd_section = DBX_TEXT_SECTION (objfile);
465 break;
466 case N_DATA | N_EXT:
467 ms_type = mst_data;
b8fbeb18 468 section = SECT_OFF_DATA (objfile);
c906108c
SS
469 bfd_section = DBX_DATA_SECTION (objfile);
470 break;
471 case N_BSS | N_EXT:
472 ms_type = mst_bss;
b8fbeb18 473 section = SECT_OFF_BSS (objfile);
c906108c
SS
474 bfd_section = DBX_BSS_SECTION (objfile);
475 break;
476 case N_ABS | N_EXT:
477 ms_type = mst_abs;
478 section = -1;
479 bfd_section = NULL;
480 break;
481#ifdef N_SETV
482 case N_SETV | N_EXT:
483 ms_type = mst_data;
b8fbeb18 484 section = SECT_OFF_DATA (objfile);
c906108c
SS
485 bfd_section = DBX_DATA_SECTION (objfile);
486 break;
487 case N_SETV:
488 /* I don't think this type actually exists; since a N_SETV is the result
c5aa993b
JM
489 of going over many .o files, it doesn't make sense to have one
490 file local. */
c906108c 491 ms_type = mst_file_data;
b8fbeb18 492 section = SECT_OFF_DATA (objfile);
c906108c
SS
493 bfd_section = DBX_DATA_SECTION (objfile);
494 break;
495#endif
496 case N_TEXT:
497 case N_NBTEXT:
498 case N_FN:
499 case N_FN_SEQ:
500 ms_type = mst_file_text;
b8fbeb18 501 section = SECT_OFF_TEXT (objfile);
c906108c
SS
502 bfd_section = DBX_TEXT_SECTION (objfile);
503 break;
504 case N_DATA:
505 ms_type = mst_file_data;
506
507 /* Check for __DYNAMIC, which is used by Sun shared libraries.
c5aa993b
JM
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 '_'. */
c906108c
SS
511 if (name[8] == 'C' && STREQ ("__DYNAMIC", name))
512 ms_type = mst_data;
513
514 /* Same with virtual function tables, both global and static. */
515 {
516 char *tempstring = name;
517 if (tempstring[0] == bfd_get_symbol_leading_char (objfile->obfd))
518 ++tempstring;
015a42b4 519 if (is_vtable_name (tempstring))
c906108c
SS
520 ms_type = mst_data;
521 }
b8fbeb18 522 section = SECT_OFF_DATA (objfile);
c906108c
SS
523 bfd_section = DBX_DATA_SECTION (objfile);
524 break;
525 case N_BSS:
526 ms_type = mst_file_bss;
b8fbeb18 527 section = SECT_OFF_BSS (objfile);
c906108c
SS
528 bfd_section = DBX_BSS_SECTION (objfile);
529 break;
530 default:
531 ms_type = mst_unknown;
532 section = -1;
533 bfd_section = NULL;
534 break;
c5aa993b 535 }
c906108c
SS
536
537 if ((ms_type == mst_file_text || ms_type == mst_text)
538 && address < lowest_text_address)
539 lowest_text_address = address;
540
541 prim_record_minimal_symbol_and_info
542 (name, address, ms_type, NULL, section, bfd_section, objfile);
543}
544\f
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.
549
c906108c
SS
550 MAINLINE is true if we are reading the main symbol
551 table (as opposed to a shared lib or dynamically loaded file). */
552
553static void
9df3df99 554dbx_symfile_read (struct objfile *objfile, int mainline)
c906108c
SS
555{
556 bfd *sym_bfd;
557 int val;
558 struct cleanup *back_to;
559
c906108c
SS
560 sym_bfd = objfile->obfd;
561
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. */
565
566 symfile_relocatable = bfd_get_file_flags (sym_bfd) & HAS_RELOC;
567
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
571 file formats. */
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))
c2d11a7d 577 || (0 == strncmp (bfd_get_target (sym_bfd), "epoc-pe", 7))
c906108c
SS
578 || (0 == strncmp (bfd_get_target (sym_bfd), "nlm", 3)));
579
580 val = bfd_seek (sym_bfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
581 if (val < 0)
582 perror_with_name (objfile->name);
583
584 /* If we are reinitializing, or if we have never loaded syms yet, init */
585 if (mainline
ef96bde8
EZ
586 || (objfile->global_psymbols.size == 0
587 && objfile->static_psymbols.size == 0))
c906108c
SS
588 init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
589
590 symbol_size = DBX_SYMBOL_SIZE (objfile);
591 symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
592
593 free_pending_blocks ();
a0b3c4fd 594 back_to = make_cleanup (really_free_pendings, 0);
c906108c
SS
595
596 init_minimal_symbol_collection ();
56e290f4 597 make_cleanup_discard_minimal_symbols ();
c906108c 598
d4f3574e 599 /* Read stabs data from executable file and define symbols. */
c906108c 600
d4f3574e 601 read_dbx_symtab (objfile);
c906108c
SS
602
603 /* Add the dynamic symbols. */
604
96baa820 605 read_dbx_dynamic_symtab (objfile);
c906108c 606
3973eadd
JB
607 /* Take the text ranges the STABS partial symbol scanner computed
608 for each of the psymtabs and convert it into the canonical form
609 for psymtabs. */
610 {
611 struct partial_symtab *p;
612
613 ALL_OBJFILE_PSYMTABS (objfile, p)
614 {
615 p->textlow = TEXTLOW (p);
616 p->texthigh = TEXTHIGH (p);
617 }
618 }
619
c906108c
SS
620 /* Install any minimal symbols that have been collected as the current
621 minimal symbols for this objfile. */
622
623 install_minimal_symbols (objfile);
624
625 do_cleanups (back_to);
626}
627
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). */
631
632static void
fba45db2 633dbx_new_init (struct objfile *ignore)
c906108c
SS
634{
635 stabsread_new_init ();
636 buildsym_new_init ();
637 init_header_files ();
638}
639
640
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.
646
647 We read the string table into malloc'd space and stash a pointer to it.
648
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. */
653
c5aa993b 654#define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
c906108c
SS
655
656static void
fba45db2 657dbx_symfile_init (struct objfile *objfile)
c906108c
SS
658{
659 int val;
660 bfd *sym_bfd = objfile->obfd;
661 char *name = bfd_get_filename (sym_bfd);
662 asection *text_sect;
663 unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
664
665 /* Allocate struct to keep track of the symfile */
666 objfile->sym_stab_info = (struct dbx_symfile_info *)
c5aa993b 667 xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
c906108c
SS
668 memset ((PTR) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
669
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");
673
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))
677
678 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
679
680 DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
c5aa993b 681
c906108c
SS
682 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
683 if (!text_sect)
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);
687
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;
691
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. */
705
706 if (STRING_TABLE_OFFSET == 0)
707 {
708 /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
c5aa993b
JM
709 will never be zero, even when there is no string table. This
710 would appear to be a bug in bfd. */
c906108c
SS
711 DBX_STRINGTAB_SIZE (objfile) = 0;
712 DBX_STRINGTAB (objfile) = NULL;
713 }
714 else
715 {
716 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
717 if (val < 0)
718 perror_with_name (name);
c5aa993b 719
c906108c 720 memset ((PTR) size_temp, 0, sizeof (size_temp));
3a42e9d0 721 val = bfd_bread ((PTR) size_temp, sizeof (size_temp), sym_bfd);
c906108c
SS
722 if (val < 0)
723 {
724 perror_with_name (name);
725 }
726 else if (val == 0)
727 {
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;
733 }
734 else
735 {
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);
c5aa993b 744
c906108c
SS
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));
c5aa993b 749
c906108c 750 DBX_STRINGTAB (objfile) =
c5aa993b 751 (char *) obstack_alloc (&objfile->psymbol_obstack,
c906108c
SS
752 DBX_STRINGTAB_SIZE (objfile));
753 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile));
c5aa993b 754
c906108c 755 /* Now read in the string table in one big gulp. */
c5aa993b 756
c906108c
SS
757 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
758 if (val < 0)
759 perror_with_name (name);
3a42e9d0
AM
760 val = bfd_bread (DBX_STRINGTAB (objfile),
761 DBX_STRINGTAB_SIZE (objfile),
762 sym_bfd);
c906108c
SS
763 if (val != DBX_STRINGTAB_SIZE (objfile))
764 perror_with_name (name);
765 }
766 }
767}
768
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. */
773
774static void
fba45db2 775dbx_symfile_finish (struct objfile *objfile)
c906108c
SS
776{
777 if (objfile->sym_stab_info != NULL)
778 {
779 if (HEADER_FILES (objfile) != NULL)
780 {
781 register int i = N_HEADER_FILES (objfile);
782 register struct header_file *hfiles = HEADER_FILES (objfile);
783
784 while (--i >= 0)
785 {
b8c9b27d
KB
786 xfree (hfiles[i].name);
787 xfree (hfiles[i].vector);
c906108c 788 }
b8c9b27d 789 xfree (hfiles);
c906108c 790 }
c5aa993b 791 mfree (objfile->md, objfile->sym_stab_info);
c906108c
SS
792 }
793 free_header_files ();
794}
c906108c 795\f
c5aa993b 796
c906108c
SS
797/* Buffer for reading the symbol table entries. */
798static struct external_nlist symbuf[4096];
799static int symbuf_idx;
800static int symbuf_end;
801
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. */
c5aa993b 805struct cont_elem
c906108c 806 {
0fb34c3a 807 /* sym and stabstring for continuing information in cfront */
c5aa993b
JM
808 struct symbol *sym;
809 char *stabs;
114d1f2c 810 /* state dependencies (statics that must be preserved) */
c906108c
SS
811 int sym_idx;
812 int sym_end;
813 int symnum;
507f3c78 814 int (*func) (struct objfile *, struct symbol *, char *);
114d1f2c 815 /* other state dependencies include:
c906108c 816 (assumption is that these will not change since process_now FIXME!!)
c5aa993b
JM
817 stringtab_global
818 n_stabs
819 objfile
820 symfile_bfd */
821 };
c906108c
SS
822
823static struct cont_elem *cont_list = 0;
824static int cont_limit = 0;
825static int cont_count = 0;
826
827/* Arrange for function F to be called with arguments SYM and P later
828 in the stabs reading process. */
c5aa993b 829void
9df3df99
KB
830process_later (struct symbol *sym, char *p,
831 int (*f) (struct objfile *, struct symbol *, char *))
c906108c
SS
832{
833
834 /* Allocate more space for the deferred list. */
835 if (cont_count >= cont_limit - 1)
836 {
c5aa993b 837 cont_limit += 32; /* chunk size */
c906108c
SS
838
839 cont_list
c5aa993b
JM
840 = (struct cont_elem *) xrealloc (cont_list,
841 (cont_limit
842 * sizeof (struct cont_elem)));
c906108c 843 if (!cont_list)
c5aa993b 844 error ("Virtual memory exhausted\n");
c906108c
SS
845 }
846
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;
854 cont_count++;
855}
856
857/* Call deferred funtions in CONT_LIST. */
858
c5aa993b 859static void
fba45db2 860process_now (struct objfile *objfile)
c906108c
SS
861{
862 int i;
863 int save_symbuf_idx;
864 int save_symbuf_end;
865 int save_symnum;
866 struct symbol *sym;
867 char *stabs;
868 int err;
507f3c78 869 int (*func) (struct objfile *, struct symbol *, char *);
c906108c
SS
870
871 /* Save the state of our caller, we'll want to restore it before
872 returning. */
873 save_symbuf_idx = symbuf_idx;
874 save_symbuf_end = symbuf_end;
875 save_symnum = symnum;
876
877 /* Iterate over all the deferred stabs. */
878 for (i = 0; i < cont_count; i++)
879 {
880 /* Restore the state for this deferred stab. */
881 symbuf_idx = cont_list[i].sym_idx;
c5aa993b
JM
882 symbuf_end = cont_list[i].sym_end;
883 symnum = cont_list[i].symnum;
c906108c
SS
884 sym = cont_list[i].sym;
885 stabs = cont_list[i].stabs;
886 func = cont_list[i].func;
887
888 /* Call the function to handle this deferrd stab. */
889 err = (*func) (objfile, sym, stabs);
890 if (err)
891 error ("Internal error: unable to resolve stab.\n");
892 }
893
894 /* Restore our caller's state. */
895 symbuf_idx = save_symbuf_idx;
896 symbuf_end = save_symbuf_end;
897 symnum = save_symnum;
898 cont_count = 0;
899}
900
901
902/* Name of last function encountered. Used in Solaris to approximate
903 object file boundaries. */
904static char *last_function_name;
905
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? */
913static char *stringtab_global;
914
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). */
918static struct stab_section_list *symbuf_sections;
919static unsigned int symbuf_left;
920static unsigned int symbuf_read;
921
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. */
927
928static void
fba45db2 929fill_symbuf (bfd *sym_bfd)
c906108c
SS
930{
931 unsigned int count;
932 int nbytes;
933
934 if (symbuf_sections == NULL)
935 count = sizeof (symbuf);
936 else
937 {
938 if (symbuf_left <= 0)
939 {
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;
946 }
947
948 count = symbuf_left;
949 if (count > sizeof (symbuf))
950 count = sizeof (symbuf);
951 }
952
3a42e9d0 953 nbytes = bfd_bread ((PTR) symbuf, count, sym_bfd);
c906108c
SS
954 if (nbytes < 0)
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;
959 symbuf_idx = 0;
960 symbuf_left -= nbytes;
961 symbuf_read += nbytes;
962}
963
c906108c
SS
964#define INTERNALIZE_SYMBOL(intern, extern, abfd) \
965 { \
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); \
40b3352b
L
969 if (bfd_get_sign_extend_vma (abfd)) \
970 (intern).n_value = bfd_h_get_signed_32 (abfd, (extern)->e_value); \
971 else \
972 (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value); \
c906108c
SS
973 }
974
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. */
978
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. */
983
984static char *
fba45db2 985dbx_next_symbol_text (struct objfile *objfile)
c906108c
SS
986{
987 struct internal_nlist nlist;
988
989 if (symbuf_idx == symbuf_end)
990 fill_symbuf (symfile_bfd);
991
992 symnum++;
c5aa993b 993 INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd);
c906108c
SS
994 OBJSTAT (objfile, n_stabs++);
995
996 symbuf_idx++;
997
998 return nlist.n_strx + stringtab_global + file_string_table_offset;
999}
1000\f
1001/* Initialize the list of bincls to contain none and have some
1002 allocated. */
1003
1004static void
fba45db2 1005init_bincl_list (int number, struct objfile *objfile)
c906108c
SS
1006{
1007 bincls_allocated = number;
1008 next_bincl = bincl_list = (struct header_file_location *)
c5aa993b 1009 xmmalloc (objfile->md, bincls_allocated * sizeof (struct header_file_location));
c906108c
SS
1010}
1011
1012/* Add a bincl to the list. */
1013
1014static void
fba45db2 1015add_bincl_to_list (struct partial_symtab *pst, char *name, int instance)
c906108c
SS
1016{
1017 if (next_bincl >= bincl_list + bincls_allocated)
1018 {
1019 int offset = next_bincl - bincl_list;
1020 bincls_allocated *= 2;
1021 bincl_list = (struct header_file_location *)
c5aa993b
JM
1022 xmrealloc (pst->objfile->md, (char *) bincl_list,
1023 bincls_allocated * sizeof (struct header_file_location));
c906108c
SS
1024 next_bincl = bincl_list + offset;
1025 }
1026 next_bincl->pst = pst;
1027 next_bincl->instance = instance;
1028 next_bincl++->name = name;
1029}
1030
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. */
1034
1035static struct partial_symtab *
fba45db2 1036find_corresponding_bincl_psymtab (char *name, int instance)
c906108c
SS
1037{
1038 struct header_file_location *bincl;
1039
1040 for (bincl = bincl_list; bincl < next_bincl; bincl++)
1041 if (bincl->instance == instance
1042 && STREQ (name, bincl->name))
1043 return bincl->pst;
1044
1045 complain (&repeated_header_complaint, name, symnum);
1046 return (struct partial_symtab *) 0;
1047}
1048
1049/* Free the storage allocated for the bincl list. */
1050
1051static void
fba45db2 1052free_bincl_list (struct objfile *objfile)
c906108c 1053{
c5aa993b 1054 mfree (objfile->md, (PTR) bincl_list);
c906108c
SS
1055 bincls_allocated = 0;
1056}
1057
74b7792f
AC
1058static void
1059do_free_bincl_list_cleanup (void *objfile)
1060{
1061 free_bincl_list (objfile);
1062}
1063
1064static struct cleanup *
1065make_cleanup_free_bincl_list (struct objfile *objfile)
1066{
1067 return make_cleanup (do_free_bincl_list_cleanup, objfile);
1068}
1069
c906108c
SS
1070/* Scan a SunOs dynamic symbol table for symbols of interest and
1071 add them to the minimal symbol table. */
1072
1073static void
fba45db2 1074read_dbx_dynamic_symtab (struct objfile *objfile)
c906108c
SS
1075{
1076 bfd *abfd = objfile->obfd;
1077 struct cleanup *back_to;
1078 int counter;
1079 long dynsym_size;
1080 long dynsym_count;
1081 asymbol **dynsyms;
1082 asymbol **symptr;
1083 arelent **relptr;
1084 long dynrel_size;
1085 long dynrel_count;
1086 arelent **dynrels;
1087 CORE_ADDR sym_value;
1088 char *name;
1089
1090 /* Check that the symbol file has dynamic symbols that we know about.
1091 bfd_arch_unknown can happen if we are reading a sun3 symbol file
1092 on a sun4 host (and vice versa) and bfd is not configured
1093 --with-target=all. This would trigger an assertion in bfd/sunos.c,
1094 so we ignore the dynamic symbols in this case. */
1095 if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
1096 || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
1097 || bfd_get_arch (abfd) == bfd_arch_unknown)
1098 return;
1099
1100 dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
1101 if (dynsym_size < 0)
1102 return;
1103
1104 dynsyms = (asymbol **) xmalloc (dynsym_size);
b8c9b27d 1105 back_to = make_cleanup (xfree, dynsyms);
c906108c
SS
1106
1107 dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
1108 if (dynsym_count < 0)
1109 {
1110 do_cleanups (back_to);
1111 return;
1112 }
1113
1114 /* Enter dynamic symbols into the minimal symbol table
1115 if this is a stripped executable. */
1116 if (bfd_get_symcount (abfd) <= 0)
1117 {
1118 symptr = dynsyms;
1119 for (counter = 0; counter < dynsym_count; counter++, symptr++)
1120 {
1121 asymbol *sym = *symptr;
1122 asection *sec;
1123 int type;
1124
1125 sec = bfd_get_section (sym);
1126
1127 /* BFD symbols are section relative. */
1128 sym_value = sym->value + sec->vma;
1129
1130 if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
1131 {
b8fbeb18 1132 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1133 type = N_TEXT;
1134 }
1135 else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
1136 {
b8fbeb18 1137 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
c906108c
SS
1138 type = N_DATA;
1139 }
1140 else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
1141 {
b8fbeb18 1142 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
c906108c
SS
1143 type = N_BSS;
1144 }
1145 else
1146 continue;
1147
1148 if (sym->flags & BSF_GLOBAL)
1149 type |= N_EXT;
1150
1151 record_minimal_symbol ((char *) bfd_asymbol_name (sym), sym_value,
1152 type, objfile);
1153 }
1154 }
1155
1156 /* Symbols from shared libraries have a dynamic relocation entry
1157 that points to the associated slot in the procedure linkage table.
1158 We make a mininal symbol table entry with type mst_solib_trampoline
1159 at the address in the procedure linkage table. */
1160 dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
1161 if (dynrel_size < 0)
1162 {
1163 do_cleanups (back_to);
1164 return;
1165 }
c5aa993b 1166
c906108c 1167 dynrels = (arelent **) xmalloc (dynrel_size);
b8c9b27d 1168 make_cleanup (xfree, dynrels);
c906108c
SS
1169
1170 dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
1171 if (dynrel_count < 0)
1172 {
1173 do_cleanups (back_to);
1174 return;
1175 }
1176
1177 for (counter = 0, relptr = dynrels;
1178 counter < dynrel_count;
1179 counter++, relptr++)
1180 {
1181 arelent *rel = *relptr;
1182 CORE_ADDR address =
b8fbeb18 1183 rel->address + ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
c906108c
SS
1184
1185 switch (bfd_get_arch (abfd))
1186 {
1187 case bfd_arch_sparc:
1188 if (rel->howto->type != RELOC_JMP_SLOT)
1189 continue;
1190 break;
1191 case bfd_arch_m68k:
1192 /* `16' is the type BFD produces for a jump table relocation. */
1193 if (rel->howto->type != 16)
1194 continue;
1195
1196 /* Adjust address in the jump table to point to
1197 the start of the bsr instruction. */
1198 address -= 2;
1199 break;
1200 default:
1201 continue;
1202 }
1203
1204 name = (char *) bfd_asymbol_name (*rel->sym_ptr_ptr);
1205 prim_record_minimal_symbol (name, address, mst_solib_trampoline,
1206 objfile);
1207 }
1208
1209 do_cleanups (back_to);
1210}
1211
d4f3574e
SS
1212/* Setup partial_symtab's describing each source file for which
1213 debugging information is available. */
c906108c
SS
1214
1215static void
fba45db2 1216read_dbx_symtab (struct objfile *objfile)
c906108c
SS
1217{
1218 register struct external_nlist *bufp = 0; /* =0 avoids gcc -Wall glitch */
1219 struct internal_nlist nlist;
d4f3574e
SS
1220 CORE_ADDR text_addr;
1221 int text_size;
c906108c
SS
1222
1223 register char *namestring;
1224 int nsl;
1225 int past_first_source_file = 0;
1226 CORE_ADDR last_o_file_start = 0;
1227 CORE_ADDR last_function_start = 0;
1228 struct cleanup *back_to;
1229 bfd *abfd;
1230 int textlow_not_set;
1231
1232 /* Current partial symtab */
1233 struct partial_symtab *pst;
1234
1235 /* List of current psymtab's include files */
1236 char **psymtab_include_list;
1237 int includes_allocated;
1238 int includes_used;
1239
1240 /* Index within current psymtab dependency list */
1241 struct partial_symtab **dependency_list;
1242 int dependencies_used, dependencies_allocated;
1243
d4f3574e
SS
1244 text_addr = DBX_TEXT_ADDR (objfile);
1245 text_size = DBX_TEXT_SIZE (objfile);
1246
c906108c
SS
1247 /* FIXME. We probably want to change stringtab_global rather than add this
1248 while processing every symbol entry. FIXME. */
1249 file_string_table_offset = 0;
1250 next_file_string_table_offset = 0;
1251
1252 stringtab_global = DBX_STRINGTAB (objfile);
c5aa993b 1253
c906108c
SS
1254 pst = (struct partial_symtab *) 0;
1255
1256 includes_allocated = 30;
1257 includes_used = 0;
1258 psymtab_include_list = (char **) alloca (includes_allocated *
1259 sizeof (char *));
1260
1261 dependencies_allocated = 30;
1262 dependencies_used = 0;
1263 dependency_list =
1264 (struct partial_symtab **) alloca (dependencies_allocated *
1265 sizeof (struct partial_symtab *));
1266
1267 /* Init bincl list */
1268 init_bincl_list (20, objfile);
74b7792f 1269 back_to = make_cleanup_free_bincl_list (objfile);
c906108c
SS
1270
1271 last_source_file = NULL;
1272
96baa820 1273 lowest_text_address = (CORE_ADDR) -1;
c906108c
SS
1274
1275 symfile_bfd = objfile->obfd; /* For next_text_symbol */
1276 abfd = objfile->obfd;
1277 symbuf_end = symbuf_idx = 0;
1278 next_symbol_text_func = dbx_next_symbol_text;
1279 textlow_not_set = 1;
1280 has_line_numbers = 0;
1281
1282 for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
1283 {
1284 /* Get the symbol for this run and pull out some info */
c5aa993b 1285 QUIT; /* allow this to be interruptable */
c906108c
SS
1286 if (symbuf_idx == symbuf_end)
1287 fill_symbuf (abfd);
1288 bufp = &symbuf[symbuf_idx++];
1289
1290 /*
1291 * Special case to speed up readin.
1292 */
1293 if (bfd_h_get_8 (abfd, bufp->e_type) == N_SLINE)
1294 {
1295 has_line_numbers = 1;
1296 continue;
1297 }
1298
1299 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1300 OBJSTAT (objfile, n_stabs++);
1301
1302 /* Ok. There is a lot of code duplicated in the rest of this
1303 switch statement (for efficiency reasons). Since I don't
1304 like duplicating code, I will do my penance here, and
1305 describe the code which is duplicated:
1306
c5aa993b
JM
1307 *) The assignment to namestring.
1308 *) The call to strchr.
1309 *) The addition of a partial symbol the the two partial
1310 symbol lists. This last is a large section of code, so
1311 I've imbedded it in the following macro.
1312 */
1313
c906108c
SS
1314/* Set namestring based on nlist. If the string table index is invalid,
1315 give a fake name, and print a single error message per symbol file read,
1316 rather than abort the symbol reading or flood the user with messages. */
1317
1318/*FIXME: Too many adds and indirections in here for the inner loop. */
1319#define SET_NAMESTRING()\
1320 if (((unsigned)CUR_SYMBOL_STRX + file_string_table_offset) >= \
1321 DBX_STRINGTAB_SIZE (objfile)) { \
1322 complain (&string_table_offset_complaint, symnum); \
1323 namestring = "<bad string table offset>"; \
1324 } else \
1325 namestring = CUR_SYMBOL_STRX + file_string_table_offset + \
1326 DBX_STRINGTAB (objfile)
1327
1328#define CUR_SYMBOL_TYPE nlist.n_type
1329#define CUR_SYMBOL_VALUE nlist.n_value
1330#define CUR_SYMBOL_STRX nlist.n_strx
1331#define DBXREAD_ONLY
d4f3574e
SS
1332#define START_PSYMTAB(ofile,fname,low,symoff,global_syms,static_syms)\
1333 start_psymtab(ofile, fname, low, symoff, global_syms, static_syms)
c906108c
SS
1334#define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)\
1335 end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)
1336
1337#include "partial-stab.h"
1338 }
1339
1340 /* If there's stuff to be cleaned up, clean it up. */
c5aa993b 1341 if (DBX_SYMCOUNT (objfile) > 0 /* We have some syms */
c906108c
SS
1342/*FIXME, does this have a bug at start address 0? */
1343 && last_o_file_start
c5aa993b
JM
1344 && objfile->ei.entry_point < nlist.n_value
1345 && objfile->ei.entry_point >= last_o_file_start)
c906108c 1346 {
c5aa993b
JM
1347 objfile->ei.entry_file_lowpc = last_o_file_start;
1348 objfile->ei.entry_file_highpc = nlist.n_value;
c906108c
SS
1349 }
1350
1351 if (pst)
1352 {
1353 /* Don't set pst->texthigh lower than it already is. */
1354 CORE_ADDR text_end =
96baa820 1355 (lowest_text_address == (CORE_ADDR) -1
b8fbeb18 1356 ? (text_addr + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))
c5aa993b
JM
1357 : lowest_text_address)
1358 + text_size;
c906108c
SS
1359
1360 end_psymtab (pst, psymtab_include_list, includes_used,
1361 symnum * symbol_size,
3973eadd 1362 text_end > TEXTHIGH (pst) ? text_end : TEXTHIGH (pst),
c906108c
SS
1363 dependency_list, dependencies_used, textlow_not_set);
1364 }
1365
1366 do_cleanups (back_to);
1367}
1368
1369/* Allocate and partially fill a partial symtab. It will be
1370 completely filled at the end of the symbol list.
1371
1372 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1373 is the address relative to which its symbols are (incremental) or 0
1374 (normal). */
1375
1376
d4f3574e 1377static struct partial_symtab *
fba45db2
KB
1378start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
1379 int ldsymoff, struct partial_symbol **global_syms,
1380 struct partial_symbol **static_syms)
c906108c
SS
1381{
1382 struct partial_symtab *result =
d4f3574e 1383 start_psymtab_common (objfile, objfile->section_offsets,
c5aa993b 1384 filename, textlow, global_syms, static_syms);
c906108c
SS
1385
1386 result->read_symtab_private = (char *)
c5aa993b 1387 obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
3973eadd
JB
1388 TEXTLOW (result) = result->textlow;
1389 TEXTHIGH (result) = result->texthigh;
c5aa993b 1390 LDSYMOFF (result) = ldsymoff;
c906108c 1391 result->read_symtab = dbx_psymtab_to_symtab;
c5aa993b
JM
1392 SYMBOL_SIZE (result) = symbol_size;
1393 SYMBOL_OFFSET (result) = symbol_table_offset;
1394 STRING_OFFSET (result) = string_table_offset;
1395 FILE_STRING_OFFSET (result) = file_string_table_offset;
c906108c
SS
1396
1397 /* If we're handling an ELF file, drag some section-relocation info
1398 for this source file out of the ELF symbol table, to compensate for
1399 Sun brain death. This replaces the section_offsets in this psymtab,
1400 if successful. */
1401 elfstab_offset_sections (objfile, result);
1402
1403 /* Deduce the source language from the filename for this psymtab. */
1404 psymtab_language = deduce_language_from_filename (filename);
1405
1406 return result;
1407}
1408
1409/* Close off the current usage of PST.
1410 Returns PST or NULL if the partial symtab was empty and thrown away.
1411
1412 FIXME: List variables and peculiarities of same. */
1413
1414struct partial_symtab *
fba45db2
KB
1415end_psymtab (struct partial_symtab *pst, char **include_list, int num_includes,
1416 int capping_symbol_offset, CORE_ADDR capping_text,
1417 struct partial_symtab **dependency_list, int number_dependencies,
1418 int textlow_not_set)
c906108c
SS
1419{
1420 int i;
c5aa993b 1421 struct objfile *objfile = pst->objfile;
c906108c
SS
1422
1423 if (capping_symbol_offset != -1)
c5aa993b 1424 LDSYMLEN (pst) = capping_symbol_offset - LDSYMOFF (pst);
3973eadd 1425 TEXTHIGH (pst) = capping_text;
c906108c
SS
1426
1427#ifdef SOFUN_ADDRESS_MAYBE_MISSING
1428 /* Under Solaris, the N_SO symbols always have a value of 0,
1429 instead of the usual address of the .o file. Therefore,
1430 we have to do some tricks to fill in texthigh and textlow.
1431 The first trick is in partial-stab.h: if we see a static
1432 or global function, and the textlow for the current pst
1433 is not set (ie: textlow_not_set), then we use that function's
1434 address for the textlow of the pst. */
1435
1436 /* Now, to fill in texthigh, we remember the last function seen
1437 in the .o file (also in partial-stab.h). Also, there's a hack in
1438 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1439 to here via the misc_info field. Therefore, we can fill in
1440 a reliable texthigh by taking the address plus size of the
1441 last function in the file. */
1442
3973eadd 1443 if (TEXTHIGH (pst) == 0 && last_function_name)
c906108c
SS
1444 {
1445 char *p;
1446 int n;
1447 struct minimal_symbol *minsym;
1448
1449 p = strchr (last_function_name, ':');
1450 if (p == NULL)
1451 p = last_function_name;
1452 n = p - last_function_name;
1453 p = alloca (n + 2);
1454 strncpy (p, last_function_name, n);
1455 p[n] = 0;
c5aa993b 1456
c906108c
SS
1457 minsym = lookup_minimal_symbol (p, pst->filename, objfile);
1458 if (minsym == NULL)
1459 {
1460 /* Sun Fortran appends an underscore to the minimal symbol name,
1461 try again with an appended underscore if the minimal symbol
1462 was not found. */
1463 p[n] = '_';
1464 p[n + 1] = 0;
1465 minsym = lookup_minimal_symbol (p, pst->filename, objfile);
1466 }
1467
1468 if (minsym)
3973eadd 1469 TEXTHIGH (pst) = SYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym);
c906108c
SS
1470
1471 last_function_name = NULL;
1472 }
1473
1474 /* this test will be true if the last .o file is only data */
1475 if (textlow_not_set)
3973eadd 1476 TEXTLOW (pst) = TEXTHIGH (pst);
c906108c
SS
1477 else
1478 {
1479 struct partial_symtab *p1;
1480
1481 /* If we know our own starting text address, then walk through all other
c5aa993b
JM
1482 psymtabs for this objfile, and if any didn't know their ending text
1483 address, set it to our starting address. Take care to not set our
1484 own ending address to our starting address, nor to set addresses on
1485 `dependency' files that have both textlow and texthigh zero. */
c906108c
SS
1486
1487 ALL_OBJFILE_PSYMTABS (objfile, p1)
c5aa993b 1488 {
3973eadd 1489 if (TEXTHIGH (p1) == 0 && TEXTLOW (p1) != 0 && p1 != pst)
c5aa993b 1490 {
3973eadd 1491 TEXTHIGH (p1) = TEXTLOW (pst);
c5aa993b 1492 /* if this file has only data, then make textlow match texthigh */
3973eadd
JB
1493 if (TEXTLOW (p1) == 0)
1494 TEXTLOW (p1) = TEXTHIGH (p1);
c5aa993b
JM
1495 }
1496 }
c906108c
SS
1497 }
1498
1499 /* End of kludge for patching Solaris textlow and texthigh. */
1500#endif /* SOFUN_ADDRESS_MAYBE_MISSING. */
1501
1502 pst->n_global_syms =
1503 objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
1504 pst->n_static_syms =
1505 objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
1506
1507 pst->number_of_dependencies = number_dependencies;
1508 if (number_dependencies)
1509 {
1510 pst->dependencies = (struct partial_symtab **)
1511 obstack_alloc (&objfile->psymbol_obstack,
c5aa993b 1512 number_dependencies * sizeof (struct partial_symtab *));
c906108c 1513 memcpy (pst->dependencies, dependency_list,
c5aa993b 1514 number_dependencies * sizeof (struct partial_symtab *));
c906108c
SS
1515 }
1516 else
1517 pst->dependencies = 0;
1518
1519 for (i = 0; i < num_includes; i++)
1520 {
1521 struct partial_symtab *subpst =
c5aa993b 1522 allocate_psymtab (include_list[i], objfile);
c906108c 1523
b8fbeb18 1524 /* Copy the sesction_offsets array from the main psymtab. */
c906108c
SS
1525 subpst->section_offsets = pst->section_offsets;
1526 subpst->read_symtab_private =
c5aa993b
JM
1527 (char *) obstack_alloc (&objfile->psymbol_obstack,
1528 sizeof (struct symloc));
1529 LDSYMOFF (subpst) =
1530 LDSYMLEN (subpst) =
3973eadd
JB
1531 TEXTLOW (subpst) =
1532 TEXTHIGH (subpst) = 0;
c906108c
SS
1533
1534 /* We could save slight bits of space by only making one of these,
c5aa993b 1535 shared by the entire set of include files. FIXME-someday. */
c906108c
SS
1536 subpst->dependencies = (struct partial_symtab **)
1537 obstack_alloc (&objfile->psymbol_obstack,
1538 sizeof (struct partial_symtab *));
1539 subpst->dependencies[0] = pst;
1540 subpst->number_of_dependencies = 1;
1541
1542 subpst->globals_offset =
1543 subpst->n_global_syms =
c5aa993b
JM
1544 subpst->statics_offset =
1545 subpst->n_static_syms = 0;
c906108c
SS
1546
1547 subpst->readin = 0;
1548 subpst->symtab = 0;
1549 subpst->read_symtab = pst->read_symtab;
1550 }
1551
1552 sort_pst_symbols (pst);
1553
1554 /* If there is already a psymtab or symtab for a file of this name, remove it.
1555 (If there is a symtab, more drastic things also happen.)
1556 This happens in VxWorks. */
1557 free_named_symtabs (pst->filename);
1558
1559 if (num_includes == 0
1560 && number_dependencies == 0
1561 && pst->n_global_syms == 0
1562 && pst->n_static_syms == 0
1563 && has_line_numbers == 0)
1564 {
1565 /* Throw away this psymtab, it's empty. We can't deallocate it, since
c5aa993b 1566 it is on the obstack, but we can forget to chain it on the list. */
c906108c 1567 /* Empty psymtabs happen as a result of header files which don't have
c5aa993b
JM
1568 any symbols in them. There can be a lot of them. But this check
1569 is wrong, in that a psymtab with N_SLINE entries but nothing else
1570 is not empty, but we don't realize that. Fixing that without slowing
1571 things down might be tricky. */
c906108c
SS
1572
1573 discard_psymtab (pst);
1574
1575 /* Indicate that psymtab was thrown away. */
c5aa993b 1576 pst = (struct partial_symtab *) NULL;
c906108c
SS
1577 }
1578 return pst;
1579}
1580\f
1581static void
fba45db2 1582dbx_psymtab_to_symtab_1 (struct partial_symtab *pst)
c906108c
SS
1583{
1584 struct cleanup *old_chain;
1585 int i;
c5aa993b 1586
c906108c
SS
1587 if (!pst)
1588 return;
1589
1590 if (pst->readin)
1591 {
1592 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
c5aa993b 1593 pst->filename);
c906108c
SS
1594 return;
1595 }
1596
1597 /* Read in all partial symtabs on which this one is dependent */
1598 for (i = 0; i < pst->number_of_dependencies; i++)
1599 if (!pst->dependencies[i]->readin)
1600 {
1601 /* Inform about additional files that need to be read in. */
1602 if (info_verbose)
1603 {
1604 fputs_filtered (" ", gdb_stdout);
1605 wrap_here ("");
1606 fputs_filtered ("and ", gdb_stdout);
1607 wrap_here ("");
1608 printf_filtered ("%s...", pst->dependencies[i]->filename);
c5aa993b 1609 wrap_here (""); /* Flush output */
c906108c
SS
1610 gdb_flush (gdb_stdout);
1611 }
1612 dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
1613 }
1614
c5aa993b 1615 if (LDSYMLEN (pst)) /* Otherwise it's a dummy */
c906108c
SS
1616 {
1617 /* Init stuff necessary for reading in symbols */
1618 stabsread_init ();
1619 buildsym_init ();
a0b3c4fd 1620 old_chain = make_cleanup (really_free_pendings, 0);
c906108c
SS
1621 file_string_table_offset = FILE_STRING_OFFSET (pst);
1622 symbol_size = SYMBOL_SIZE (pst);
1623
1624 /* Read in this file's symbols */
1625 bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
1626 read_ofile_symtab (pst);
1627 sort_symtab_syms (pst->symtab);
1628
1629 do_cleanups (old_chain);
1630 }
1631
1632 pst->readin = 1;
1633}
1634
1635/* Read in all of the symbols for a given psymtab for real.
1636 Be verbose about it if the user wants that. */
1637
1638static void
fba45db2 1639dbx_psymtab_to_symtab (struct partial_symtab *pst)
c906108c
SS
1640{
1641 bfd *sym_bfd;
1642
1643 if (!pst)
1644 return;
1645
1646 if (pst->readin)
1647 {
1648 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
c5aa993b 1649 pst->filename);
c906108c
SS
1650 return;
1651 }
1652
c5aa993b 1653 if (LDSYMLEN (pst) || pst->number_of_dependencies)
c906108c
SS
1654 {
1655 /* Print the message now, before reading the string table,
c5aa993b 1656 to avoid disconcerting pauses. */
c906108c
SS
1657 if (info_verbose)
1658 {
1659 printf_filtered ("Reading in symbols for %s...", pst->filename);
1660 gdb_flush (gdb_stdout);
1661 }
1662
1663 sym_bfd = pst->objfile->obfd;
1664
1665 next_symbol_text_func = dbx_next_symbol_text;
1666
1667 dbx_psymtab_to_symtab_1 (pst);
1668
1669 /* Match with global symbols. This only needs to be done once,
1670 after all of the symtabs and dependencies have been read in. */
1671 scan_file_globals (pst->objfile);
1672
1673 /* Finish up the debug error message. */
1674 if (info_verbose)
1675 printf_filtered ("done.\n");
1676 }
1677}
1678
1679/* Read in a defined section of a specific object file's symbols. */
c5aa993b 1680
c906108c 1681static void
fba45db2 1682read_ofile_symtab (struct partial_symtab *pst)
c906108c
SS
1683{
1684 register char *namestring;
1685 register struct external_nlist *bufp;
1686 struct internal_nlist nlist;
1687 unsigned char type;
1688 unsigned max_symnum;
1689 register bfd *abfd;
1690 struct objfile *objfile;
1691 int sym_offset; /* Offset to start of symbols to read */
1692 int sym_size; /* Size of symbols to read */
1693 CORE_ADDR text_offset; /* Start of text segment for symbols */
1694 int text_size; /* Size of text segment for symbols */
1695 struct section_offsets *section_offsets;
1696
1697 objfile = pst->objfile;
c5aa993b
JM
1698 sym_offset = LDSYMOFF (pst);
1699 sym_size = LDSYMLEN (pst);
3973eadd
JB
1700 text_offset = TEXTLOW (pst);
1701 text_size = TEXTHIGH (pst) - TEXTLOW (pst);
b8fbeb18
EZ
1702 /* This cannot be simply objfile->section_offsets because of
1703 elfstab_offset_sections() which initializes the psymtab section
1704 offsets information in a special way, and that is different from
1705 objfile->section_offsets. */
c906108c
SS
1706 section_offsets = pst->section_offsets;
1707
1708 current_objfile = objfile;
1709 subfile_stack = NULL;
1710
1711 stringtab_global = DBX_STRINGTAB (objfile);
1712 last_source_file = NULL;
1713
1714 abfd = objfile->obfd;
1715 symfile_bfd = objfile->obfd; /* Implicit param to next_text_symbol */
1716 symbuf_end = symbuf_idx = 0;
1717
1718 /* It is necessary to actually read one symbol *before* the start
1719 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1720 occurs before the N_SO symbol.
1721
1722 Detecting this in read_dbx_symtab
1723 would slow down initial readin, so we look for it here instead. */
c5aa993b 1724 if (!processing_acc_compilation && sym_offset >= (int) symbol_size)
c906108c
SS
1725 {
1726 bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
1727 fill_symbuf (abfd);
1728 bufp = &symbuf[symbuf_idx++];
1729 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1730 OBJSTAT (objfile, n_stabs++);
1731
1732 SET_NAMESTRING ();
1733
1734 processing_gcc_compilation = 0;
1735 if (nlist.n_type == N_TEXT)
1736 {
1737 const char *tempstring = namestring;
1738
1739 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1740 processing_gcc_compilation = 1;
1741 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1742 processing_gcc_compilation = 2;
1743 if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
1744 ++tempstring;
1745 if (STREQN (tempstring, "__gnu_compiled", 14))
1746 processing_gcc_compilation = 2;
1747 }
1748
1749 /* Try to select a C++ demangling based on the compilation unit
c5aa993b 1750 producer. */
c906108c 1751
8052a17a
JM
1752#if 0
1753 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
1754 know whether it will use the old style or v3 mangling. */
c906108c
SS
1755 if (processing_gcc_compilation)
1756 {
1757 if (AUTO_DEMANGLING)
1758 {
1759 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1760 }
1761 }
8052a17a 1762#endif
c906108c
SS
1763 }
1764 else
1765 {
1766 /* The N_SO starting this symtab is the first symbol, so we
c5aa993b
JM
1767 better not check the symbol before it. I'm not this can
1768 happen, but it doesn't hurt to check for it. */
c906108c
SS
1769 bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
1770 processing_gcc_compilation = 0;
1771 }
1772
1773 if (symbuf_idx == symbuf_end)
1774 fill_symbuf (abfd);
1775 bufp = &symbuf[symbuf_idx];
1776 if (bfd_h_get_8 (abfd, bufp->e_type) != N_SO)
c5aa993b 1777 error ("First symbol in segment of executable not a source symbol");
c906108c
SS
1778
1779 max_symnum = sym_size / symbol_size;
1780
1781 for (symnum = 0;
1782 symnum < max_symnum;
1783 symnum++)
1784 {
1785 QUIT; /* Allow this to be interruptable */
1786 if (symbuf_idx == symbuf_end)
c5aa993b 1787 fill_symbuf (abfd);
c906108c
SS
1788 bufp = &symbuf[symbuf_idx++];
1789 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1790 OBJSTAT (objfile, n_stabs++);
1791
1792 type = bfd_h_get_8 (abfd, bufp->e_type);
1793
1794 SET_NAMESTRING ();
1795
c5aa993b
JM
1796 if (type & N_STAB)
1797 {
c906108c
SS
1798 process_one_symbol (type, nlist.n_desc, nlist.n_value,
1799 namestring, section_offsets, objfile);
c5aa993b 1800 }
c906108c
SS
1801 /* We skip checking for a new .o or -l file; that should never
1802 happen in this routine. */
1803 else if (type == N_TEXT)
1804 {
1805 /* I don't think this code will ever be executed, because
1806 the GCC_COMPILED_FLAG_SYMBOL usually is right before
1807 the N_SO symbol which starts this source file.
1808 However, there is no reason not to accept
1809 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
1810
1811 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1812 processing_gcc_compilation = 1;
1813 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1814 processing_gcc_compilation = 2;
1815
8052a17a
JM
1816#if 0
1817 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
1818 know whether it will use the old style or v3 mangling. */
c906108c
SS
1819 if (AUTO_DEMANGLING)
1820 {
1821 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1822 }
8052a17a 1823#endif
c906108c 1824 }
c5aa993b
JM
1825 else if (type & N_EXT || type == (unsigned char) N_TEXT
1826 || type == (unsigned char) N_NBTEXT
1827 )
1828 {
c906108c
SS
1829 /* Global symbol: see if we came across a dbx defintion for
1830 a corresponding symbol. If so, store the value. Remove
1831 syms from the chain when their values are stored, but
1832 search the whole chain, as there may be several syms from
1833 different files with the same name. */
1834 /* This is probably not true. Since the files will be read
1835 in one at a time, each reference to a global symbol will
1836 be satisfied in each file as it appears. So we skip this
1837 section. */
1838 ;
c5aa993b 1839 }
c906108c
SS
1840 }
1841
1842 current_objfile = NULL;
1843
1844 /* In a Solaris elf file, this variable, which comes from the
1845 value of the N_SO symbol, will still be 0. Luckily, text_offset,
3973eadd 1846 which comes from TEXTLOW (pst) is correct. */
c906108c
SS
1847 if (last_source_start_addr == 0)
1848 last_source_start_addr = text_offset;
1849
1850 /* In reordered executables last_source_start_addr may not be the
1851 lower bound for this symtab, instead use text_offset which comes
3973eadd 1852 from TEXTLOW (pst) which is correct. */
c906108c
SS
1853 if (last_source_start_addr > text_offset)
1854 last_source_start_addr = text_offset;
1855
b8fbeb18 1856 pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
c906108c 1857
114d1f2c 1858 /* Process items which we had to "process_later" due to dependencies
c906108c 1859 on other stabs. */
c5aa993b 1860 process_now (objfile);
c906108c
SS
1861
1862 end_stabs ();
1863}
c906108c 1864\f
c5aa993b 1865
c906108c
SS
1866/* This handles a single symbol from the symbol-file, building symbols
1867 into a GDB symtab. It takes these arguments and an implicit argument.
1868
1869 TYPE is the type field of the ".stab" symbol entry.
1870 DESC is the desc field of the ".stab" entry.
1871 VALU is the value field of the ".stab" entry.
1872 NAME is the symbol name, in our address space.
1873 SECTION_OFFSETS is a set of amounts by which the sections of this object
c5aa993b 1874 file were relocated when it was loaded into memory.
b8fbeb18
EZ
1875 Note that these section_offsets are not the
1876 objfile->section_offsets but the pst->section_offsets.
c5aa993b
JM
1877 All symbols that refer
1878 to memory locations need to be offset by these amounts.
c906108c 1879 OBJFILE is the object file from which we are reading symbols.
c5aa993b 1880 It is used in end_symtab. */
c906108c
SS
1881
1882void
fba45db2
KB
1883process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
1884 struct section_offsets *section_offsets,
1885 struct objfile *objfile)
c906108c
SS
1886{
1887#ifdef SUN_FIXED_LBRAC_BUG
1888 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
1889 to correct the address of N_LBRAC's. If it is not defined, then
1890 we never need to correct the addresses. */
1891
1892 /* This records the last pc address we've seen. We depend on there being
1893 an SLINE or FUN or SO before the first LBRAC, since the variable does
1894 not get reset in between reads of different symbol files. */
1895 static CORE_ADDR last_pc_address;
1896#endif
1897
1898 register struct context_stack *new;
1899 /* This remembers the address of the start of a function. It is used
1900 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
1901 relative to the current function's start address. On systems
1902 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
1903 used to relocate these symbol types rather than SECTION_OFFSETS. */
1904 static CORE_ADDR function_start_offset;
1905
1906 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
1907 file. Used to detect the SunPRO solaris compiler. */
1908 static int n_opt_found;
1909
1910 /* The stab type used for the definition of the last function.
1911 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
1912 static int function_stab_type = 0;
1913
1914 if (!block_address_function_relative)
1915 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
1916 function start address, so just use the text offset. */
b8fbeb18 1917 function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1918
1919 /* Something is wrong if we see real data before
1920 seeing a source file name. */
1921
c5aa993b 1922 if (last_source_file == NULL && type != (unsigned char) N_SO)
c906108c
SS
1923 {
1924 /* Ignore any symbols which appear before an N_SO symbol.
c5aa993b
JM
1925 Currently no one puts symbols there, but we should deal
1926 gracefully with the case. A complain()t might be in order,
1927 but this should not be an error (). */
c906108c
SS
1928 return;
1929 }
1930
1931 switch (type)
1932 {
1933 case N_FUN:
1934 case N_FNAME:
1935
1936 if (*name == '\000')
1937 {
1938 /* This N_FUN marks the end of a function. This closes off the
1939 current block. */
1940 within_function = 0;
1941 new = pop_context ();
1942
1943 /* Make a block for the local symbols within. */
1944 finish_block (new->name, &local_symbols, new->old_blocks,
1945 new->start_addr, new->start_addr + valu,
1946 objfile);
1947
1948 /* May be switching to an assembler file which may not be using
1949 block relative stabs, so reset the offset. */
1950 if (block_address_function_relative)
1951 function_start_offset = 0;
1952
1953 break;
1954 }
1955
1956 /* Relocate for dynamic loading */
b8fbeb18 1957 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
1958#ifdef SMASH_TEXT_ADDRESS
1959 SMASH_TEXT_ADDRESS (valu);
1960#endif
1961 goto define_a_symbol;
1962
1963 case N_LBRAC:
1964 /* This "symbol" just indicates the start of an inner lexical
c5aa993b 1965 context within a function. */
c906108c
SS
1966
1967 /* Ignore extra outermost context from SunPRO cc and acc. */
1968 if (n_opt_found && desc == 1)
1969 break;
1970
1971 if (block_address_function_relative)
1972 /* Relocate for Sun ELF acc fn-relative syms. */
1973 valu += function_start_offset;
1974 else
1975 /* On most machines, the block addresses are relative to the
1976 N_SO, the linker did not relocate them (sigh). */
1977 valu += last_source_start_addr;
1978
1979#ifdef SUN_FIXED_LBRAC_BUG
c5aa993b
JM
1980 if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address)
1981 {
1982 /* Patch current LBRAC pc value to match last handy pc value */
1983 complain (&lbrac_complaint);
1984 valu = last_pc_address;
1985 }
c906108c
SS
1986#endif
1987 new = push_context (desc, valu);
1988 break;
1989
1990 case N_RBRAC:
1991 /* This "symbol" just indicates the end of an inner lexical
c5aa993b 1992 context that was started with N_LBRAC. */
c906108c
SS
1993
1994 /* Ignore extra outermost context from SunPRO cc and acc. */
1995 if (n_opt_found && desc == 1)
1996 break;
1997
1998 if (block_address_function_relative)
1999 /* Relocate for Sun ELF acc fn-relative syms. */
2000 valu += function_start_offset;
2001 else
2002 /* On most machines, the block addresses are relative to the
2003 N_SO, the linker did not relocate them (sigh). */
2004 valu += last_source_start_addr;
2005
c5aa993b 2006 new = pop_context ();
c906108c
SS
2007 if (desc != new->depth)
2008 complain (&lbrac_mismatch_complaint, symnum);
2009
2010 /* Some compilers put the variable decls inside of an
2011 LBRAC/RBRAC block. This macro should be nonzero if this
c5aa993b
JM
2012 is true. DESC is N_DESC from the N_RBRAC symbol.
2013 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
2014 or the GCC2_COMPILED_SYMBOL. */
c906108c
SS
2015#if !defined (VARIABLES_INSIDE_BLOCK)
2016#define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
2017#endif
2018
2019 /* Can only use new->locals as local symbols here if we're in
2020 gcc or on a machine that puts them before the lbrack. */
c5aa993b 2021 if (!VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
c906108c
SS
2022 local_symbols = new->locals;
2023
2024 if (context_stack_depth
c5aa993b 2025 > !VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
c906108c
SS
2026 {
2027 /* This is not the outermost LBRAC...RBRAC pair in the function,
2028 its local symbols preceded it, and are the ones just recovered
2029 from the context stack. Define the block for them (but don't
2030 bother if the block contains no symbols. Should we complain
2031 on blocks without symbols? I can't think of any useful purpose
2032 for them). */
2033 if (local_symbols != NULL)
2034 {
2035 /* Muzzle a compiler bug that makes end < start. (which
c5aa993b 2036 compilers? Is this ever harmful?). */
c906108c
SS
2037 if (new->start_addr > valu)
2038 {
2039 complain (&lbrac_rbrac_complaint);
2040 new->start_addr = valu;
2041 }
2042 /* Make a block for the local symbols within. */
2043 finish_block (0, &local_symbols, new->old_blocks,
2044 new->start_addr, valu, objfile);
2045 }
2046 }
2047 else
2048 {
2049 /* This is the outermost LBRAC...RBRAC pair. There is no
2050 need to do anything; leave the symbols that preceded it
2051 to be attached to the function's own block. We need to
2052 indicate that we just moved outside of the function. */
2053 within_function = 0;
2054 }
2055
c5aa993b 2056 if (VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
c906108c
SS
2057 /* Now pop locals of block just finished. */
2058 local_symbols = new->locals;
2059 break;
2060
2061 case N_FN:
2062 case N_FN_SEQ:
2063 /* This kind of symbol indicates the start of an object file. */
2064 /* Relocate for dynamic loading */
b8fbeb18 2065 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
2066 break;
2067
2068 case N_SO:
2069 /* This type of symbol indicates the start of data
c5aa993b
JM
2070 for one source file.
2071 Finish the symbol table of the previous source file
2072 (if any) and start accumulating a new symbol table. */
c906108c 2073 /* Relocate for dynamic loading */
b8fbeb18 2074 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
2075
2076 n_opt_found = 0;
2077
2078#ifdef SUN_FIXED_LBRAC_BUG
2079 last_pc_address = valu; /* Save for SunOS bug circumcision */
2080#endif
2081
2082#ifdef PCC_SOL_BROKEN
2083 /* pcc bug, occasionally puts out SO for SOL. */
2084 if (context_stack_depth > 0)
2085 {
2086 start_subfile (name, NULL);
2087 break;
2088 }
2089#endif
2090 if (last_source_file)
2091 {
2092 /* Check if previous symbol was also an N_SO (with some
2093 sanity checks). If so, that one was actually the directory
2094 name, and the current one is the real file name.
c5aa993b 2095 Patch things up. */
c906108c
SS
2096 if (previous_stab_code == (unsigned char) N_SO)
2097 {
2098 patch_subfile_names (current_subfile, name);
2099 break; /* Ignore repeated SOs */
2100 }
b8fbeb18 2101 end_symtab (valu, objfile, SECT_OFF_TEXT (objfile));
c906108c
SS
2102 end_stabs ();
2103 }
2104
2105 /* Null name means this just marks the end of text for this .o file.
c5aa993b 2106 Don't start a new symtab in this case. */
c906108c
SS
2107 if (*name == '\000')
2108 break;
2109
2110 if (block_address_function_relative)
c5aa993b 2111 function_start_offset = 0;
c906108c
SS
2112
2113 start_stabs ();
2114 start_symtab (name, NULL, valu);
2115 record_debugformat ("stabs");
2116 break;
2117
2118 case N_SOL:
2119 /* This type of symbol indicates the start of data for
c5aa993b
JM
2120 a sub-source-file, one whose contents were copied or
2121 included in the compilation of the main source file
2122 (whose name was given in the N_SO symbol.) */
c906108c 2123 /* Relocate for dynamic loading */
b8fbeb18 2124 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
2125 start_subfile (name, current_subfile->dirname);
2126 break;
2127
2128 case N_BINCL:
2129 push_subfile ();
2130 add_new_header_file (name, valu);
2131 start_subfile (name, current_subfile->dirname);
2132 break;
2133
2134 case N_EINCL:
2135 start_subfile (pop_subfile (), current_subfile->dirname);
2136 break;
2137
2138 case N_EXCL:
2139 add_old_header_file (name, valu);
2140 break;
2141
2142 case N_SLINE:
2143 /* This type of "symbol" really just records
c5aa993b
JM
2144 one line-number -- core-address correspondence.
2145 Enter it in the line list for this symbol table. */
c906108c
SS
2146
2147 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
2148 valu += function_start_offset;
2149
2150#ifdef SUN_FIXED_LBRAC_BUG
2151 last_pc_address = valu; /* Save for SunOS bug circumcision */
2152#endif
2153 record_line (current_subfile, desc, valu);
2154 break;
2155
2156 case N_BCOMM:
2157 common_block_start (name, objfile);
2158 break;
2159
2160 case N_ECOMM:
2161 common_block_end (objfile);
2162 break;
2163
c5aa993b
JM
2164 /* The following symbol types need to have the appropriate offset added
2165 to their value; then we process symbol definitions in the name. */
c906108c
SS
2166
2167 case N_STSYM: /* Static symbol in data seg */
2168 case N_LCSYM: /* Static symbol in BSS seg */
2169 case N_ROSYM: /* Static symbol in Read-only data seg */
c5aa993b
JM
2170 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
2171 Solaris2's stabs-in-elf makes *most* symbols relative
2172 but leaves a few absolute (at least for Solaris 2.1 and version
2173 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
2174 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
2175 .stab "foo:V...",N_STSYM is relative (section base subtracted).
2176 This leaves us no choice but to search for the 'S' or 'V'...
2177 (or pass the whole section_offsets stuff down ONE MORE function
2178 call level, which we really don't want to do). */
c906108c
SS
2179 {
2180 char *p;
2181
2182 /* .o files and NLMs have non-zero text seg offsets, but don't need
2183 their static syms offset in this fashion. XXX - This is really a
2184 crock that should be fixed in the solib handling code so that I
2185 don't have to work around it here. */
2186
2187 if (!symfile_relocatable)
2188 {
2189 p = strchr (name, ':');
2190 if (p != 0 && p[1] == 'S')
2191 {
2192 /* The linker relocated it. We don't want to add an
2193 elfstab_offset_sections-type offset, but we *do* want
2194 to add whatever solib.c passed to symbol_file_add as
2195 addr (this is known to affect SunOS4, and I suspect ELF
2196 too). Since elfstab_offset_sections currently does not
2197 muck with the text offset (there is no Ttext.text
2198 symbol), we can get addr from the text offset. If
2199 elfstab_offset_sections ever starts dealing with the
2200 text offset, and we still need to do this, we need to
2201 invent a SECT_OFF_ADDR_KLUDGE or something. */
b8fbeb18 2202 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
2203 goto define_a_symbol;
2204 }
2205 }
2206 /* Since it's not the kludge case, re-dispatch to the right handler. */
c5aa993b
JM
2207 switch (type)
2208 {
2209 case N_STSYM:
2210 goto case_N_STSYM;
2211 case N_LCSYM:
2212 goto case_N_LCSYM;
2213 case N_ROSYM:
2214 goto case_N_ROSYM;
2215 default:
e1e9e218 2216 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c5aa993b 2217 }
c906108c
SS
2218 }
2219
2220 case_N_STSYM: /* Static symbol in data seg */
2221 case N_DSLINE: /* Source line number, data seg */
b8fbeb18 2222 valu += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
c906108c
SS
2223 goto define_a_symbol;
2224
2225 case_N_LCSYM: /* Static symbol in BSS seg */
2226 case N_BSLINE: /* Source line number, bss seg */
c5aa993b 2227 /* N_BROWS: overlaps with N_BSLINE */
b8fbeb18 2228 valu += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
c906108c
SS
2229 goto define_a_symbol;
2230
2231 case_N_ROSYM: /* Static symbol in Read-only data seg */
b8fbeb18 2232 valu += ANOFFSET (section_offsets, SECT_OFF_RODATA (objfile));
c906108c
SS
2233 goto define_a_symbol;
2234
2235 case N_ENTRY: /* Alternate entry point */
2236 /* Relocate for dynamic loading */
b8fbeb18 2237 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
c906108c
SS
2238 goto define_a_symbol;
2239
c5aa993b
JM
2240 /* The following symbol types we don't know how to process. Handle
2241 them in a "default" way, but complain to people who care. */
c906108c
SS
2242 default:
2243 case N_CATCH: /* Exception handler catcher */
2244 case N_EHDECL: /* Exception handler name */
2245 case N_PC: /* Global symbol in Pascal */
c5aa993b
JM
2246 case N_M2C: /* Modula-2 compilation unit */
2247 /* N_MOD2: overlaps with N_EHDECL */
c906108c
SS
2248 case N_SCOPE: /* Modula-2 scope information */
2249 case N_ECOML: /* End common (local name) */
2250 case N_NBTEXT: /* Gould Non-Base-Register symbols??? */
2251 case N_NBDATA:
2252 case N_NBBSS:
2253 case N_NBSTS:
2254 case N_NBLCS:
2255 complain (&unknown_symtype_complaint, local_hex_string (type));
2256 /* FALLTHROUGH */
2257
c5aa993b
JM
2258 /* The following symbol types don't need the address field relocated,
2259 since it is either unused, or is absolute. */
c906108c
SS
2260 define_a_symbol:
2261 case N_GSYM: /* Global variable */
2262 case N_NSYMS: /* Number of symbols (ultrix) */
2263 case N_NOMAP: /* No map? (ultrix) */
2264 case N_RSYM: /* Register variable */
2265 case N_DEFD: /* Modula-2 GNU module dependency */
2266 case N_SSYM: /* Struct or union element */
2267 case N_LSYM: /* Local symbol in stack */
2268 case N_PSYM: /* Parameter variable */
2269 case N_LENG: /* Length of preceding symbol type */
2270 if (name)
2271 {
2272 int deftype;
2273 char *colon_pos = strchr (name, ':');
2274 if (colon_pos == NULL)
2275 deftype = '\0';
2276 else
2277 deftype = colon_pos[1];
2278
2279 switch (deftype)
2280 {
2281 case 'f':
2282 case 'F':
2283 function_stab_type = type;
2284
2285#ifdef SOFUN_ADDRESS_MAYBE_MISSING
2286 /* Deal with the SunPRO 3.0 compiler which omits the address
c5aa993b 2287 from N_FUN symbols. */
c906108c 2288 if (type == N_FUN
b8fbeb18 2289 && valu == ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile)))
9a058a09
KB
2290 {
2291 CORE_ADDR minsym_valu =
2292 find_stab_function_addr (name, last_source_file, objfile);
2293
2294 /* find_stab_function_addr will return 0 if the minimal
2295 symbol wasn't found. (Unfortunately, this might also
2296 be a valid address.) Anyway, if it *does* return 0,
2297 it is likely that the value was set correctly to begin
2298 with... */
2299 if (minsym_valu != 0)
2300 valu = minsym_valu;
2301 }
c906108c
SS
2302#endif
2303
2304#ifdef SUN_FIXED_LBRAC_BUG
2305 /* The Sun acc compiler, under SunOS4, puts out
c5aa993b
JM
2306 functions with N_GSYM or N_STSYM. The problem is
2307 that the address of the symbol is no good (for N_GSYM
2308 it doesn't even attept an address; for N_STSYM it
2309 puts out an address but then it gets relocated
2310 relative to the data segment, not the text segment).
2311 Currently we can't fix this up later as we do for
2312 some types of symbol in scan_file_globals.
2313 Fortunately we do have a way of finding the address -
2314 we know that the value in last_pc_address is either
2315 the one we want (if we're dealing with the first
2316 function in an object file), or somewhere in the
2317 previous function. This means that we can use the
2318 minimal symbol table to get the address. */
c906108c
SS
2319
2320 /* Starting with release 3.0, the Sun acc compiler,
c5aa993b
JM
2321 under SunOS4, puts out functions with N_FUN and a value
2322 of zero. This gets relocated to the start of the text
2323 segment of the module, which is no good either.
2324 Under SunOS4 we can deal with this as N_SLINE and N_SO
2325 entries contain valid absolute addresses.
2326 Release 3.0 acc also puts out N_OPT entries, which makes
2327 it possible to discern acc from cc or gcc. */
c906108c
SS
2328
2329 if (type == N_GSYM || type == N_STSYM
2330 || (type == N_FUN
2331 && n_opt_found && !block_address_function_relative))
2332 {
2333 struct minimal_symbol *m;
2334 int l = colon_pos - name;
2335
2336 m = lookup_minimal_symbol_by_pc (last_pc_address);
2337 if (m && STREQN (SYMBOL_NAME (m), name, l)
c5aa993b 2338 && SYMBOL_NAME (m)[l] == '\0')
c906108c
SS
2339 /* last_pc_address was in this function */
2340 valu = SYMBOL_VALUE (m);
c5aa993b
JM
2341 else if (m && SYMBOL_NAME (m + 1)
2342 && STREQN (SYMBOL_NAME (m + 1), name, l)
2343 && SYMBOL_NAME (m + 1)[l] == '\0')
c906108c 2344 /* last_pc_address was in last function */
c5aa993b 2345 valu = SYMBOL_VALUE (m + 1);
c906108c
SS
2346 else
2347 /* Not found - use last_pc_address (for finish_block) */
2348 valu = last_pc_address;
2349 }
2350
2351 last_pc_address = valu; /* Save for SunOS bug circumcision */
2352#endif
2353
2354 if (block_address_function_relative)
2355 /* For Solaris 2.0 compilers, the block addresses and
2356 N_SLINE's are relative to the start of the
2357 function. On normal systems, and when using gcc on
2358 Solaris 2.0, these addresses are just absolute, or
2359 relative to the N_SO, depending on
2360 BLOCK_ADDRESS_ABSOLUTE. */
c5aa993b 2361 function_start_offset = valu;
c906108c
SS
2362
2363 within_function = 1;
c3f6f71d
JM
2364
2365 if (context_stack_depth > 1)
2366 {
2367 complain (&lbrac_unmatched_complaint, symnum);
2368 break;
2369 }
2370
c906108c
SS
2371 if (context_stack_depth > 0)
2372 {
2373 new = pop_context ();
2374 /* Make a block for the local symbols within. */
2375 finish_block (new->name, &local_symbols, new->old_blocks,
2376 new->start_addr, valu, objfile);
2377 }
c906108c
SS
2378
2379 new = push_context (0, valu);
2380 new->name = define_symbol (valu, name, desc, type, objfile);
2381 break;
2382
2383 default:
2384 define_symbol (valu, name, desc, type, objfile);
2385 break;
2386 }
2387 }
2388 break;
2389
c5aa993b
JM
2390 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
2391 for a bunch of other flags, too. Someday we may parse their
2392 flags; for now we ignore theirs and hope they'll ignore ours. */
2393 case N_OPT: /* Solaris 2: Compiler options */
c906108c
SS
2394 if (name)
2395 {
2396 if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
2397 {
2398 processing_gcc_compilation = 2;
8052a17a
JM
2399#if 0 /* Works, but is experimental. -fnf */
2400 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2401 know whether it will use the old style or v3 mangling. */
c906108c
SS
2402 if (AUTO_DEMANGLING)
2403 {
2404 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2405 }
2406#endif
2407 }
2408 else
2409 n_opt_found = 1;
2410 }
2411 break;
2412
51cc5b07
AC
2413 case N_MAIN: /* Name of main routine. */
2414 /* FIXME: If one has a symbol file with N_MAIN and then replaces
2415 it with a symbol file with "main" and without N_MAIN. I'm
2416 not sure exactly what rule to follow but probably something
2417 like: N_MAIN takes precedence over "main" no matter what
2418 objfile it is in; If there is more than one N_MAIN, choose
2419 the one in the symfile_objfile; If there is more than one
2420 N_MAIN within a given objfile, complain() and choose
2421 arbitrarily. (kingdon) */
2422 if (name != NULL)
2423 set_main_name (name);
2424 break;
2425
c5aa993b
JM
2426 /* The following symbol types can be ignored. */
2427 case N_OBJ: /* Solaris 2: Object file dir and name */
2428 /* N_UNDF: Solaris 2: file separator mark */
2429 /* N_UNDF: -- we will never encounter it, since we only process one
2430 file's symbols at once. */
c906108c 2431 case N_ENDM: /* Solaris 2: End of module */
c906108c
SS
2432 case N_ALIAS: /* SunPro F77: alias name, ignore for now. */
2433 break;
2434 }
2435
2436 /* '#' is a GNU C extension to allow one symbol to refer to another
2437 related symbol.
2438
2439 Generally this is used so that an alias can refer to its main
c5aa993b 2440 symbol. */
c906108c
SS
2441 if (name[0] == '#')
2442 {
2443 /* Initialize symbol reference names and determine if this is
2444 a definition. If symbol reference is being defined, go
2445 ahead and add it. Otherwise, just return sym. */
2446
2447 char *s = name;
2448 int refnum;
2449
2450 /* If this stab defines a new reference ID that is not on the
c5aa993b 2451 reference list, then put it on the reference list.
c906108c 2452
c5aa993b
JM
2453 We go ahead and advance NAME past the reference, even though
2454 it is not strictly necessary at this time. */
c906108c
SS
2455 refnum = symbol_reference_defined (&s);
2456 if (refnum >= 0)
2457 if (!ref_search (refnum))
2458 ref_add (refnum, 0, name, valu);
2459 name = s;
2460 }
2461
2462
2463 previous_stab_code = type;
2464}
2465\f
2466/* FIXME: The only difference between this and elfstab_build_psymtabs
2467 is the call to install_minimal_symbols for elf, and the support for
2468 split sections. If the differences are really that small, the code
2469 should be shared. */
2470
2471/* Scan and build partial symbols for an coff symbol file.
2472 The coff file has already been processed to get its minimal symbols.
2473
2474 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2475 rolled into one.
2476
2477 OBJFILE is the object file we are reading symbols from.
2478 ADDR is the address relative to which the symbols are (e.g.
2479 the base address of the text segment).
2480 MAINLINE is true if we are reading the main symbol
2481 table (as opposed to a shared lib or dynamically loaded file).
2482 TEXTADDR is the address of the text section.
2483 TEXTSIZE is the size of the text section.
2484 STABSECTS is the list of .stab sections in OBJFILE.
2485 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2486 .stabstr section exists.
2487
2488 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2489 adjusted for coff details. */
2490
2491void
fba45db2
KB
2492coffstab_build_psymtabs (struct objfile *objfile, int mainline,
2493 CORE_ADDR textaddr, unsigned int textsize,
2494 struct stab_section_list *stabsects,
2495 file_ptr stabstroffset, unsigned int stabstrsize)
c906108c
SS
2496{
2497 int val;
2498 bfd *sym_bfd = objfile->obfd;
2499 char *name = bfd_get_filename (sym_bfd);
2500 struct dbx_symfile_info *info;
2501 unsigned int stabsize;
2502
2503 /* There is already a dbx_symfile_info allocated by our caller.
2504 It might even contain some info from the coff symtab to help us. */
2505 info = objfile->sym_stab_info;
2506
2507 DBX_TEXT_ADDR (objfile) = textaddr;
2508 DBX_TEXT_SIZE (objfile) = textsize;
2509
2510#define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
c5aa993b 2511 DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
c906108c 2512 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
c5aa993b 2513
c906108c
SS
2514 if (stabstrsize > bfd_get_size (sym_bfd))
2515 error ("ridiculous string table size: %d bytes", stabstrsize);
2516 DBX_STRINGTAB (objfile) = (char *)
c5aa993b
JM
2517 obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
2518 OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
c906108c
SS
2519
2520 /* Now read in the string table in one big gulp. */
2521
2522 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2523 if (val < 0)
2524 perror_with_name (name);
3a42e9d0 2525 val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
c906108c
SS
2526 if (val != stabstrsize)
2527 perror_with_name (name);
2528
2529 stabsread_new_init ();
2530 buildsym_new_init ();
2531 free_header_files ();
2532 init_header_files ();
2533
2534 processing_acc_compilation = 1;
2535
2536 /* In a coff file, we've already installed the minimal symbols that came
2537 from the coff (non-stab) symbol table, so always act like an
2538 incremental load here. */
2539 if (stabsects->next == NULL)
2540 {
2541 stabsize = bfd_section_size (sym_bfd, stabsects->section);
2542 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2543 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2544 }
2545 else
2546 {
2547 struct stab_section_list *stabsect;
2548
2549 DBX_SYMCOUNT (objfile) = 0;
2550 for (stabsect = stabsects; stabsect != NULL; stabsect = stabsect->next)
2551 {
2552 stabsize = bfd_section_size (sym_bfd, stabsect->section);
2553 DBX_SYMCOUNT (objfile) += stabsize / DBX_SYMBOL_SIZE (objfile);
2554 }
2555
2556 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2557
2558 symbuf_sections = stabsects->next;
2559 symbuf_left = bfd_section_size (sym_bfd, stabsects->section);
2560 symbuf_read = 0;
2561 }
2562
96baa820 2563 dbx_symfile_read (objfile, 0);
c906108c
SS
2564}
2565\f
2566/* Scan and build partial symbols for an ELF symbol file.
2567 This ELF file has already been processed to get its minimal symbols,
2568 and any DWARF symbols that were in it.
2569
2570 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2571 rolled into one.
2572
2573 OBJFILE is the object file we are reading symbols from.
2574 ADDR is the address relative to which the symbols are (e.g.
2575 the base address of the text segment).
2576 MAINLINE is true if we are reading the main symbol
2577 table (as opposed to a shared lib or dynamically loaded file).
2578 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2579 section exists.
2580 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2581 .stabstr section exists.
2582
2583 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2584 adjusted for elf details. */
2585
2586void
fba45db2
KB
2587elfstab_build_psymtabs (struct objfile *objfile, int mainline,
2588 file_ptr staboffset, unsigned int stabsize,
2589 file_ptr stabstroffset, unsigned int stabstrsize)
c906108c
SS
2590{
2591 int val;
2592 bfd *sym_bfd = objfile->obfd;
2593 char *name = bfd_get_filename (sym_bfd);
2594 struct dbx_symfile_info *info;
c906108c
SS
2595
2596 /* There is already a dbx_symfile_info allocated by our caller.
2597 It might even contain some info from the ELF symtab to help us. */
2598 info = objfile->sym_stab_info;
2599
7a292a7a
SS
2600 /* Find the first and last text address. dbx_symfile_read seems to
2601 want this. */
2602 find_text_range (sym_bfd, objfile);
c906108c
SS
2603
2604#define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
c5aa993b
JM
2605 DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
2606 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
c906108c 2607 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
c5aa993b
JM
2608 DBX_SYMTAB_OFFSET (objfile) = staboffset;
2609
c906108c
SS
2610 if (stabstrsize > bfd_get_size (sym_bfd))
2611 error ("ridiculous string table size: %d bytes", stabstrsize);
2612 DBX_STRINGTAB (objfile) = (char *)
c5aa993b
JM
2613 obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
2614 OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
c906108c
SS
2615
2616 /* Now read in the string table in one big gulp. */
2617
2618 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2619 if (val < 0)
2620 perror_with_name (name);
3a42e9d0 2621 val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
c906108c
SS
2622 if (val != stabstrsize)
2623 perror_with_name (name);
2624
2625 stabsread_new_init ();
2626 buildsym_new_init ();
2627 free_header_files ();
2628 init_header_files ();
2629 install_minimal_symbols (objfile);
2630
2631 processing_acc_compilation = 1;
2632
2633 /* In an elf file, we've already installed the minimal symbols that came
2634 from the elf (non-stab) symbol table, so always act like an
2635 incremental load here. */
96baa820 2636 dbx_symfile_read (objfile, 0);
c906108c
SS
2637}
2638\f
2639/* Scan and build partial symbols for a file with special sections for stabs
2640 and stabstrings. The file has already been processed to get its minimal
2641 symbols, and any other symbols that might be necessary to resolve GSYMs.
2642
2643 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2644 rolled into one.
2645
2646 OBJFILE is the object file we are reading symbols from.
2647 ADDR is the address relative to which the symbols are (e.g. the base address
c5aa993b 2648 of the text segment).
c906108c 2649 MAINLINE is true if we are reading the main symbol table (as opposed to a
c5aa993b 2650 shared lib or dynamically loaded file).
c906108c
SS
2651 STAB_NAME is the name of the section that contains the stabs.
2652 STABSTR_NAME is the name of the section that contains the stab strings.
2653
2654 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
2655
2656void
fba45db2
KB
2657stabsect_build_psymtabs (struct objfile *objfile, int mainline, char *stab_name,
2658 char *stabstr_name, char *text_name)
c906108c
SS
2659{
2660 int val;
2661 bfd *sym_bfd = objfile->obfd;
2662 char *name = bfd_get_filename (sym_bfd);
2663 asection *stabsect;
2664 asection *stabstrsect;
2665 asection *text_sect;
2666
2667 stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
2668 stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
2669
2670 if (!stabsect)
2671 return;
2672
2673 if (!stabstrsect)
2674 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
2675 stab_name, stabstr_name);
2676
2677 objfile->sym_stab_info = (struct dbx_symfile_info *)
2678 xmalloc (sizeof (struct dbx_symfile_info));
2679 memset (objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
2680
2681 text_sect = bfd_get_section_by_name (sym_bfd, text_name);
2682 if (!text_sect)
2683 error ("Can't find %s section in symbol file", text_name);
2684 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
2685 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
2686
c5aa993b
JM
2687 DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
2688 DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
c906108c
SS
2689 / DBX_SYMBOL_SIZE (objfile);
2690 DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
c5aa993b
JM
2691 DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
2692
c906108c
SS
2693 if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
2694 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
2695 DBX_STRINGTAB (objfile) = (char *)
2696 obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
2697 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile) + 1);
2698
2699 /* Now read in the string table in one big gulp. */
2700
c5aa993b
JM
2701 val = bfd_get_section_contents (sym_bfd, /* bfd */
2702 stabstrsect, /* bfd section */
2703 DBX_STRINGTAB (objfile), /* input buffer */
2704 0, /* offset into section */
2705 DBX_STRINGTAB_SIZE (objfile)); /* amount to read */
c906108c
SS
2706
2707 if (!val)
2708 perror_with_name (name);
2709
2710 stabsread_new_init ();
2711 buildsym_new_init ();
2712 free_header_files ();
2713 init_header_files ();
2714 install_minimal_symbols (objfile);
2715
2716 /* Now, do an incremental load */
2717
2718 processing_acc_compilation = 1;
96baa820 2719 dbx_symfile_read (objfile, 0);
c906108c
SS
2720}
2721\f
2722static struct sym_fns aout_sym_fns =
2723{
2724 bfd_target_aout_flavour,
c5aa993b
JM
2725 dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */
2726 dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2727 dbx_symfile_read, /* sym_read: read a symbol file into symtab */
2728 dbx_symfile_finish, /* sym_finish: finished with file, cleanup */
96baa820 2729 default_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
c5aa993b 2730 NULL /* next: pointer to next struct sym_fns */
c906108c
SS
2731};
2732
2733void
fba45db2 2734_initialize_dbxread (void)
c906108c 2735{
c5aa993b 2736 add_symtab_fns (&aout_sym_fns);
c906108c 2737}
This page took 0.269868 seconds and 4 git commands to generate.