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