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