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