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