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