2002-04-24 David S. Miller <davem@redhat.com>
[binutils-gdb.git] / gdb / dbxread.c
1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 /* This module provides three functions: dbx_symfile_init,
24 which initializes to read a symbol file; dbx_new_init, which
25 discards existing cached information when all symbols are being
26 discarded; and dbx_symfile_read, which reads a symbol table
27 from a file.
28
29 dbx_symfile_read only does the minimum work necessary for letting the
30 user "name" things symbolically; it does not read the entire symtab.
31 Instead, it reads the external and static symbols and puts them in partial
32 symbol tables. When more extensive information is requested of a
33 file, the corresponding partial symbol table is mutated into a full
34 fledged symbol table by going back and reading the symbols
35 for real. dbx_psymtab_to_symtab() is the function that does this */
36
37 #include "defs.h"
38 #include "gdb_string.h"
39
40 #if defined(USG) || defined(__CYGNUSCLIB__)
41 #include <sys/types.h>
42 #include <fcntl.h>
43 #endif
44
45 #include "obstack.h"
46 #include "gdb_stat.h"
47 #include "symtab.h"
48 #include "breakpoint.h"
49 #include "target.h"
50 #include "gdbcore.h" /* for bfd stuff */
51 #include "libaout.h" /* FIXME Secret internal BFD stuff for a.out */
52 #include "symfile.h"
53 #include "objfiles.h"
54 #include "buildsym.h"
55 #include "stabsread.h"
56 #include "gdb-stabs.h"
57 #include "demangle.h"
58 #include "language.h" /* Needed for local_hex_string */
59 #include "complaints.h"
60 #include "cp-abi.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 /* The start (inclusive) and end (exclusive) addresses for this
80 partial symtab's text. STABS doesn't reliably give us nice
81 start and end addresses for each function. Instead, we are
82 told the addresses of various boundary points, and we have to
83 gather those together to build ranges. These are our running
84 best guess as to the range of text addresses for this psymtab. */
85 CORE_ADDR textlow, texthigh;
86
87 /* Offset within the file symbol table of first local symbol for this
88 file. */
89
90 int ldsymoff;
91
92 /* Length (in bytes) of the section of the symbol table devoted to
93 this file's symbols (actually, the section bracketed may contain
94 more than just this file's symbols). If ldsymlen is 0, the only
95 reason for this thing's existence is the dependency list. Nothing
96 else will happen when it is read in. */
97
98 int ldsymlen;
99
100 /* The size of each symbol in the symbol file (in external form). */
101
102 int symbol_size;
103
104 /* Further information needed to locate the symbols if they are in
105 an ELF file. */
106
107 int symbol_offset;
108 int string_offset;
109 int file_string_offset;
110 };
111
112 #define LDSYMOFF(p) (((struct symloc *)((p)->read_symtab_private))->ldsymoff)
113 #define LDSYMLEN(p) (((struct symloc *)((p)->read_symtab_private))->ldsymlen)
114 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
115 #define TEXTLOW(p) (SYMLOC(p)->textlow)
116 #define TEXTHIGH(p) (SYMLOC(p)->texthigh)
117 #define SYMBOL_SIZE(p) (SYMLOC(p)->symbol_size)
118 #define SYMBOL_OFFSET(p) (SYMLOC(p)->symbol_offset)
119 #define STRING_OFFSET(p) (SYMLOC(p)->string_offset)
120 #define FILE_STRING_OFFSET(p) (SYMLOC(p)->file_string_offset)
121 \f
122
123 /* Remember what we deduced to be the source language of this psymtab. */
124
125 static enum language psymtab_language = language_unknown;
126
127 /* The BFD for this file -- implicit parameter to next_symbol_text. */
128
129 static bfd *symfile_bfd;
130
131 /* The size of each symbol in the symbol file (in external form).
132 This is set by dbx_symfile_read when building psymtabs, and by
133 dbx_psymtab_to_symtab when building symtabs. */
134
135 static unsigned symbol_size;
136
137 /* This is the offset of the symbol table in the executable file. */
138
139 static unsigned symbol_table_offset;
140
141 /* This is the offset of the string table in the executable file. */
142
143 static unsigned string_table_offset;
144
145 /* For elf+stab executables, the n_strx field is not a simple index
146 into the string table. Instead, each .o file has a base offset in
147 the string table, and the associated symbols contain offsets from
148 this base. The following two variables contain the base offset for
149 the current and next .o files. */
150
151 static unsigned int file_string_table_offset;
152 static unsigned int next_file_string_table_offset;
153
154 /* .o and NLM files contain unrelocated addresses which are based at
155 0. When non-zero, this flag disables some of the special cases for
156 Solaris elf+stab text addresses at location 0. */
157
158 static int symfile_relocatable = 0;
159
160 /* If this is nonzero, N_LBRAC, N_RBRAC, and N_SLINE entries are
161 relative to the function start address. */
162
163 static int block_address_function_relative = 0;
164 \f
165 /* The lowest text address we have yet encountered. This is needed
166 because in an a.out file, there is no header field which tells us
167 what address the program is actually going to be loaded at, so we
168 need to make guesses based on the symbols (which *are* relocated to
169 reflect the address it will be loaded at). */
170
171 static CORE_ADDR lowest_text_address;
172
173 /* Non-zero if there is any line number info in the objfile. Prevents
174 end_psymtab from discarding an otherwise empty psymtab. */
175
176 static int has_line_numbers;
177
178 /* Complaints about the symbols we have encountered. */
179
180 struct complaint lbrac_complaint =
181 {"bad block start address patched", 0, 0};
182
183 struct complaint string_table_offset_complaint =
184 {"bad string table offset in symbol %d", 0, 0};
185
186 struct complaint unknown_symtype_complaint =
187 {"unknown symbol type %s", 0, 0};
188
189 struct complaint unknown_symchar_complaint =
190 {"unknown symbol descriptor `%c'", 0, 0};
191
192 struct complaint lbrac_rbrac_complaint =
193 {"block start larger than block end", 0, 0};
194
195 struct complaint lbrac_unmatched_complaint =
196 {"unmatched N_LBRAC before symtab pos %d", 0, 0};
197
198 struct complaint lbrac_mismatch_complaint =
199 {"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
200
201 struct complaint repeated_header_complaint =
202 {"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
203
204 struct complaint unclaimed_bincl_complaint =
205 {"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
206 \f
207 /* find_text_range --- find start and end of loadable code sections
208
209 The find_text_range function finds the shortest address range that
210 encloses all sections containing executable code, and stores it in
211 objfile's text_addr and text_size members.
212
213 dbx_symfile_read will use this to finish off the partial symbol
214 table, in some cases. */
215
216 static void
217 find_text_range (bfd * sym_bfd, struct objfile *objfile)
218 {
219 asection *sec;
220 int found_any = 0;
221 CORE_ADDR start = 0;
222 CORE_ADDR end = 0;
223
224 for (sec = sym_bfd->sections; sec; sec = sec->next)
225 if (bfd_get_section_flags (sym_bfd, sec) & SEC_CODE)
226 {
227 CORE_ADDR sec_start = bfd_section_vma (sym_bfd, sec);
228 CORE_ADDR sec_end = sec_start + bfd_section_size (sym_bfd, sec);
229
230 if (found_any)
231 {
232 if (sec_start < start)
233 start = sec_start;
234 if (sec_end > end)
235 end = sec_end;
236 }
237 else
238 {
239 start = sec_start;
240 end = sec_end;
241 }
242
243 found_any = 1;
244 }
245
246 if (!found_any)
247 error ("Can't find any code sections in symbol file");
248
249 DBX_TEXT_ADDR (objfile) = start;
250 DBX_TEXT_SIZE (objfile) = end - start;
251 }
252 \f
253
254
255 /* During initial symbol readin, we need to have a structure to keep
256 track of which psymtabs have which bincls in them. This structure
257 is used during readin to setup the list of dependencies within each
258 partial symbol table. */
259
260 struct header_file_location
261 {
262 char *name; /* Name of header file */
263 int instance; /* See above */
264 struct partial_symtab *pst; /* Partial symtab that has the
265 BINCL/EINCL defs for this file */
266 };
267
268 /* The actual list and controling variables */
269 static struct header_file_location *bincl_list, *next_bincl;
270 static int bincls_allocated;
271
272 /* Local function prototypes */
273
274 extern void _initialize_dbxread (void);
275
276 static void process_now (struct objfile *);
277
278 static void read_ofile_symtab (struct partial_symtab *);
279
280 static void dbx_psymtab_to_symtab (struct partial_symtab *);
281
282 static void dbx_psymtab_to_symtab_1 (struct partial_symtab *);
283
284 static void read_dbx_dynamic_symtab (struct objfile *objfile);
285
286 static void read_dbx_symtab (struct objfile *);
287
288 static void free_bincl_list (struct objfile *);
289
290 static struct partial_symtab *find_corresponding_bincl_psymtab (char *, int);
291
292 static void add_bincl_to_list (struct partial_symtab *, char *, int);
293
294 static void init_bincl_list (int, struct objfile *);
295
296 static char *dbx_next_symbol_text (struct objfile *);
297
298 static void fill_symbuf (bfd *);
299
300 static void dbx_symfile_init (struct objfile *);
301
302 static void dbx_new_init (struct objfile *);
303
304 static void dbx_symfile_read (struct objfile *, int);
305
306 static void dbx_symfile_finish (struct objfile *);
307
308 static void record_minimal_symbol (char *, CORE_ADDR, int, struct objfile *);
309
310 static void add_new_header_file (char *, int);
311
312 static void add_old_header_file (char *, int);
313
314 static void add_this_object_header_file (int);
315
316 static struct partial_symtab *start_psymtab (struct objfile *, char *,
317 CORE_ADDR, int,
318 struct partial_symbol **,
319 struct partial_symbol **);
320
321 /* Free up old header file tables */
322
323 void
324 free_header_files (void)
325 {
326 if (this_object_header_files)
327 {
328 xfree (this_object_header_files);
329 this_object_header_files = NULL;
330 }
331 n_allocated_this_object_header_files = 0;
332 }
333
334 /* Allocate new header file tables */
335
336 void
337 init_header_files (void)
338 {
339 n_allocated_this_object_header_files = 10;
340 this_object_header_files = (int *) xmalloc (10 * sizeof (int));
341 }
342
343 /* Add header file number I for this object file
344 at the next successive FILENUM. */
345
346 static void
347 add_this_object_header_file (int i)
348 {
349 if (n_this_object_header_files == n_allocated_this_object_header_files)
350 {
351 n_allocated_this_object_header_files *= 2;
352 this_object_header_files
353 = (int *) xrealloc ((char *) this_object_header_files,
354 n_allocated_this_object_header_files * sizeof (int));
355 }
356
357 this_object_header_files[n_this_object_header_files++] = i;
358 }
359
360 /* Add to this file an "old" header file, one already seen in
361 a previous object file. NAME is the header file's name.
362 INSTANCE is its instance code, to select among multiple
363 symbol tables for the same header file. */
364
365 static void
366 add_old_header_file (char *name, int instance)
367 {
368 register struct header_file *p = HEADER_FILES (current_objfile);
369 register int i;
370
371 for (i = 0; i < N_HEADER_FILES (current_objfile); i++)
372 if (STREQ (p[i].name, name) && instance == p[i].instance)
373 {
374 add_this_object_header_file (i);
375 return;
376 }
377 complain (&repeated_header_complaint, name, symnum);
378 }
379
380 /* Add to this file a "new" header file: definitions for its types follow.
381 NAME is the header file's name.
382 Most often this happens only once for each distinct header file,
383 but not necessarily. If it happens more than once, INSTANCE has
384 a different value each time, and references to the header file
385 use INSTANCE values to select among them.
386
387 dbx output contains "begin" and "end" markers for each new header file,
388 but at this level we just need to know which files there have been;
389 so we record the file when its "begin" is seen and ignore the "end". */
390
391 static void
392 add_new_header_file (char *name, int instance)
393 {
394 register int i;
395 register struct header_file *hfile;
396
397 /* Make sure there is room for one more header file. */
398
399 i = N_ALLOCATED_HEADER_FILES (current_objfile);
400
401 if (N_HEADER_FILES (current_objfile) == i)
402 {
403 if (i == 0)
404 {
405 N_ALLOCATED_HEADER_FILES (current_objfile) = 10;
406 HEADER_FILES (current_objfile) = (struct header_file *)
407 xmalloc (10 * sizeof (struct header_file));
408 }
409 else
410 {
411 i *= 2;
412 N_ALLOCATED_HEADER_FILES (current_objfile) = i;
413 HEADER_FILES (current_objfile) = (struct header_file *)
414 xrealloc ((char *) HEADER_FILES (current_objfile),
415 (i * sizeof (struct header_file)));
416 }
417 }
418
419 /* Create an entry for this header file. */
420
421 i = N_HEADER_FILES (current_objfile)++;
422 hfile = HEADER_FILES (current_objfile) + i;
423 hfile->name = savestring (name, strlen (name));
424 hfile->instance = instance;
425 hfile->length = 10;
426 hfile->vector
427 = (struct type **) xmalloc (10 * sizeof (struct type *));
428 memset (hfile->vector, 0, 10 * sizeof (struct type *));
429
430 add_this_object_header_file (i);
431 }
432
433 #if 0
434 static struct type **
435 explicit_lookup_type (int real_filenum, int index)
436 {
437 register struct header_file *f = &HEADER_FILES (current_objfile)[real_filenum];
438
439 if (index >= f->length)
440 {
441 f->length *= 2;
442 f->vector = (struct type **)
443 xrealloc (f->vector, f->length * sizeof (struct type *));
444 memset (&f->vector[f->length / 2],
445 '\0', f->length * sizeof (struct type *) / 2);
446 }
447 return &f->vector[index];
448 }
449 #endif
450 \f
451 static void
452 record_minimal_symbol (char *name, CORE_ADDR address, int type,
453 struct objfile *objfile)
454 {
455 enum minimal_symbol_type ms_type;
456 int section;
457 asection *bfd_section;
458
459 switch (type)
460 {
461 case N_TEXT | N_EXT:
462 ms_type = mst_text;
463 section = SECT_OFF_TEXT (objfile);
464 bfd_section = DBX_TEXT_SECTION (objfile);
465 break;
466 case N_DATA | N_EXT:
467 ms_type = mst_data;
468 section = SECT_OFF_DATA (objfile);
469 bfd_section = DBX_DATA_SECTION (objfile);
470 break;
471 case N_BSS | N_EXT:
472 ms_type = mst_bss;
473 section = SECT_OFF_BSS (objfile);
474 bfd_section = DBX_BSS_SECTION (objfile);
475 break;
476 case N_ABS | N_EXT:
477 ms_type = mst_abs;
478 section = -1;
479 bfd_section = NULL;
480 break;
481 #ifdef N_SETV
482 case N_SETV | N_EXT:
483 ms_type = mst_data;
484 section = SECT_OFF_DATA (objfile);
485 bfd_section = DBX_DATA_SECTION (objfile);
486 break;
487 case N_SETV:
488 /* I don't think this type actually exists; since a N_SETV is the result
489 of going over many .o files, it doesn't make sense to have one
490 file local. */
491 ms_type = mst_file_data;
492 section = SECT_OFF_DATA (objfile);
493 bfd_section = DBX_DATA_SECTION (objfile);
494 break;
495 #endif
496 case N_TEXT:
497 case N_NBTEXT:
498 case N_FN:
499 case N_FN_SEQ:
500 ms_type = mst_file_text;
501 section = SECT_OFF_TEXT (objfile);
502 bfd_section = DBX_TEXT_SECTION (objfile);
503 break;
504 case N_DATA:
505 ms_type = mst_file_data;
506
507 /* Check for __DYNAMIC, which is used by Sun shared libraries.
508 Record it as global even if it's local, not global, so
509 lookup_minimal_symbol can find it. We don't check symbol_leading_char
510 because for SunOS4 it always is '_'. */
511 if (name[8] == 'C' && STREQ ("__DYNAMIC", name))
512 ms_type = mst_data;
513
514 /* Same with virtual function tables, both global and static. */
515 {
516 char *tempstring = name;
517 if (tempstring[0] == bfd_get_symbol_leading_char (objfile->obfd))
518 ++tempstring;
519 if (is_vtable_name (tempstring))
520 ms_type = mst_data;
521 }
522 section = SECT_OFF_DATA (objfile);
523 bfd_section = DBX_DATA_SECTION (objfile);
524 break;
525 case N_BSS:
526 ms_type = mst_file_bss;
527 section = SECT_OFF_BSS (objfile);
528 bfd_section = DBX_BSS_SECTION (objfile);
529 break;
530 default:
531 ms_type = mst_unknown;
532 section = -1;
533 bfd_section = NULL;
534 break;
535 }
536
537 if ((ms_type == mst_file_text || ms_type == mst_text)
538 && address < lowest_text_address)
539 lowest_text_address = address;
540
541 prim_record_minimal_symbol_and_info
542 (name, address, ms_type, NULL, section, bfd_section, objfile);
543 }
544 \f
545 /* Scan and build partial symbols for a symbol file.
546 We have been initialized by a call to dbx_symfile_init, which
547 put all the relevant info into a "struct dbx_symfile_info",
548 hung off the objfile structure.
549
550 MAINLINE is true if we are reading the main symbol
551 table (as opposed to a shared lib or dynamically loaded file). */
552
553 static void
554 dbx_symfile_read (struct objfile *objfile, int mainline)
555 {
556 bfd *sym_bfd;
557 int val;
558 struct cleanup *back_to;
559
560 sym_bfd = objfile->obfd;
561
562 /* .o and .nlm files are relocatables with text, data and bss segs based at
563 0. This flag disables special (Solaris stabs-in-elf only) fixups for
564 symbols with a value of 0. */
565
566 symfile_relocatable = bfd_get_file_flags (sym_bfd) & HAS_RELOC;
567
568 /* This is true for Solaris (and all other systems which put stabs
569 in sections, hopefully, since it would be silly to do things
570 differently from Solaris), and false for SunOS4 and other a.out
571 file formats. */
572 block_address_function_relative =
573 ((0 == strncmp (bfd_get_target (sym_bfd), "elf", 3))
574 || (0 == strncmp (bfd_get_target (sym_bfd), "som", 3))
575 || (0 == strncmp (bfd_get_target (sym_bfd), "coff", 4))
576 || (0 == strncmp (bfd_get_target (sym_bfd), "pe", 2))
577 || (0 == strncmp (bfd_get_target (sym_bfd), "epoc-pe", 7))
578 || (0 == strncmp (bfd_get_target (sym_bfd), "nlm", 3)));
579
580 val = bfd_seek (sym_bfd, DBX_SYMTAB_OFFSET (objfile), SEEK_SET);
581 if (val < 0)
582 perror_with_name (objfile->name);
583
584 /* If we are reinitializing, or if we have never loaded syms yet, init */
585 if (mainline
586 || (objfile->global_psymbols.size == 0
587 && objfile->static_psymbols.size == 0))
588 init_psymbol_list (objfile, DBX_SYMCOUNT (objfile));
589
590 symbol_size = DBX_SYMBOL_SIZE (objfile);
591 symbol_table_offset = DBX_SYMTAB_OFFSET (objfile);
592
593 free_pending_blocks ();
594 back_to = make_cleanup (really_free_pendings, 0);
595
596 init_minimal_symbol_collection ();
597 make_cleanup_discard_minimal_symbols ();
598
599 /* Read stabs data from executable file and define symbols. */
600
601 read_dbx_symtab (objfile);
602
603 /* Add the dynamic symbols. */
604
605 read_dbx_dynamic_symtab (objfile);
606
607 /* Take the text ranges the STABS partial symbol scanner computed
608 for each of the psymtabs and convert it into the canonical form
609 for psymtabs. */
610 {
611 struct partial_symtab *p;
612
613 ALL_OBJFILE_PSYMTABS (objfile, p)
614 {
615 p->textlow = TEXTLOW (p);
616 p->texthigh = TEXTHIGH (p);
617 }
618 }
619
620 /* Install any minimal symbols that have been collected as the current
621 minimal symbols for this objfile. */
622
623 install_minimal_symbols (objfile);
624
625 do_cleanups (back_to);
626 }
627
628 /* Initialize anything that needs initializing when a completely new
629 symbol file is specified (not just adding some symbols from another
630 file, e.g. a shared library). */
631
632 static void
633 dbx_new_init (struct objfile *ignore)
634 {
635 stabsread_new_init ();
636 buildsym_new_init ();
637 init_header_files ();
638 }
639
640
641 /* dbx_symfile_init ()
642 is the dbx-specific initialization routine for reading symbols.
643 It is passed a struct objfile which contains, among other things,
644 the BFD for the file whose symbols are being read, and a slot for a pointer
645 to "private data" which we fill with goodies.
646
647 We read the string table into malloc'd space and stash a pointer to it.
648
649 Since BFD doesn't know how to read debug symbols in a format-independent
650 way (and may never do so...), we have to do it ourselves. We will never
651 be called unless this is an a.out (or very similar) file.
652 FIXME, there should be a cleaner peephole into the BFD environment here. */
653
654 #define DBX_STRINGTAB_SIZE_SIZE sizeof(long) /* FIXME */
655
656 static void
657 dbx_symfile_init (struct objfile *objfile)
658 {
659 int val;
660 bfd *sym_bfd = objfile->obfd;
661 char *name = bfd_get_filename (sym_bfd);
662 asection *text_sect;
663 unsigned char size_temp[DBX_STRINGTAB_SIZE_SIZE];
664
665 /* Allocate struct to keep track of the symfile */
666 objfile->sym_stab_info = (struct dbx_symfile_info *)
667 xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
668 memset ((PTR) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
669
670 DBX_TEXT_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".text");
671 DBX_DATA_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".data");
672 DBX_BSS_SECTION (objfile) = bfd_get_section_by_name (sym_bfd, ".bss");
673
674 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
675 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
676 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
677
678 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
679
680 DBX_SYMFILE_INFO (objfile)->stab_section_info = NULL;
681
682 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
683 if (!text_sect)
684 error ("Can't find .text section in symbol file");
685 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
686 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
687
688 DBX_SYMBOL_SIZE (objfile) = obj_symbol_entry_size (sym_bfd);
689 DBX_SYMCOUNT (objfile) = bfd_get_symcount (sym_bfd);
690 DBX_SYMTAB_OFFSET (objfile) = SYMBOL_TABLE_OFFSET;
691
692 /* Read the string table and stash it away in the psymbol_obstack. It is
693 only needed as long as we need to expand psymbols into full symbols,
694 so when we blow away the psymbol the string table goes away as well.
695 Note that gdb used to use the results of attempting to malloc the
696 string table, based on the size it read, as a form of sanity check
697 for botched byte swapping, on the theory that a byte swapped string
698 table size would be so totally bogus that the malloc would fail. Now
699 that we put in on the psymbol_obstack, we can't do this since gdb gets
700 a fatal error (out of virtual memory) if the size is bogus. We can
701 however at least check to see if the size is less than the size of
702 the size field itself, or larger than the size of the entire file.
703 Note that all valid string tables have a size greater than zero, since
704 the bytes used to hold the size are included in the count. */
705
706 if (STRING_TABLE_OFFSET == 0)
707 {
708 /* It appears that with the existing bfd code, STRING_TABLE_OFFSET
709 will never be zero, even when there is no string table. This
710 would appear to be a bug in bfd. */
711 DBX_STRINGTAB_SIZE (objfile) = 0;
712 DBX_STRINGTAB (objfile) = NULL;
713 }
714 else
715 {
716 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
717 if (val < 0)
718 perror_with_name (name);
719
720 memset ((PTR) size_temp, 0, sizeof (size_temp));
721 val = bfd_bread ((PTR) size_temp, sizeof (size_temp), sym_bfd);
722 if (val < 0)
723 {
724 perror_with_name (name);
725 }
726 else if (val == 0)
727 {
728 /* With the existing bfd code, STRING_TABLE_OFFSET will be set to
729 EOF if there is no string table, and attempting to read the size
730 from EOF will read zero bytes. */
731 DBX_STRINGTAB_SIZE (objfile) = 0;
732 DBX_STRINGTAB (objfile) = NULL;
733 }
734 else
735 {
736 /* Read some data that would appear to be the string table size.
737 If there really is a string table, then it is probably the right
738 size. Byteswap if necessary and validate the size. Note that
739 the minimum is DBX_STRINGTAB_SIZE_SIZE. If we just read some
740 random data that happened to be at STRING_TABLE_OFFSET, because
741 bfd can't tell us there is no string table, the sanity checks may
742 or may not catch this. */
743 DBX_STRINGTAB_SIZE (objfile) = bfd_h_get_32 (sym_bfd, size_temp);
744
745 if (DBX_STRINGTAB_SIZE (objfile) < sizeof (size_temp)
746 || DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
747 error ("ridiculous string table size (%d bytes).",
748 DBX_STRINGTAB_SIZE (objfile));
749
750 DBX_STRINGTAB (objfile) =
751 (char *) obstack_alloc (&objfile->psymbol_obstack,
752 DBX_STRINGTAB_SIZE (objfile));
753 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile));
754
755 /* Now read in the string table in one big gulp. */
756
757 val = bfd_seek (sym_bfd, STRING_TABLE_OFFSET, SEEK_SET);
758 if (val < 0)
759 perror_with_name (name);
760 val = bfd_bread (DBX_STRINGTAB (objfile),
761 DBX_STRINGTAB_SIZE (objfile),
762 sym_bfd);
763 if (val != DBX_STRINGTAB_SIZE (objfile))
764 perror_with_name (name);
765 }
766 }
767 }
768
769 /* Perform any local cleanups required when we are done with a particular
770 objfile. I.E, we are in the process of discarding all symbol information
771 for an objfile, freeing up all memory held for it, and unlinking the
772 objfile struct from the global list of known objfiles. */
773
774 static void
775 dbx_symfile_finish (struct objfile *objfile)
776 {
777 if (objfile->sym_stab_info != NULL)
778 {
779 if (HEADER_FILES (objfile) != NULL)
780 {
781 register int i = N_HEADER_FILES (objfile);
782 register struct header_file *hfiles = HEADER_FILES (objfile);
783
784 while (--i >= 0)
785 {
786 xfree (hfiles[i].name);
787 xfree (hfiles[i].vector);
788 }
789 xfree (hfiles);
790 }
791 xmfree (objfile->md, objfile->sym_stab_info);
792 }
793 free_header_files ();
794 }
795 \f
796
797 /* Buffer for reading the symbol table entries. */
798 static struct external_nlist symbuf[4096];
799 static int symbuf_idx;
800 static int symbuf_end;
801
802 /* cont_elem is used for continuing information in cfront.
803 It saves information about which types need to be fixed up and
804 completed after all the stabs are read. */
805 struct cont_elem
806 {
807 /* sym and stabstring for continuing information in cfront */
808 struct symbol *sym;
809 char *stabs;
810 /* state dependencies (statics that must be preserved) */
811 int sym_idx;
812 int sym_end;
813 int symnum;
814 int (*func) (struct objfile *, struct symbol *, char *);
815 /* other state dependencies include:
816 (assumption is that these will not change since process_now FIXME!!)
817 stringtab_global
818 n_stabs
819 objfile
820 symfile_bfd */
821 };
822
823 static struct cont_elem *cont_list = 0;
824 static int cont_limit = 0;
825 static int cont_count = 0;
826
827 /* Arrange for function F to be called with arguments SYM and P later
828 in the stabs reading process. */
829 void
830 process_later (struct symbol *sym, char *p,
831 int (*f) (struct objfile *, struct symbol *, char *))
832 {
833
834 /* Allocate more space for the deferred list. */
835 if (cont_count >= cont_limit - 1)
836 {
837 cont_limit += 32; /* chunk size */
838
839 cont_list
840 = (struct cont_elem *) xrealloc (cont_list,
841 (cont_limit
842 * sizeof (struct cont_elem)));
843 if (!cont_list)
844 error ("Virtual memory exhausted\n");
845 }
846
847 /* Save state variables so we can process these stabs later. */
848 cont_list[cont_count].sym_idx = symbuf_idx;
849 cont_list[cont_count].sym_end = symbuf_end;
850 cont_list[cont_count].symnum = symnum;
851 cont_list[cont_count].sym = sym;
852 cont_list[cont_count].stabs = p;
853 cont_list[cont_count].func = f;
854 cont_count++;
855 }
856
857 /* Call deferred funtions in CONT_LIST. */
858
859 static void
860 process_now (struct objfile *objfile)
861 {
862 int i;
863 int save_symbuf_idx;
864 int save_symbuf_end;
865 int save_symnum;
866 struct symbol *sym;
867 char *stabs;
868 int err;
869 int (*func) (struct objfile *, struct symbol *, char *);
870
871 /* Save the state of our caller, we'll want to restore it before
872 returning. */
873 save_symbuf_idx = symbuf_idx;
874 save_symbuf_end = symbuf_end;
875 save_symnum = symnum;
876
877 /* Iterate over all the deferred stabs. */
878 for (i = 0; i < cont_count; i++)
879 {
880 /* Restore the state for this deferred stab. */
881 symbuf_idx = cont_list[i].sym_idx;
882 symbuf_end = cont_list[i].sym_end;
883 symnum = cont_list[i].symnum;
884 sym = cont_list[i].sym;
885 stabs = cont_list[i].stabs;
886 func = cont_list[i].func;
887
888 /* Call the function to handle this deferrd stab. */
889 err = (*func) (objfile, sym, stabs);
890 if (err)
891 error ("Internal error: unable to resolve stab.\n");
892 }
893
894 /* Restore our caller's state. */
895 symbuf_idx = save_symbuf_idx;
896 symbuf_end = save_symbuf_end;
897 symnum = save_symnum;
898 cont_count = 0;
899 }
900
901
902 /* Name of last function encountered. Used in Solaris to approximate
903 object file boundaries. */
904 static char *last_function_name;
905
906 /* The address in memory of the string table of the object file we are
907 reading (which might not be the "main" object file, but might be a
908 shared library or some other dynamically loaded thing). This is
909 set by read_dbx_symtab when building psymtabs, and by
910 read_ofile_symtab when building symtabs, and is used only by
911 next_symbol_text. FIXME: If that is true, we don't need it when
912 building psymtabs, right? */
913 static char *stringtab_global;
914
915 /* These variables are used to control fill_symbuf when the stabs
916 symbols are not contiguous (as may be the case when a COFF file is
917 linked using --split-by-reloc). */
918 static struct stab_section_list *symbuf_sections;
919 static unsigned int symbuf_left;
920 static unsigned int symbuf_read;
921
922 /* Refill the symbol table input buffer
923 and set the variables that control fetching entries from it.
924 Reports an error if no data available.
925 This function can read past the end of the symbol table
926 (into the string table) but this does no harm. */
927
928 static void
929 fill_symbuf (bfd *sym_bfd)
930 {
931 unsigned int count;
932 int nbytes;
933
934 if (symbuf_sections == NULL)
935 count = sizeof (symbuf);
936 else
937 {
938 if (symbuf_left <= 0)
939 {
940 file_ptr filepos = symbuf_sections->section->filepos;
941 if (bfd_seek (sym_bfd, filepos, SEEK_SET) != 0)
942 perror_with_name (bfd_get_filename (sym_bfd));
943 symbuf_left = bfd_section_size (sym_bfd, symbuf_sections->section);
944 symbol_table_offset = filepos - symbuf_read;
945 symbuf_sections = symbuf_sections->next;
946 }
947
948 count = symbuf_left;
949 if (count > sizeof (symbuf))
950 count = sizeof (symbuf);
951 }
952
953 nbytes = bfd_bread ((PTR) symbuf, count, sym_bfd);
954 if (nbytes < 0)
955 perror_with_name (bfd_get_filename (sym_bfd));
956 else if (nbytes == 0)
957 error ("Premature end of file reading symbol table");
958 symbuf_end = nbytes / symbol_size;
959 symbuf_idx = 0;
960 symbuf_left -= nbytes;
961 symbuf_read += nbytes;
962 }
963
964 #define INTERNALIZE_SYMBOL(intern, extern, abfd) \
965 { \
966 (intern).n_type = bfd_h_get_8 (abfd, (extern)->e_type); \
967 (intern).n_strx = bfd_h_get_32 (abfd, (extern)->e_strx); \
968 (intern).n_desc = bfd_h_get_16 (abfd, (extern)->e_desc); \
969 if (bfd_get_sign_extend_vma (abfd)) \
970 (intern).n_value = bfd_h_get_signed_32 (abfd, (extern)->e_value); \
971 else \
972 (intern).n_value = bfd_h_get_32 (abfd, (extern)->e_value); \
973 }
974
975 /* Invariant: The symbol pointed to by symbuf_idx is the first one
976 that hasn't been swapped. Swap the symbol at the same time
977 that symbuf_idx is incremented. */
978
979 /* dbx allows the text of a symbol name to be continued into the
980 next symbol name! When such a continuation is encountered
981 (a \ at the end of the text of a name)
982 call this function to get the continuation. */
983
984 static char *
985 dbx_next_symbol_text (struct objfile *objfile)
986 {
987 struct internal_nlist nlist;
988
989 if (symbuf_idx == symbuf_end)
990 fill_symbuf (symfile_bfd);
991
992 symnum++;
993 INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd);
994 OBJSTAT (objfile, n_stabs++);
995
996 symbuf_idx++;
997
998 return nlist.n_strx + stringtab_global + file_string_table_offset;
999 }
1000 \f
1001 /* Initialize the list of bincls to contain none and have some
1002 allocated. */
1003
1004 static void
1005 init_bincl_list (int number, struct objfile *objfile)
1006 {
1007 bincls_allocated = number;
1008 next_bincl = bincl_list = (struct header_file_location *)
1009 xmmalloc (objfile->md, bincls_allocated * sizeof (struct header_file_location));
1010 }
1011
1012 /* Add a bincl to the list. */
1013
1014 static void
1015 add_bincl_to_list (struct partial_symtab *pst, char *name, int instance)
1016 {
1017 if (next_bincl >= bincl_list + bincls_allocated)
1018 {
1019 int offset = next_bincl - bincl_list;
1020 bincls_allocated *= 2;
1021 bincl_list = (struct header_file_location *)
1022 xmrealloc (pst->objfile->md, (char *) bincl_list,
1023 bincls_allocated * sizeof (struct header_file_location));
1024 next_bincl = bincl_list + offset;
1025 }
1026 next_bincl->pst = pst;
1027 next_bincl->instance = instance;
1028 next_bincl++->name = name;
1029 }
1030
1031 /* Given a name, value pair, find the corresponding
1032 bincl in the list. Return the partial symtab associated
1033 with that header_file_location. */
1034
1035 static struct partial_symtab *
1036 find_corresponding_bincl_psymtab (char *name, int instance)
1037 {
1038 struct header_file_location *bincl;
1039
1040 for (bincl = bincl_list; bincl < next_bincl; bincl++)
1041 if (bincl->instance == instance
1042 && STREQ (name, bincl->name))
1043 return bincl->pst;
1044
1045 complain (&repeated_header_complaint, name, symnum);
1046 return (struct partial_symtab *) 0;
1047 }
1048
1049 /* Free the storage allocated for the bincl list. */
1050
1051 static void
1052 free_bincl_list (struct objfile *objfile)
1053 {
1054 xmfree (objfile->md, (PTR) bincl_list);
1055 bincls_allocated = 0;
1056 }
1057
1058 static void
1059 do_free_bincl_list_cleanup (void *objfile)
1060 {
1061 free_bincl_list (objfile);
1062 }
1063
1064 static struct cleanup *
1065 make_cleanup_free_bincl_list (struct objfile *objfile)
1066 {
1067 return make_cleanup (do_free_bincl_list_cleanup, objfile);
1068 }
1069
1070 /* Set namestring based on nlist. If the string table index is invalid,
1071 give a fake name, and print a single error message per symbol file read,
1072 rather than abort the symbol reading or flood the user with messages. */
1073
1074 static char *
1075 set_namestring (struct objfile *objfile, struct internal_nlist nlist)
1076 {
1077 char *namestring;
1078
1079 if (((unsigned) nlist.n_strx + file_string_table_offset) >=
1080 DBX_STRINGTAB_SIZE (objfile))
1081 {
1082 complain (&string_table_offset_complaint, symnum);
1083 namestring = "<bad string table offset>";
1084 }
1085 else
1086 namestring = nlist.n_strx + file_string_table_offset +
1087 DBX_STRINGTAB (objfile);
1088 return namestring;
1089 }
1090
1091 /* Scan a SunOs dynamic symbol table for symbols of interest and
1092 add them to the minimal symbol table. */
1093
1094 static void
1095 read_dbx_dynamic_symtab (struct objfile *objfile)
1096 {
1097 bfd *abfd = objfile->obfd;
1098 struct cleanup *back_to;
1099 int counter;
1100 long dynsym_size;
1101 long dynsym_count;
1102 asymbol **dynsyms;
1103 asymbol **symptr;
1104 arelent **relptr;
1105 long dynrel_size;
1106 long dynrel_count;
1107 arelent **dynrels;
1108 CORE_ADDR sym_value;
1109 char *name;
1110
1111 /* Check that the symbol file has dynamic symbols that we know about.
1112 bfd_arch_unknown can happen if we are reading a sun3 symbol file
1113 on a sun4 host (and vice versa) and bfd is not configured
1114 --with-target=all. This would trigger an assertion in bfd/sunos.c,
1115 so we ignore the dynamic symbols in this case. */
1116 if (bfd_get_flavour (abfd) != bfd_target_aout_flavour
1117 || (bfd_get_file_flags (abfd) & DYNAMIC) == 0
1118 || bfd_get_arch (abfd) == bfd_arch_unknown)
1119 return;
1120
1121 dynsym_size = bfd_get_dynamic_symtab_upper_bound (abfd);
1122 if (dynsym_size < 0)
1123 return;
1124
1125 dynsyms = (asymbol **) xmalloc (dynsym_size);
1126 back_to = make_cleanup (xfree, dynsyms);
1127
1128 dynsym_count = bfd_canonicalize_dynamic_symtab (abfd, dynsyms);
1129 if (dynsym_count < 0)
1130 {
1131 do_cleanups (back_to);
1132 return;
1133 }
1134
1135 /* Enter dynamic symbols into the minimal symbol table
1136 if this is a stripped executable. */
1137 if (bfd_get_symcount (abfd) <= 0)
1138 {
1139 symptr = dynsyms;
1140 for (counter = 0; counter < dynsym_count; counter++, symptr++)
1141 {
1142 asymbol *sym = *symptr;
1143 asection *sec;
1144 int type;
1145
1146 sec = bfd_get_section (sym);
1147
1148 /* BFD symbols are section relative. */
1149 sym_value = sym->value + sec->vma;
1150
1151 if (bfd_get_section_flags (abfd, sec) & SEC_CODE)
1152 {
1153 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1154 type = N_TEXT;
1155 }
1156 else if (bfd_get_section_flags (abfd, sec) & SEC_DATA)
1157 {
1158 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1159 type = N_DATA;
1160 }
1161 else if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
1162 {
1163 sym_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
1164 type = N_BSS;
1165 }
1166 else
1167 continue;
1168
1169 if (sym->flags & BSF_GLOBAL)
1170 type |= N_EXT;
1171
1172 record_minimal_symbol ((char *) bfd_asymbol_name (sym), sym_value,
1173 type, objfile);
1174 }
1175 }
1176
1177 /* Symbols from shared libraries have a dynamic relocation entry
1178 that points to the associated slot in the procedure linkage table.
1179 We make a mininal symbol table entry with type mst_solib_trampoline
1180 at the address in the procedure linkage table. */
1181 dynrel_size = bfd_get_dynamic_reloc_upper_bound (abfd);
1182 if (dynrel_size < 0)
1183 {
1184 do_cleanups (back_to);
1185 return;
1186 }
1187
1188 dynrels = (arelent **) xmalloc (dynrel_size);
1189 make_cleanup (xfree, dynrels);
1190
1191 dynrel_count = bfd_canonicalize_dynamic_reloc (abfd, dynrels, dynsyms);
1192 if (dynrel_count < 0)
1193 {
1194 do_cleanups (back_to);
1195 return;
1196 }
1197
1198 for (counter = 0, relptr = dynrels;
1199 counter < dynrel_count;
1200 counter++, relptr++)
1201 {
1202 arelent *rel = *relptr;
1203 CORE_ADDR address =
1204 rel->address + ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1205
1206 switch (bfd_get_arch (abfd))
1207 {
1208 case bfd_arch_sparc:
1209 if (rel->howto->type != RELOC_JMP_SLOT)
1210 continue;
1211 break;
1212 case bfd_arch_m68k:
1213 /* `16' is the type BFD produces for a jump table relocation. */
1214 if (rel->howto->type != 16)
1215 continue;
1216
1217 /* Adjust address in the jump table to point to
1218 the start of the bsr instruction. */
1219 address -= 2;
1220 break;
1221 default:
1222 continue;
1223 }
1224
1225 name = (char *) bfd_asymbol_name (*rel->sym_ptr_ptr);
1226 prim_record_minimal_symbol (name, address, mst_solib_trampoline,
1227 objfile);
1228 }
1229
1230 do_cleanups (back_to);
1231 }
1232
1233 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1234 CORE_ADDR
1235 find_stab_function_addr (char *namestring, char *filename,
1236 struct objfile *objfile)
1237 {
1238 struct minimal_symbol *msym;
1239 char *p;
1240 int n;
1241
1242 p = strchr (namestring, ':');
1243 if (p == NULL)
1244 p = namestring;
1245 n = p - namestring;
1246 p = alloca (n + 2);
1247 strncpy (p, namestring, n);
1248 p[n] = 0;
1249
1250 msym = lookup_minimal_symbol (p, filename, objfile);
1251 if (msym == NULL)
1252 {
1253 /* Sun Fortran appends an underscore to the minimal symbol name,
1254 try again with an appended underscore if the minimal symbol
1255 was not found. */
1256 p[n] = '_';
1257 p[n + 1] = 0;
1258 msym = lookup_minimal_symbol (p, filename, objfile);
1259 }
1260
1261 if (msym == NULL && filename != NULL)
1262 {
1263 /* Try again without the filename. */
1264 p[n] = 0;
1265 msym = lookup_minimal_symbol (p, NULL, objfile);
1266 }
1267 if (msym == NULL && filename != NULL)
1268 {
1269 /* And try again for Sun Fortran, but without the filename. */
1270 p[n] = '_';
1271 p[n + 1] = 0;
1272 msym = lookup_minimal_symbol (p, NULL, objfile);
1273 }
1274
1275 return msym == NULL ? 0 : SYMBOL_VALUE_ADDRESS (msym);
1276 }
1277 #endif /* SOFUN_ADDRESS_MAYBE_MISSING */
1278
1279 /* Setup partial_symtab's describing each source file for which
1280 debugging information is available. */
1281
1282 static void
1283 read_dbx_symtab (struct objfile *objfile)
1284 {
1285 register struct external_nlist *bufp = 0; /* =0 avoids gcc -Wall glitch */
1286 struct internal_nlist nlist;
1287 CORE_ADDR text_addr;
1288 int text_size;
1289
1290 register char *namestring;
1291 int nsl;
1292 int past_first_source_file = 0;
1293 CORE_ADDR last_o_file_start = 0;
1294 CORE_ADDR last_function_start = 0;
1295 struct cleanup *back_to;
1296 bfd *abfd;
1297 int textlow_not_set;
1298
1299 /* Current partial symtab */
1300 struct partial_symtab *pst;
1301
1302 /* List of current psymtab's include files */
1303 char **psymtab_include_list;
1304 int includes_allocated;
1305 int includes_used;
1306
1307 /* Index within current psymtab dependency list */
1308 struct partial_symtab **dependency_list;
1309 int dependencies_used, dependencies_allocated;
1310
1311 text_addr = DBX_TEXT_ADDR (objfile);
1312 text_size = DBX_TEXT_SIZE (objfile);
1313
1314 /* FIXME. We probably want to change stringtab_global rather than add this
1315 while processing every symbol entry. FIXME. */
1316 file_string_table_offset = 0;
1317 next_file_string_table_offset = 0;
1318
1319 stringtab_global = DBX_STRINGTAB (objfile);
1320
1321 pst = (struct partial_symtab *) 0;
1322
1323 includes_allocated = 30;
1324 includes_used = 0;
1325 psymtab_include_list = (char **) alloca (includes_allocated *
1326 sizeof (char *));
1327
1328 dependencies_allocated = 30;
1329 dependencies_used = 0;
1330 dependency_list =
1331 (struct partial_symtab **) alloca (dependencies_allocated *
1332 sizeof (struct partial_symtab *));
1333
1334 /* Init bincl list */
1335 init_bincl_list (20, objfile);
1336 back_to = make_cleanup_free_bincl_list (objfile);
1337
1338 last_source_file = NULL;
1339
1340 lowest_text_address = (CORE_ADDR) -1;
1341
1342 symfile_bfd = objfile->obfd; /* For next_text_symbol */
1343 abfd = objfile->obfd;
1344 symbuf_end = symbuf_idx = 0;
1345 next_symbol_text_func = dbx_next_symbol_text;
1346 textlow_not_set = 1;
1347 has_line_numbers = 0;
1348
1349 for (symnum = 0; symnum < DBX_SYMCOUNT (objfile); symnum++)
1350 {
1351 /* Get the symbol for this run and pull out some info */
1352 QUIT; /* allow this to be interruptable */
1353 if (symbuf_idx == symbuf_end)
1354 fill_symbuf (abfd);
1355 bufp = &symbuf[symbuf_idx++];
1356
1357 /*
1358 * Special case to speed up readin.
1359 */
1360 if (bfd_h_get_8 (abfd, bufp->e_type) == N_SLINE)
1361 {
1362 has_line_numbers = 1;
1363 continue;
1364 }
1365
1366 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
1367 OBJSTAT (objfile, n_stabs++);
1368
1369 /* Ok. There is a lot of code duplicated in the rest of this
1370 switch statement (for efficiency reasons). Since I don't
1371 like duplicating code, I will do my penance here, and
1372 describe the code which is duplicated:
1373
1374 *) The assignment to namestring.
1375 *) The call to strchr.
1376 *) The addition of a partial symbol the the two partial
1377 symbol lists. This last is a large section of code, so
1378 I've imbedded it in the following macro.
1379 */
1380
1381 switch (nlist.n_type)
1382 {
1383 static struct complaint function_outside_compilation_unit = {
1384 "function `%s' appears to be defined outside of all compilation units", 0, 0
1385 };
1386 char *p;
1387 /*
1388 * Standard, external, non-debugger, symbols
1389 */
1390
1391 case N_TEXT | N_EXT:
1392 case N_NBTEXT | N_EXT:
1393 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1394 goto record_it;
1395
1396 case N_DATA | N_EXT:
1397 case N_NBDATA | N_EXT:
1398 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1399 goto record_it;
1400
1401 case N_BSS:
1402 case N_BSS | N_EXT:
1403 case N_NBBSS | N_EXT:
1404 case N_SETV | N_EXT: /* FIXME, is this in BSS? */
1405 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
1406 goto record_it;
1407
1408 case N_ABS | N_EXT:
1409 record_it:
1410 namestring = set_namestring (objfile, nlist);
1411
1412 bss_ext_symbol:
1413 record_minimal_symbol (namestring, nlist.n_value,
1414 nlist.n_type, objfile); /* Always */
1415 continue;
1416
1417 /* Standard, local, non-debugger, symbols */
1418
1419 case N_NBTEXT:
1420
1421 /* We need to be able to deal with both N_FN or N_TEXT,
1422 because we have no way of knowing whether the sys-supplied ld
1423 or GNU ld was used to make the executable. Sequents throw
1424 in another wrinkle -- they renumbered N_FN. */
1425
1426 case N_FN:
1427 case N_FN_SEQ:
1428 case N_TEXT:
1429 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1430 namestring = set_namestring (objfile, nlist);
1431
1432 if ((namestring[0] == '-' && namestring[1] == 'l')
1433 || (namestring[(nsl = strlen (namestring)) - 1] == 'o'
1434 && namestring[nsl - 2] == '.'))
1435 {
1436 if (objfile->ei.entry_point < nlist.n_value &&
1437 objfile->ei.entry_point >= last_o_file_start)
1438 {
1439 objfile->ei.entry_file_lowpc = last_o_file_start;
1440 objfile->ei.entry_file_highpc = nlist.n_value;
1441 }
1442 if (past_first_source_file && pst
1443 /* The gould NP1 uses low values for .o and -l symbols
1444 which are not the address. */
1445 && nlist.n_value >= TEXTLOW (pst))
1446 {
1447 end_psymtab (pst, psymtab_include_list, includes_used,
1448 symnum * symbol_size,
1449 nlist.n_value > TEXTHIGH (pst)
1450 ? nlist.n_value : TEXTHIGH (pst),
1451 dependency_list, dependencies_used, textlow_not_set);
1452 pst = (struct partial_symtab *) 0;
1453 includes_used = 0;
1454 dependencies_used = 0;
1455 }
1456 else
1457 past_first_source_file = 1;
1458 last_o_file_start = nlist.n_value;
1459 }
1460 else
1461 goto record_it;
1462 continue;
1463
1464 case N_DATA:
1465 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1466 goto record_it;
1467
1468 case N_UNDF | N_EXT:
1469 if (nlist.n_value != 0)
1470 {
1471 /* This is a "Fortran COMMON" symbol. See if the target
1472 environment knows where it has been relocated to. */
1473
1474 CORE_ADDR reladdr;
1475
1476 namestring = set_namestring (objfile, nlist);
1477 if (target_lookup_symbol (namestring, &reladdr))
1478 {
1479 continue; /* Error in lookup; ignore symbol for now. */
1480 }
1481 nlist.n_type ^= (N_BSS ^ N_UNDF); /* Define it as a bss-symbol */
1482 nlist.n_value = reladdr;
1483 goto bss_ext_symbol;
1484 }
1485 continue; /* Just undefined, not COMMON */
1486
1487 case N_UNDF:
1488 if (processing_acc_compilation && nlist.n_strx == 1)
1489 {
1490 /* Deal with relative offsets in the string table
1491 used in ELF+STAB under Solaris. If we want to use the
1492 n_strx field, which contains the name of the file,
1493 we must adjust file_string_table_offset *before* calling
1494 set_namestring(). */
1495 past_first_source_file = 1;
1496 file_string_table_offset = next_file_string_table_offset;
1497 next_file_string_table_offset =
1498 file_string_table_offset + nlist.n_value;
1499 if (next_file_string_table_offset < file_string_table_offset)
1500 error ("string table offset backs up at %d", symnum);
1501 /* FIXME -- replace error() with complaint. */
1502 continue;
1503 }
1504 continue;
1505
1506 /* Lots of symbol types we can just ignore. */
1507
1508 case N_ABS:
1509 case N_NBDATA:
1510 case N_NBBSS:
1511 continue;
1512
1513 /* Keep going . . . */
1514
1515 /*
1516 * Special symbol types for GNU
1517 */
1518 case N_INDR:
1519 case N_INDR | N_EXT:
1520 case N_SETA:
1521 case N_SETA | N_EXT:
1522 case N_SETT:
1523 case N_SETT | N_EXT:
1524 case N_SETD:
1525 case N_SETD | N_EXT:
1526 case N_SETB:
1527 case N_SETB | N_EXT:
1528 case N_SETV:
1529 continue;
1530
1531 /*
1532 * Debugger symbols
1533 */
1534
1535 case N_SO:
1536 {
1537 CORE_ADDR valu;
1538 static int prev_so_symnum = -10;
1539 static int first_so_symnum;
1540 char *p;
1541 int prev_textlow_not_set;
1542
1543 valu = nlist.n_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1544
1545 prev_textlow_not_set = textlow_not_set;
1546
1547 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1548 /* A zero value is probably an indication for the SunPRO 3.0
1549 compiler. end_psymtab explicitly tests for zero, so
1550 don't relocate it. */
1551
1552 if (nlist.n_value == 0)
1553 {
1554 textlow_not_set = 1;
1555 valu = 0;
1556 }
1557 else
1558 textlow_not_set = 0;
1559 #else
1560 textlow_not_set = 0;
1561 #endif
1562 past_first_source_file = 1;
1563
1564 if (prev_so_symnum != symnum - 1)
1565 { /* Here if prev stab wasn't N_SO */
1566 first_so_symnum = symnum;
1567
1568 if (pst)
1569 {
1570 end_psymtab (pst, psymtab_include_list, includes_used,
1571 symnum * symbol_size,
1572 valu > TEXTHIGH (pst) ? valu : TEXTHIGH (pst),
1573 dependency_list, dependencies_used,
1574 prev_textlow_not_set);
1575 pst = (struct partial_symtab *) 0;
1576 includes_used = 0;
1577 dependencies_used = 0;
1578 }
1579 }
1580
1581 prev_so_symnum = symnum;
1582
1583 /* End the current partial symtab and start a new one */
1584
1585 namestring = set_namestring (objfile, nlist);
1586
1587 /* Null name means end of .o file. Don't start a new one. */
1588 if (*namestring == '\000')
1589 continue;
1590
1591 /* Some compilers (including gcc) emit a pair of initial N_SOs.
1592 The first one is a directory name; the second the file name.
1593 If pst exists, is empty, and has a filename ending in '/',
1594 we assume the previous N_SO was a directory name. */
1595
1596 p = strrchr (namestring, '/');
1597 if (p && *(p + 1) == '\000')
1598 continue; /* Simply ignore directory name SOs */
1599
1600 /* Some other compilers (C++ ones in particular) emit useless
1601 SOs for non-existant .c files. We ignore all subsequent SOs that
1602 immediately follow the first. */
1603
1604 if (!pst)
1605 pst = start_psymtab (objfile,
1606 namestring, valu,
1607 first_so_symnum * symbol_size,
1608 objfile->global_psymbols.next,
1609 objfile->static_psymbols.next);
1610 continue;
1611 }
1612
1613 case N_BINCL:
1614 {
1615 enum language tmp_language;
1616 /* Add this bincl to the bincl_list for future EXCLs. No
1617 need to save the string; it'll be around until
1618 read_dbx_symtab function returns */
1619
1620 namestring = set_namestring (objfile, nlist);
1621 tmp_language = deduce_language_from_filename (namestring);
1622
1623 /* Only change the psymtab's language if we've learned
1624 something useful (eg. tmp_language is not language_unknown).
1625 In addition, to match what start_subfile does, never change
1626 from C++ to C. */
1627 if (tmp_language != language_unknown
1628 && (tmp_language != language_c
1629 || psymtab_language != language_cplus))
1630 psymtab_language = tmp_language;
1631
1632 if (pst == NULL)
1633 {
1634 /* FIXME: we should not get here without a PST to work on.
1635 Attempt to recover. */
1636 complain (&unclaimed_bincl_complaint, namestring, symnum);
1637 continue;
1638 }
1639 add_bincl_to_list (pst, namestring, nlist.n_value);
1640
1641 /* Mark down an include file in the current psymtab */
1642
1643 goto record_include_file;
1644 }
1645
1646 case N_SOL:
1647 {
1648 enum language tmp_language;
1649 /* Mark down an include file in the current psymtab */
1650
1651 namestring = set_namestring (objfile, nlist);
1652 tmp_language = deduce_language_from_filename (namestring);
1653
1654 /* Only change the psymtab's language if we've learned
1655 something useful (eg. tmp_language is not language_unknown).
1656 In addition, to match what start_subfile does, never change
1657 from C++ to C. */
1658 if (tmp_language != language_unknown
1659 && (tmp_language != language_c
1660 || psymtab_language != language_cplus))
1661 psymtab_language = tmp_language;
1662
1663 /* In C++, one may expect the same filename to come round many
1664 times, when code is coming alternately from the main file
1665 and from inline functions in other files. So I check to see
1666 if this is a file we've seen before -- either the main
1667 source file, or a previously included file.
1668
1669 This seems to be a lot of time to be spending on N_SOL, but
1670 things like "break c-exp.y:435" need to work (I
1671 suppose the psymtab_include_list could be hashed or put
1672 in a binary tree, if profiling shows this is a major hog). */
1673 if (pst && STREQ (namestring, pst->filename))
1674 continue;
1675 {
1676 register int i;
1677 for (i = 0; i < includes_used; i++)
1678 if (STREQ (namestring, psymtab_include_list[i]))
1679 {
1680 i = -1;
1681 break;
1682 }
1683 if (i == -1)
1684 continue;
1685 }
1686
1687 record_include_file:
1688
1689 psymtab_include_list[includes_used++] = namestring;
1690 if (includes_used >= includes_allocated)
1691 {
1692 char **orig = psymtab_include_list;
1693
1694 psymtab_include_list = (char **)
1695 alloca ((includes_allocated *= 2) *
1696 sizeof (char *));
1697 memcpy ((PTR) psymtab_include_list, (PTR) orig,
1698 includes_used * sizeof (char *));
1699 }
1700 continue;
1701 }
1702 case N_LSYM: /* Typedef or automatic variable. */
1703 case N_STSYM: /* Data seg var -- static */
1704 case N_LCSYM: /* BSS " */
1705 case N_ROSYM: /* Read-only data seg var -- static. */
1706 case N_NBSTS: /* Gould nobase. */
1707 case N_NBLCS: /* symbols. */
1708 case N_FUN:
1709 case N_GSYM: /* Global (extern) variable; can be
1710 data or bss (sigh FIXME). */
1711
1712 /* Following may probably be ignored; I'll leave them here
1713 for now (until I do Pascal and Modula 2 extensions). */
1714
1715 case N_PC: /* I may or may not need this; I
1716 suspect not. */
1717 case N_M2C: /* I suspect that I can ignore this here. */
1718 case N_SCOPE: /* Same. */
1719
1720 namestring = set_namestring (objfile, nlist);
1721
1722 /* See if this is an end of function stab. */
1723 if (pst && nlist.n_type == N_FUN && *namestring == '\000')
1724 {
1725 CORE_ADDR valu;
1726
1727 /* It's value is the size (in bytes) of the function for
1728 function relative stabs, or the address of the function's
1729 end for old style stabs. */
1730 valu = nlist.n_value + last_function_start;
1731 if (TEXTHIGH (pst) == 0 || valu > TEXTHIGH (pst))
1732 TEXTHIGH (pst) = valu;
1733 break;
1734 }
1735
1736 p = (char *) strchr (namestring, ':');
1737 if (!p)
1738 continue; /* Not a debugging symbol. */
1739
1740
1741
1742 /* Main processing section for debugging symbols which
1743 the initial read through the symbol tables needs to worry
1744 about. If we reach this point, the symbol which we are
1745 considering is definitely one we are interested in.
1746 p must also contain the (valid) index into the namestring
1747 which indicates the debugging type symbol. */
1748
1749 switch (p[1])
1750 {
1751 case 'S':
1752 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1753 #ifdef STATIC_TRANSFORM_NAME
1754 namestring = STATIC_TRANSFORM_NAME (namestring);
1755 #endif
1756 add_psymbol_to_list (namestring, p - namestring,
1757 VAR_NAMESPACE, LOC_STATIC,
1758 &objfile->static_psymbols,
1759 0, nlist.n_value,
1760 psymtab_language, objfile);
1761 continue;
1762 case 'G':
1763 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
1764 /* The addresses in these entries are reported to be
1765 wrong. See the code that reads 'G's for symtabs. */
1766 add_psymbol_to_list (namestring, p - namestring,
1767 VAR_NAMESPACE, LOC_STATIC,
1768 &objfile->global_psymbols,
1769 0, nlist.n_value,
1770 psymtab_language, objfile);
1771 continue;
1772
1773 case 'T':
1774 /* When a 'T' entry is defining an anonymous enum, it
1775 may have a name which is the empty string, or a
1776 single space. Since they're not really defining a
1777 symbol, those shouldn't go in the partial symbol
1778 table. We do pick up the elements of such enums at
1779 'check_enum:', below. */
1780 if (p >= namestring + 2
1781 || (p == namestring + 1
1782 && namestring[0] != ' '))
1783 {
1784 add_psymbol_to_list (namestring, p - namestring,
1785 STRUCT_NAMESPACE, LOC_TYPEDEF,
1786 &objfile->static_psymbols,
1787 nlist.n_value, 0,
1788 psymtab_language, objfile);
1789 if (p[2] == 't')
1790 {
1791 /* Also a typedef with the same name. */
1792 add_psymbol_to_list (namestring, p - namestring,
1793 VAR_NAMESPACE, LOC_TYPEDEF,
1794 &objfile->static_psymbols,
1795 nlist.n_value, 0,
1796 psymtab_language, objfile);
1797 p += 1;
1798 }
1799 /* The semantics of C++ state that "struct foo { ... }"
1800 also defines a typedef for "foo". Unfortuantely, cfront
1801 never makes the typedef when translating from C++ to C.
1802 We make the typedef here so that "ptype foo" works as
1803 expected for cfront translated code. */
1804 else if (psymtab_language == language_cplus)
1805 {
1806 /* Also a typedef with the same name. */
1807 add_psymbol_to_list (namestring, p - namestring,
1808 VAR_NAMESPACE, LOC_TYPEDEF,
1809 &objfile->static_psymbols,
1810 nlist.n_value, 0,
1811 psymtab_language, objfile);
1812 }
1813 }
1814 goto check_enum;
1815 case 't':
1816 if (p != namestring) /* a name is there, not just :T... */
1817 {
1818 add_psymbol_to_list (namestring, p - namestring,
1819 VAR_NAMESPACE, LOC_TYPEDEF,
1820 &objfile->static_psymbols,
1821 nlist.n_value, 0,
1822 psymtab_language, objfile);
1823 }
1824 check_enum:
1825 /* If this is an enumerated type, we need to
1826 add all the enum constants to the partial symbol
1827 table. This does not cover enums without names, e.g.
1828 "enum {a, b} c;" in C, but fortunately those are
1829 rare. There is no way for GDB to find those from the
1830 enum type without spending too much time on it. Thus
1831 to solve this problem, the compiler needs to put out the
1832 enum in a nameless type. GCC2 does this. */
1833
1834 /* We are looking for something of the form
1835 <name> ":" ("t" | "T") [<number> "="] "e"
1836 {<constant> ":" <value> ","} ";". */
1837
1838 /* Skip over the colon and the 't' or 'T'. */
1839 p += 2;
1840 /* This type may be given a number. Also, numbers can come
1841 in pairs like (0,26). Skip over it. */
1842 while ((*p >= '0' && *p <= '9')
1843 || *p == '(' || *p == ',' || *p == ')'
1844 || *p == '=')
1845 p++;
1846
1847 if (*p++ == 'e')
1848 {
1849 /* The aix4 compiler emits extra crud before the members. */
1850 if (*p == '-')
1851 {
1852 /* Skip over the type (?). */
1853 while (*p != ':')
1854 p++;
1855
1856 /* Skip over the colon. */
1857 p++;
1858 }
1859
1860 /* We have found an enumerated type. */
1861 /* According to comments in read_enum_type
1862 a comma could end it instead of a semicolon.
1863 I don't know where that happens.
1864 Accept either. */
1865 while (*p && *p != ';' && *p != ',')
1866 {
1867 char *q;
1868
1869 /* Check for and handle cretinous dbx symbol name
1870 continuation! */
1871 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
1872 p = next_symbol_text (objfile);
1873
1874 /* Point to the character after the name
1875 of the enum constant. */
1876 for (q = p; *q && *q != ':'; q++)
1877 ;
1878 /* Note that the value doesn't matter for
1879 enum constants in psymtabs, just in symtabs. */
1880 add_psymbol_to_list (p, q - p,
1881 VAR_NAMESPACE, LOC_CONST,
1882 &objfile->static_psymbols, 0,
1883 0, psymtab_language, objfile);
1884 /* Point past the name. */
1885 p = q;
1886 /* Skip over the value. */
1887 while (*p && *p != ',')
1888 p++;
1889 /* Advance past the comma. */
1890 if (*p)
1891 p++;
1892 }
1893 }
1894 continue;
1895 case 'c':
1896 /* Constant, e.g. from "const" in Pascal. */
1897 add_psymbol_to_list (namestring, p - namestring,
1898 VAR_NAMESPACE, LOC_CONST,
1899 &objfile->static_psymbols, nlist.n_value,
1900 0, psymtab_language, objfile);
1901 continue;
1902
1903 case 'f':
1904 if (! pst)
1905 {
1906 int name_len = p - namestring;
1907 char *name = xmalloc (name_len + 1);
1908 memcpy (name, namestring, name_len);
1909 name[name_len] = '\0';
1910 complain (&function_outside_compilation_unit, name);
1911 xfree (name);
1912 }
1913 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1914 /* Kludges for ELF/STABS with Sun ACC */
1915 last_function_name = namestring;
1916 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1917 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1918 value for the bottom of the text seg in those cases. */
1919 if (nlist.n_value == ANOFFSET (objfile->section_offsets,
1920 SECT_OFF_TEXT (objfile)))
1921 {
1922 CORE_ADDR minsym_valu =
1923 find_stab_function_addr (namestring, pst->filename, objfile);
1924 /* find_stab_function_addr will return 0 if the minimal
1925 symbol wasn't found. (Unfortunately, this might also
1926 be a valid address.) Anyway, if it *does* return 0,
1927 it is likely that the value was set correctly to begin
1928 with... */
1929 if (minsym_valu != 0)
1930 nlist.n_value = minsym_valu;
1931 }
1932 if (pst && textlow_not_set)
1933 {
1934 TEXTLOW (pst) = nlist.n_value;
1935 textlow_not_set = 0;
1936 }
1937 #endif
1938 /* End kludge. */
1939
1940 /* Keep track of the start of the last function so we
1941 can handle end of function symbols. */
1942 last_function_start = nlist.n_value;
1943
1944 /* In reordered executables this function may lie outside
1945 the bounds created by N_SO symbols. If that's the case
1946 use the address of this function as the low bound for
1947 the partial symbol table. */
1948 if (pst
1949 && (textlow_not_set
1950 || (nlist.n_value < TEXTLOW (pst)
1951 && (nlist.n_value
1952 != ANOFFSET (objfile->section_offsets,
1953 SECT_OFF_TEXT (objfile))))))
1954 {
1955 TEXTLOW (pst) = nlist.n_value;
1956 textlow_not_set = 0;
1957 }
1958 add_psymbol_to_list (namestring, p - namestring,
1959 VAR_NAMESPACE, LOC_BLOCK,
1960 &objfile->static_psymbols,
1961 0, nlist.n_value,
1962 psymtab_language, objfile);
1963 continue;
1964
1965 /* Global functions were ignored here, but now they
1966 are put into the global psymtab like one would expect.
1967 They're also in the minimal symbol table. */
1968 case 'F':
1969 if (! pst)
1970 {
1971 int name_len = p - namestring;
1972 char *name = xmalloc (name_len + 1);
1973 memcpy (name, namestring, name_len);
1974 name[name_len] = '\0';
1975 complain (&function_outside_compilation_unit, name);
1976 xfree (name);
1977 }
1978 nlist.n_value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
1979 /* Kludges for ELF/STABS with Sun ACC */
1980 last_function_name = namestring;
1981 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
1982 /* Do not fix textlow==0 for .o or NLM files, as 0 is a legit
1983 value for the bottom of the text seg in those cases. */
1984 if (nlist.n_value == ANOFFSET (objfile->section_offsets,
1985 SECT_OFF_TEXT (objfile)))
1986 {
1987 CORE_ADDR minsym_valu =
1988 find_stab_function_addr (namestring, pst->filename, objfile);
1989 /* find_stab_function_addr will return 0 if the minimal
1990 symbol wasn't found. (Unfortunately, this might also
1991 be a valid address.) Anyway, if it *does* return 0,
1992 it is likely that the value was set correctly to begin
1993 with... */
1994 if (minsym_valu != 0)
1995 nlist.n_value = minsym_valu;
1996 }
1997 if (pst && textlow_not_set)
1998 {
1999 TEXTLOW (pst) = nlist.n_value;
2000 textlow_not_set = 0;
2001 }
2002 #endif
2003 /* End kludge. */
2004
2005 /* Keep track of the start of the last function so we
2006 can handle end of function symbols. */
2007 last_function_start = nlist.n_value;
2008
2009 /* In reordered executables this function may lie outside
2010 the bounds created by N_SO symbols. If that's the case
2011 use the address of this function as the low bound for
2012 the partial symbol table. */
2013 if (pst
2014 && (textlow_not_set
2015 || (nlist.n_value < TEXTLOW (pst)
2016 && (nlist.n_value
2017 != ANOFFSET (objfile->section_offsets,
2018 SECT_OFF_TEXT (objfile))))))
2019 {
2020 TEXTLOW (pst) = nlist.n_value;
2021 textlow_not_set = 0;
2022 }
2023 add_psymbol_to_list (namestring, p - namestring,
2024 VAR_NAMESPACE, LOC_BLOCK,
2025 &objfile->global_psymbols,
2026 0, nlist.n_value,
2027 psymtab_language, objfile);
2028 continue;
2029
2030 /* Two things show up here (hopefully); static symbols of
2031 local scope (static used inside braces) or extensions
2032 of structure symbols. We can ignore both. */
2033 case 'V':
2034 case '(':
2035 case '0':
2036 case '1':
2037 case '2':
2038 case '3':
2039 case '4':
2040 case '5':
2041 case '6':
2042 case '7':
2043 case '8':
2044 case '9':
2045 case '-':
2046 case '#': /* for symbol identification (used in live ranges) */
2047 /* added to support cfront stabs strings */
2048 case 'Z': /* for definition continuations */
2049 case 'P': /* for prototypes */
2050 continue;
2051
2052 case ':':
2053 /* It is a C++ nested symbol. We don't need to record it
2054 (I don't think); if we try to look up foo::bar::baz,
2055 then symbols for the symtab containing foo should get
2056 read in, I think. */
2057 /* Someone says sun cc puts out symbols like
2058 /foo/baz/maclib::/usr/local/bin/maclib,
2059 which would get here with a symbol type of ':'. */
2060 continue;
2061
2062 default:
2063 /* Unexpected symbol descriptor. The second and subsequent stabs
2064 of a continued stab can show up here. The question is
2065 whether they ever can mimic a normal stab--it would be
2066 nice if not, since we certainly don't want to spend the
2067 time searching to the end of every string looking for
2068 a backslash. */
2069
2070 complain (&unknown_symchar_complaint, p[1]);
2071
2072 /* Ignore it; perhaps it is an extension that we don't
2073 know about. */
2074 continue;
2075 }
2076
2077 case N_EXCL:
2078
2079 namestring = set_namestring (objfile, nlist);
2080
2081 /* Find the corresponding bincl and mark that psymtab on the
2082 psymtab dependency list */
2083 {
2084 struct partial_symtab *needed_pst =
2085 find_corresponding_bincl_psymtab (namestring, nlist.n_value);
2086
2087 /* If this include file was defined earlier in this file,
2088 leave it alone. */
2089 if (needed_pst == pst)
2090 continue;
2091
2092 if (needed_pst)
2093 {
2094 int i;
2095 int found = 0;
2096
2097 for (i = 0; i < dependencies_used; i++)
2098 if (dependency_list[i] == needed_pst)
2099 {
2100 found = 1;
2101 break;
2102 }
2103
2104 /* If it's already in the list, skip the rest. */
2105 if (found)
2106 continue;
2107
2108 dependency_list[dependencies_used++] = needed_pst;
2109 if (dependencies_used >= dependencies_allocated)
2110 {
2111 struct partial_symtab **orig = dependency_list;
2112 dependency_list =
2113 (struct partial_symtab **)
2114 alloca ((dependencies_allocated *= 2)
2115 * sizeof (struct partial_symtab *));
2116 memcpy ((PTR) dependency_list, (PTR) orig,
2117 (dependencies_used
2118 * sizeof (struct partial_symtab *)));
2119 #ifdef DEBUG_INFO
2120 fprintf_unfiltered (gdb_stderr, "Had to reallocate dependency list.\n");
2121 fprintf_unfiltered (gdb_stderr, "New dependencies allocated: %d\n",
2122 dependencies_allocated);
2123 #endif
2124 }
2125 }
2126 }
2127 continue;
2128
2129 case N_ENDM:
2130 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2131 /* Solaris 2 end of module, finish current partial symbol table.
2132 end_psymtab will set TEXTHIGH (pst) to the proper value, which
2133 is necessary if a module compiled without debugging info
2134 follows this module. */
2135 if (pst)
2136 {
2137 end_psymtab (pst, psymtab_include_list, includes_used,
2138 symnum * symbol_size,
2139 (CORE_ADDR) 0,
2140 dependency_list, dependencies_used, textlow_not_set);
2141 pst = (struct partial_symtab *) 0;
2142 includes_used = 0;
2143 dependencies_used = 0;
2144 }
2145 #endif
2146 continue;
2147
2148 case N_RBRAC:
2149 #ifdef HANDLE_RBRAC
2150 HANDLE_RBRAC (nlist.n_value);
2151 continue;
2152 #endif
2153 case N_EINCL:
2154 case N_DSLINE:
2155 case N_BSLINE:
2156 case N_SSYM: /* Claim: Structure or union element.
2157 Hopefully, I can ignore this. */
2158 case N_ENTRY: /* Alternate entry point; can ignore. */
2159 case N_MAIN: /* Can definitely ignore this. */
2160 case N_CATCH: /* These are GNU C++ extensions */
2161 case N_EHDECL: /* that can safely be ignored here. */
2162 case N_LENG:
2163 case N_BCOMM:
2164 case N_ECOMM:
2165 case N_ECOML:
2166 case N_FNAME:
2167 case N_SLINE:
2168 case N_RSYM:
2169 case N_PSYM:
2170 case N_LBRAC:
2171 case N_NSYMS: /* Ultrix 4.0: symbol count */
2172 case N_DEFD: /* GNU Modula-2 */
2173 case N_ALIAS: /* SunPro F77: alias name, ignore for now. */
2174
2175 case N_OBJ: /* useless types from Solaris */
2176 case N_OPT:
2177 /* These symbols aren't interesting; don't worry about them */
2178
2179 continue;
2180
2181 default:
2182 /* If we haven't found it yet, ignore it. It's probably some
2183 new type we don't know about yet. */
2184 complain (&unknown_symtype_complaint,
2185 local_hex_string (nlist.n_type));
2186 continue;
2187 }
2188 }
2189
2190 /* If there's stuff to be cleaned up, clean it up. */
2191 if (DBX_SYMCOUNT (objfile) > 0 /* We have some syms */
2192 /*FIXME, does this have a bug at start address 0? */
2193 && last_o_file_start
2194 && objfile->ei.entry_point < nlist.n_value
2195 && objfile->ei.entry_point >= last_o_file_start)
2196 {
2197 objfile->ei.entry_file_lowpc = last_o_file_start;
2198 objfile->ei.entry_file_highpc = nlist.n_value;
2199 }
2200
2201 if (pst)
2202 {
2203 /* Don't set pst->texthigh lower than it already is. */
2204 CORE_ADDR text_end =
2205 (lowest_text_address == (CORE_ADDR) -1
2206 ? (text_addr + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))
2207 : lowest_text_address)
2208 + text_size;
2209
2210 end_psymtab (pst, psymtab_include_list, includes_used,
2211 symnum * symbol_size,
2212 text_end > TEXTHIGH (pst) ? text_end : TEXTHIGH (pst),
2213 dependency_list, dependencies_used, textlow_not_set);
2214 }
2215
2216 do_cleanups (back_to);
2217 }
2218
2219 /* Allocate and partially fill a partial symtab. It will be
2220 completely filled at the end of the symbol list.
2221
2222 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2223 is the address relative to which its symbols are (incremental) or 0
2224 (normal). */
2225
2226
2227 static struct partial_symtab *
2228 start_psymtab (struct objfile *objfile, char *filename, CORE_ADDR textlow,
2229 int ldsymoff, struct partial_symbol **global_syms,
2230 struct partial_symbol **static_syms)
2231 {
2232 struct partial_symtab *result =
2233 start_psymtab_common (objfile, objfile->section_offsets,
2234 filename, textlow, global_syms, static_syms);
2235
2236 result->read_symtab_private = (char *)
2237 obstack_alloc (&objfile->psymbol_obstack, sizeof (struct symloc));
2238 TEXTLOW (result) = result->textlow;
2239 TEXTHIGH (result) = result->texthigh;
2240 LDSYMOFF (result) = ldsymoff;
2241 result->read_symtab = dbx_psymtab_to_symtab;
2242 SYMBOL_SIZE (result) = symbol_size;
2243 SYMBOL_OFFSET (result) = symbol_table_offset;
2244 STRING_OFFSET (result) = string_table_offset;
2245 FILE_STRING_OFFSET (result) = file_string_table_offset;
2246
2247 /* If we're handling an ELF file, drag some section-relocation info
2248 for this source file out of the ELF symbol table, to compensate for
2249 Sun brain death. This replaces the section_offsets in this psymtab,
2250 if successful. */
2251 elfstab_offset_sections (objfile, result);
2252
2253 /* Deduce the source language from the filename for this psymtab. */
2254 psymtab_language = deduce_language_from_filename (filename);
2255
2256 return result;
2257 }
2258
2259 /* Close off the current usage of PST.
2260 Returns PST or NULL if the partial symtab was empty and thrown away.
2261
2262 FIXME: List variables and peculiarities of same. */
2263
2264 struct partial_symtab *
2265 end_psymtab (struct partial_symtab *pst, char **include_list, int num_includes,
2266 int capping_symbol_offset, CORE_ADDR capping_text,
2267 struct partial_symtab **dependency_list, int number_dependencies,
2268 int textlow_not_set)
2269 {
2270 int i;
2271 struct objfile *objfile = pst->objfile;
2272
2273 if (capping_symbol_offset != -1)
2274 LDSYMLEN (pst) = capping_symbol_offset - LDSYMOFF (pst);
2275 TEXTHIGH (pst) = capping_text;
2276
2277 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2278 /* Under Solaris, the N_SO symbols always have a value of 0,
2279 instead of the usual address of the .o file. Therefore,
2280 we have to do some tricks to fill in texthigh and textlow.
2281 The first trick is: if we see a static
2282 or global function, and the textlow for the current pst
2283 is not set (ie: textlow_not_set), then we use that function's
2284 address for the textlow of the pst. */
2285
2286 /* Now, to fill in texthigh, we remember the last function seen
2287 in the .o file. Also, there's a hack in
2288 bfd/elf.c and gdb/elfread.c to pass the ELF st_size field
2289 to here via the misc_info field. Therefore, we can fill in
2290 a reliable texthigh by taking the address plus size of the
2291 last function in the file. */
2292
2293 if (TEXTHIGH (pst) == 0 && last_function_name)
2294 {
2295 char *p;
2296 int n;
2297 struct minimal_symbol *minsym;
2298
2299 p = strchr (last_function_name, ':');
2300 if (p == NULL)
2301 p = last_function_name;
2302 n = p - last_function_name;
2303 p = alloca (n + 2);
2304 strncpy (p, last_function_name, n);
2305 p[n] = 0;
2306
2307 minsym = lookup_minimal_symbol (p, pst->filename, objfile);
2308 if (minsym == NULL)
2309 {
2310 /* Sun Fortran appends an underscore to the minimal symbol name,
2311 try again with an appended underscore if the minimal symbol
2312 was not found. */
2313 p[n] = '_';
2314 p[n + 1] = 0;
2315 minsym = lookup_minimal_symbol (p, pst->filename, objfile);
2316 }
2317
2318 if (minsym)
2319 TEXTHIGH (pst) = SYMBOL_VALUE_ADDRESS (minsym) + MSYMBOL_SIZE (minsym);
2320
2321 last_function_name = NULL;
2322 }
2323
2324 /* this test will be true if the last .o file is only data */
2325 if (textlow_not_set)
2326 TEXTLOW (pst) = TEXTHIGH (pst);
2327 else
2328 {
2329 struct partial_symtab *p1;
2330
2331 /* If we know our own starting text address, then walk through all other
2332 psymtabs for this objfile, and if any didn't know their ending text
2333 address, set it to our starting address. Take care to not set our
2334 own ending address to our starting address, nor to set addresses on
2335 `dependency' files that have both textlow and texthigh zero. */
2336
2337 ALL_OBJFILE_PSYMTABS (objfile, p1)
2338 {
2339 if (TEXTHIGH (p1) == 0 && TEXTLOW (p1) != 0 && p1 != pst)
2340 {
2341 TEXTHIGH (p1) = TEXTLOW (pst);
2342 /* if this file has only data, then make textlow match texthigh */
2343 if (TEXTLOW (p1) == 0)
2344 TEXTLOW (p1) = TEXTHIGH (p1);
2345 }
2346 }
2347 }
2348
2349 /* End of kludge for patching Solaris textlow and texthigh. */
2350 #endif /* SOFUN_ADDRESS_MAYBE_MISSING. */
2351
2352 pst->n_global_syms =
2353 objfile->global_psymbols.next - (objfile->global_psymbols.list + pst->globals_offset);
2354 pst->n_static_syms =
2355 objfile->static_psymbols.next - (objfile->static_psymbols.list + pst->statics_offset);
2356
2357 pst->number_of_dependencies = number_dependencies;
2358 if (number_dependencies)
2359 {
2360 pst->dependencies = (struct partial_symtab **)
2361 obstack_alloc (&objfile->psymbol_obstack,
2362 number_dependencies * sizeof (struct partial_symtab *));
2363 memcpy (pst->dependencies, dependency_list,
2364 number_dependencies * sizeof (struct partial_symtab *));
2365 }
2366 else
2367 pst->dependencies = 0;
2368
2369 for (i = 0; i < num_includes; i++)
2370 {
2371 struct partial_symtab *subpst =
2372 allocate_psymtab (include_list[i], objfile);
2373
2374 /* Copy the sesction_offsets array from the main psymtab. */
2375 subpst->section_offsets = pst->section_offsets;
2376 subpst->read_symtab_private =
2377 (char *) obstack_alloc (&objfile->psymbol_obstack,
2378 sizeof (struct symloc));
2379 LDSYMOFF (subpst) =
2380 LDSYMLEN (subpst) =
2381 TEXTLOW (subpst) =
2382 TEXTHIGH (subpst) = 0;
2383
2384 /* We could save slight bits of space by only making one of these,
2385 shared by the entire set of include files. FIXME-someday. */
2386 subpst->dependencies = (struct partial_symtab **)
2387 obstack_alloc (&objfile->psymbol_obstack,
2388 sizeof (struct partial_symtab *));
2389 subpst->dependencies[0] = pst;
2390 subpst->number_of_dependencies = 1;
2391
2392 subpst->globals_offset =
2393 subpst->n_global_syms =
2394 subpst->statics_offset =
2395 subpst->n_static_syms = 0;
2396
2397 subpst->readin = 0;
2398 subpst->symtab = 0;
2399 subpst->read_symtab = pst->read_symtab;
2400 }
2401
2402 sort_pst_symbols (pst);
2403
2404 /* If there is already a psymtab or symtab for a file of this name, remove it.
2405 (If there is a symtab, more drastic things also happen.)
2406 This happens in VxWorks. */
2407 free_named_symtabs (pst->filename);
2408
2409 if (num_includes == 0
2410 && number_dependencies == 0
2411 && pst->n_global_syms == 0
2412 && pst->n_static_syms == 0
2413 && has_line_numbers == 0)
2414 {
2415 /* Throw away this psymtab, it's empty. We can't deallocate it, since
2416 it is on the obstack, but we can forget to chain it on the list. */
2417 /* Empty psymtabs happen as a result of header files which don't have
2418 any symbols in them. There can be a lot of them. But this check
2419 is wrong, in that a psymtab with N_SLINE entries but nothing else
2420 is not empty, but we don't realize that. Fixing that without slowing
2421 things down might be tricky. */
2422
2423 discard_psymtab (pst);
2424
2425 /* Indicate that psymtab was thrown away. */
2426 pst = (struct partial_symtab *) NULL;
2427 }
2428 return pst;
2429 }
2430 \f
2431 static void
2432 dbx_psymtab_to_symtab_1 (struct partial_symtab *pst)
2433 {
2434 struct cleanup *old_chain;
2435 int i;
2436
2437 if (!pst)
2438 return;
2439
2440 if (pst->readin)
2441 {
2442 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
2443 pst->filename);
2444 return;
2445 }
2446
2447 /* Read in all partial symtabs on which this one is dependent */
2448 for (i = 0; i < pst->number_of_dependencies; i++)
2449 if (!pst->dependencies[i]->readin)
2450 {
2451 /* Inform about additional files that need to be read in. */
2452 if (info_verbose)
2453 {
2454 fputs_filtered (" ", gdb_stdout);
2455 wrap_here ("");
2456 fputs_filtered ("and ", gdb_stdout);
2457 wrap_here ("");
2458 printf_filtered ("%s...", pst->dependencies[i]->filename);
2459 wrap_here (""); /* Flush output */
2460 gdb_flush (gdb_stdout);
2461 }
2462 dbx_psymtab_to_symtab_1 (pst->dependencies[i]);
2463 }
2464
2465 if (LDSYMLEN (pst)) /* Otherwise it's a dummy */
2466 {
2467 /* Init stuff necessary for reading in symbols */
2468 stabsread_init ();
2469 buildsym_init ();
2470 old_chain = make_cleanup (really_free_pendings, 0);
2471 file_string_table_offset = FILE_STRING_OFFSET (pst);
2472 symbol_size = SYMBOL_SIZE (pst);
2473
2474 /* Read in this file's symbols */
2475 bfd_seek (pst->objfile->obfd, SYMBOL_OFFSET (pst), SEEK_SET);
2476 read_ofile_symtab (pst);
2477 sort_symtab_syms (pst->symtab);
2478
2479 do_cleanups (old_chain);
2480 }
2481
2482 pst->readin = 1;
2483 }
2484
2485 /* Read in all of the symbols for a given psymtab for real.
2486 Be verbose about it if the user wants that. */
2487
2488 static void
2489 dbx_psymtab_to_symtab (struct partial_symtab *pst)
2490 {
2491 bfd *sym_bfd;
2492
2493 if (!pst)
2494 return;
2495
2496 if (pst->readin)
2497 {
2498 fprintf_unfiltered (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
2499 pst->filename);
2500 return;
2501 }
2502
2503 if (LDSYMLEN (pst) || pst->number_of_dependencies)
2504 {
2505 /* Print the message now, before reading the string table,
2506 to avoid disconcerting pauses. */
2507 if (info_verbose)
2508 {
2509 printf_filtered ("Reading in symbols for %s...", pst->filename);
2510 gdb_flush (gdb_stdout);
2511 }
2512
2513 sym_bfd = pst->objfile->obfd;
2514
2515 next_symbol_text_func = dbx_next_symbol_text;
2516
2517 dbx_psymtab_to_symtab_1 (pst);
2518
2519 /* Match with global symbols. This only needs to be done once,
2520 after all of the symtabs and dependencies have been read in. */
2521 scan_file_globals (pst->objfile);
2522
2523 /* Finish up the debug error message. */
2524 if (info_verbose)
2525 printf_filtered ("done.\n");
2526 }
2527 }
2528
2529 /* Read in a defined section of a specific object file's symbols. */
2530
2531 static void
2532 read_ofile_symtab (struct partial_symtab *pst)
2533 {
2534 register char *namestring;
2535 register struct external_nlist *bufp;
2536 struct internal_nlist nlist;
2537 unsigned char type;
2538 unsigned max_symnum;
2539 register bfd *abfd;
2540 struct objfile *objfile;
2541 int sym_offset; /* Offset to start of symbols to read */
2542 int sym_size; /* Size of symbols to read */
2543 CORE_ADDR text_offset; /* Start of text segment for symbols */
2544 int text_size; /* Size of text segment for symbols */
2545 struct section_offsets *section_offsets;
2546
2547 objfile = pst->objfile;
2548 sym_offset = LDSYMOFF (pst);
2549 sym_size = LDSYMLEN (pst);
2550 text_offset = TEXTLOW (pst);
2551 text_size = TEXTHIGH (pst) - TEXTLOW (pst);
2552 /* This cannot be simply objfile->section_offsets because of
2553 elfstab_offset_sections() which initializes the psymtab section
2554 offsets information in a special way, and that is different from
2555 objfile->section_offsets. */
2556 section_offsets = pst->section_offsets;
2557
2558 current_objfile = objfile;
2559 subfile_stack = NULL;
2560
2561 stringtab_global = DBX_STRINGTAB (objfile);
2562 last_source_file = NULL;
2563
2564 abfd = objfile->obfd;
2565 symfile_bfd = objfile->obfd; /* Implicit param to next_text_symbol */
2566 symbuf_end = symbuf_idx = 0;
2567
2568 /* It is necessary to actually read one symbol *before* the start
2569 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
2570 occurs before the N_SO symbol.
2571
2572 Detecting this in read_dbx_symtab
2573 would slow down initial readin, so we look for it here instead. */
2574 if (!processing_acc_compilation && sym_offset >= (int) symbol_size)
2575 {
2576 bfd_seek (symfile_bfd, sym_offset - symbol_size, SEEK_CUR);
2577 fill_symbuf (abfd);
2578 bufp = &symbuf[symbuf_idx++];
2579 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
2580 OBJSTAT (objfile, n_stabs++);
2581
2582 namestring = set_namestring (objfile, nlist);
2583
2584 processing_gcc_compilation = 0;
2585 if (nlist.n_type == N_TEXT)
2586 {
2587 const char *tempstring = namestring;
2588
2589 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
2590 processing_gcc_compilation = 1;
2591 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
2592 processing_gcc_compilation = 2;
2593 if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
2594 ++tempstring;
2595 if (STREQN (tempstring, "__gnu_compiled", 14))
2596 processing_gcc_compilation = 2;
2597 }
2598
2599 /* Try to select a C++ demangling based on the compilation unit
2600 producer. */
2601
2602 #if 0
2603 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2604 know whether it will use the old style or v3 mangling. */
2605 if (processing_gcc_compilation)
2606 {
2607 if (AUTO_DEMANGLING)
2608 {
2609 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2610 }
2611 }
2612 #endif
2613 }
2614 else
2615 {
2616 /* The N_SO starting this symtab is the first symbol, so we
2617 better not check the symbol before it. I'm not this can
2618 happen, but it doesn't hurt to check for it. */
2619 bfd_seek (symfile_bfd, sym_offset, SEEK_CUR);
2620 processing_gcc_compilation = 0;
2621 }
2622
2623 if (symbuf_idx == symbuf_end)
2624 fill_symbuf (abfd);
2625 bufp = &symbuf[symbuf_idx];
2626 if (bfd_h_get_8 (abfd, bufp->e_type) != N_SO)
2627 error ("First symbol in segment of executable not a source symbol");
2628
2629 max_symnum = sym_size / symbol_size;
2630
2631 for (symnum = 0;
2632 symnum < max_symnum;
2633 symnum++)
2634 {
2635 QUIT; /* Allow this to be interruptable */
2636 if (symbuf_idx == symbuf_end)
2637 fill_symbuf (abfd);
2638 bufp = &symbuf[symbuf_idx++];
2639 INTERNALIZE_SYMBOL (nlist, bufp, abfd);
2640 OBJSTAT (objfile, n_stabs++);
2641
2642 type = bfd_h_get_8 (abfd, bufp->e_type);
2643
2644 namestring = set_namestring (objfile, nlist);
2645
2646 if (type & N_STAB)
2647 {
2648 process_one_symbol (type, nlist.n_desc, nlist.n_value,
2649 namestring, section_offsets, objfile);
2650 }
2651 /* We skip checking for a new .o or -l file; that should never
2652 happen in this routine. */
2653 else if (type == N_TEXT)
2654 {
2655 /* I don't think this code will ever be executed, because
2656 the GCC_COMPILED_FLAG_SYMBOL usually is right before
2657 the N_SO symbol which starts this source file.
2658 However, there is no reason not to accept
2659 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
2660
2661 if (STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
2662 processing_gcc_compilation = 1;
2663 else if (STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
2664 processing_gcc_compilation = 2;
2665
2666 #if 0
2667 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
2668 know whether it will use the old style or v3 mangling. */
2669 if (AUTO_DEMANGLING)
2670 {
2671 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
2672 }
2673 #endif
2674 }
2675 else if (type & N_EXT || type == (unsigned char) N_TEXT
2676 || type == (unsigned char) N_NBTEXT
2677 )
2678 {
2679 /* Global symbol: see if we came across a dbx defintion for
2680 a corresponding symbol. If so, store the value. Remove
2681 syms from the chain when their values are stored, but
2682 search the whole chain, as there may be several syms from
2683 different files with the same name. */
2684 /* This is probably not true. Since the files will be read
2685 in one at a time, each reference to a global symbol will
2686 be satisfied in each file as it appears. So we skip this
2687 section. */
2688 ;
2689 }
2690 }
2691
2692 current_objfile = NULL;
2693
2694 /* In a Solaris elf file, this variable, which comes from the
2695 value of the N_SO symbol, will still be 0. Luckily, text_offset,
2696 which comes from TEXTLOW (pst) is correct. */
2697 if (last_source_start_addr == 0)
2698 last_source_start_addr = text_offset;
2699
2700 /* In reordered executables last_source_start_addr may not be the
2701 lower bound for this symtab, instead use text_offset which comes
2702 from TEXTLOW (pst) which is correct. */
2703 if (last_source_start_addr > text_offset)
2704 last_source_start_addr = text_offset;
2705
2706 pst->symtab = end_symtab (text_offset + text_size, objfile, SECT_OFF_TEXT (objfile));
2707
2708 /* Process items which we had to "process_later" due to dependencies
2709 on other stabs. */
2710 process_now (objfile);
2711
2712 end_stabs ();
2713 }
2714 \f
2715
2716 /* This handles a single symbol from the symbol-file, building symbols
2717 into a GDB symtab. It takes these arguments and an implicit argument.
2718
2719 TYPE is the type field of the ".stab" symbol entry.
2720 DESC is the desc field of the ".stab" entry.
2721 VALU is the value field of the ".stab" entry.
2722 NAME is the symbol name, in our address space.
2723 SECTION_OFFSETS is a set of amounts by which the sections of this object
2724 file were relocated when it was loaded into memory.
2725 Note that these section_offsets are not the
2726 objfile->section_offsets but the pst->section_offsets.
2727 All symbols that refer
2728 to memory locations need to be offset by these amounts.
2729 OBJFILE is the object file from which we are reading symbols.
2730 It is used in end_symtab. */
2731
2732 void
2733 process_one_symbol (int type, int desc, CORE_ADDR valu, char *name,
2734 struct section_offsets *section_offsets,
2735 struct objfile *objfile)
2736 {
2737 #ifdef SUN_FIXED_LBRAC_BUG
2738 /* If SUN_FIXED_LBRAC_BUG is defined, then it tells us whether we need
2739 to correct the address of N_LBRAC's. If it is not defined, then
2740 we never need to correct the addresses. */
2741
2742 /* This records the last pc address we've seen. We depend on there being
2743 an SLINE or FUN or SO before the first LBRAC, since the variable does
2744 not get reset in between reads of different symbol files. */
2745 static CORE_ADDR last_pc_address;
2746 #endif
2747
2748 register struct context_stack *new;
2749 /* This remembers the address of the start of a function. It is used
2750 because in Solaris 2, N_LBRAC, N_RBRAC, and N_SLINE entries are
2751 relative to the current function's start address. On systems
2752 other than Solaris 2, this just holds the SECT_OFF_TEXT value, and is
2753 used to relocate these symbol types rather than SECTION_OFFSETS. */
2754 static CORE_ADDR function_start_offset;
2755
2756 /* This holds the address of the start of a function, without the system
2757 peculiarities of function_start_offset. */
2758 static CORE_ADDR last_function_start;
2759
2760 /* If this is nonzero, we've seen an N_SLINE since the start of the current
2761 function. Initialized to nonzero to assure that last_function_start
2762 is never used uninitialized. */
2763 static int sline_found_in_function = 1;
2764
2765 /* If this is nonzero, we've seen a non-gcc N_OPT symbol for this source
2766 file. Used to detect the SunPRO solaris compiler. */
2767 static int n_opt_found;
2768
2769 /* The stab type used for the definition of the last function.
2770 N_STSYM or N_GSYM for SunOS4 acc; N_FUN for other compilers. */
2771 static int function_stab_type = 0;
2772
2773 if (!block_address_function_relative)
2774 /* N_LBRAC, N_RBRAC and N_SLINE entries are not relative to the
2775 function start address, so just use the text offset. */
2776 function_start_offset = ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2777
2778 /* Something is wrong if we see real data before
2779 seeing a source file name. */
2780
2781 if (last_source_file == NULL && type != (unsigned char) N_SO)
2782 {
2783 /* Ignore any symbols which appear before an N_SO symbol.
2784 Currently no one puts symbols there, but we should deal
2785 gracefully with the case. A complain()t might be in order,
2786 but this should not be an error (). */
2787 return;
2788 }
2789
2790 switch (type)
2791 {
2792 case N_FUN:
2793 case N_FNAME:
2794
2795 if (*name == '\000')
2796 {
2797 /* This N_FUN marks the end of a function. This closes off the
2798 current block. */
2799 record_line (current_subfile, 0, function_start_offset + valu);
2800 within_function = 0;
2801 new = pop_context ();
2802
2803 /* Make a block for the local symbols within. */
2804 finish_block (new->name, &local_symbols, new->old_blocks,
2805 new->start_addr, new->start_addr + valu,
2806 objfile);
2807
2808 /* May be switching to an assembler file which may not be using
2809 block relative stabs, so reset the offset. */
2810 if (block_address_function_relative)
2811 function_start_offset = 0;
2812
2813 break;
2814 }
2815
2816 sline_found_in_function = 0;
2817
2818 /* Relocate for dynamic loading */
2819 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2820 valu = SMASH_TEXT_ADDRESS (valu);
2821 last_function_start = valu;
2822
2823 goto define_a_symbol;
2824
2825 case N_LBRAC:
2826 /* This "symbol" just indicates the start of an inner lexical
2827 context within a function. */
2828
2829 /* Ignore extra outermost context from SunPRO cc and acc. */
2830 if (n_opt_found && desc == 1)
2831 break;
2832
2833 if (block_address_function_relative)
2834 /* Relocate for Sun ELF acc fn-relative syms. */
2835 valu += function_start_offset;
2836 else
2837 /* On most machines, the block addresses are relative to the
2838 N_SO, the linker did not relocate them (sigh). */
2839 valu += last_source_start_addr;
2840
2841 #ifdef SUN_FIXED_LBRAC_BUG
2842 if (!SUN_FIXED_LBRAC_BUG && valu < last_pc_address)
2843 {
2844 /* Patch current LBRAC pc value to match last handy pc value */
2845 complain (&lbrac_complaint);
2846 valu = last_pc_address;
2847 }
2848 #endif
2849 new = push_context (desc, valu);
2850 break;
2851
2852 case N_RBRAC:
2853 /* This "symbol" just indicates the end of an inner lexical
2854 context that was started with N_LBRAC. */
2855
2856 /* Ignore extra outermost context from SunPRO cc and acc. */
2857 if (n_opt_found && desc == 1)
2858 break;
2859
2860 if (block_address_function_relative)
2861 /* Relocate for Sun ELF acc fn-relative syms. */
2862 valu += function_start_offset;
2863 else
2864 /* On most machines, the block addresses are relative to the
2865 N_SO, the linker did not relocate them (sigh). */
2866 valu += last_source_start_addr;
2867
2868 new = pop_context ();
2869 if (desc != new->depth)
2870 complain (&lbrac_mismatch_complaint, symnum);
2871
2872 /* Some compilers put the variable decls inside of an
2873 LBRAC/RBRAC block. This macro should be nonzero if this
2874 is true. DESC is N_DESC from the N_RBRAC symbol.
2875 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL
2876 or the GCC2_COMPILED_SYMBOL. */
2877 #if !defined (VARIABLES_INSIDE_BLOCK)
2878 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
2879 #endif
2880
2881 /* Can only use new->locals as local symbols here if we're in
2882 gcc or on a machine that puts them before the lbrack. */
2883 if (!VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2884 local_symbols = new->locals;
2885
2886 if (context_stack_depth
2887 > !VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2888 {
2889 /* This is not the outermost LBRAC...RBRAC pair in the function,
2890 its local symbols preceded it, and are the ones just recovered
2891 from the context stack. Define the block for them (but don't
2892 bother if the block contains no symbols. Should we complain
2893 on blocks without symbols? I can't think of any useful purpose
2894 for them). */
2895 if (local_symbols != NULL)
2896 {
2897 /* Muzzle a compiler bug that makes end < start. (which
2898 compilers? Is this ever harmful?). */
2899 if (new->start_addr > valu)
2900 {
2901 complain (&lbrac_rbrac_complaint);
2902 new->start_addr = valu;
2903 }
2904 /* Make a block for the local symbols within. */
2905 finish_block (0, &local_symbols, new->old_blocks,
2906 new->start_addr, valu, objfile);
2907 }
2908 }
2909 else
2910 {
2911 /* This is the outermost LBRAC...RBRAC pair. There is no
2912 need to do anything; leave the symbols that preceded it
2913 to be attached to the function's own block. We need to
2914 indicate that we just moved outside of the function. */
2915 within_function = 0;
2916 }
2917
2918 if (VARIABLES_INSIDE_BLOCK (desc, processing_gcc_compilation))
2919 /* Now pop locals of block just finished. */
2920 local_symbols = new->locals;
2921 break;
2922
2923 case N_FN:
2924 case N_FN_SEQ:
2925 /* This kind of symbol indicates the start of an object file. */
2926 /* Relocate for dynamic loading */
2927 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2928 break;
2929
2930 case N_SO:
2931 /* This type of symbol indicates the start of data
2932 for one source file.
2933 Finish the symbol table of the previous source file
2934 (if any) and start accumulating a new symbol table. */
2935 /* Relocate for dynamic loading */
2936 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2937
2938 n_opt_found = 0;
2939
2940 #ifdef SUN_FIXED_LBRAC_BUG
2941 last_pc_address = valu; /* Save for SunOS bug circumcision */
2942 #endif
2943
2944 #ifdef PCC_SOL_BROKEN
2945 /* pcc bug, occasionally puts out SO for SOL. */
2946 if (context_stack_depth > 0)
2947 {
2948 start_subfile (name, NULL);
2949 break;
2950 }
2951 #endif
2952 if (last_source_file)
2953 {
2954 /* Check if previous symbol was also an N_SO (with some
2955 sanity checks). If so, that one was actually the directory
2956 name, and the current one is the real file name.
2957 Patch things up. */
2958 if (previous_stab_code == (unsigned char) N_SO)
2959 {
2960 patch_subfile_names (current_subfile, name);
2961 break; /* Ignore repeated SOs */
2962 }
2963 end_symtab (valu, objfile, SECT_OFF_TEXT (objfile));
2964 end_stabs ();
2965 }
2966
2967 /* Null name means this just marks the end of text for this .o file.
2968 Don't start a new symtab in this case. */
2969 if (*name == '\000')
2970 break;
2971
2972 if (block_address_function_relative)
2973 function_start_offset = 0;
2974
2975 start_stabs ();
2976 start_symtab (name, NULL, valu);
2977 record_debugformat ("stabs");
2978 break;
2979
2980 case N_SOL:
2981 /* This type of symbol indicates the start of data for
2982 a sub-source-file, one whose contents were copied or
2983 included in the compilation of the main source file
2984 (whose name was given in the N_SO symbol.) */
2985 /* Relocate for dynamic loading */
2986 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
2987 start_subfile (name, current_subfile->dirname);
2988 break;
2989
2990 case N_BINCL:
2991 push_subfile ();
2992 add_new_header_file (name, valu);
2993 start_subfile (name, current_subfile->dirname);
2994 break;
2995
2996 case N_EINCL:
2997 start_subfile (pop_subfile (), current_subfile->dirname);
2998 break;
2999
3000 case N_EXCL:
3001 add_old_header_file (name, valu);
3002 break;
3003
3004 case N_SLINE:
3005 /* This type of "symbol" really just records
3006 one line-number -- core-address correspondence.
3007 Enter it in the line list for this symbol table. */
3008
3009 /* Relocate for dynamic loading and for ELF acc fn-relative syms. */
3010 valu += function_start_offset;
3011
3012 #ifdef SUN_FIXED_LBRAC_BUG
3013 last_pc_address = valu; /* Save for SunOS bug circumcision */
3014 #endif
3015 /* If this is the first SLINE note in the function, record it at
3016 the start of the function instead of at the listed location. */
3017 if (within_function && sline_found_in_function == 0)
3018 {
3019 record_line (current_subfile, desc, last_function_start);
3020 sline_found_in_function = 1;
3021 }
3022 else
3023 record_line (current_subfile, desc, valu);
3024 break;
3025
3026 case N_BCOMM:
3027 common_block_start (name, objfile);
3028 break;
3029
3030 case N_ECOMM:
3031 common_block_end (objfile);
3032 break;
3033
3034 /* The following symbol types need to have the appropriate offset added
3035 to their value; then we process symbol definitions in the name. */
3036
3037 case N_STSYM: /* Static symbol in data seg */
3038 case N_LCSYM: /* Static symbol in BSS seg */
3039 case N_ROSYM: /* Static symbol in Read-only data seg */
3040 /* HORRID HACK DEPT. However, it's Sun's furgin' fault.
3041 Solaris2's stabs-in-elf makes *most* symbols relative
3042 but leaves a few absolute (at least for Solaris 2.1 and version
3043 2.0.1 of the SunPRO compiler). N_STSYM and friends sit on the fence.
3044 .stab "foo:S...",N_STSYM is absolute (ld relocates it)
3045 .stab "foo:V...",N_STSYM is relative (section base subtracted).
3046 This leaves us no choice but to search for the 'S' or 'V'...
3047 (or pass the whole section_offsets stuff down ONE MORE function
3048 call level, which we really don't want to do). */
3049 {
3050 char *p;
3051
3052 /* .o files and NLMs have non-zero text seg offsets, but don't need
3053 their static syms offset in this fashion. XXX - This is really a
3054 crock that should be fixed in the solib handling code so that I
3055 don't have to work around it here. */
3056
3057 if (!symfile_relocatable)
3058 {
3059 p = strchr (name, ':');
3060 if (p != 0 && p[1] == 'S')
3061 {
3062 /* The linker relocated it. We don't want to add an
3063 elfstab_offset_sections-type offset, but we *do* want
3064 to add whatever solib.c passed to symbol_file_add as
3065 addr (this is known to affect SunOS4, and I suspect ELF
3066 too). Since elfstab_offset_sections currently does not
3067 muck with the text offset (there is no Ttext.text
3068 symbol), we can get addr from the text offset. If
3069 elfstab_offset_sections ever starts dealing with the
3070 text offset, and we still need to do this, we need to
3071 invent a SECT_OFF_ADDR_KLUDGE or something. */
3072 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
3073 goto define_a_symbol;
3074 }
3075 }
3076 /* Since it's not the kludge case, re-dispatch to the right handler. */
3077 switch (type)
3078 {
3079 case N_STSYM:
3080 goto case_N_STSYM;
3081 case N_LCSYM:
3082 goto case_N_LCSYM;
3083 case N_ROSYM:
3084 goto case_N_ROSYM;
3085 default:
3086 internal_error (__FILE__, __LINE__, "failed internal consistency check");
3087 }
3088 }
3089
3090 case_N_STSYM: /* Static symbol in data seg */
3091 case N_DSLINE: /* Source line number, data seg */
3092 valu += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
3093 goto define_a_symbol;
3094
3095 case_N_LCSYM: /* Static symbol in BSS seg */
3096 case N_BSLINE: /* Source line number, bss seg */
3097 /* N_BROWS: overlaps with N_BSLINE */
3098 valu += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
3099 goto define_a_symbol;
3100
3101 case_N_ROSYM: /* Static symbol in Read-only data seg */
3102 valu += ANOFFSET (section_offsets, SECT_OFF_RODATA (objfile));
3103 goto define_a_symbol;
3104
3105 case N_ENTRY: /* Alternate entry point */
3106 /* Relocate for dynamic loading */
3107 valu += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
3108 goto define_a_symbol;
3109
3110 /* The following symbol types we don't know how to process. Handle
3111 them in a "default" way, but complain to people who care. */
3112 default:
3113 case N_CATCH: /* Exception handler catcher */
3114 case N_EHDECL: /* Exception handler name */
3115 case N_PC: /* Global symbol in Pascal */
3116 case N_M2C: /* Modula-2 compilation unit */
3117 /* N_MOD2: overlaps with N_EHDECL */
3118 case N_SCOPE: /* Modula-2 scope information */
3119 case N_ECOML: /* End common (local name) */
3120 case N_NBTEXT: /* Gould Non-Base-Register symbols??? */
3121 case N_NBDATA:
3122 case N_NBBSS:
3123 case N_NBSTS:
3124 case N_NBLCS:
3125 complain (&unknown_symtype_complaint, local_hex_string (type));
3126 /* FALLTHROUGH */
3127
3128 /* The following symbol types don't need the address field relocated,
3129 since it is either unused, or is absolute. */
3130 define_a_symbol:
3131 case N_GSYM: /* Global variable */
3132 case N_NSYMS: /* Number of symbols (ultrix) */
3133 case N_NOMAP: /* No map? (ultrix) */
3134 case N_RSYM: /* Register variable */
3135 case N_DEFD: /* Modula-2 GNU module dependency */
3136 case N_SSYM: /* Struct or union element */
3137 case N_LSYM: /* Local symbol in stack */
3138 case N_PSYM: /* Parameter variable */
3139 case N_LENG: /* Length of preceding symbol type */
3140 if (name)
3141 {
3142 int deftype;
3143 char *colon_pos = strchr (name, ':');
3144 if (colon_pos == NULL)
3145 deftype = '\0';
3146 else
3147 deftype = colon_pos[1];
3148
3149 switch (deftype)
3150 {
3151 case 'f':
3152 case 'F':
3153 function_stab_type = type;
3154
3155 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
3156 /* Deal with the SunPRO 3.0 compiler which omits the address
3157 from N_FUN symbols. */
3158 if (type == N_FUN
3159 && valu == ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile)))
3160 {
3161 CORE_ADDR minsym_valu =
3162 find_stab_function_addr (name, last_source_file, objfile);
3163
3164 /* find_stab_function_addr will return 0 if the minimal
3165 symbol wasn't found. (Unfortunately, this might also
3166 be a valid address.) Anyway, if it *does* return 0,
3167 it is likely that the value was set correctly to begin
3168 with... */
3169 if (minsym_valu != 0)
3170 valu = minsym_valu;
3171 }
3172 #endif
3173
3174 #ifdef SUN_FIXED_LBRAC_BUG
3175 /* The Sun acc compiler, under SunOS4, puts out
3176 functions with N_GSYM or N_STSYM. The problem is
3177 that the address of the symbol is no good (for N_GSYM
3178 it doesn't even attept an address; for N_STSYM it
3179 puts out an address but then it gets relocated
3180 relative to the data segment, not the text segment).
3181 Currently we can't fix this up later as we do for
3182 some types of symbol in scan_file_globals.
3183 Fortunately we do have a way of finding the address -
3184 we know that the value in last_pc_address is either
3185 the one we want (if we're dealing with the first
3186 function in an object file), or somewhere in the
3187 previous function. This means that we can use the
3188 minimal symbol table to get the address. */
3189
3190 /* Starting with release 3.0, the Sun acc compiler,
3191 under SunOS4, puts out functions with N_FUN and a value
3192 of zero. This gets relocated to the start of the text
3193 segment of the module, which is no good either.
3194 Under SunOS4 we can deal with this as N_SLINE and N_SO
3195 entries contain valid absolute addresses.
3196 Release 3.0 acc also puts out N_OPT entries, which makes
3197 it possible to discern acc from cc or gcc. */
3198
3199 if (type == N_GSYM || type == N_STSYM
3200 || (type == N_FUN
3201 && n_opt_found && !block_address_function_relative))
3202 {
3203 struct minimal_symbol *m;
3204 int l = colon_pos - name;
3205
3206 m = lookup_minimal_symbol_by_pc (last_pc_address);
3207 if (m && STREQN (SYMBOL_NAME (m), name, l)
3208 && SYMBOL_NAME (m)[l] == '\0')
3209 /* last_pc_address was in this function */
3210 valu = SYMBOL_VALUE (m);
3211 else if (m && SYMBOL_NAME (m + 1)
3212 && STREQN (SYMBOL_NAME (m + 1), name, l)
3213 && SYMBOL_NAME (m + 1)[l] == '\0')
3214 /* last_pc_address was in last function */
3215 valu = SYMBOL_VALUE (m + 1);
3216 else
3217 /* Not found - use last_pc_address (for finish_block) */
3218 valu = last_pc_address;
3219 }
3220
3221 last_pc_address = valu; /* Save for SunOS bug circumcision */
3222 #endif
3223
3224 if (block_address_function_relative)
3225 /* For Solaris 2.0 compilers, the block addresses and
3226 N_SLINE's are relative to the start of the
3227 function. On normal systems, and when using gcc on
3228 Solaris 2.0, these addresses are just absolute, or
3229 relative to the N_SO, depending on
3230 BLOCK_ADDRESS_ABSOLUTE. */
3231 function_start_offset = valu;
3232
3233 within_function = 1;
3234
3235 if (context_stack_depth > 1)
3236 {
3237 complain (&lbrac_unmatched_complaint, symnum);
3238 break;
3239 }
3240
3241 if (context_stack_depth > 0)
3242 {
3243 new = pop_context ();
3244 /* Make a block for the local symbols within. */
3245 finish_block (new->name, &local_symbols, new->old_blocks,
3246 new->start_addr, valu, objfile);
3247 }
3248
3249 new = push_context (0, valu);
3250 new->name = define_symbol (valu, name, desc, type, objfile);
3251 break;
3252
3253 default:
3254 define_symbol (valu, name, desc, type, objfile);
3255 break;
3256 }
3257 }
3258 break;
3259
3260 /* We use N_OPT to carry the gcc2_compiled flag. Sun uses it
3261 for a bunch of other flags, too. Someday we may parse their
3262 flags; for now we ignore theirs and hope they'll ignore ours. */
3263 case N_OPT: /* Solaris 2: Compiler options */
3264 if (name)
3265 {
3266 if (STREQ (name, GCC2_COMPILED_FLAG_SYMBOL))
3267 {
3268 processing_gcc_compilation = 2;
3269 #if 0 /* Works, but is experimental. -fnf */
3270 /* For now, stay with AUTO_DEMANGLING for g++ output, as we don't
3271 know whether it will use the old style or v3 mangling. */
3272 if (AUTO_DEMANGLING)
3273 {
3274 set_demangling_style (GNU_DEMANGLING_STYLE_STRING);
3275 }
3276 #endif
3277 }
3278 else
3279 n_opt_found = 1;
3280 }
3281 break;
3282
3283 case N_MAIN: /* Name of main routine. */
3284 /* FIXME: If one has a symbol file with N_MAIN and then replaces
3285 it with a symbol file with "main" and without N_MAIN. I'm
3286 not sure exactly what rule to follow but probably something
3287 like: N_MAIN takes precedence over "main" no matter what
3288 objfile it is in; If there is more than one N_MAIN, choose
3289 the one in the symfile_objfile; If there is more than one
3290 N_MAIN within a given objfile, complain() and choose
3291 arbitrarily. (kingdon) */
3292 if (name != NULL)
3293 set_main_name (name);
3294 break;
3295
3296 /* The following symbol types can be ignored. */
3297 case N_OBJ: /* Solaris 2: Object file dir and name */
3298 /* N_UNDF: Solaris 2: file separator mark */
3299 /* N_UNDF: -- we will never encounter it, since we only process one
3300 file's symbols at once. */
3301 case N_ENDM: /* Solaris 2: End of module */
3302 case N_ALIAS: /* SunPro F77: alias name, ignore for now. */
3303 break;
3304 }
3305
3306 /* '#' is a GNU C extension to allow one symbol to refer to another
3307 related symbol.
3308
3309 Generally this is used so that an alias can refer to its main
3310 symbol. */
3311 if (name[0] == '#')
3312 {
3313 /* Initialize symbol reference names and determine if this is
3314 a definition. If symbol reference is being defined, go
3315 ahead and add it. Otherwise, just return sym. */
3316
3317 char *s = name;
3318 int refnum;
3319
3320 /* If this stab defines a new reference ID that is not on the
3321 reference list, then put it on the reference list.
3322
3323 We go ahead and advance NAME past the reference, even though
3324 it is not strictly necessary at this time. */
3325 refnum = symbol_reference_defined (&s);
3326 if (refnum >= 0)
3327 if (!ref_search (refnum))
3328 ref_add (refnum, 0, name, valu);
3329 name = s;
3330 }
3331
3332
3333 previous_stab_code = type;
3334 }
3335 \f
3336 /* FIXME: The only difference between this and elfstab_build_psymtabs
3337 is the call to install_minimal_symbols for elf, and the support for
3338 split sections. If the differences are really that small, the code
3339 should be shared. */
3340
3341 /* Scan and build partial symbols for an coff symbol file.
3342 The coff file has already been processed to get its minimal symbols.
3343
3344 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3345 rolled into one.
3346
3347 OBJFILE is the object file we are reading symbols from.
3348 ADDR is the address relative to which the symbols are (e.g.
3349 the base address of the text segment).
3350 MAINLINE is true if we are reading the main symbol
3351 table (as opposed to a shared lib or dynamically loaded file).
3352 TEXTADDR is the address of the text section.
3353 TEXTSIZE is the size of the text section.
3354 STABSECTS is the list of .stab sections in OBJFILE.
3355 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3356 .stabstr section exists.
3357
3358 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3359 adjusted for coff details. */
3360
3361 void
3362 coffstab_build_psymtabs (struct objfile *objfile, int mainline,
3363 CORE_ADDR textaddr, unsigned int textsize,
3364 struct stab_section_list *stabsects,
3365 file_ptr stabstroffset, unsigned int stabstrsize)
3366 {
3367 int val;
3368 bfd *sym_bfd = objfile->obfd;
3369 char *name = bfd_get_filename (sym_bfd);
3370 struct dbx_symfile_info *info;
3371 unsigned int stabsize;
3372
3373 /* There is already a dbx_symfile_info allocated by our caller.
3374 It might even contain some info from the coff symtab to help us. */
3375 info = objfile->sym_stab_info;
3376
3377 DBX_TEXT_ADDR (objfile) = textaddr;
3378 DBX_TEXT_SIZE (objfile) = textsize;
3379
3380 #define COFF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
3381 DBX_SYMBOL_SIZE (objfile) = COFF_STABS_SYMBOL_SIZE;
3382 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
3383
3384 if (stabstrsize > bfd_get_size (sym_bfd))
3385 error ("ridiculous string table size: %d bytes", stabstrsize);
3386 DBX_STRINGTAB (objfile) = (char *)
3387 obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
3388 OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
3389
3390 /* Now read in the string table in one big gulp. */
3391
3392 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
3393 if (val < 0)
3394 perror_with_name (name);
3395 val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
3396 if (val != stabstrsize)
3397 perror_with_name (name);
3398
3399 stabsread_new_init ();
3400 buildsym_new_init ();
3401 free_header_files ();
3402 init_header_files ();
3403
3404 processing_acc_compilation = 1;
3405
3406 /* In a coff file, we've already installed the minimal symbols that came
3407 from the coff (non-stab) symbol table, so always act like an
3408 incremental load here. */
3409 if (stabsects->next == NULL)
3410 {
3411 stabsize = bfd_section_size (sym_bfd, stabsects->section);
3412 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
3413 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
3414 }
3415 else
3416 {
3417 struct stab_section_list *stabsect;
3418
3419 DBX_SYMCOUNT (objfile) = 0;
3420 for (stabsect = stabsects; stabsect != NULL; stabsect = stabsect->next)
3421 {
3422 stabsize = bfd_section_size (sym_bfd, stabsect->section);
3423 DBX_SYMCOUNT (objfile) += stabsize / DBX_SYMBOL_SIZE (objfile);
3424 }
3425
3426 DBX_SYMTAB_OFFSET (objfile) = stabsects->section->filepos;
3427
3428 symbuf_sections = stabsects->next;
3429 symbuf_left = bfd_section_size (sym_bfd, stabsects->section);
3430 symbuf_read = 0;
3431 }
3432
3433 dbx_symfile_read (objfile, 0);
3434 }
3435 \f
3436 /* Scan and build partial symbols for an ELF symbol file.
3437 This ELF file has already been processed to get its minimal symbols,
3438 and any DWARF symbols that were in it.
3439
3440 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3441 rolled into one.
3442
3443 OBJFILE is the object file we are reading symbols from.
3444 ADDR is the address relative to which the symbols are (e.g.
3445 the base address of the text segment).
3446 MAINLINE is true if we are reading the main symbol
3447 table (as opposed to a shared lib or dynamically loaded file).
3448 STABOFFSET and STABSIZE define the location in OBJFILE where the .stab
3449 section exists.
3450 STABSTROFFSET and STABSTRSIZE define the location in OBJFILE where the
3451 .stabstr section exists.
3452
3453 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read,
3454 adjusted for elf details. */
3455
3456 void
3457 elfstab_build_psymtabs (struct objfile *objfile, int mainline,
3458 file_ptr staboffset, unsigned int stabsize,
3459 file_ptr stabstroffset, unsigned int stabstrsize)
3460 {
3461 int val;
3462 bfd *sym_bfd = objfile->obfd;
3463 char *name = bfd_get_filename (sym_bfd);
3464 struct dbx_symfile_info *info;
3465
3466 /* There is already a dbx_symfile_info allocated by our caller.
3467 It might even contain some info from the ELF symtab to help us. */
3468 info = objfile->sym_stab_info;
3469
3470 /* Find the first and last text address. dbx_symfile_read seems to
3471 want this. */
3472 find_text_range (sym_bfd, objfile);
3473
3474 #define ELF_STABS_SYMBOL_SIZE 12 /* XXX FIXME XXX */
3475 DBX_SYMBOL_SIZE (objfile) = ELF_STABS_SYMBOL_SIZE;
3476 DBX_SYMCOUNT (objfile) = stabsize / DBX_SYMBOL_SIZE (objfile);
3477 DBX_STRINGTAB_SIZE (objfile) = stabstrsize;
3478 DBX_SYMTAB_OFFSET (objfile) = staboffset;
3479
3480 if (stabstrsize > bfd_get_size (sym_bfd))
3481 error ("ridiculous string table size: %d bytes", stabstrsize);
3482 DBX_STRINGTAB (objfile) = (char *)
3483 obstack_alloc (&objfile->psymbol_obstack, stabstrsize + 1);
3484 OBJSTAT (objfile, sz_strtab += stabstrsize + 1);
3485
3486 /* Now read in the string table in one big gulp. */
3487
3488 val = bfd_seek (sym_bfd, stabstroffset, SEEK_SET);
3489 if (val < 0)
3490 perror_with_name (name);
3491 val = bfd_bread (DBX_STRINGTAB (objfile), stabstrsize, sym_bfd);
3492 if (val != stabstrsize)
3493 perror_with_name (name);
3494
3495 stabsread_new_init ();
3496 buildsym_new_init ();
3497 free_header_files ();
3498 init_header_files ();
3499 install_minimal_symbols (objfile);
3500
3501 processing_acc_compilation = 1;
3502
3503 /* In an elf file, we've already installed the minimal symbols that came
3504 from the elf (non-stab) symbol table, so always act like an
3505 incremental load here. */
3506 dbx_symfile_read (objfile, 0);
3507 }
3508 \f
3509 /* Scan and build partial symbols for a file with special sections for stabs
3510 and stabstrings. The file has already been processed to get its minimal
3511 symbols, and any other symbols that might be necessary to resolve GSYMs.
3512
3513 This routine is the equivalent of dbx_symfile_init and dbx_symfile_read
3514 rolled into one.
3515
3516 OBJFILE is the object file we are reading symbols from.
3517 ADDR is the address relative to which the symbols are (e.g. the base address
3518 of the text segment).
3519 MAINLINE is true if we are reading the main symbol table (as opposed to a
3520 shared lib or dynamically loaded file).
3521 STAB_NAME is the name of the section that contains the stabs.
3522 STABSTR_NAME is the name of the section that contains the stab strings.
3523
3524 This routine is mostly copied from dbx_symfile_init and dbx_symfile_read. */
3525
3526 void
3527 stabsect_build_psymtabs (struct objfile *objfile, int mainline, char *stab_name,
3528 char *stabstr_name, char *text_name)
3529 {
3530 int val;
3531 bfd *sym_bfd = objfile->obfd;
3532 char *name = bfd_get_filename (sym_bfd);
3533 asection *stabsect;
3534 asection *stabstrsect;
3535 asection *text_sect;
3536
3537 stabsect = bfd_get_section_by_name (sym_bfd, stab_name);
3538 stabstrsect = bfd_get_section_by_name (sym_bfd, stabstr_name);
3539
3540 if (!stabsect)
3541 return;
3542
3543 if (!stabstrsect)
3544 error ("stabsect_build_psymtabs: Found stabs (%s), but not string section (%s)",
3545 stab_name, stabstr_name);
3546
3547 objfile->sym_stab_info = (struct dbx_symfile_info *)
3548 xmalloc (sizeof (struct dbx_symfile_info));
3549 memset (objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
3550
3551 text_sect = bfd_get_section_by_name (sym_bfd, text_name);
3552 if (!text_sect)
3553 error ("Can't find %s section in symbol file", text_name);
3554 DBX_TEXT_ADDR (objfile) = bfd_section_vma (sym_bfd, text_sect);
3555 DBX_TEXT_SIZE (objfile) = bfd_section_size (sym_bfd, text_sect);
3556
3557 DBX_SYMBOL_SIZE (objfile) = sizeof (struct external_nlist);
3558 DBX_SYMCOUNT (objfile) = bfd_section_size (sym_bfd, stabsect)
3559 / DBX_SYMBOL_SIZE (objfile);
3560 DBX_STRINGTAB_SIZE (objfile) = bfd_section_size (sym_bfd, stabstrsect);
3561 DBX_SYMTAB_OFFSET (objfile) = stabsect->filepos; /* XXX - FIXME: POKING INSIDE BFD DATA STRUCTURES */
3562
3563 if (DBX_STRINGTAB_SIZE (objfile) > bfd_get_size (sym_bfd))
3564 error ("ridiculous string table size: %d bytes", DBX_STRINGTAB_SIZE (objfile));
3565 DBX_STRINGTAB (objfile) = (char *)
3566 obstack_alloc (&objfile->psymbol_obstack, DBX_STRINGTAB_SIZE (objfile) + 1);
3567 OBJSTAT (objfile, sz_strtab += DBX_STRINGTAB_SIZE (objfile) + 1);
3568
3569 /* Now read in the string table in one big gulp. */
3570
3571 val = bfd_get_section_contents (sym_bfd, /* bfd */
3572 stabstrsect, /* bfd section */
3573 DBX_STRINGTAB (objfile), /* input buffer */
3574 0, /* offset into section */
3575 DBX_STRINGTAB_SIZE (objfile)); /* amount to read */
3576
3577 if (!val)
3578 perror_with_name (name);
3579
3580 stabsread_new_init ();
3581 buildsym_new_init ();
3582 free_header_files ();
3583 init_header_files ();
3584 install_minimal_symbols (objfile);
3585
3586 /* Now, do an incremental load */
3587
3588 processing_acc_compilation = 1;
3589 dbx_symfile_read (objfile, 0);
3590 }
3591 \f
3592 static struct sym_fns aout_sym_fns =
3593 {
3594 bfd_target_aout_flavour,
3595 dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */
3596 dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */
3597 dbx_symfile_read, /* sym_read: read a symbol file into symtab */
3598 dbx_symfile_finish, /* sym_finish: finished with file, cleanup */
3599 default_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
3600 NULL /* next: pointer to next struct sym_fns */
3601 };
3602
3603 void
3604 _initialize_dbxread (void)
3605 {
3606 add_symtab_fns (&aout_sym_fns);
3607 }