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