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