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