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