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