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