* elf.c (assign_file_positions_for_segments): Track the virtual
[deliverable/binutils-gdb.git] / gdb / dbxread.c
CommitLineData
bd5635a1 1/* Read dbx symbol tables and convert to internal format, for GDB.
94f5a25f 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
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 18along with this program; if not, write to the Free Software
45886199 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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"
2b576293 36#include "gdb_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
f309ad95 43#include "obstack.h"
afe4ca15 44#include <sys/param.h>
021959e2 45#ifndef NO_SYS_FILE
afe4ca15 46#include <sys/file.h>
021959e2 47#endif
2b576293 48#include "gdb_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
94f5a25f 68/* defined in stabsread.c; used for completing cfront stabs strings */
e74acce4
MA
69extern void
70resolve_cfront_continuation PARAMS((struct objfile * objfile,
71 struct symbol * sym, char * p));
94f5a25f 72
989d9cba 73\f
2b576293
C
74/* We put a pointer to this structure in the read_symtab_private field
75 of the psymtab. */
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 249static char *
94f5a25f 250dbx_next_symbol_text PARAMS ((struct objfile *));
021959e2
JG
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
ace4b8d7 502 (name, address, ms_type, NULL, section, objfile);
bd5635a1
RP
503}
504\f
505/* Scan and build partial symbols for a symbol file.
506 We have been initialized by a call to dbx_symfile_init, which
3624c875
FF
507 put all the relevant info into a "struct dbx_symfile_info",
508 hung off the objfile structure.
bd5635a1 509
2af231b8
JG
510 SECTION_OFFSETS contains offsets relative to which the symbols in the
511 various sections are (depending where the sections were actually loaded).
bd5635a1
RP
512 MAINLINE is true if we are reading the main symbol
513 table (as opposed to a shared lib or dynamically loaded file). */
514
9bba3334 515static void
2af231b8 516dbx_symfile_read (objfile, section_offsets, mainline)
80d68b1d 517 struct objfile *objfile;
2af231b8 518 struct section_offsets *section_offsets;
bd5635a1
RP
519 int mainline; /* FIXME comments above */
520{
80d68b1d 521 bfd *sym_bfd;
bd5635a1 522 int val;
0eb22669 523 struct cleanup *back_to;
bd5635a1 524
a66e8382
SG
525 val = strlen (objfile->name);
526
527 /* .o and .nlm files are relocatables with text, data and bss segs based at
528 0. This flag disables special (Solaris stabs-in-elf only) fixups for
529 symbols with a value of 0. XXX - This is a Krock. Solaris stabs-in-elf
530 should be fixed to determine pst->textlow without using this text seg of
531 0 fixup crap. */
532
533 if (strcmp (&objfile->name[val-2], ".o") == 0
534 || strcmp (&objfile->name[val-4], ".nlm") == 0)
535 symfile_relocatable = 1;
536
bfe2f12b
JL
537 /* This is true for Solaris (and all other systems which put stabs
538 in sections, hopefully, since it would be silly to do things
539 differently from Solaris), and false for SunOS4 and other a.out
540 file formats. */
541 block_address_function_relative =
542 ((0 == strncmp (bfd_get_target (objfile->obfd), "elf", 3))
543 || (0 == strncmp (bfd_get_target (objfile->obfd), "som", 3))
544 || (0 == strncmp (bfd_get_target (objfile->obfd), "coff", 4))
45886199 545 || (0 == strncmp (bfd_get_target (objfile->obfd), "pe", 2))
bfe2f12b
JL
546 || (0 == strncmp (bfd_get_target (objfile->obfd), "nlm", 3)));
547
80d68b1d 548 sym_bfd = objfile->obfd;
2c7ab4ca 549 val = bfd_seek (objfile->obfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
bd5635a1 550 if (val < 0)
80d68b1d 551 perror_with_name (objfile->name);
bd5635a1 552
66eeea27 553 /* If we are reinitializing, or if we have never loaded syms yet, init */
a367db89
JK
554 if (mainline
555 || objfile->global_psymbols.size == 0
556 || objfile->static_psymbols.size == 0)
557 init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
66eeea27 558
9342ecb9
JG
559 symbol_size = DBX_SYMBOL_SIZE (objfile);
560 symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
afe4ca15 561
bd5635a1 562 pending_blocks = 0;
0eb22669 563 back_to = make_cleanup (really_free_pendings, 0);
bd5635a1 564
021959e2
JG
565 init_minimal_symbol_collection ();
566 make_cleanup (discard_minimal_symbols, 0);
bd5635a1
RP
567
568 /* Now that the symbol table data of the executable file are all in core,
569 process them and define symbols accordingly. */
570
2af231b8 571 read_dbx_symtab (section_offsets, objfile,
2b576293
C
572 DBX_TEXT_ADDR (objfile),
573 DBX_TEXT_SIZE (objfile));
bd5635a1 574
26a859ec 575 /* Add the dynamic symbols. */
5801f348 576
26a859ec 577 read_dbx_dynamic_symtab (section_offsets, objfile);
5801f348 578
021959e2
JG
579 /* Install any minimal symbols that have been collected as the current
580 minimal symbols for this objfile. */
bd5635a1 581
80d68b1d 582 install_minimal_symbols (objfile);
bd5635a1 583
0eb22669 584 do_cleanups (back_to);
bd5635a1
RP
585}
586
9404978d
MT
587/* Initialize anything that needs initializing when a completely new
588 symbol file is specified (not just adding some symbols from another
589 file, e.g. a shared library). */
bd5635a1 590
9bba3334 591static void
ac88ca20
JG
592dbx_new_init (ignore)
593 struct objfile *ignore;
bd5635a1 594{
3416d90b 595 stabsread_new_init ();
c0302457 596 buildsym_new_init ();
80d68b1d 597 init_header_files ();
bd5635a1
RP
598}
599
600
601/* dbx_symfile_init ()
602 is the dbx-specific initialization routine for reading symbols.
80d68b1d 603 It is passed a struct objfile which contains, among other things,
bd5635a1
RP
604 the BFD for the file whose symbols are being read, and a slot for a pointer
605 to "private data" which we fill with goodies.
606
607 We read the string table into malloc'd space and stash a pointer to it.
608
609 Since BFD doesn't know how to read debug symbols in a format-independent
610 way (and may never do so...), we have to do it ourselves. We will never
611 be called unless this is an a.out (or very similar) file.
612 FIXME, there should be a cleaner peephole into the BFD environment here. */
613
69a272c4
FF
614#define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
615
9bba3334 616static void
80d68b1d
FF
617dbx_symfile_init (objfile)
618 struct objfile *objfile;
bd5635a1
RP
619{
620 int val;
80d68b1d 621 bfd *sym_bfd = objfile->obfd;
bd5635a1 622 char *name = bfd_get_filename (sym_bfd);
2b576293 623 asection *text_sect;
69a272c4 624 unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
bd5635a1
RP
625
626 /* Allocate struct to keep track of the symfile */
965a5c32 627 objfile->sym_stab_info = (PTR)
3624c875 628 xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
bd5635a1
RP
629
630 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
bd5635a1
RP
631#define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
632#define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
040b9597 633
bd5635a1
RP
634 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
635
784fd92b 636 DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
2b576293
C
637
638 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
639 if (!text_sect)
9342ecb9 640 error ("Can't find .text section in symbol file");
2b576293
C
641 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
642 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
9342ecb9 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));
94f5a25f 709 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile));
65ce5df4
JG
710
711 /* Now read in the string table in one big gulp. */
712
2c7ab4ca 713 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
65ce5df4
JG
714 if (val < 0)
715 perror_with_name (name);
716 val = bfd_read (DBX_STRINGTAB (objfile), DBX_STRINGTAB_SIZE (objfile), 1,
717 sym_bfd);
718 if (val != DBX_STRINGTAB_SIZE (objfile))
719 perror_with_name (name);
720 }
69a272c4 721 }
bd5635a1 722}
80d68b1d
FF
723
724/* Perform any local cleanups required when we are done with a particular
725 objfile. I.E, we are in the process of discarding all symbol information
726 for an objfile, freeing up all memory held for it, and unlinking the
727 objfile struct from the global list of known objfiles. */
728
729static void
730dbx_symfile_finish (objfile)
731 struct objfile *objfile;
732{
965a5c32 733 if (objfile->sym_stab_info != NULL)
80d68b1d 734 {
965a5c32 735 mfree (objfile -> md, objfile->sym_stab_info);
80d68b1d
FF
736 }
737 free_header_files ();
738}
739
bd5635a1
RP
740\f
741/* Buffer for reading the symbol table entries. */
afe4ca15 742static struct internal_nlist symbuf[4096];
bd5635a1
RP
743static int symbuf_idx;
744static int symbuf_end;
745
94f5a25f
DP
746/* cont_elem is used for continuing information in cfront.
747 It saves information about which types need to be fixed up and
748 completed after all the stabs are read. */
749struct cont_elem
750 {
751 /* sym and stabsstring for continuing information in cfront */
752 struct symbol * sym;
753 char * stabs;
754 /* state dependancies (statics that must be preserved) */
755 int sym_idx;
756 int sym_end;
757 int symnum;
758 /* other state dependancies include:
759 (assumption is that these will not change since process_now FIXME!!)
760 stringtab_global
761 n_stabs
762 objfile
763 symfile_bfd */
764};
765static struct cont_elem cont_list[100];
766static int cont_count = 0;
767
768void
769process_later(sym,p)
770 struct symbol * sym;
771 char * p;
772{
773 /* save state so we can process these stabs later */
774 cont_list[cont_count].sym_idx = symbuf_idx;
775 cont_list[cont_count].sym_end = symbuf_end;
776 cont_list[cont_count].symnum = symnum;
777 cont_list[cont_count].sym = sym;
778 cont_list[cont_count].stabs = p;
779 cont_count++;
780}
781
782void
783process_now(objfile)
784 struct objfile * objfile;
785{
786 int i;
787 /* save original state */
788 int save_symbuf_idx = symbuf_idx;
789 int save_symbuf_end = symbuf_end;
790 int save_symnum = symnum;
791 for (i=0; i<cont_count; i++)
792 {
793 /* set state as if we were parsing stabs strings
794 for this symbol */
795 symbuf_idx = cont_list[i].sym_idx; /* statics used by gdb */
796 symbuf_end = cont_list[i].sym_end;
797 symnum = cont_list[i].symnum;
e74acce4 798 resolve_cfront_continuation(objfile,cont_list[i].sym,cont_list[i].stabs);
94f5a25f
DP
799 }
800 /* restore original state */
801 symbuf_idx = save_symbuf_idx;
802 symbuf_end = save_symbuf_end;
803 symnum = save_symnum;
804 cont_count=0; /* reset for next run */
805}
806
807
9342ecb9
JG
808/* Name of last function encountered. Used in Solaris to approximate
809 object file boundaries. */
810static char *last_function_name;
811
bd5635a1
RP
812/* The address in memory of the string table of the object file we are
813 reading (which might not be the "main" object file, but might be a
a367db89
JK
814 shared library or some other dynamically loaded thing). This is
815 set by read_dbx_symtab when building psymtabs, and by
816 read_ofile_symtab when building symtabs, and is used only by
817 next_symbol_text. FIXME: If that is true, we don't need it when
818 building psymtabs, right? */
bd5635a1
RP
819static char *stringtab_global;
820
2b576293
C
821/* These variables are used to control fill_symbuf when the stabs
822 symbols are not contiguous (as may be the case when a COFF file is
823 linked using --split-by-reloc). */
824static struct stab_section_list *symbuf_sections;
825static unsigned int symbuf_left;
826static unsigned int symbuf_read;
827
bd5635a1
RP
828/* Refill the symbol table input buffer
829 and set the variables that control fetching entries from it.
830 Reports an error if no data available.
831 This function can read past the end of the symbol table
832 (into the string table) but this does no harm. */
833
7d9884b9
JG
834static void
835fill_symbuf (sym_bfd)
836 bfd *sym_bfd;
bd5635a1 837{
2b576293
C
838 unsigned int count;
839 int nbytes;
840
841 if (symbuf_sections == NULL)
842 count = sizeof (symbuf);
843 else
844 {
845 if (symbuf_left <= 0)
846 {
847 file_ptr filepos = symbuf_sections->section->filepos;
848 if (bfd_seek (sym_bfd, filepos, SEEK_SET) != 0)
849 perror_with_name (bfd_get_filename (sym_bfd));
850 symbuf_left = bfd_section_size (sym_bfd, symbuf_sections->section);
851 symbol_table_offset = filepos - symbuf_read;
852 symbuf_sections = symbuf_sections->next;
853 }
854
855 count = symbuf_left;
856 if (count > sizeof (symbuf))
857 count = sizeof (symbuf);
858 }
859
860 nbytes = bfd_read ((PTR)symbuf, count, 1, sym_bfd);
bd5635a1 861 if (nbytes < 0)
7d9884b9 862 perror_with_name (bfd_get_filename (sym_bfd));
bd5635a1
RP
863 else if (nbytes == 0)
864 error ("Premature end of file reading symbol table");
afe4ca15 865 symbuf_end = nbytes / symbol_size;
bd5635a1 866 symbuf_idx = 0;
2b576293
C
867 symbuf_left -= nbytes;
868 symbuf_read += nbytes;
bd5635a1
RP
869}
870
7d9884b9 871#define SWAP_SYMBOL(symp, abfd) \
bd5635a1 872 { \
7d9884b9 873 (symp)->n_strx = bfd_h_get_32(abfd, \
afe4ca15 874 (unsigned char *)&(symp)->n_strx); \
7d9884b9 875 (symp)->n_desc = bfd_h_get_16 (abfd, \
bd5635a1 876 (unsigned char *)&(symp)->n_desc); \
7d9884b9 877 (symp)->n_value = bfd_h_get_32 (abfd, \
bd5635a1
RP
878 (unsigned char *)&(symp)->n_value); \
879 }
880
881/* Invariant: The symbol pointed to by symbuf_idx is the first one
882 that hasn't been swapped. Swap the symbol at the same time
883 that symbuf_idx is incremented. */
884
885/* dbx allows the text of a symbol name to be continued into the
886 next symbol name! When such a continuation is encountered
887 (a \ at the end of the text of a name)
888 call this function to get the continuation. */
889
021959e2 890static char *
94f5a25f
DP
891dbx_next_symbol_text (objfile)
892 struct objfile *objfile;
bd5635a1
RP
893{
894 if (symbuf_idx == symbuf_end)
7d9884b9 895 fill_symbuf (symfile_bfd);
bd5635a1 896 symnum++;
7d9884b9 897 SWAP_SYMBOL(&symbuf[symbuf_idx], symfile_bfd);
94f5a25f 898 OBJSTAT (objfile, n_stabs++);
9342ecb9
JG
899 return symbuf[symbuf_idx++].n_strx + stringtab_global
900 + file_string_table_offset;
bd5635a1
RP
901}
902\f
bd5635a1
RP
903/* Initialize the list of bincls to contain none and have some
904 allocated. */
905
906static void
021959e2 907init_bincl_list (number, objfile)
bd5635a1 908 int number;
021959e2 909 struct objfile *objfile;
bd5635a1
RP
910{
911 bincls_allocated = number;
912 next_bincl = bincl_list = (struct header_file_location *)
318bf84f 913 xmmalloc (objfile -> md, bincls_allocated * sizeof(struct header_file_location));
bd5635a1
RP
914}
915
916/* Add a bincl to the list. */
917
918static void
919add_bincl_to_list (pst, name, instance)
920 struct partial_symtab *pst;
921 char *name;
922 int instance;
923{
924 if (next_bincl >= bincl_list + bincls_allocated)
925 {
926 int offset = next_bincl - bincl_list;
927 bincls_allocated *= 2;
928 bincl_list = (struct header_file_location *)
318bf84f 929 xmrealloc (pst->objfile->md, (char *)bincl_list,
bd5635a1
RP
930 bincls_allocated * sizeof (struct header_file_location));
931 next_bincl = bincl_list + offset;
932 }
933 next_bincl->pst = pst;
934 next_bincl->instance = instance;
935 next_bincl++->name = name;
936}
937
938/* Given a name, value pair, find the corresponding
939 bincl in the list. Return the partial symtab associated
940 with that header_file_location. */
941
9bba3334 942static struct partial_symtab *
bd5635a1
RP
943find_corresponding_bincl_psymtab (name, instance)
944 char *name;
945 int instance;
946{
947 struct header_file_location *bincl;
948
949 for (bincl = bincl_list; bincl < next_bincl; bincl++)
950 if (bincl->instance == instance
2e4964ad 951 && STREQ (name, bincl->name))
bd5635a1
RP
952 return bincl->pst;
953
26a859ec 954 complain (&repeated_header_complaint, name, symnum);
bd5635a1
RP
955 return (struct partial_symtab *) 0;
956}
957
958/* Free the storage allocated for the bincl list. */
959
960static void
021959e2
JG
961free_bincl_list (objfile)
962 struct objfile *objfile;
bd5635a1 963{
ac88ca20 964 mfree (objfile -> md, (PTR)bincl_list);
bd5635a1
RP
965 bincls_allocated = 0;
966}
967
5801f348
JK
968/* Scan a SunOs dynamic symbol table for symbols of interest and
969 add them to the minimal symbol table. */
970
971static void
972read_dbx_dynamic_symtab (section_offsets, objfile)
973 struct section_offsets *section_offsets;
974 struct objfile *objfile;
975{
976 bfd *abfd = objfile->obfd;
192b64e7 977 struct cleanup *back_to;
5801f348 978 int counter;
192b64e7
ILT
979 long dynsym_size;
980 long dynsym_count;
981 asymbol **dynsyms;
982 asymbol **symptr;
983 arelent **relptr;
984 long dynrel_size;
985 long dynrel_count;
986 arelent **dynrels;
5801f348 987 CORE_ADDR sym_value;
f69ecb9c 988 char *name;
5801f348
JK
989
990 /* Check that the symbol file has dynamic symbols that we know about.
991 bfd_arch_unknown can happen if we are reading a sun3 symbol file
992 on a sun4 host (and vice versa) and bfd is not configured
993 --with-target=all. This would trigger an assertion in bfd/sunos.c,
994 so we ignore the dynamic symbols in this case. */
995 if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
996 || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
192b64e7 997 || bfd_get_arch (abfd) == bfd_arch_unknown)
5801f348
JK
998 return;
999
192b64e7
ILT
1000 dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
1001 if (dynsym_size < 0)
5801f348
JK
1002 return;
1003
192b64e7
ILT
1004 dynsyms = (asymbol **) xmalloc (dynsym_size);
1005 back_to = make_cleanup (free, dynsyms);
1006
1007 dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
1008 if (dynsym_count < 0)
1009 {
1010 do_cleanups (back_to);
1011 return;
1012 }
1013
5801f348
JK
1014 /* Enter dynamic symbols into the minimal symbol table
1015 if this is a stripped executable. */
1016 if (bfd_get_symcount (abfd) <= 0)
1017 {
192b64e7
ILT
1018 symptr = dynsyms;
1019 for (counter = 0; counter < dynsym_count; counter++, symptr++)
5801f348 1020 {
192b64e7
ILT
1021 asymbol *sym = *symptr;
1022 asection *sec;
1023 int type;
1024
192b64e7 1025 sec = bfd_get_section (sym);
be78eb1a
PS
1026
1027 /* BFD symbols are section relative. */
0683ac4b
PS
1028 sym_value = sym->value + sec->vma;
1029
192b64e7 1030 if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
5801f348 1031 {
192b64e7
ILT
1032 sym_value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
1033 type = N_TEXT;
5801f348 1034 }
192b64e7
ILT
1035 else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
1036 {
1037 sym_value += ANOFFSET (section_offsets, SECT_OFF_DATA);
1038 type = N_DATA;
1039 }
1040 else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
5801f348 1041 {
192b64e7
ILT
1042 sym_value += ANOFFSET (section_offsets, SECT_OFF_BSS);
1043 type = N_BSS;
5801f348
JK
1044 }
1045 else
192b64e7
ILT
1046 continue;
1047
1048 if (sym->flags & BSF_GLOBAL)
1049 type |= N_EXT;
1050
b9e58503
PS
1051 record_minimal_symbol ((char *) bfd_asymbol_name (sym), sym_value,
1052 type, objfile);
5801f348
JK
1053 }
1054 }
1055
1056 /* Symbols from shared libraries have a dynamic relocation entry
1057 that points to the associated slot in the procedure linkage table.
1058 We make a mininal symbol table entry with type mst_solib_trampoline
1059 at the address in the procedure linkage table. */
192b64e7
ILT
1060 dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
1061 if (dynrel_size < 0)
1062 {
1063 do_cleanups (back_to);
1064 return;
1065 }
1066
1067 dynrels = (arelent **) xmalloc (dynrel_size);
1068 make_cleanup (free, dynrels);
5801f348 1069
192b64e7
ILT
1070 dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
1071 if (dynrel_count < 0)
1072 {
1073 do_cleanups (back_to);
1074 return;
1075 }
5801f348 1076
192b64e7 1077 for (counter = 0, relptr = dynrels;
5801f348 1078 counter < dynrel_count;
192b64e7 1079 counter++, relptr++)
5801f348 1080 {
0683ac4b 1081 arelent *rel = *relptr;
26a859ec
PS
1082 CORE_ADDR address =
1083 rel->address + ANOFFSET (section_offsets, SECT_OFF_DATA);
5801f348 1084
0683ac4b
PS
1085 switch (bfd_get_arch (abfd))
1086 {
1087 case bfd_arch_sparc:
1088 if (rel->howto->type != RELOC_JMP_SLOT)
1089 continue;
1090 break;
1091 case bfd_arch_m68k:
1092 /* `16' is the type BFD produces for a jump table relocation. */
1093 if (rel->howto->type != 16)
1094 continue;
5801f348 1095
0683ac4b
PS
1096 /* Adjust address in the jump table to point to
1097 the start of the bsr instruction. */
1098 address -= 2;
1099 break;
1100 default:
1101 continue;
1102 }
5801f348 1103
b9e58503 1104 name = (char *) bfd_asymbol_name (*rel->sym_ptr_ptr);
ace4b8d7
FF
1105 prim_record_minimal_symbol (name, address, mst_solib_trampoline,
1106 objfile);
5801f348 1107 }
192b64e7
ILT
1108
1109 do_cleanups (back_to);
5801f348
JK
1110}
1111
bd5635a1
RP
1112/* Given pointers to an a.out symbol table in core containing dbx
1113 style data, setup partial_symtab's describing each source file for
3624c875
FF
1114 which debugging information is available.
1115 SYMFILE_NAME is the name of the file we are reading from
2af231b8
JG
1116 and SECTION_OFFSETS is the set of offsets for the various sections
1117 of the file (a set of zeros if the mainline program). */
bd5635a1
RP
1118
1119static void
2af231b8
JG
1120read_dbx_symtab (section_offsets, objfile, text_addr, text_size)
1121 struct section_offsets *section_offsets;
7d9884b9 1122 struct objfile *objfile;
bd5635a1
RP
1123 CORE_ADDR text_addr;
1124 int text_size;
1125{
ac88ca20 1126 register struct internal_nlist *bufp = 0; /* =0 avoids gcc -Wall glitch */
bd5635a1 1127 register char *namestring;
bd5635a1
RP
1128 int nsl;
1129 int past_first_source_file = 0;
1130 CORE_ADDR last_o_file_start = 0;
94f5a25f 1131 CORE_ADDR last_function_start = 0;
0eb22669 1132 struct cleanup *back_to;
7d9884b9 1133 bfd *abfd;
3a179be1 1134 int textlow_not_set;
bd5635a1 1135
bd5635a1
RP
1136 /* Current partial symtab */
1137 struct partial_symtab *pst;
1138
1139 /* List of current psymtab's include files */
1140 char **psymtab_include_list;
1141 int includes_allocated;
1142 int includes_used;
1143
1144 /* Index within current psymtab dependency list */
1145 struct partial_symtab **dependency_list;
1146 int dependencies_used, dependencies_allocated;
1147
9342ecb9
JG
1148 /* FIXME. We probably want to change stringtab_global rather than add this
1149 while processing every symbol entry. FIXME. */
1150 file_string_table_offset = 0;
1151 next_file_string_table_offset = 0;
1152
3624c875 1153 stringtab_global = DBX_STRINGTAB (objfile);
bd5635a1
RP
1154
1155 pst = (struct partial_symtab *) 0;
1156
1157 includes_allocated = 30;
1158 includes_used = 0;
1159 psymtab_include_list = (char **) alloca (includes_allocated *
1160 sizeof (char *));
1161
1162 dependencies_allocated = 30;
1163 dependencies_used = 0;
1164 dependency_list =
1165 (struct partial_symtab **) alloca (dependencies_allocated *
1166 sizeof (struct partial_symtab *));
1167
bd5635a1 1168 /* Init bincl list */
021959e2 1169 init_bincl_list (20, objfile);
0eb22669 1170 back_to = make_cleanup (free_bincl_list, objfile);
bd5635a1 1171
3416d90b 1172 last_source_file = NULL;
bd5635a1 1173
9d2b8d50 1174 lowest_text_address = (CORE_ADDR)-1;
bd5635a1 1175
7d9884b9
JG
1176 symfile_bfd = objfile->obfd; /* For next_text_symbol */
1177 abfd = objfile->obfd;
bd5635a1 1178 symbuf_end = symbuf_idx = 0;
aab77d5f 1179 next_symbol_text_func = dbx_next_symbol_text;
3a179be1 1180 textlow_not_set = 1;
bd5635a1 1181
3624c875 1182 for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
bd5635a1
RP
1183 {
1184 /* Get the symbol for this run and pull out some info */
1185 QUIT; /* allow this to be interruptable */
1186 if (symbuf_idx == symbuf_end)
7d9884b9 1187 fill_symbuf (abfd);
bd5635a1
RP
1188 bufp = &symbuf[symbuf_idx++];
1189
1190 /*
1191 * Special case to speed up readin.
1192 */
1193 if (bufp->n_type == (unsigned char)N_SLINE) continue;
1194
7d9884b9 1195 SWAP_SYMBOL (bufp, abfd);
94f5a25f 1196 OBJSTAT (objfile, n_stabs++);
bd5635a1
RP
1197
1198 /* Ok. There is a lot of code duplicated in the rest of this
1199 switch statement (for efficiency reasons). Since I don't
1200 like duplicating code, I will do my penance here, and
1201 describe the code which is duplicated:
1202
1203 *) The assignment to namestring.
1204 *) The call to strchr.
1205 *) The addition of a partial symbol the the two partial
1206 symbol lists. This last is a large section of code, so
1207 I've imbedded it in the following macro.
1208 */
1209
1210/* Set namestring based on bufp. If the string table index is invalid,
1211 give a fake name, and print a single error message per symbol file read,
1212 rather than abort the symbol reading or flood the user with messages. */
9342ecb9
JG
1213
1214/*FIXME: Too many adds and indirections in here for the inner loop. */
bd5635a1 1215#define SET_NAMESTRING()\
9342ecb9
JG
1216 if (((unsigned)bufp->n_strx + file_string_table_offset) >= \
1217 DBX_STRINGTAB_SIZE (objfile)) { \
51b80b00 1218 complain (&string_table_offset_complaint, symnum); \
5801f348 1219 namestring = "<bad string table offset>"; \
bd5635a1 1220 } else \
9342ecb9
JG
1221 namestring = bufp->n_strx + file_string_table_offset + \
1222 DBX_STRINGTAB (objfile)
bd5635a1 1223
7e258d18
PB
1224#define CUR_SYMBOL_TYPE bufp->n_type
1225#define CUR_SYMBOL_VALUE bufp->n_value
1226#define DBXREAD_ONLY
2af231b8
JG
1227#define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
1228 start_psymtab(ofile, secoff, fname, low, symoff, global_syms, static_syms)
3a179be1
SG
1229#define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)\
1230 end_psymtab(pst,ilist,ninc,c_off,c_text,dep_list,n_deps,textlow_not_set)
aab77d5f 1231
7e258d18 1232#include "partial-stab.h"
bd5635a1
RP
1233 }
1234
1235 /* If there's stuff to be cleaned up, clean it up. */
3624c875 1236 if (DBX_SYMCOUNT (objfile) > 0 /* We have some syms */
9342ecb9
JG
1237/*FIXME, does this have a bug at start address 0? */
1238 && last_o_file_start
3624c875
FF
1239 && objfile -> ei.entry_point < bufp->n_value
1240 && objfile -> ei.entry_point >= last_o_file_start)
bd5635a1 1241 {
3624c875
FF
1242 objfile -> ei.entry_file_lowpc = last_o_file_start;
1243 objfile -> ei.entry_file_highpc = bufp->n_value;
bd5635a1
RP
1244 }
1245
1246 if (pst)
1247 {
1248 end_psymtab (pst, psymtab_include_list, includes_used,
9d2b8d50
JK
1249 symnum * symbol_size,
1250 (lowest_text_address == (CORE_ADDR)-1
2fe3b329
PS
1251 ? (text_addr + section_offsets->offsets[SECT_OFF_TEXT])
1252 : lowest_text_address)
9d2b8d50 1253 + text_size,
3a179be1 1254 dependency_list, dependencies_used, textlow_not_set);
bd5635a1
RP
1255 }
1256
0eb22669 1257 do_cleanups (back_to);
bd5635a1
RP
1258}
1259
4a35d6e9
FF
1260/* Allocate and partially fill a partial symtab. It will be
1261 completely filled at the end of the symbol list.
1262
1263 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1264 is the address relative to which its symbols are (incremental) or 0
1265 (normal). */
1266
bd5635a1 1267
7e258d18 1268struct partial_symtab *
2af231b8 1269start_psymtab (objfile, section_offsets,
bd5635a1 1270 filename, textlow, ldsymoff, global_syms, static_syms)
7d9884b9 1271 struct objfile *objfile;
2af231b8 1272 struct section_offsets *section_offsets;
bd5635a1
RP
1273 char *filename;
1274 CORE_ADDR textlow;
1275 int ldsymoff;
94f5a25f
DP
1276 struct partial_symbol **global_syms;
1277 struct partial_symbol **static_syms;
bd5635a1
RP
1278{
1279 struct partial_symtab *result =
2af231b8 1280 start_psymtab_common(objfile, section_offsets,
021959e2 1281 filename, textlow, global_syms, static_syms);
bd5635a1 1282
021959e2
JG
1283 result->read_symtab_private = (char *)
1284 obstack_alloc (&objfile -> psymbol_obstack, sizeof (struct symloc));
1285 LDSYMOFF(result) = ldsymoff;
bd5635a1 1286 result->read_symtab = dbx_psymtab_to_symtab;
9342ecb9
JG
1287 SYMBOL_SIZE(result) = symbol_size;
1288 SYMBOL_OFFSET(result) = symbol_table_offset;
1289 STRING_OFFSET(result) = string_table_offset;
1290 FILE_STRING_OFFSET(result) = file_string_table_offset;
bd5635a1 1291
2af231b8
JG
1292 /* If we're handling an ELF file, drag some section-relocation info
1293 for this source file out of the ELF symbol table, to compensate for
1294 Sun brain death. This replaces the section_offsets in this psymtab,
1295 if successful. */
1296 elfstab_offset_sections (objfile, result);
1297
2e4964ad
FF
1298 /* Deduce the source language from the filename for this psymtab. */
1299 psymtab_language = deduce_language_from_filename (filename);
1300
bd5635a1
RP
1301 return result;
1302}
1303
cbba020f
PS
1304/* Close off the current usage of PST.
1305 Returns PST or NULL if the partial symtab was empty and thrown away.
bd5635a1 1306
cbba020f 1307 FIXME: List variables and peculiarities of same. */
bd5635a1 1308
cbba020f 1309struct partial_symtab *
bd5635a1 1310end_psymtab (pst, include_list, num_includes, capping_symbol_offset,
3a179be1 1311 capping_text, dependency_list, number_dependencies, textlow_not_set)
bd5635a1
RP
1312 struct partial_symtab *pst;
1313 char **include_list;
1314 int num_includes;
1315 int capping_symbol_offset;
1316 CORE_ADDR capping_text;
1317 struct partial_symtab **dependency_list;
1318 int number_dependencies;
3a179be1 1319 int textlow_not_set;
bd5635a1
RP
1320{
1321 int i;
021959e2 1322 struct objfile *objfile = pst -> objfile;
bd5635a1 1323
7e258d18 1324 if (capping_symbol_offset != -1)
3a179be1 1325 LDSYMLEN(pst) = capping_symbol_offset - LDSYMOFF(pst);
bd5635a1
RP
1326 pst->texthigh = capping_text;
1327
b9e58503 1328#ifdef SOFUN_ADDRESS_MAYBE_MISSING
9342ecb9
JG
1329 /* Under Solaris, the N_SO symbols always have a value of 0,
1330 instead of the usual address of the .o file. Therefore,
1331 we have to do some tricks to fill in texthigh and textlow.
1332 The first trick is in partial-stab.h: if we see a static
1333 or global function, and the textlow for the current pst
3a179be1
SG
1334 is not set (ie: textlow_not_set), then we use that function's
1335 address for the textlow of the pst. */
9342ecb9 1336
b9e58503 1337 /* Now, to fill in texthigh, we remember the last function seen
9342ecb9
JG
1338 in the .o file (also in partial-stab.h). Also, there's a hack in
1339 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
1340 to here via the misc_info field. Therefore, we can fill in
1341 a reliable texthigh by taking the address plus size of the
b9e58503 1342 last function in the file. */
9342ecb9 1343
3a179be1
SG
1344 if (pst->texthigh == 0 && last_function_name)
1345 {
1346 char *p;
1347 int n;
1348 struct minimal_symbol *minsym;
1349
1350 p = strchr (last_function_name, ':');
1351 if (p == NULL)
1352 p = last_function_name;
1353 n = p - last_function_name;
1354 p = alloca (n + 1);
1355 strncpy (p, last_function_name, n);
1356 p[n] = 0;
9342ecb9 1357
3a179be1 1358 minsym = lookup_minimal_symbol (p, pst->filename, objfile);
9342ecb9 1359
3a179be1
SG
1360 if (minsym)
1361 pst->texthigh = SYMBOL_VALUE_ADDRESS (minsym)
1362 + (long) MSYMBOL_INFO (minsym);
b9e58503 1363
3a179be1
SG
1364 last_function_name = NULL;
1365 }
9342ecb9
JG
1366
1367 /* this test will be true if the last .o file is only data */
3a179be1 1368 if (textlow_not_set)
9342ecb9 1369 pst->textlow = pst->texthigh;
3a179be1
SG
1370 else
1371 {
1372 struct partial_symtab *p1;
9342ecb9 1373
3a179be1
SG
1374 /* If we know our own starting text address, then walk through all other
1375 psymtabs for this objfile, and if any didn't know their ending text
1376 address, set it to our starting address. Take care to not set our
1377 own ending address to our starting address, nor to set addresses on
1378 `dependency' files that have both textlow and texthigh zero. */
1379
1380 ALL_OBJFILE_PSYMTABS (objfile, p1)
1381 {
1382 if (p1->texthigh == 0 && p1->textlow != 0 && p1 != pst)
1383 {
1384 p1->texthigh = pst->textlow;
1385 /* if this file has only data, then make textlow match texthigh */
1386 if (p1->textlow == 0)
1387 p1->textlow = p1->texthigh;
1388 }
1389 }
9342ecb9 1390 }
9342ecb9
JG
1391
1392 /* End of kludge for patching Solaris textlow and texthigh. */
b9e58503 1393#endif /* SOFUN_ADDRESS_MAYBE_MISSING. */
9342ecb9 1394
bd5635a1 1395 pst->n_global_syms =
021959e2 1396 objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
bd5635a1 1397 pst->n_static_syms =
021959e2 1398 objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
bd5635a1
RP
1399
1400 pst->number_of_dependencies = number_dependencies;
1401 if (number_dependencies)
1402 {
1403 pst->dependencies = (struct partial_symtab **)
021959e2 1404 obstack_alloc (&objfile->psymbol_obstack,
bd5635a1 1405 number_dependencies * sizeof (struct partial_symtab *));
7e258d18 1406 memcpy (pst->dependencies, dependency_list,
bd5635a1
RP
1407 number_dependencies * sizeof (struct partial_symtab *));
1408 }
1409 else
1410 pst->dependencies = 0;
1411
1412 for (i = 0; i < num_includes; i++)
1413 {
bd5635a1 1414 struct partial_symtab *subpst =
021959e2 1415 allocate_psymtab (include_list[i], objfile);
7d9884b9 1416
2af231b8 1417 subpst->section_offsets = pst->section_offsets;
021959e2
JG
1418 subpst->read_symtab_private =
1419 (char *) obstack_alloc (&objfile->psymbol_obstack,
1420 sizeof (struct symloc));
4a35d6e9
FF
1421 LDSYMOFF(subpst) =
1422 LDSYMLEN(subpst) =
bd5635a1
RP
1423 subpst->textlow =
1424 subpst->texthigh = 0;
1425
3f83182d
JG
1426 /* We could save slight bits of space by only making one of these,
1427 shared by the entire set of include files. FIXME-someday. */
bd5635a1 1428 subpst->dependencies = (struct partial_symtab **)
021959e2 1429 obstack_alloc (&objfile->psymbol_obstack,
bd5635a1
RP
1430 sizeof (struct partial_symtab *));
1431 subpst->dependencies[0] = pst;
1432 subpst->number_of_dependencies = 1;
1433
1434 subpst->globals_offset =
1435 subpst->n_global_syms =
1436 subpst->statics_offset =
1437 subpst->n_static_syms = 0;
1438
1439 subpst->readin = 0;
9a822037 1440 subpst->symtab = 0;
2707b48a 1441 subpst->read_symtab = pst->read_symtab;
bd5635a1
RP
1442 }
1443
021959e2 1444 sort_pst_symbols (pst);
bd5635a1 1445
f9623881
JG
1446 /* If there is already a psymtab or symtab for a file of this name, remove it.
1447 (If there is a symtab, more drastic things also happen.)
1448 This happens in VxWorks. */
1449 free_named_symtabs (pst->filename);
1450
7d9884b9 1451 if (num_includes == 0
5801f348
JK
1452 && number_dependencies == 0
1453 && pst->n_global_syms == 0
1454 && pst->n_static_syms == 0)
1455 {
1456 /* Throw away this psymtab, it's empty. We can't deallocate it, since
1457 it is on the obstack, but we can forget to chain it on the list. */
1458 /* Empty psymtabs happen as a result of header files which don't have
1459 any symbols in them. There can be a lot of them. But this check
1460 is wrong, in that a psymtab with N_SLINE entries but nothing else
1461 is not empty, but we don't realize that. Fixing that without slowing
1462 things down might be tricky. */
1463 struct partial_symtab *prev_pst;
1464
1465 /* First, snip it out of the psymtab chain */
1466
1467 if (pst->objfile->psymtabs == pst)
1468 pst->objfile->psymtabs = pst->next;
1469 else
1470 for (prev_pst = pst->objfile->psymtabs; prev_pst; prev_pst = pst->next)
1471 if (prev_pst->next == pst)
1472 prev_pst->next = pst->next;
318bf84f 1473
5801f348 1474 /* Next, put it on a free list for recycling */
318bf84f 1475
5801f348
JK
1476 pst->next = pst->objfile->free_psymtabs;
1477 pst->objfile->free_psymtabs = pst;
cbba020f 1478
5801f348
JK
1479 /* Indicate that psymtab was thrown away. */
1480 pst = (struct partial_symtab *)NULL;
1481 }
cbba020f 1482 return pst;
bd5635a1
RP
1483}
1484\f
1485static void
4c07f28d 1486dbx_psymtab_to_symtab_1 (pst)
bd5635a1 1487 struct partial_symtab *pst;
bd5635a1
RP
1488{
1489 struct cleanup *old_chain;
1490 int i;
1491
1492 if (!pst)
1493 return;
1494
1495 if (pst->readin)
1496 {
199b2450 1497 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
bd5635a1
RP
1498 pst->filename);
1499 return;
1500 }
1501
afe4ca15 1502 /* Read in all partial symtabs on which this one is dependent */
bd5635a1
RP
1503 for (i = 0; i < pst->number_of_dependencies; i++)
1504 if (!pst->dependencies[i]->readin)
1505 {
1506 /* Inform about additional files that need to be read in. */
1507 if (info_verbose)
1508 {
199b2450 1509 fputs_filtered (" ", gdb_stdout);
bd5635a1 1510 wrap_here ("");
199b2450 1511 fputs_filtered ("and ", gdb_stdout);
bd5635a1
RP
1512 wrap_here ("");
1513 printf_filtered ("%s...", pst->dependencies[i]->filename);
1514 wrap_here (""); /* Flush output */
199b2450 1515 gdb_flush (gdb_stdout);
bd5635a1 1516 }
4c07f28d 1517 dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
bd5635a1
RP
1518 }
1519
4a35d6e9 1520 if (LDSYMLEN(pst)) /* Otherwise it's a dummy */
bd5635a1
RP
1521 {
1522 /* Init stuff necessary for reading in symbols */
3416d90b 1523 stabsread_init ();
c0302457 1524 buildsym_init ();
bd5635a1 1525 old_chain = make_cleanup (really_free_pendings, 0);
9342ecb9 1526 file_string_table_offset = FILE_STRING_OFFSET (pst);
4c07f28d
FF
1527 symbol_size = SYMBOL_SIZE (pst);
1528
1529 /* Read in this file's symbols */
2c7ab4ca 1530 bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
574dac8e 1531 read_ofile_symtab (pst);
9404978d 1532 sort_symtab_syms (pst->symtab);
bd5635a1
RP
1533
1534 do_cleanups (old_chain);
1535 }
1536
1537 pst->readin = 1;
1538}
1539
ac88ca20
JG
1540/* Read in all of the symbols for a given psymtab for real.
1541 Be verbose about it if the user wants that. */
1542
bd5635a1
RP
1543static void
1544dbx_psymtab_to_symtab (pst)
1545 struct partial_symtab *pst;
1546{
bd5635a1 1547 bfd *sym_bfd;
bd5635a1
RP
1548
1549 if (!pst)
1550 return;
1551
1552 if (pst->readin)
1553 {
199b2450 1554 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
bd5635a1
RP
1555 pst->filename);
1556 return;
1557 }
1558
4a35d6e9 1559 if (LDSYMLEN(pst) || pst->number_of_dependencies)
bd5635a1
RP
1560 {
1561 /* Print the message now, before reading the string table,
1562 to avoid disconcerting pauses. */
1563 if (info_verbose)
1564 {
1565 printf_filtered ("Reading in symbols for %s...", pst->filename);
199b2450 1566 gdb_flush (gdb_stdout);
bd5635a1
RP
1567 }
1568
7d9884b9 1569 sym_bfd = pst->objfile->obfd;
bd5635a1 1570
aab77d5f
PB
1571 next_symbol_text_func = dbx_next_symbol_text;
1572
4c07f28d 1573 dbx_psymtab_to_symtab_1 (pst);
bd5635a1
RP
1574
1575 /* Match with global symbols. This only needs to be done once,
1576 after all of the symtabs and dependencies have been read in. */
021959e2 1577 scan_file_globals (pst->objfile);
bd5635a1 1578
bd5635a1
RP
1579 /* Finish up the debug error message. */
1580 if (info_verbose)
1581 printf_filtered ("done.\n");
1582 }
1583}
1584
574dac8e 1585/* Read in a defined section of a specific object file's symbols. */
9342ecb9 1586
574dac8e
JK
1587static void
1588read_ofile_symtab (pst)
1589 struct partial_symtab *pst;
bd5635a1
RP
1590{
1591 register char *namestring;
7d9884b9 1592 register struct internal_nlist *bufp;
bd5635a1 1593 unsigned char type;
afe4ca15 1594 unsigned max_symnum;
7d9884b9 1595 register bfd *abfd;
574dac8e
JK
1596 struct objfile *objfile;
1597 int sym_offset; /* Offset to start of symbols to read */
1598 int sym_size; /* Size of symbols to read */
1599 CORE_ADDR text_offset; /* Start of text segment for symbols */
1600 int text_size; /* Size of text segment for symbols */
1601 struct section_offsets *section_offsets;
1602
1603 objfile = pst->objfile;
1604 sym_offset = LDSYMOFF(pst);
1605 sym_size = LDSYMLEN(pst);
1606 text_offset = pst->textlow;
1607 text_size = pst->texthigh - pst->textlow;
1608 section_offsets = pst->section_offsets;
7d9884b9 1609
021959e2 1610 current_objfile = objfile;
3416d90b 1611 subfile_stack = NULL;
bd5635a1 1612
3624c875 1613 stringtab_global = DBX_STRINGTAB (objfile);
3416d90b 1614 last_source_file = NULL;
bd5635a1 1615
7d9884b9
JG
1616 abfd = objfile->obfd;
1617 symfile_bfd = objfile->obfd; /* Implicit param to next_text_symbol */
bd5635a1
RP
1618 symbuf_end = symbuf_idx = 0;
1619
1620 /* It is necessary to actually read one symbol *before* the start
1621 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
1622 occurs before the N_SO symbol.
1623
1624 Detecting this in read_dbx_symtab
1625 would slow down initial readin, so we look for it here instead. */
9342ecb9 1626 if (!processing_acc_compilation && sym_offset >= (int)symbol_size)
bd5635a1 1627 {
2c7ab4ca 1628 bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
7d9884b9 1629 fill_symbuf (abfd);
bd5635a1 1630 bufp = &symbuf[symbuf_idx++];
7d9884b9 1631 SWAP_SYMBOL (bufp, abfd);
94f5a25f 1632 OBJSTAT (objfile, n_stabs++);
bd5635a1 1633
afe4ca15 1634 SET_NAMESTRING ();
bd5635a1 1635
1aed6766
SG
1636 processing_gcc_compilation = 0;
1637 if (bufp->n_type == N_TEXT)
1638 {
db2302cb
PS
1639 const char *tempstring = namestring;
1640
2e4964ad 1641 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1aed6766 1642 processing_gcc_compilation = 1;
2e4964ad 1643 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1aed6766 1644 processing_gcc_compilation = 2;
db2302cb
PS
1645 if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
1646 ++tempstring;
1647 if (STREQN (tempstring, "__gnu_compiled", 14))
1648 processing_gcc_compilation = 2;
1aed6766 1649 }
3416d90b
FF
1650
1651 /* Try to select a C++ demangling based on the compilation unit
1652 producer. */
1653
1654 if (processing_gcc_compilation)
1655 {
1aed6766 1656 if (AUTO_DEMANGLING)
3416d90b
FF
1657 {
1658 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1659 }
3416d90b 1660 }
bd5635a1
RP
1661 }
1662 else
1663 {
1664 /* The N_SO starting this symtab is the first symbol, so we
1665 better not check the symbol before it. I'm not this can
1666 happen, but it doesn't hurt to check for it. */
2c7ab4ca 1667 bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
bd5635a1
RP
1668 processing_gcc_compilation = 0;
1669 }
1670
1671 if (symbuf_idx == symbuf_end)
7d9884b9 1672 fill_symbuf (abfd);
bd5635a1
RP
1673 bufp = &symbuf[symbuf_idx];
1674 if (bufp->n_type != (unsigned char)N_SO)
1675 error("First symbol in segment of executable not a source symbol");
1676
afe4ca15
JG
1677 max_symnum = sym_size / symbol_size;
1678
bd5635a1 1679 for (symnum = 0;
afe4ca15 1680 symnum < max_symnum;
bd5635a1
RP
1681 symnum++)
1682 {
1683 QUIT; /* Allow this to be interruptable */
1684 if (symbuf_idx == symbuf_end)
7d9884b9 1685 fill_symbuf(abfd);
bd5635a1 1686 bufp = &symbuf[symbuf_idx++];
7d9884b9 1687 SWAP_SYMBOL (bufp, abfd);
94f5a25f 1688 OBJSTAT (objfile, n_stabs++);
bd5635a1 1689
c0302457 1690 type = bufp->n_type;
bd5635a1 1691
afe4ca15 1692 SET_NAMESTRING ();
bd5635a1 1693
7d9884b9 1694 if (type & N_STAB) {
c55e6167 1695 process_one_symbol (type, bufp->n_desc, bufp->n_value,
2af231b8 1696 namestring, section_offsets, objfile);
7d9884b9 1697 }
bd5635a1
RP
1698 /* We skip checking for a new .o or -l file; that should never
1699 happen in this routine. */
1aed6766 1700 else if (type == N_TEXT)
3416d90b
FF
1701 {
1702 /* I don't think this code will ever be executed, because
1703 the GCC_COMPILED_FLAG_SYMBOL usually is right before
1704 the N_SO symbol which starts this source file.
1705 However, there is no reason not to accept
1706 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
1aed6766 1707
2e4964ad 1708 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
1aed6766 1709 processing_gcc_compilation = 1;
2e4964ad 1710 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
1aed6766
SG
1711 processing_gcc_compilation = 2;
1712
1aed6766 1713 if (AUTO_DEMANGLING)
3416d90b
FF
1714 {
1715 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
1716 }
3416d90b 1717 }
bd5635a1
RP
1718 else if (type & N_EXT || type == (unsigned char)N_TEXT
1719 || type == (unsigned char)N_NBTEXT
0c4d2cc2 1720 ) {
bd5635a1
RP
1721 /* Global symbol: see if we came across a dbx defintion for
1722 a corresponding symbol. If so, store the value. Remove
1723 syms from the chain when their values are stored, but
1724 search the whole chain, as there may be several syms from
1725 different files with the same name. */
1726 /* This is probably not true. Since the files will be read
1727 in one at a time, each reference to a global symbol will
1728 be satisfied in each file as it appears. So we skip this
1729 section. */
1730 ;
0c4d2cc2 1731 }
bd5635a1 1732 }
9404978d 1733
021959e2 1734 current_objfile = NULL;
9342ecb9
JG
1735
1736 /* In a Solaris elf file, this variable, which comes from the
1737 value of the N_SO symbol, will still be 0. Luckily, text_offset,
1738 which comes from pst->textlow is correct. */
1739 if (last_source_start_addr == 0)
1740 last_source_start_addr = text_offset;
1741
94f5a25f
DP
1742 /* In reordered executables last_source_start_addr may not be the
1743 lower bound for this symtab, instead use text_offset which comes
1744 from pst->textlow which is correct. */
1745 if (last_source_start_addr > text_offset)
1746 last_source_start_addr = text_offset;
1747
1748 pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT);
1749
1750 if (ARM_DEMANGLING) /* process incomplete C++ types now */
1751 process_now(objfile);
1752
3416d90b 1753 end_stabs ();
bd5635a1 1754}
574dac8e 1755
bd5635a1 1756\f
c55e6167
JG
1757/* This handles a single symbol from the symbol-file, building symbols
1758 into a GDB symtab. It takes these arguments and an implicit argument.
1759
1760 TYPE is the type field of the ".stab" symbol entry.
1761 DESC is the desc field of the ".stab" entry.
1762 VALU is the value field of the ".stab" entry.
1763 NAME is the symbol name, in our address space.
2af231b8
JG
1764 SECTION_OFFSETS is a set of amounts by which the sections of this object
1765 file were relocated when it was loaded into memory.
1766 All symbols that refer
1767 to memory locations need to be offset by these amounts.
9342ecb9 1768 OBJFILE is the object file from which we are reading symbols.
c55e6167
JG
1769 It is used in end_symtab. */
1770
7e258d18 1771void
2af231b8 1772process_one_symbol (type, desc, valu, name, section_offsets, objfile)
bd5635a1
RP
1773 int type, desc;
1774 CORE_ADDR valu;
1775 char *name;
2af231b8 1776 struct section_offsets *section_offsets;
9342ecb9 1777 struct objfile *objfile;
bd5635a1 1778{
a5e6391b
JK
1779#ifdef SUN_FIXED_LBRAC_BUG
1780 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
1781 to correct the address of N_LBRAC's. If it is not defined, then
1782 we never need to correct the addresses. */
1783
0cf9329b 1784 /* This records the last pc address we've seen. We depend on there being
bd5635a1
RP
1785 an SLINE or FUN or SO before the first LBRAC, since the variable does
1786 not get reset in between reads of different symbol files. */
1787 static CORE_ADDR last_pc_address;
a5e6391b 1788#endif
8357834f 1789
bd5635a1 1790 register struct context_stack *new;
9342ecb9
JG
1791 /* This remembers the address of the start of a function. It is used
1792 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
1793 relative to the current function's start address. On systems
2af231b8
JG
1794 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
1795 used to relocate these symbol types rather than SECTION_OFFSETS. */
9342ecb9 1796 static CORE_ADDR function_start_offset;
bd5635a1 1797
8357834f 1798 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
b8ec9a79 1799 file. Used to detect the SunPRO solaris compiler. */
4d57c599 1800 static int n_opt_found;
8357834f 1801
b8ec9a79
JK
1802 /* The stab type used for the definition of the last function.
1803 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
1804 static int function_stab_type = 0;
1805
574dac8e
JK
1806 if (!block_address_function_relative)
1807 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
1808 function start address, so just use the text offset. */
1809 function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT);
51b80b00 1810
bd5635a1
RP
1811 /* Something is wrong if we see real data before
1812 seeing a source file name. */
1813
3416d90b 1814 if (last_source_file == NULL && type != (unsigned char)N_SO)
bd5635a1 1815 {
a5e6391b
JK
1816 /* Ignore any symbols which appear before an N_SO symbol. Currently
1817 no one puts symbols there, but we should deal gracefully with the
1818 case. A complain()t might be in order (if !IGNORE_SYMBOL (type)),
1819 but this should not be an error (). */
1820 return;
bd5635a1
RP
1821 }
1822
1823 switch (type)
1824 {
1825 case N_FUN:
1826 case N_FNAME:
94f5a25f
DP
1827
1828 if (! strcmp (name, ""))
1829 {
1830 /* This N_FUN marks the end of a function. This closes off the
1831 current block. */
1832 within_function = 0;
1833 new = pop_context ();
1834
1835 /* Make a block for the local symbols within. */
1836 finish_block (new->name, &local_symbols, new->old_blocks,
1837 function_start_offset, function_start_offset + valu,
1838 objfile);
1839 break;
1840 }
1841
2af231b8
JG
1842 /* Relocate for dynamic loading */
1843 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
b8ec9a79 1844 goto define_a_symbol;
bd5635a1 1845
bd5635a1
RP
1846 case N_LBRAC:
1847 /* This "symbol" just indicates the start of an inner lexical
1848 context within a function. */
1849
b9e58503
PS
1850 /* Ignore extra outermost context from SunPRO cc and acc. */
1851 if (n_opt_found && desc == 1)
1852 break;
1853
574dac8e
JK
1854#if defined(BLOCK_ADDRESS_ABSOLUTE)
1855 /* Relocate for dynamic loading (?). */
9342ecb9 1856 valu += function_start_offset;
c55e6167 1857#else
574dac8e
JK
1858 if (block_address_function_relative)
1859 /* Relocate for Sun ELF acc fn-relative syms. */
1860 valu += function_start_offset;
1861 else
1862 /* On most machines, the block addresses are relative to the
1863 N_SO, the linker did not relocate them (sigh). */
1864 valu += last_source_start_addr;
bd5635a1
RP
1865#endif
1866
a5e6391b 1867#ifdef SUN_FIXED_LBRAC_BUG
8357834f 1868 if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address) {
bd5635a1 1869 /* Patch current LBRAC pc value to match last handy pc value */
51b80b00 1870 complain (&lbrac_complaint);
bd5635a1
RP
1871 valu = last_pc_address;
1872 }
a5e6391b 1873#endif
7d9884b9 1874 new = push_context (desc, valu);
bd5635a1
RP
1875 break;
1876
1877 case N_RBRAC:
1878 /* This "symbol" just indicates the end of an inner lexical
1879 context that was started with N_LBRAC. */
1880
b9e58503
PS
1881 /* Ignore extra outermost context from SunPRO cc and acc. */
1882 if (n_opt_found && desc == 1)
1883 break;
1884
574dac8e
JK
1885#if defined(BLOCK_ADDRESS_ABSOLUTE)
1886 /* Relocate for dynamic loading (?). */
9342ecb9 1887 valu += function_start_offset;
c55e6167 1888#else
574dac8e
JK
1889 if (block_address_function_relative)
1890 /* Relocate for Sun ELF acc fn-relative syms. */
1891 valu += function_start_offset;
1892 else
1893 /* On most machines, the block addresses are relative to the
1894 N_SO, the linker did not relocate them (sigh). */
1895 valu += last_source_start_addr;
bd5635a1
RP
1896#endif
1897
7d9884b9 1898 new = pop_context();
bd5635a1 1899 if (desc != new->depth)
51b80b00 1900 complain (&lbrac_mismatch_complaint, symnum);
bd5635a1
RP
1901
1902 /* Some compilers put the variable decls inside of an
1903 LBRAC/RBRAC block. This macro should be nonzero if this
1904 is true. DESC is N_DESC from the N_RBRAC symbol.
0cf9329b
PB
1905 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
1906 or the GCC2_COMPILED_SYMBOL. */
bd5635a1
RP
1907#if !defined (VARIABLES_INSIDE_BLOCK)
1908#define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
1909#endif
1910
1911 /* Can only use new->locals as local symbols here if we're in
1912 gcc or on a machine that puts them before the lbrack. */
1913 if (!VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1914 local_symbols = new->locals;
1915
2f8c3639
JL
1916 if (context_stack_depth
1917 > !VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
bd5635a1 1918 {
2f8c3639
JL
1919 /* This is not the outermost LBRAC...RBRAC pair in the function,
1920 its local symbols preceded it, and are the ones just recovered
1921 from the context stack. Define the block for them (but don't
1922 bother if the block contains no symbols. Should we complain
1923 on blocks without symbols? I can't think of any useful purpose
1924 for them). */
1925 if (local_symbols != NULL)
bd5635a1 1926 {
2f8c3639
JL
1927 /* Muzzle a compiler bug that makes end < start. (which
1928 compilers? Is this ever harmful?). */
1929 if (new->start_addr > valu)
1930 {
1931 complain (&lbrac_rbrac_complaint);
1932 new->start_addr = valu;
1933 }
1934 /* Make a block for the local symbols within. */
1935 finish_block (0, &local_symbols, new->old_blocks,
1936 new->start_addr, valu, objfile);
bd5635a1 1937 }
bd5635a1
RP
1938 }
1939 else
1940 {
2f8c3639
JL
1941 /* This is the outermost LBRAC...RBRAC pair. There is no
1942 need to do anything; leave the symbols that preceded it
1943 to be attached to the function's own block. We need to
1944 indicate that we just moved outside of the function. */
bd5635a1
RP
1945 within_function = 0;
1946 }
2f8c3639 1947
bd5635a1
RP
1948 if (VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
1949 /* Now pop locals of block just finished. */
1950 local_symbols = new->locals;
1951 break;
1952
9bb30452 1953 case N_FN:
6150cc73 1954 case N_FN_SEQ:
9bb30452 1955 /* This kind of symbol indicates the start of an object file. */
2af231b8
JG
1956 /* Relocate for dynamic loading */
1957 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
bd5635a1
RP
1958 break;
1959
1960 case N_SO:
1961 /* This type of symbol indicates the start of data
1962 for one source file.
1963 Finish the symbol table of the previous source file
1964 (if any) and start accumulating a new symbol table. */
2af231b8
JG
1965 /* Relocate for dynamic loading */
1966 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
c55e6167 1967
8357834f
JK
1968 n_opt_found = 0;
1969
a5e6391b 1970#ifdef SUN_FIXED_LBRAC_BUG
bd5635a1 1971 last_pc_address = valu; /* Save for SunOS bug circumcision */
a5e6391b 1972#endif
8357834f 1973
bd5635a1
RP
1974#ifdef PCC_SOL_BROKEN
1975 /* pcc bug, occasionally puts out SO for SOL. */
1976 if (context_stack_depth > 0)
1977 {
1978 start_subfile (name, NULL);
1979 break;
1980 }
1981#endif
1982 if (last_source_file)
7e258d18
PB
1983 {
1984 /* Check if previous symbol was also an N_SO (with some
1985 sanity checks). If so, that one was actually the directory
1986 name, and the current one is the real file name.
1987 Patch things up. */
6985bc54 1988 if (previous_stab_code == (unsigned char) N_SO)
7e258d18 1989 {
3416d90b 1990 patch_subfile_names (current_subfile, name);
c72af089 1991 break; /* Ignore repeated SOs */
7e258d18 1992 }
94f5a25f 1993 end_symtab (valu, objfile, SECT_OFF_TEXT);
3416d90b 1994 end_stabs ();
7e258d18 1995 }
320f93f7
SG
1996
1997 /* Null name means this just marks the end of text for this .o file.
1998 Don't start a new symtab in this case. */
1999 if (*name == '\000')
2000 break;
2001
3416d90b 2002 start_stabs ();
bd5635a1
RP
2003 start_symtab (name, NULL, valu);
2004 break;
2005
2006 case N_SOL:
2007 /* This type of symbol indicates the start of data for
2008 a sub-source-file, one whose contents were copied or
2009 included in the compilation of the main source file
2010 (whose name was given in the N_SO symbol.) */
2af231b8
JG
2011 /* Relocate for dynamic loading */
2012 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
784fd92b 2013 start_subfile (name, current_subfile->dirname);
bd5635a1
RP
2014 break;
2015
2016 case N_BINCL:
2017 push_subfile ();
2018 add_new_header_file (name, valu);
784fd92b 2019 start_subfile (name, current_subfile->dirname);
bd5635a1
RP
2020 break;
2021
2022 case N_EINCL:
784fd92b 2023 start_subfile (pop_subfile (), current_subfile->dirname);
bd5635a1
RP
2024 break;
2025
2026 case N_EXCL:
2027 add_old_header_file (name, valu);
2028 break;
2029
2030 case N_SLINE:
2031 /* This type of "symbol" really just records
2032 one line-number -- core-address correspondence.
2033 Enter it in the line list for this symbol table. */
9342ecb9
JG
2034 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
2035 valu += function_start_offset;
a5e6391b 2036#ifdef SUN_FIXED_LBRAC_BUG
bd5635a1 2037 last_pc_address = valu; /* Save for SunOS bug circumcision */
a5e6391b 2038#endif
4137c5fc 2039 record_line (current_subfile, desc, valu);
bd5635a1
RP
2040 break;
2041
2042 case N_BCOMM:
4d57c599 2043 common_block_start (name, objfile);
bd5635a1
RP
2044 break;
2045
2046 case N_ECOMM:
4d57c599
JK
2047 common_block_end (objfile);
2048 break;
bd5635a1 2049
2af231b8
JG
2050 /* The following symbol types need to have the appropriate offset added
2051 to their value; then we process symbol definitions in the name. */
2052
2053 case N_STSYM: /* Static symbol in data seg */
2054 case N_LCSYM: /* Static symbol in BSS seg */
2055 case N_ROSYM: /* Static symbol in Read-only data seg */
4d57c599
JK
2056 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
2057 Solaris2's stabs-in-elf makes *most* symbols relative
2058 but leaves a few absolute (at least for Solaris 2.1 and version
2059 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
2af231b8
JG
2060 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
2061 .stab "foo:V...",N_STSYM is relative (section base subtracted).
2062 This leaves us no choice but to search for the 'S' or 'V'...
2063 (or pass the whole section_offsets stuff down ONE MORE function
4d57c599 2064 call level, which we really don't want to do). */
2af231b8
JG
2065 {
2066 char *p;
a66e8382
SG
2067
2068 /* .o files and NLMs have non-zero text seg offsets, but don't need
2069 their static syms offset in this fashion. XXX - This is really a
2070 crock that should be fixed in the solib handling code so that I
2071 don't have to work around it here. */
2072
2073 if (!symfile_relocatable)
2af231b8 2074 {
a66e8382
SG
2075 p = strchr (name, ':');
2076 if (p != 0 && p[1] == 'S')
2077 {
2078 /* The linker relocated it. We don't want to add an
2079 elfstab_offset_sections-type offset, but we *do* want
2080 to add whatever solib.c passed to symbol_file_add as
2081 addr (this is known to affect SunOS4, and I suspect ELF
2082 too). Since elfstab_offset_sections currently does not
2083 muck with the text offset (there is no Ttext.text
2084 symbol), we can get addr from the text offset. If
2085 elfstab_offset_sections ever starts dealing with the
2086 text offset, and we still need to do this, we need to
2087 invent a SECT_OFF_ADDR_KLUDGE or something. */
2088 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2089 goto define_a_symbol;
2090 }
2af231b8
JG
2091 }
2092 /* Since it's not the kludge case, re-dispatch to the right handler. */
2093 switch (type) {
2094 case N_STSYM: goto case_N_STSYM;
2095 case N_LCSYM: goto case_N_LCSYM;
2096 case N_ROSYM: goto case_N_ROSYM;
2097 default: abort();
2098 }
2099 }
2100
2101 case_N_STSYM: /* Static symbol in data seg */
c55e6167 2102 case N_DSLINE: /* Source line number, data seg */
2af231b8
JG
2103 valu += ANOFFSET (section_offsets, SECT_OFF_DATA);
2104 goto define_a_symbol;
2105
2106 case_N_LCSYM: /* Static symbol in BSS seg */
c55e6167
JG
2107 case N_BSLINE: /* Source line number, bss seg */
2108 /* N_BROWS: overlaps with N_BSLINE */
2af231b8
JG
2109 valu += ANOFFSET (section_offsets, SECT_OFF_BSS);
2110 goto define_a_symbol;
2111
2112 case_N_ROSYM: /* Static symbol in Read-only data seg */
2113 valu += ANOFFSET (section_offsets, SECT_OFF_RODATA);
2114 goto define_a_symbol;
2115
c55e6167 2116 case N_ENTRY: /* Alternate entry point */
2af231b8
JG
2117 /* Relocate for dynamic loading */
2118 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2119 goto define_a_symbol;
c55e6167 2120
4f470205
JK
2121 /* The following symbol types we don't know how to process. Handle
2122 them in a "default" way, but complain to people who care. */
2123 default:
2124 case N_CATCH: /* Exception handler catcher */
2125 case N_EHDECL: /* Exception handler name */
2126 case N_PC: /* Global symbol in Pascal */
2127 case N_M2C: /* Modula-2 compilation unit */
2128 /* N_MOD2: overlaps with N_EHDECL */
2129 case N_SCOPE: /* Modula-2 scope information */
2130 case N_ECOML: /* End common (local name) */
2131 case N_NBTEXT: /* Gould Non-Base-Register symbols??? */
2132 case N_NBDATA:
2133 case N_NBBSS:
2134 case N_NBSTS:
2135 case N_NBLCS:
9d2b8d50 2136 complain (&unknown_symtype_complaint, local_hex_string (type));
4f470205
JK
2137 /* FALLTHROUGH */
2138
c55e6167
JG
2139 /* The following symbol types don't need the address field relocated,
2140 since it is either unused, or is absolute. */
2af231b8 2141 define_a_symbol:
c55e6167
JG
2142 case N_GSYM: /* Global variable */
2143 case N_NSYMS: /* Number of symbols (ultrix) */
2144 case N_NOMAP: /* No map? (ultrix) */
2145 case N_RSYM: /* Register variable */
2146 case N_DEFD: /* Modula-2 GNU module dependency */
2147 case N_SSYM: /* Struct or union element */
2148 case N_LSYM: /* Local symbol in stack */
2149 case N_PSYM: /* Parameter variable */
2150 case N_LENG: /* Length of preceding symbol type */
2151 if (name)
4f470205 2152 {
b8ec9a79
JK
2153 int deftype;
2154 char *colon_pos = strchr (name, ':');
2155 if (colon_pos == NULL)
2156 deftype = '\0';
2157 else
2158 deftype = colon_pos[1];
2159
2160 switch (deftype)
4f470205 2161 {
b8ec9a79
JK
2162 case 'f':
2163 case 'F':
2164 function_stab_type = type;
2165
b9e58503
PS
2166#ifdef SOFUN_ADDRESS_MAYBE_MISSING
2167 /* Deal with the SunPRO 3.0 compiler which omits the address
2168 from N_FUN symbols. */
989d9cba
JK
2169 if (type == N_FUN
2170 && valu == ANOFFSET (section_offsets, SECT_OFF_TEXT))
b9e58503
PS
2171 {
2172 struct minimal_symbol *msym;
2173 char *p;
2174 int n;
2175
2176 p = strchr (name, ':');
2177 if (p == NULL)
2178 p = name;
2179 n = p - name;
2180 p = alloca (n + 1);
2181 strncpy (p, name, n);
2182 p[n] = 0;
2183
2184 msym = lookup_minimal_symbol (p, last_source_file,
2185 objfile);
2186 if (msym)
2187 valu = SYMBOL_VALUE_ADDRESS (msym);
2188 }
2189#endif
2190
3ef0fc8c 2191#ifdef SUN_FIXED_LBRAC_BUG
b8ec9a79
JK
2192 /* The Sun acc compiler, under SunOS4, puts out
2193 functions with N_GSYM or N_STSYM. The problem is
2194 that the address of the symbol is no good (for N_GSYM
2195 it doesn't even attept an address; for N_STSYM it
2196 puts out an address but then it gets relocated
2197 relative to the data segment, not the text segment).
2198 Currently we can't fix this up later as we do for
2199 some types of symbol in scan_file_globals.
2200 Fortunately we do have a way of finding the address -
2201 we know that the value in last_pc_address is either
2202 the one we want (if we're dealing with the first
2203 function in an object file), or somewhere in the
2204 previous function. This means that we can use the
2205 minimal symbol table to get the address. */
2206
b9e58503
PS
2207 /* Starting with release 3.0, the Sun acc compiler,
2208 under SunOS4, puts out functions with N_FUN and a value
2209 of zero. This gets relocated to the start of the text
2210 segment of the module, which is no good either.
2211 Under SunOS4 we can deal with this as N_SLINE and N_SO
2212 entries contain valid absolute addresses.
2213 Release 3.0 acc also puts out N_OPT entries, which makes
2214 it possible to discern acc from cc or gcc. */
2215
2216 if (type == N_GSYM || type == N_STSYM
2217 || (type == N_FUN
2218 && n_opt_found && !block_address_function_relative))
b8ec9a79
JK
2219 {
2220 struct minimal_symbol *m;
2221 int l = colon_pos - name;
2222
2223 m = lookup_minimal_symbol_by_pc (last_pc_address);
2b576293
C
2224 if (m && STREQN (SYMBOL_NAME (m), name, l)
2225 && SYMBOL_NAME (m) [l] == '\0')
b8ec9a79
JK
2226 /* last_pc_address was in this function */
2227 valu = SYMBOL_VALUE (m);
94f5a25f
DP
2228 else if (m && SYMBOL_NAME (m+1)
2229 && STREQN (SYMBOL_NAME (m+1), name, l)
2b576293 2230 && SYMBOL_NAME (m+1) [l] == '\0')
3c7d3064
JK
2231 /* last_pc_address was in last function */
2232 valu = SYMBOL_VALUE (m+1);
b8ec9a79 2233 else
3c7d3064
JK
2234 /* Not found - use last_pc_address (for finish_block) */
2235 valu = last_pc_address;
b8ec9a79
JK
2236 }
2237
b8ec9a79
JK
2238 last_pc_address = valu; /* Save for SunOS bug circumcision */
2239#endif
2240
2241 if (block_address_function_relative)
2242 /* For Solaris 2.0 compilers, the block addresses and
2243 N_SLINE's are relative to the start of the
2244 function. On normal systems, and when using gcc on
2245 Solaris 2.0, these addresses are just absolute, or
2246 relative to the N_SO, depending on
2247 BLOCK_ADDRESS_ABSOLUTE. */
2248 function_start_offset = valu;
2249
2250 within_function = 1;
2251 if (context_stack_depth > 0)
2252 {
2253 new = pop_context ();
2254 /* Make a block for the local symbols within. */
2255 finish_block (new->name, &local_symbols, new->old_blocks,
2256 new->start_addr, valu, objfile);
2257 }
2258 /* Stack must be empty now. */
2259 if (context_stack_depth != 0)
2260 complain (&lbrac_unmatched_complaint, symnum);
2261
2262 new = push_context (0, valu);
2263 new->name = define_symbol (valu, name, desc, type, objfile);
2264 break;
2265
2266 default:
2267 define_symbol (valu, name, desc, type, objfile);
2268 break;
4f470205
JK
2269 }
2270 }
bd5635a1
RP
2271 break;
2272
ec8ceca3
JG
2273 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
2274 for a bunch of other flags, too. Someday we may parse their
2275 flags; for now we ignore theirs and hope they'll ignore ours. */
2276 case N_OPT: /* Solaris 2: Compiler options */
2277 if (name)
2278 {
2e4964ad 2279 if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
3416d90b 2280 {
1aed6766 2281 processing_gcc_compilation = 2;
3416d90b 2282#if 1 /* Works, but is experimental. -fnf */
1aed6766 2283 if (AUTO_DEMANGLING)
3416d90b
FF
2284 {
2285 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2286 }
2287#endif
2288 }
8357834f
JK
2289 else
2290 n_opt_found = 1;
ec8ceca3
JG
2291 }
2292 break;
2293
bcbf9559
JG
2294 /* The following symbol types can be ignored. */
2295 case N_OBJ: /* Solaris 2: Object file dir and name */
bcbf9559
JG
2296 /* N_UNDF: Solaris 2: file separator mark */
2297 /* N_UNDF: -- we will never encounter it, since we only process one
2298 file's symbols at once. */
4c7c6bab
JG
2299 case N_ENDM: /* Solaris 2: End of module */
2300 case N_MAIN: /* Name of main routine. */
9342ecb9 2301 break;
bd5635a1 2302 }
7e258d18
PB
2303
2304 previous_stab_code = type;
bd5635a1
RP
2305}
2306\f
2b576293
C
2307/* FIXME: The only difference between this and elfstab_build_psymtabs
2308 is the call to install_minimal_symbols for elf, and the support for
2309 split sections. If the differences are really that small, the code
2310 should be shared. */
965a5c32 2311
b5b186a2
SS
2312/* Scan and build partial symbols for an coff symbol file.
2313 The coff file has already been processed to get its minimal symbols.
2314
2315 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2316 rolled into one.
2317
2318 OBJFILE is the object file we are reading symbols from.
2319 ADDR is the address relative to which the symbols are (e.g.
2320 the base address of the text segment).
2321 MAINLINE is true if we are reading the main symbol
2322 table (as opposed to a shared lib or dynamically loaded file).
2b576293
C
2323 TEXTADDR is the address of the text section.
2324 TEXTSIZE is the size of the text section.
2325 STABSECTS is the list of .stab sections in OBJFILE.
b5b186a2
SS
2326 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2327 .stabstr section exists.
2328
2329 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2330 adjusted for coff details. */
2331
2332void
2333coffstab_build_psymtabs (objfile, section_offsets, mainline,
2b576293 2334 textaddr, textsize, stabsects,
b5b186a2
SS
2335 stabstroffset, stabstrsize)
2336 struct objfile *objfile;
2337 struct section_offsets *section_offsets;
2338 int mainline;
2b576293
C
2339 CORE_ADDR textaddr;
2340 unsigned int textsize;
2341 struct stab_section_list *stabsects;
b5b186a2
SS
2342 file_ptr stabstroffset;
2343 unsigned int stabstrsize;
2344{
2345 int val;
2346 bfd *sym_bfd = objfile->obfd;
2347 char *name = bfd_get_filename (sym_bfd);
2348 struct dbx_symfile_info *info;
2b576293 2349 unsigned int stabsize;
b5b186a2
SS
2350
2351 /* There is already a dbx_symfile_info allocated by our caller.
2352 It might even contain some info from the coff symtab to help us. */
965a5c32 2353 info = (struct dbx_symfile_info *) objfile->sym_stab_info;
b5b186a2 2354
2b576293
C
2355 DBX_TEXT_ADDR (objfile) = textaddr;
2356 DBX_TEXT_SIZE (objfile) = textsize;
b5b186a2
SS
2357
2358#define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2359 DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
b5b186a2 2360 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
b5b186a2
SS
2361
2362 if (stabstrsize > bfd_get_size (sym_bfd))
2363 error ("ridiculous string table size: %d bytes", stabstrsize);
2364 DBX_STRINGTAB (objfile) = (char *)
2365 obstack_alloc (&objfile->psymbol_obstack, stabstrsize+1);
94f5a25f 2366 OBJSTAT (objfile, sz_strtab += stabstrsize+1);
b5b186a2
SS
2367
2368 /* Now read in the string table in one big gulp. */
2369
2370 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
2371 if (val < 0)
2372 perror_with_name (name);
2373 val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2374 if (val != stabstrsize)
2375 perror_with_name (name);
2376
2377 stabsread_new_init ();
2378 buildsym_new_init ();
2379 free_header_files ();
2380 init_header_files ();
2381
2382 processing_acc_compilation = 1;
2383
2384 /* In a coff file, we've already installed the minimal symbols that came
2385 from the coff (non-stab) symbol table, so always act like an
2386 incremental load here. */
2b576293
C
2387 if (stabsects->next == NULL)
2388 {
2389 stabsize = bfd_section_size (sym_bfd, stabsects->section);
2390 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2391 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2392 }
2393 else
2394 {
2395 struct stab_section_list *stabsect;
2396
2397 DBX_SYMCOUNT (objfile) = 0;
2398 for (stabsect = stabsects; stabsect != NULL; stabsect = stabsect->next)
2399 {
2400 stabsize = bfd_section_size (sym_bfd, stabsect->section);
2401 DBX_SYMCOUNT (objfile) += stabsize / DBX_SYMBOL_SIZE (objfile);
2402 }
2403
2404 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
2405
2406 symbuf_sections = stabsects->next;
2407 symbuf_left = bfd_section_size (sym_bfd, stabsects->section);
2408 symbuf_read = 0;
2409 }
2410
b5b186a2
SS
2411 dbx_symfile_read (objfile, section_offsets, 0);
2412}
2413\f
9342ecb9
JG
2414/* Scan and build partial symbols for an ELF symbol file.
2415 This ELF file has already been processed to get its minimal symbols,
2416 and any DWARF symbols that were in it.
2417
2418 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2419 rolled into one.
2420
2421 OBJFILE is the object file we are reading symbols from.
2422 ADDR is the address relative to which the symbols are (e.g.
2423 the base address of the text segment).
2424 MAINLINE is true if we are reading the main symbol
2425 table (as opposed to a shared lib or dynamically loaded file).
2426 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
2427 section exists.
2428 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
2429 .stabstr section exists.
2430
2431 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
2432 adjusted for elf details. */
2433
2434void
1aed6766 2435elfstab_build_psymtabs (objfile, section_offsets, mainline,
9342ecb9 2436 staboffset, stabsize,
1aed6766
SG
2437 stabstroffset, stabstrsize)
2438 struct objfile *objfile;
2439 struct section_offsets *section_offsets;
2440 int mainline;
51b80b00 2441 file_ptr staboffset;
1aed6766 2442 unsigned int stabsize;
51b80b00 2443 file_ptr stabstroffset;
1aed6766 2444 unsigned int stabstrsize;
9342ecb9
JG
2445{
2446 int val;
2447 bfd *sym_bfd = objfile->obfd;
2448 char *name = bfd_get_filename (sym_bfd);
2449 struct dbx_symfile_info *info;
2b576293 2450 asection *text_sect;
9342ecb9 2451
2af231b8
JG
2452 /* There is already a dbx_symfile_info allocated by our caller.
2453 It might even contain some info from the ELF symtab to help us. */
965a5c32 2454 info = (struct dbx_symfile_info *) objfile->sym_stab_info;
9342ecb9 2455
2b576293
C
2456 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
2457 if (!text_sect)
9342ecb9 2458 error ("Can't find .text section in symbol file");
2b576293
C
2459 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
2460 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
9342ecb9
JG
2461
2462#define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
2463 DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
2464 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
2465 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
2466 DBX_SYMTAB_OFFSET (objfile) = staboffset;
2467
996ccb30 2468 if (stabstrsize > bfd_get_size (sym_bfd))
9342ecb9
JG
2469 error ("ridiculous string table size: %d bytes", stabstrsize);
2470 DBX_STRINGTAB (objfile) = (char *)
2471 obstack_alloc (&objfile->psymbol_obstack, stabstrsize+1);
94f5a25f 2472 OBJSTAT (objfile, sz_strtab += stabstrsize+1);
9342ecb9
JG
2473
2474 /* Now read in the string table in one big gulp. */
2475
2c7ab4ca 2476 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
9342ecb9
JG
2477 if (val < 0)
2478 perror_with_name (name);
2479 val = bfd_read (DBX_STRINGTAB (objfile), stabstrsize, 1, sym_bfd);
2480 if (val != stabstrsize)
2481 perror_with_name (name);
2482
3416d90b 2483 stabsread_new_init ();
9342ecb9
JG
2484 buildsym_new_init ();
2485 free_header_files ();
2486 init_header_files ();
2487 install_minimal_symbols (objfile);
2488
2489 processing_acc_compilation = 1;
2490
2491 /* In an elf file, we've already installed the minimal symbols that came
2492 from the elf (non-stab) symbol table, so always act like an
2493 incremental load here. */
2af231b8
JG
2494 dbx_symfile_read (objfile, section_offsets, 0);
2495}
2496\f
a66e8382
SG
2497/* Scan and build partial symbols for a file with special sections for stabs
2498 and stabstrings. The file has already been processed to get its minimal
2499 symbols, and any other symbols that might be necessary to resolve GSYMs.
2500
2501 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
2502 rolled into one.
2503
2504 OBJFILE is the object file we are reading symbols from.
2505 ADDR is the address relative to which the symbols are (e.g. the base address
2506 of the text segment).
2507 MAINLINE is true if we are reading the main symbol table (as opposed to a
2508 shared lib or dynamically loaded file).
2509 STAB_NAME is the name of the section that contains the stabs.
2510 STABSTR_NAME is the name of the section that contains the stab strings.
2511
2512 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
2513
2514void
2515stabsect_build_psymtabs (objfile, section_offsets, mainline, stab_name,
320f93f7 2516 stabstr_name, text_name)
a66e8382
SG
2517 struct objfile *objfile;
2518 struct section_offsets *section_offsets;
2519 int mainline;
2520 char *stab_name;
2521 char *stabstr_name;
320f93f7 2522 char *text_name;
a66e8382
SG
2523{
2524 int val;
2525 bfd *sym_bfd = objfile->obfd;
2526 char *name = bfd_get_filename (sym_bfd);
2527 asection *stabsect;
2528 asection *stabstrsect;
2b576293 2529 asection *text_sect;
a66e8382
SG
2530
2531 stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
2532 stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
2533
2534 if (!stabsect)
2535 return;
2536
2537 if (!stabstrsect)
2538 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
2539 stab_name, stabstr_name);
2540
bfe2f12b 2541 objfile->sym_stab_info = (PTR) xmalloc (sizeof (struct dbx_symfile_info));
a66e8382
SG
2542 memset (DBX_SYMFILE_INFO (objfile), 0, sizeof (struct dbx_symfile_info));
2543
2b576293
C
2544 text_sect = bfd_get_section_by_name (sym_bfd, text_name);
2545 if (!text_sect)
320f93f7 2546 error ("Can't find %s section in symbol file", text_name);
2b576293
C
2547 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
2548 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
a66e8382
SG
2549
2550 DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
2551 DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
2552 / DBX_SYMBOL_SIZE (objfile);
2553 DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
2554 DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
2555
2556 if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
2557 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
2558 DBX_STRINGTAB (objfile) = (char *)
2559 obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
94f5a25f 2560 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile) + 1);
a66e8382
SG
2561
2562 /* Now read in the string table in one big gulp. */
2563
2564 val = bfd_get_section_contents (sym_bfd, /* bfd */
2565 stabstrsect, /* bfd section */
2566 DBX_STRINGTAB (objfile), /* input buffer */
2567 0, /* offset into section */
2568 DBX_STRINGTAB_SIZE (objfile)); /* amount to read */
2569
2570 if (!val)
2571 perror_with_name (name);
2572
2573 stabsread_new_init ();
2574 buildsym_new_init ();
2575 free_header_files ();
2576 init_header_files ();
2577 install_minimal_symbols (objfile);
2578
2579 /* Now, do an incremental load */
2580
2581 processing_acc_compilation = 1;
2582 dbx_symfile_read (objfile, section_offsets, 0);
2583}
2584\f
80d68b1d
FF
2585static struct sym_fns aout_sym_fns =
2586{
0eed42de 2587 bfd_target_aout_flavour,
80d68b1d
FF
2588 dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */
2589 dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2590 dbx_symfile_read, /* sym_read: read a symbol file into symtab */
2591 dbx_symfile_finish, /* sym_finish: finished with file, cleanup */
e74acce4
MA
2592 default_symfile_offsets,
2593 /* sym_offsets: parse user's offsets to internal form */
80d68b1d
FF
2594 NULL /* next: pointer to next struct sym_fns */
2595};
bd5635a1
RP
2596
2597void
2598_initialize_dbxread ()
2599{
bd5635a1 2600 add_symtab_fns(&aout_sym_fns);
bd5635a1 2601}
This page took 0.386524 seconds and 4 git commands to generate.