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