1 /* Read coff symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1987-2017 Free Software Foundation, Inc.
3 Contributed by David D. Johnson, Brown University (ddj@cs.brown.edu).
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "breakpoint.h"
27 #include "gdb_obstack.h"
30 #include "coff/internal.h" /* Internal format of COFF symbols in BFD */
31 #include "libcoff.h" /* FIXME secret internal data from BFD */
34 #include "gdb-stabs.h"
35 #include "stabsread.h"
36 #include "complaints.h"
39 #include "dictionary.h"
41 #include "coff-pe-read.h"
46 /* Key for COFF-associated data. */
48 static const struct objfile_data *coff_objfile_data_key;
50 /* The objfile we are currently reading. */
52 static struct objfile *coffread_objfile;
54 struct coff_symfile_info
56 file_ptr min_lineno_offset; /* Where in file lowest line#s are. */
57 file_ptr max_lineno_offset; /* 1+last byte of line#s in file. */
59 CORE_ADDR textaddr; /* Addr of .text section. */
60 unsigned int textsize; /* Size of .text section. */
61 struct stab_section_list *stabsects; /* .stab sections. */
62 asection *stabstrsect; /* Section pointer for .stab section. */
66 /* Translate an external name string into a user-visible name. */
67 #define EXTERNAL_NAME(string, abfd) \
68 (string[0] == bfd_get_symbol_leading_char (abfd) \
69 ? string + 1 : string)
71 /* To be an sdb debug type, type must have at least a basic or primary
72 derived type. Using this rather than checking against T_NULL is
73 said to prevent core dumps if we try to operate on Michael Bloom
76 #define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
78 /* Core address of start and end of text of current source file.
79 This comes from a ".text" symbol where x_nlinno > 0. */
81 static CORE_ADDR current_source_start_addr;
82 static CORE_ADDR current_source_end_addr;
84 /* The addresses of the symbol table stream and number of symbols
85 of the object file we are reading (as copied into core). */
87 static bfd *nlist_bfd_global;
88 static int nlist_nsyms_global;
91 /* Pointers to scratch storage, used for reading raw symbols and
94 static char *temp_sym;
95 static char *temp_aux;
97 /* Local variables that hold the shift and mask values for the
98 COFF file that we are currently reading. These come back to us
99 from BFD, and are referenced by their macro names, as well as
100 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
101 macros from include/coff/internal.h . */
103 static unsigned local_n_btmask;
104 static unsigned local_n_btshft;
105 static unsigned local_n_tmask;
106 static unsigned local_n_tshift;
108 #define N_BTMASK local_n_btmask
109 #define N_BTSHFT local_n_btshft
110 #define N_TMASK local_n_tmask
111 #define N_TSHIFT local_n_tshift
113 /* Local variables that hold the sizes in the file of various COFF
114 structures. (We only need to know this to read them from the file
115 -- BFD will then translate the data in them, into `internal_xxx'
116 structs in the right byte order, alignment, etc.) */
118 static unsigned local_linesz;
119 static unsigned local_symesz;
120 static unsigned local_auxesz;
122 /* This is set if this is a PE format file. */
126 /* Chain of typedefs of pointers to empty struct/union types.
127 They are chained thru the SYMBOL_VALUE_CHAIN. */
129 static struct symbol *opaque_type_chain[HASHSIZE];
131 /* Simplified internal version of coff symbol table information. */
136 int c_symnum; /* Symbol number of this entry. */
137 int c_naux; /* 0 if syment only, 1 if syment +
145 /* Vector of types defined so far, indexed by their type numbers. */
147 static struct type **type_vector;
149 /* Number of elements allocated for type_vector currently. */
151 static int type_vector_length;
153 /* Initial size of type vector. Is realloc'd larger if needed, and
154 realloc'd down to the size actually used, when completed. */
156 #define INITIAL_TYPE_VECTOR_LENGTH 160
158 extern void stabsread_clear_cache (void);
160 static struct type *coff_read_struct_type (int, int, int,
163 static struct type *decode_base_type (struct coff_symbol *,
165 union internal_auxent *,
168 static struct type *decode_type (struct coff_symbol *, unsigned int,
169 union internal_auxent *,
172 static struct type *decode_function_type (struct coff_symbol *,
174 union internal_auxent *,
177 static struct type *coff_read_enum_type (int, int, int,
180 static struct symbol *process_coff_symbol (struct coff_symbol *,
181 union internal_auxent *,
184 static void patch_opaque_types (struct symtab *);
186 static void enter_linenos (long, int, int, struct objfile *);
188 static void free_linetab (void);
190 static void free_linetab_cleanup (void *ignore);
192 static int init_lineno (bfd *, long, int);
194 static char *getsymname (struct internal_syment *);
196 static const char *coff_getfilename (union internal_auxent *);
198 static void free_stringtab (void);
200 static void free_stringtab_cleanup (void *ignore);
202 static int init_stringtab (bfd *, long);
204 static void read_one_sym (struct coff_symbol *,
205 struct internal_syment *,
206 union internal_auxent *);
208 static void coff_symtab_read (minimal_symbol_reader &,
209 long, unsigned int, struct objfile *);
211 /* We are called once per section from coff_symfile_read. We
212 need to examine each section we are passed, check to see
213 if it is something we are interested in processing, and
214 if so, stash away some access information for the section.
216 FIXME: The section names should not be hardwired strings (what
217 should they be? I don't think most object file formats have enough
218 section flags to specify what kind of debug section it is
222 coff_locate_sections (bfd *abfd, asection *sectp, void *csip)
224 struct coff_symfile_info *csi;
227 csi = (struct coff_symfile_info *) csip;
228 name = bfd_get_section_name (abfd, sectp);
229 if (strcmp (name, ".text") == 0)
231 csi->textaddr = bfd_section_vma (abfd, sectp);
232 csi->textsize += bfd_section_size (abfd, sectp);
234 else if (startswith (name, ".text"))
236 csi->textsize += bfd_section_size (abfd, sectp);
238 else if (strcmp (name, ".stabstr") == 0)
240 csi->stabstrsect = sectp;
242 else if (startswith (name, ".stab"))
246 /* We can have multiple .stab sections if linked with
248 for (s = name + sizeof ".stab" - 1; *s != '\0'; s++)
253 struct stab_section_list *n, **pn;
255 n = XNEW (struct stab_section_list);
258 for (pn = &csi->stabsects; *pn != NULL; pn = &(*pn)->next)
262 /* This will be run after coffstab_build_psymtabs is called
263 in coff_symfile_read, at which point we no longer need
265 make_cleanup (xfree, n);
270 /* Return the section_offsets* that CS points to. */
271 static int cs_to_section (struct coff_symbol *, struct objfile *);
273 struct find_targ_sec_arg
280 find_targ_sec (bfd *abfd, asection *sect, void *obj)
282 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
284 if (sect->target_index == args->targ_index)
285 *args->resultp = sect;
288 /* Return the bfd_section that CS points to. */
289 static struct bfd_section*
290 cs_to_bfd_section (struct coff_symbol *cs, struct objfile *objfile)
292 asection *sect = NULL;
293 struct find_targ_sec_arg args;
295 args.targ_index = cs->c_secnum;
296 args.resultp = §
297 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
301 /* Return the section number (SECT_OFF_*) that CS points to. */
303 cs_to_section (struct coff_symbol *cs, struct objfile *objfile)
305 asection *sect = cs_to_bfd_section (cs, objfile);
308 return SECT_OFF_TEXT (objfile);
309 return gdb_bfd_section_index (objfile->obfd, sect);
312 /* Return the address of the section of a COFF symbol. */
314 static CORE_ADDR cs_section_address (struct coff_symbol *, bfd *);
317 cs_section_address (struct coff_symbol *cs, bfd *abfd)
319 asection *sect = NULL;
320 struct find_targ_sec_arg args;
323 args.targ_index = cs->c_secnum;
324 args.resultp = §
325 bfd_map_over_sections (abfd, find_targ_sec, &args);
327 addr = bfd_get_section_vma (abfd, sect);
331 /* Look up a coff type-number index. Return the address of the slot
332 where the type for that index is stored.
333 The type-number is in INDEX.
335 This can be used for finding the type associated with that index
336 or for associating a new type with the index. */
338 static struct type **
339 coff_lookup_type (int index)
341 if (index >= type_vector_length)
343 int old_vector_length = type_vector_length;
345 type_vector_length *= 2;
346 if (index /* is still */ >= type_vector_length)
347 type_vector_length = index * 2;
349 type_vector = (struct type **)
350 xrealloc ((char *) type_vector,
351 type_vector_length * sizeof (struct type *));
352 memset (&type_vector[old_vector_length], 0,
353 (type_vector_length - old_vector_length) * sizeof (struct type *));
355 return &type_vector[index];
358 /* Make sure there is a type allocated for type number index
359 and return the type object.
360 This can create an empty (zeroed) type object. */
363 coff_alloc_type (int index)
365 struct type **type_addr = coff_lookup_type (index);
366 struct type *type = *type_addr;
368 /* If we are referring to a type not known at all yet,
369 allocate an empty type for it.
370 We will fill it in later if we find out how. */
373 type = alloc_type (coffread_objfile);
379 /* Start a new symtab for a new source file.
380 This is called when a COFF ".file" symbol is seen;
381 it indicates the start of data for one original source file. */
384 coff_start_symtab (struct objfile *objfile, const char *name)
386 start_symtab (objfile,
387 /* We fill in the filename later. start_symtab puts this pointer
388 into last_source_file and we put it in subfiles->name, which
389 end_symtab frees; that's why it must be malloc'd. */
391 /* We never know the directory name for COFF. */
393 /* The start address is irrelevant, since we set
394 last_source_start_addr in coff_end_symtab. */
396 /* Let buildsym.c deduce the language for this symtab. */
398 record_debugformat ("COFF");
401 /* Save the vital information from when starting to read a file,
402 for use when closing off the current file.
403 NAME is the file name the symbols came from, START_ADDR is the
404 first text address for the file, and SIZE is the number of bytes of
408 complete_symtab (const char *name, CORE_ADDR start_addr, unsigned int size)
410 set_last_source_file (name);
411 current_source_start_addr = start_addr;
412 current_source_end_addr = start_addr + size;
415 /* Finish the symbol definitions for one main source file, close off
416 all the lexical contexts for that file (creating struct block's for
417 them), then make the struct symtab for that file and put it in the
421 coff_end_symtab (struct objfile *objfile)
423 last_source_start_addr = current_source_start_addr;
425 end_symtab (current_source_end_addr, SECT_OFF_TEXT (objfile));
427 /* Reinitialize for beginning of new file. */
428 set_last_source_file (NULL);
431 /* The linker sometimes generates some non-function symbols inside
432 functions referencing variables imported from another DLL.
433 Return nonzero if the given symbol corresponds to one of them. */
436 is_import_fixup_symbol (struct coff_symbol *cs,
437 enum minimal_symbol_type type)
439 /* The following is a bit of a heuristic using the characterictics
440 of these fixup symbols, but should work well in practice... */
443 /* Must be a non-static text symbol. */
444 if (type != mst_text)
447 /* Must be a non-function symbol. */
448 if (ISFCN (cs->c_type))
451 /* The name must start with "__fu<digits>__". */
452 if (!startswith (cs->c_name, "__fu"))
454 if (! isdigit (cs->c_name[4]))
456 for (i = 5; cs->c_name[i] != '\0' && isdigit (cs->c_name[i]); i++)
457 /* Nothing, just incrementing index past all digits. */;
458 if (cs->c_name[i] != '_' || cs->c_name[i + 1] != '_')
464 static struct minimal_symbol *
465 record_minimal_symbol (minimal_symbol_reader &reader,
466 struct coff_symbol *cs, CORE_ADDR address,
467 enum minimal_symbol_type type, int section,
468 struct objfile *objfile)
470 /* We don't want TDESC entry points in the minimal symbol table. */
471 if (cs->c_name[0] == '@')
474 if (is_import_fixup_symbol (cs, type))
476 /* Because the value of these symbols is within a function code
477 range, these symbols interfere with the symbol-from-address
478 reverse lookup; this manifests itselfs in backtraces, or any
479 other commands that prints symbolic addresses. Just pretend
480 these symbols do not exist. */
484 return reader.record_with_info (cs->c_name, address, type, section);
487 /* coff_symfile_init ()
488 is the coff-specific initialization routine for reading symbols.
489 It is passed a struct objfile which contains, among other things,
490 the BFD for the file whose symbols are being read, and a slot for
491 a pointer to "private data" which we fill with cookies and other
492 treats for coff_symfile_read ().
494 We will only be called if this is a COFF or COFF-like file. BFD
495 handles figuring out the format of the file, and code in symtab.c
496 uses BFD's determination to vector to us.
498 The ultimate result is a new symtab (or, FIXME, eventually a
502 coff_symfile_init (struct objfile *objfile)
504 struct dbx_symfile_info *dbx;
505 struct coff_symfile_info *coff;
507 /* Allocate struct to keep track of stab reading. */
508 dbx = XCNEW (struct dbx_symfile_info);
509 set_objfile_data (objfile, dbx_objfile_data_key, dbx);
511 /* Allocate struct to keep track of the symfile. */
512 coff = XCNEW (struct coff_symfile_info);
513 set_objfile_data (objfile, coff_objfile_data_key, coff);
515 /* COFF objects may be reordered, so set OBJF_REORDERED. If we
516 find this causes a significant slowdown in gdb then we could
517 set it in the debug symbol readers only when necessary. */
518 objfile->flags |= OBJF_REORDERED;
521 /* This function is called for every section; it finds the outer
522 limits of the line table (minimum and maximum file offset) so that
523 the mainline code can read the whole thing for efficiency. */
526 find_linenos (bfd *abfd, struct bfd_section *asect, void *vpinfo)
528 struct coff_symfile_info *info;
530 file_ptr offset, maxoff;
532 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
533 count = asect->lineno_count;
534 /* End of warning. */
538 size = count * local_linesz;
540 info = (struct coff_symfile_info *) vpinfo;
541 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
542 offset = asect->line_filepos;
543 /* End of warning. */
545 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
546 info->min_lineno_offset = offset;
548 maxoff = offset + size;
549 if (maxoff > info->max_lineno_offset)
550 info->max_lineno_offset = maxoff;
554 /* The BFD for this file -- only good while we're actively reading
555 symbols into a psymtab or a symtab. */
557 static bfd *symfile_bfd;
559 /* Read a symbol file, after initialization by coff_symfile_init. */
562 coff_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
564 struct coff_symfile_info *info;
565 bfd *abfd = objfile->obfd;
566 coff_data_type *cdata = coff_data (abfd);
567 char *name = bfd_get_filename (abfd);
569 unsigned int num_symbols;
571 int stringtab_offset;
572 struct cleanup *back_to;
575 info = (struct coff_symfile_info *) objfile_data (objfile,
576 coff_objfile_data_key);
577 symfile_bfd = abfd; /* Kludge for swap routines. */
579 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
580 num_symbols = bfd_get_symcount (abfd); /* How many syms */
581 symtab_offset = cdata->sym_filepos; /* Symbol table file offset */
582 stringtab_offset = symtab_offset + /* String table file offset */
583 num_symbols * cdata->local_symesz;
585 /* Set a few file-statics that give us specific information about
586 the particular COFF file format we're reading. */
587 local_n_btmask = cdata->local_n_btmask;
588 local_n_btshft = cdata->local_n_btshft;
589 local_n_tmask = cdata->local_n_tmask;
590 local_n_tshift = cdata->local_n_tshift;
591 local_linesz = cdata->local_linesz;
592 local_symesz = cdata->local_symesz;
593 local_auxesz = cdata->local_auxesz;
595 /* Allocate space for raw symbol and aux entries, based on their
596 space requirements as reported by BFD. */
597 temp_sym = (char *) xmalloc
598 (cdata->local_symesz + cdata->local_auxesz);
599 temp_aux = temp_sym + cdata->local_symesz;
600 back_to = make_cleanup (free_current_contents, &temp_sym);
602 /* We need to know whether this is a PE file, because in PE files,
603 unlike standard COFF files, symbol values are stored as offsets
604 from the section address, rather than as absolute addresses.
605 FIXME: We should use BFD to read the symbol table, and thus avoid
608 startswith (bfd_get_target (objfile->obfd), "pe")
609 || startswith (bfd_get_target (objfile->obfd), "epoc-pe");
611 /* End of warning. */
613 info->min_lineno_offset = 0;
614 info->max_lineno_offset = 0;
616 /* Only read line number information if we have symbols.
618 On Windows NT, some of the system's DLL's have sections with
619 PointerToLinenumbers fields that are non-zero, but point at
620 random places within the image file. (In the case I found,
621 KERNEL32.DLL's .text section has a line number info pointer that
622 points into the middle of the string `lib\\i386\kernel32.dll'.)
624 However, these DLL's also have no symbols. The line number
625 tables are meaningless without symbols. And in fact, GDB never
626 uses the line number information unless there are symbols. So we
627 can avoid spurious error messages (and maybe run a little
628 faster!) by not even reading the line number table unless we have
632 /* Read the line number table, all at once. */
633 bfd_map_over_sections (abfd, find_linenos, (void *) info);
635 make_cleanup (free_linetab_cleanup, 0 /*ignore*/);
636 val = init_lineno (abfd, info->min_lineno_offset,
637 info->max_lineno_offset - info->min_lineno_offset);
639 error (_("\"%s\": error reading line numbers."), name);
642 /* Now read the string table, all at once. */
644 make_cleanup (free_stringtab_cleanup, 0 /*ignore*/);
645 val = init_stringtab (abfd, stringtab_offset);
647 error (_("\"%s\": can't get string table"), name);
649 minimal_symbol_reader reader (objfile);
651 /* Now that the executable file is positioned at symbol table,
652 process it and define symbols accordingly. */
654 coff_symtab_read (reader, (long) symtab_offset, num_symbols, objfile);
656 /* Install any minimal symbols that have been collected as the
657 current minimal symbols for this objfile. */
663 struct minimal_symbol *msym;
665 ALL_OBJFILE_MSYMBOLS (objfile, msym)
667 const char *name = MSYMBOL_LINKAGE_NAME (msym);
669 /* If the minimal symbols whose name are prefixed by "__imp_"
670 or "_imp_", get rid of the prefix, and search the minimal
671 symbol in OBJFILE. Note that 'maintenance print msymbols'
672 shows that type of these "_imp_XXXX" symbols is mst_data. */
673 if (MSYMBOL_TYPE (msym) == mst_data)
675 const char *name1 = NULL;
677 if (startswith (name, "_imp_"))
679 else if (startswith (name, "__imp_"))
683 int lead = bfd_get_symbol_leading_char (objfile->obfd);
684 struct bound_minimal_symbol found;
686 if (lead != '\0' && *name1 == lead)
689 found = lookup_minimal_symbol (name1, NULL, objfile);
691 /* If found, there are symbols named "_imp_foo" and "foo"
692 respectively in OBJFILE. Set the type of symbol "foo"
693 as 'mst_solib_trampoline'. */
694 if (found.minsym != NULL
695 && MSYMBOL_TYPE (found.minsym) == mst_text)
696 MSYMBOL_TYPE (found.minsym) = mst_solib_trampoline;
702 if (!(objfile->flags & OBJF_READNEVER))
703 bfd_map_over_sections (abfd, coff_locate_sections, (void *) info);
707 if (!info->stabstrsect)
709 error (_("The debugging information in `%s' is corrupted.\nThe "
710 "file has a `.stabs' section, but no `.stabstr' section."),
714 /* FIXME: dubious. Why can't we use something normal like
715 bfd_get_section_contents? */
716 bfd_seek (abfd, abfd->where, 0);
718 stabstrsize = bfd_section_size (abfd, info->stabstrsect);
720 coffstab_build_psymtabs (objfile,
721 info->textaddr, info->textsize,
723 info->stabstrsect->filepos, stabstrsize);
725 if (dwarf2_has_info (objfile, NULL))
727 /* DWARF2 sections. */
728 dwarf2_build_psymtabs (objfile);
731 dwarf2_build_frame_info (objfile);
733 /* Try to add separate debug file if no symbols table found. */
734 if (!objfile_has_partial_symbols (objfile))
738 debugfile = find_separate_debug_file_by_buildid (objfile);
740 if (debugfile == NULL)
741 debugfile = find_separate_debug_file_by_debuglink (objfile);
742 make_cleanup (xfree, debugfile);
746 gdb_bfd_ref_ptr abfd (symfile_bfd_open (debugfile));
748 symbol_file_add_separate (abfd.get (), debugfile, symfile_flags,
753 do_cleanups (back_to);
757 coff_new_init (struct objfile *ignore)
761 /* Perform any local cleanups required when we are done with a
762 particular objfile. I.E, we are in the process of discarding all
763 symbol information for an objfile, freeing up all memory held for
764 it, and unlinking the objfile struct from the global list of known
768 coff_symfile_finish (struct objfile *objfile)
770 /* Let stabs reader clean up. */
771 stabsread_clear_cache ();
773 dwarf2_free_objfile (objfile);
777 /* Given pointers to a symbol table in coff style exec file,
778 analyze them and create struct symtab's describing the symbols.
779 NSYMS is the number of symbols in the symbol table.
780 We read them one at a time using read_one_sym (). */
783 coff_symtab_read (minimal_symbol_reader &reader,
784 long symtab_offset, unsigned int nsyms,
785 struct objfile *objfile)
787 struct gdbarch *gdbarch = get_objfile_arch (objfile);
788 struct context_stack *newobj;
789 struct coff_symbol coff_symbol;
790 struct coff_symbol *cs = &coff_symbol;
791 static struct internal_syment main_sym;
792 static union internal_auxent main_aux;
793 struct coff_symbol fcn_cs_saved;
794 static struct internal_syment fcn_sym_saved;
795 static union internal_auxent fcn_aux_saved;
796 /* A .file is open. */
797 int in_source_file = 0;
798 int next_file_symnum = -1;
799 /* Name of the current file. */
800 const char *filestring = "";
802 int fcn_first_line = 0;
803 CORE_ADDR fcn_first_line_addr = 0;
804 int fcn_last_line = 0;
805 int fcn_start_addr = 0;
806 long fcn_line_ptr = 0;
809 struct minimal_symbol *msym;
811 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
812 it's hard to know I've really worked around it. The fix should
813 be harmless, anyway). The symptom of the bug is that the first
814 fread (in read_one_sym), will (in my example) actually get data
815 from file offset 268, when the fseek was to 264 (and ftell shows
816 264). This causes all hell to break loose. I was unable to
817 reproduce this on a short test program which operated on the same
818 file, performing (I think) the same sequence of operations.
820 It stopped happening when I put in this (former) rewind().
822 FIXME: Find out if this has been reported to Sun, whether it has
823 been fixed in a later release, etc. */
825 bfd_seek (objfile->obfd, 0, 0);
827 /* Position to read the symbol table. */
828 val = bfd_seek (objfile->obfd, (long) symtab_offset, 0);
830 perror_with_name (objfile_name (objfile));
832 coffread_objfile = objfile;
833 nlist_bfd_global = objfile->obfd;
834 nlist_nsyms_global = nsyms;
835 set_last_source_file (NULL);
836 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
838 if (type_vector) /* Get rid of previous one. */
840 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
841 type_vector = XCNEWVEC (struct type *, type_vector_length);
843 coff_start_symtab (objfile, "");
846 while (symnum < nsyms)
848 QUIT; /* Make this command interruptable. */
850 read_one_sym (cs, &main_sym, &main_aux);
852 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
854 if (get_last_source_file ())
855 coff_end_symtab (objfile);
857 coff_start_symtab (objfile, "_globals_");
858 /* coff_start_symtab will set the language of this symtab to
859 language_unknown, since such a ``file name'' is not
860 recognized. Override that with the minimal language to
861 allow printing values in this symtab. */
862 current_subfile->language = language_minimal;
863 complete_symtab ("_globals_", 0, 0);
864 /* Done with all files, everything from here on out is
868 /* Special case for file with type declarations only, no
870 if (!get_last_source_file () && SDB_TYPE (cs->c_type)
871 && cs->c_secnum == N_DEBUG)
872 complete_symtab (filestring, 0, 0);
874 /* Typedefs should not be treated as symbol definitions. */
875 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
877 /* Record all functions -- external and static -- in
879 int section = cs_to_section (cs, objfile);
881 tmpaddr = cs->c_value;
882 record_minimal_symbol (reader, cs, tmpaddr, mst_text,
885 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
886 fcn_start_addr = tmpaddr;
888 fcn_sym_saved = main_sym;
889 fcn_aux_saved = main_aux;
893 switch (cs->c_sclass)
902 complaint (&symfile_complaints,
903 _("Bad n_sclass for symbol %s"),
908 /* c_value field contains symnum of next .file entry in
909 table or symnum of first global after last .file. */
910 next_file_symnum = cs->c_value;
912 filestring = coff_getfilename (&main_aux);
916 /* Complete symbol table for last object file
917 containing debugging information. */
918 if (get_last_source_file ())
920 coff_end_symtab (objfile);
921 coff_start_symtab (objfile, filestring);
926 /* C_LABEL is used for labels and static functions.
927 Including it here allows gdb to see static functions when
928 no debug info is available. */
930 /* However, labels within a function can make weird
931 backtraces, so filter them out (from phdm@macqel.be). */
937 case C_THUMBSTATFUNC:
938 if (cs->c_name[0] == '.')
940 if (strcmp (cs->c_name, ".text") == 0)
942 /* FIXME: don't wire in ".text" as section name or
944 /* Check for in_source_file deals with case of a
945 file with debugging symbols followed by a later
946 file with no symbols. */
948 complete_symtab (filestring,
949 cs->c_value + ANOFFSET (objfile->section_offsets,
950 SECT_OFF_TEXT (objfile)),
951 main_aux.x_scn.x_scnlen);
954 /* Flush rest of '.' symbols. */
957 else if (!SDB_TYPE (cs->c_type)
958 && cs->c_name[0] == 'L'
959 && (startswith (cs->c_name, "LI%")
960 || startswith (cs->c_name, "LF%")
961 || startswith (cs->c_name, "LC%")
962 || startswith (cs->c_name, "LP%")
963 || startswith (cs->c_name, "LPB%")
964 || startswith (cs->c_name, "LBB%")
965 || startswith (cs->c_name, "LBE%")
966 || startswith (cs->c_name, "LPBX%")))
967 /* At least on a 3b1, gcc generates swbeg and string labels
968 that look like this. Ignore them. */
970 /* Fall in for static symbols that don't start with '.' */
975 /* Record it in the minimal symbols regardless of
976 SDB_TYPE. This parallels what we do for other debug
977 formats, and probably is needed to make
978 print_address_symbolic work right without the (now
979 gone) "set fast-symbolic-addr off" kludge. */
981 enum minimal_symbol_type ms_type;
983 CORE_ADDR offset = 0;
985 if (cs->c_secnum == N_UNDEF)
987 /* This is a common symbol. We used to rely on
988 the target to tell us whether it knows where
989 the symbol has been relocated to, but none of
990 the target implementations actually provided
991 that operation. So we just ignore the symbol,
992 the same way we would do if we had a target-side
993 symbol lookup which returned no match. */
996 else if (cs->c_secnum == N_ABS)
998 /* Use the correct minimal symbol type (and don't
999 relocate) for absolute values. */
1001 sec = cs_to_section (cs, objfile);
1002 tmpaddr = cs->c_value;
1006 asection *bfd_section = cs_to_bfd_section (cs, objfile);
1008 sec = cs_to_section (cs, objfile);
1009 tmpaddr = cs->c_value;
1010 /* Statics in a PE file also get relocated. */
1011 if (cs->c_sclass == C_EXT
1012 || cs->c_sclass == C_THUMBEXTFUNC
1013 || cs->c_sclass == C_THUMBEXT
1014 || (pe_file && (cs->c_sclass == C_STAT)))
1015 offset = ANOFFSET (objfile->section_offsets, sec);
1017 if (bfd_section->flags & SEC_CODE)
1020 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
1021 || cs->c_sclass == C_THUMBEXT ?
1022 mst_text : mst_file_text;
1023 tmpaddr = gdbarch_addr_bits_remove (gdbarch, tmpaddr);
1025 else if (bfd_section->flags & SEC_ALLOC
1026 && bfd_section->flags & SEC_LOAD)
1029 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1030 ? mst_data : mst_file_data;
1032 else if (bfd_section->flags & SEC_ALLOC)
1035 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1036 ? mst_bss : mst_file_bss;
1039 ms_type = mst_unknown;
1042 msym = record_minimal_symbol (reader, cs, tmpaddr, ms_type,
1045 gdbarch_coff_make_msymbol_special (gdbarch,
1046 cs->c_sclass, msym);
1048 if (SDB_TYPE (cs->c_type))
1052 sym = process_coff_symbol
1053 (cs, &main_aux, objfile);
1054 SYMBOL_VALUE (sym) = tmpaddr + offset;
1055 SYMBOL_SECTION (sym) = sec;
1061 if (strcmp (cs->c_name, ".bf") == 0)
1063 within_function = 1;
1065 /* Value contains address of first non-init type
1067 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
1068 contains line number of '{' }. */
1069 if (cs->c_naux != 1)
1070 complaint (&symfile_complaints,
1071 _("`.bf' symbol %d has no aux entry"),
1073 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1074 fcn_first_line_addr = cs->c_value;
1076 /* Might want to check that locals are 0 and
1077 context_stack_depth is zero, and complain if not. */
1080 newobj = push_context (depth, fcn_start_addr);
1081 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
1083 process_coff_symbol (&fcn_cs_saved,
1084 &fcn_aux_saved, objfile);
1086 else if (strcmp (cs->c_name, ".ef") == 0)
1088 if (!within_function)
1089 error (_("Bad coff function information."));
1090 /* The value of .ef is the address of epilogue code;
1091 not useful for gdb. */
1092 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1093 contains number of lines to '}' */
1095 if (context_stack_depth <= 0)
1096 { /* We attempted to pop an empty context stack. */
1097 complaint (&symfile_complaints,
1098 _("`.ef' symbol without matching `.bf' "
1099 "symbol ignored starting at symnum %d"),
1101 within_function = 0;
1105 newobj = pop_context ();
1106 /* Stack must be empty now. */
1107 if (context_stack_depth > 0 || newobj == NULL)
1109 complaint (&symfile_complaints,
1110 _("Unmatched .ef symbol(s) ignored "
1111 "starting at symnum %d"),
1113 within_function = 0;
1116 if (cs->c_naux != 1)
1118 complaint (&symfile_complaints,
1119 _("`.ef' symbol %d has no aux entry"),
1121 fcn_last_line = 0x7FFFFFFF;
1125 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1127 /* fcn_first_line is the line number of the opening '{'.
1128 Do not record it - because it would affect gdb's idea
1129 of the line number of the first statement of the
1130 function - except for one-line functions, for which
1131 it is also the line number of all the statements and
1132 of the closing '}', and for which we do not have any
1133 other statement-line-number. */
1134 if (fcn_last_line == 1)
1135 record_line (current_subfile, fcn_first_line,
1136 gdbarch_addr_bits_remove (gdbarch,
1137 fcn_first_line_addr));
1139 enter_linenos (fcn_line_ptr, fcn_first_line,
1140 fcn_last_line, objfile);
1142 finish_block (newobj->name, &local_symbols, newobj->old_blocks,
1143 NULL, newobj->start_addr,
1144 fcn_cs_saved.c_value
1145 + fcn_aux_saved.x_sym.x_misc.x_fsize
1146 + ANOFFSET (objfile->section_offsets,
1147 SECT_OFF_TEXT (objfile)));
1148 within_function = 0;
1153 if (strcmp (cs->c_name, ".bb") == 0)
1155 tmpaddr = cs->c_value;
1156 tmpaddr += ANOFFSET (objfile->section_offsets,
1157 SECT_OFF_TEXT (objfile));
1158 push_context (++depth, tmpaddr);
1160 else if (strcmp (cs->c_name, ".eb") == 0)
1162 if (context_stack_depth <= 0)
1163 { /* We attempted to pop an empty context stack. */
1164 complaint (&symfile_complaints,
1165 _("`.eb' symbol without matching `.bb' "
1166 "symbol ignored starting at symnum %d"),
1171 newobj = pop_context ();
1172 if (depth-- != newobj->depth)
1174 complaint (&symfile_complaints,
1175 _("Mismatched .eb symbol ignored "
1176 "starting at symnum %d"),
1180 if (local_symbols && context_stack_depth > 0)
1183 cs->c_value + ANOFFSET (objfile->section_offsets,
1184 SECT_OFF_TEXT (objfile));
1185 /* Make a block for the local symbols within. */
1186 finish_block (0, &local_symbols, newobj->old_blocks, NULL,
1187 newobj->start_addr, tmpaddr);
1189 /* Now pop locals of block just finished. */
1190 local_symbols = newobj->locals;
1195 process_coff_symbol (cs, &main_aux, objfile);
1200 if ((nsyms == 0) && (pe_file))
1202 /* We've got no debugging symbols, but it's a portable
1203 executable, so try to read the export table. */
1204 read_pe_exported_syms (reader, objfile);
1207 if (get_last_source_file ())
1208 coff_end_symtab (objfile);
1210 /* Patch up any opaque types (references to types that are not defined
1211 in the file where they are referenced, e.g. "struct foo *bar"). */
1213 struct compunit_symtab *cu;
1216 ALL_OBJFILE_FILETABS (objfile, cu, s)
1217 patch_opaque_types (s);
1220 coffread_objfile = NULL;
1223 /* Routines for reading headers and symbols from executable. */
1225 /* Read the next symbol, swap it, and return it in both
1226 internal_syment form, and coff_symbol form. Also return its first
1227 auxent, if any, in internal_auxent form, and skip any other
1231 read_one_sym (struct coff_symbol *cs,
1232 struct internal_syment *sym,
1233 union internal_auxent *aux)
1236 bfd_size_type bytes;
1238 cs->c_symnum = symnum;
1239 bytes = bfd_bread (temp_sym, local_symesz, nlist_bfd_global);
1240 if (bytes != local_symesz)
1241 error (_("%s: error reading symbols"), objfile_name (coffread_objfile));
1242 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *) sym);
1243 cs->c_naux = sym->n_numaux & 0xff;
1244 if (cs->c_naux >= 1)
1246 bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
1247 if (bytes != local_auxesz)
1248 error (_("%s: error reading symbols"), objfile_name (coffread_objfile));
1249 bfd_coff_swap_aux_in (symfile_bfd, temp_aux,
1250 sym->n_type, sym->n_sclass,
1251 0, cs->c_naux, (char *) aux);
1252 /* If more than one aux entry, read past it (only the first aux
1254 for (i = 1; i < cs->c_naux; i++)
1256 bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
1257 if (bytes != local_auxesz)
1258 error (_("%s: error reading symbols"),
1259 objfile_name (coffread_objfile));
1262 cs->c_name = getsymname (sym);
1263 cs->c_value = sym->n_value;
1264 cs->c_sclass = (sym->n_sclass & 0xff);
1265 cs->c_secnum = sym->n_scnum;
1266 cs->c_type = (unsigned) sym->n_type;
1267 if (!SDB_TYPE (cs->c_type))
1271 if (cs->c_sclass & 128)
1272 printf (_("thumb symbol %s, class 0x%x\n"), cs->c_name, cs->c_sclass);
1275 symnum += 1 + cs->c_naux;
1277 /* The PE file format stores symbol values as offsets within the
1278 section, rather than as absolute addresses. We correct that
1279 here, if the symbol has an appropriate storage class. FIXME: We
1280 should use BFD to read the symbols, rather than duplicating the
1284 switch (cs->c_sclass)
1288 case C_THUMBEXTFUNC:
1293 case C_THUMBSTATFUNC:
1299 if (cs->c_secnum != 0)
1300 cs->c_value += cs_section_address (cs, symfile_bfd);
1306 /* Support for string table handling. */
1308 static char *stringtab = NULL;
1311 init_stringtab (bfd *abfd, long offset)
1315 unsigned char lengthbuf[4];
1319 /* If the file is stripped, the offset might be zero, indicating no
1320 string table. Just return with `stringtab' set to null. */
1324 if (bfd_seek (abfd, offset, 0) < 0)
1327 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
1328 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
1330 /* If no string table is needed, then the file may end immediately
1331 after the symbols. Just return with `stringtab' set to null. */
1332 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1335 stringtab = (char *) xmalloc (length);
1336 /* This is in target format (probably not very useful, and not
1337 currently used), not host format. */
1338 memcpy (stringtab, lengthbuf, sizeof lengthbuf);
1339 if (length == sizeof length) /* Empty table -- just the count. */
1342 val = bfd_bread (stringtab + sizeof lengthbuf,
1343 length - sizeof lengthbuf, abfd);
1344 if (val != length - sizeof lengthbuf || stringtab[length - 1] != '\0')
1351 free_stringtab (void)
1359 free_stringtab_cleanup (void *ignore)
1365 getsymname (struct internal_syment *symbol_entry)
1367 static char buffer[SYMNMLEN + 1];
1370 if (symbol_entry->_n._n_n._n_zeroes == 0)
1372 /* FIXME: Probably should be detecting corrupt symbol files by
1373 seeing whether offset points to within the stringtab. */
1374 result = stringtab + symbol_entry->_n._n_n._n_offset;
1378 strncpy (buffer, symbol_entry->_n._n_name, SYMNMLEN);
1379 buffer[SYMNMLEN] = '\0';
1385 /* Extract the file name from the aux entry of a C_FILE symbol.
1386 Return only the last component of the name. Result is in static
1387 storage and is only good for temporary use. */
1390 coff_getfilename (union internal_auxent *aux_entry)
1392 static char buffer[BUFSIZ];
1395 if (aux_entry->x_file.x_n.x_zeroes == 0)
1397 if (strlen (stringtab + aux_entry->x_file.x_n.x_offset) >= BUFSIZ)
1398 internal_error (__FILE__, __LINE__, _("coff file name too long"));
1399 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1403 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1404 buffer[FILNMLEN] = '\0';
1408 /* FIXME: We should not be throwing away the information about what
1409 directory. It should go into dirname of the symtab, or some such
1411 result = lbasename (result);
1415 /* Support for line number handling. */
1417 static char *linetab = NULL;
1418 static long linetab_offset;
1419 static unsigned long linetab_size;
1421 /* Read in all the line numbers for fast lookups later. Leave them in
1422 external (unswapped) format in memory; we'll swap them as we enter
1423 them into GDB's data structures. */
1426 init_lineno (bfd *abfd, long offset, int size)
1430 linetab_offset = offset;
1431 linetab_size = size;
1438 if (bfd_seek (abfd, offset, 0) < 0)
1441 /* Allocate the desired table, plus a sentinel. */
1442 linetab = (char *) xmalloc (size + local_linesz);
1444 val = bfd_bread (linetab, size, abfd);
1448 /* Terminate it with an all-zero sentinel record. */
1449 memset (linetab + size, 0, local_linesz);
1463 free_linetab_cleanup (void *ignore)
1468 #if !defined (L_LNNO32)
1469 #define L_LNNO32(lp) ((lp)->l_lnno)
1473 enter_linenos (long file_offset, int first_line,
1474 int last_line, struct objfile *objfile)
1476 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1478 struct internal_lineno lptr;
1482 if (file_offset < linetab_offset)
1484 complaint (&symfile_complaints,
1485 _("Line number pointer %ld lower than start of line numbers"),
1487 if (file_offset > linetab_size) /* Too big to be an offset? */
1489 file_offset += linetab_offset; /* Try reading at that linetab
1493 rawptr = &linetab[file_offset - linetab_offset];
1495 /* Skip first line entry for each function. */
1496 rawptr += local_linesz;
1497 /* Line numbers start at one for the first line of the function. */
1500 /* If the line number table is full (e.g. 64K lines in COFF debug
1501 info), the next function's L_LNNO32 might not be zero, so don't
1502 overstep the table's end in any case. */
1503 while (rawptr <= &linetab[0] + linetab_size)
1505 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1506 rawptr += local_linesz;
1507 /* The next function, or the sentinel, will have L_LNNO32 zero;
1509 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
1511 CORE_ADDR addr = lptr.l_addr.l_paddr;
1512 addr += ANOFFSET (objfile->section_offsets,
1513 SECT_OFF_TEXT (objfile));
1514 record_line (current_subfile,
1515 first_line + L_LNNO32 (&lptr),
1516 gdbarch_addr_bits_remove (gdbarch, addr));
1524 patch_type (struct type *type, struct type *real_type)
1526 struct type *target = TYPE_TARGET_TYPE (type);
1527 struct type *real_target = TYPE_TARGET_TYPE (real_type);
1528 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1530 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1531 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
1532 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target,
1535 memcpy (TYPE_FIELDS (target),
1536 TYPE_FIELDS (real_target),
1539 if (TYPE_NAME (real_target))
1541 /* The previous copy of TYPE_NAME is allocated by
1542 process_coff_symbol. */
1543 if (TYPE_NAME (target))
1544 xfree ((char*) TYPE_NAME (target));
1545 TYPE_NAME (target) = xstrdup (TYPE_NAME (real_target));
1549 /* Patch up all appropriate typedef symbols in the opaque_type_chains
1550 so that they can be used to print out opaque data structures
1554 patch_opaque_types (struct symtab *s)
1557 struct block_iterator iter;
1558 struct symbol *real_sym;
1560 /* Go through the per-file symbols only. */
1561 b = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (s), STATIC_BLOCK);
1562 ALL_BLOCK_SYMBOLS (b, iter, real_sym)
1564 /* Find completed typedefs to use to fix opaque ones.
1565 Remove syms from the chain when their types are stored,
1566 but search the whole chain, as there may be several syms
1567 from different files with the same name. */
1568 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF
1569 && SYMBOL_DOMAIN (real_sym) == VAR_DOMAIN
1570 && TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR
1571 && TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
1573 const char *name = SYMBOL_LINKAGE_NAME (real_sym);
1574 int hash = hashname (name);
1575 struct symbol *sym, *prev;
1578 for (sym = opaque_type_chain[hash]; sym;)
1580 if (name[0] == SYMBOL_LINKAGE_NAME (sym)[0]
1581 && strcmp (name + 1, SYMBOL_LINKAGE_NAME (sym) + 1) == 0)
1585 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
1589 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
1592 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
1596 sym = SYMBOL_VALUE_CHAIN (prev);
1600 sym = opaque_type_chain[hash];
1606 sym = SYMBOL_VALUE_CHAIN (sym);
1614 coff_reg_to_regnum (struct symbol *sym, struct gdbarch *gdbarch)
1616 return gdbarch_sdb_reg_to_regnum (gdbarch, SYMBOL_VALUE (sym));
1619 static const struct symbol_register_ops coff_register_funcs = {
1623 /* The "aclass" index for computed COFF symbols. */
1625 static int coff_register_index;
1627 static struct symbol *
1628 process_coff_symbol (struct coff_symbol *cs,
1629 union internal_auxent *aux,
1630 struct objfile *objfile)
1632 struct symbol *sym = allocate_symbol (objfile);
1636 name = EXTERNAL_NAME (name, objfile->obfd);
1637 SYMBOL_SET_LANGUAGE (sym, current_subfile->language,
1638 &objfile->objfile_obstack);
1639 SYMBOL_SET_NAMES (sym, name, strlen (name), 1, objfile);
1641 /* default assumptions */
1642 SYMBOL_VALUE (sym) = cs->c_value;
1643 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1644 SYMBOL_SECTION (sym) = cs_to_section (cs, objfile);
1646 if (ISFCN (cs->c_type))
1648 SYMBOL_VALUE (sym) += ANOFFSET (objfile->section_offsets,
1649 SECT_OFF_TEXT (objfile));
1651 lookup_function_type (decode_function_type (cs, cs->c_type,
1654 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
1655 if (cs->c_sclass == C_STAT || cs->c_sclass == C_THUMBSTAT
1656 || cs->c_sclass == C_THUMBSTATFUNC)
1657 add_symbol_to_list (sym, &file_symbols);
1658 else if (cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1659 || cs->c_sclass == C_THUMBEXTFUNC)
1660 add_symbol_to_list (sym, &global_symbols);
1664 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux, objfile);
1665 switch (cs->c_sclass)
1671 SYMBOL_ACLASS_INDEX (sym) = LOC_LOCAL;
1672 add_symbol_to_list (sym, &local_symbols);
1676 case C_THUMBEXTFUNC:
1678 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
1679 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1680 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
1681 SECT_OFF_TEXT (objfile));
1682 add_symbol_to_list (sym, &global_symbols);
1686 case C_THUMBSTATFUNC:
1688 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
1689 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1690 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
1691 SECT_OFF_TEXT (objfile));
1692 if (within_function)
1694 /* Static symbol of local scope. */
1695 add_symbol_to_list (sym, &local_symbols);
1699 /* Static symbol at top level of file. */
1700 add_symbol_to_list (sym, &file_symbols);
1704 #ifdef C_GLBLREG /* AMD coff */
1708 SYMBOL_ACLASS_INDEX (sym) = coff_register_index;
1709 SYMBOL_VALUE (sym) = cs->c_value;
1710 add_symbol_to_list (sym, &local_symbols);
1718 SYMBOL_ACLASS_INDEX (sym) = LOC_ARG;
1719 SYMBOL_IS_ARGUMENT (sym) = 1;
1720 add_symbol_to_list (sym, &local_symbols);
1724 SYMBOL_ACLASS_INDEX (sym) = coff_register_index;
1725 SYMBOL_IS_ARGUMENT (sym) = 1;
1726 SYMBOL_VALUE (sym) = cs->c_value;
1727 add_symbol_to_list (sym, &local_symbols);
1731 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
1732 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1734 /* If type has no name, give it one. */
1735 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1737 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1738 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1740 /* If we are giving a name to a type such as
1741 "pointer to foo" or "function returning foo", we
1742 better not set the TYPE_NAME. If the program
1743 contains "typedef char *caddr_t;", we don't want
1744 all variables of type char * to print as caddr_t.
1745 This is not just a consequence of GDB's type
1746 management; CC and GCC (at least through version
1747 2.4) both output variables of either type char *
1748 or caddr_t with the type refering to the C_TPDEF
1749 symbol for caddr_t. If a future compiler cleans
1750 this up it GDB is not ready for it yet, but if it
1751 becomes ready we somehow need to disable this
1752 check (without breaking the PCC/GCC2.4 case).
1756 Fortunately, this check seems not to be necessary
1757 for anything except pointers or functions. */
1761 TYPE_NAME (SYMBOL_TYPE (sym)) =
1762 xstrdup (SYMBOL_LINKAGE_NAME (sym));
1765 /* Keep track of any type which points to empty structured
1766 type, so it can be filled from a definition from another
1767 file. A simple forward reference (TYPE_CODE_UNDEF) is
1768 not an empty structured type, though; the forward
1769 references work themselves out via the magic of
1770 coff_lookup_type. */
1771 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1772 && TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0
1773 && TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym)))
1776 int i = hashname (SYMBOL_LINKAGE_NAME (sym));
1778 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1779 opaque_type_chain[i] = sym;
1781 add_symbol_to_list (sym, &file_symbols);
1787 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
1788 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
1790 /* Some compilers try to be helpful by inventing "fake"
1791 names for anonymous enums, structures, and unions, like
1792 "~0fake" or ".0fake". Thanks, but no thanks... */
1793 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
1794 if (SYMBOL_LINKAGE_NAME (sym) != NULL
1795 && *SYMBOL_LINKAGE_NAME (sym) != '~'
1796 && *SYMBOL_LINKAGE_NAME (sym) != '.')
1797 TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
1798 concat (SYMBOL_LINKAGE_NAME (sym), (char *)NULL);
1800 add_symbol_to_list (sym, &file_symbols);
1810 /* Decode a coff type specifier; return the type that is meant. */
1812 static struct type *
1813 decode_type (struct coff_symbol *cs, unsigned int c_type,
1814 union internal_auxent *aux, struct objfile *objfile)
1816 struct type *type = 0;
1817 unsigned int new_c_type;
1819 if (c_type & ~N_BTMASK)
1821 new_c_type = DECREF (c_type);
1824 type = decode_type (cs, new_c_type, aux, objfile);
1825 type = lookup_pointer_type (type);
1827 else if (ISFCN (c_type))
1829 type = decode_type (cs, new_c_type, aux, objfile);
1830 type = lookup_function_type (type);
1832 else if (ISARY (c_type))
1835 unsigned short *dim;
1836 struct type *base_type, *index_type, *range_type;
1838 /* Define an array type. */
1839 /* auxent refers to array, not base type. */
1840 if (aux->x_sym.x_tagndx.l == 0)
1843 /* Shift the indices down. */
1844 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1847 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1851 base_type = decode_type (cs, new_c_type, aux, objfile);
1852 index_type = objfile_type (objfile)->builtin_int;
1854 = create_static_range_type ((struct type *) NULL,
1855 index_type, 0, n - 1);
1857 create_array_type ((struct type *) NULL,
1858 base_type, range_type);
1863 /* Reference to existing type. This only occurs with the struct,
1864 union, and enum types. EPI a29k coff fakes us out by producing
1865 aux entries with a nonzero x_tagndx for definitions of structs,
1866 unions, and enums, so we have to check the c_sclass field. SCO
1867 3.2v4 cc gets confused with pointers to pointers to defined
1868 structs, and generates negative x_tagndx fields. */
1869 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
1871 if (cs->c_sclass != C_STRTAG
1872 && cs->c_sclass != C_UNTAG
1873 && cs->c_sclass != C_ENTAG
1874 && aux->x_sym.x_tagndx.l >= 0)
1876 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1881 complaint (&symfile_complaints,
1882 _("Symbol table entry for %s has bad tagndx value"),
1884 /* And fall through to decode_base_type... */
1888 return decode_base_type (cs, BTYPE (c_type), aux, objfile);
1891 /* Decode a coff type specifier for function definition;
1892 return the type that the function returns. */
1894 static struct type *
1895 decode_function_type (struct coff_symbol *cs,
1896 unsigned int c_type,
1897 union internal_auxent *aux,
1898 struct objfile *objfile)
1900 if (aux->x_sym.x_tagndx.l == 0)
1901 cs->c_naux = 0; /* auxent refers to function, not base
1904 return decode_type (cs, DECREF (c_type), aux, objfile);
1907 /* Basic C types. */
1909 static struct type *
1910 decode_base_type (struct coff_symbol *cs,
1911 unsigned int c_type,
1912 union internal_auxent *aux,
1913 struct objfile *objfile)
1915 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1921 /* Shows up with "void (*foo)();" structure members. */
1922 return objfile_type (objfile)->builtin_void;
1926 /* Intel 960 COFF has this symbol and meaning. */
1927 return objfile_type (objfile)->builtin_void;
1931 return objfile_type (objfile)->builtin_char;
1934 return objfile_type (objfile)->builtin_short;
1937 return objfile_type (objfile)->builtin_int;
1940 if (cs->c_sclass == C_FIELD
1941 && aux->x_sym.x_misc.x_lnsz.x_size
1942 > gdbarch_long_bit (gdbarch))
1943 return objfile_type (objfile)->builtin_long_long;
1945 return objfile_type (objfile)->builtin_long;
1948 return objfile_type (objfile)->builtin_float;
1951 return objfile_type (objfile)->builtin_double;
1954 return objfile_type (objfile)->builtin_long_double;
1957 if (cs->c_naux != 1)
1959 /* Anonymous structure type. */
1960 type = coff_alloc_type (cs->c_symnum);
1961 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1962 TYPE_NAME (type) = NULL;
1963 /* This used to set the tag to "<opaque>". But I think
1964 setting it to NULL is right, and the printing code can
1965 print it as "struct {...}". */
1966 TYPE_TAG_NAME (type) = NULL;
1967 INIT_CPLUS_SPECIFIC (type);
1968 TYPE_LENGTH (type) = 0;
1969 TYPE_FIELDS (type) = 0;
1970 TYPE_NFIELDS (type) = 0;
1974 type = coff_read_struct_type (cs->c_symnum,
1975 aux->x_sym.x_misc.x_lnsz.x_size,
1976 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
1982 if (cs->c_naux != 1)
1984 /* Anonymous union type. */
1985 type = coff_alloc_type (cs->c_symnum);
1986 TYPE_NAME (type) = NULL;
1987 /* This used to set the tag to "<opaque>". But I think
1988 setting it to NULL is right, and the printing code can
1989 print it as "union {...}". */
1990 TYPE_TAG_NAME (type) = NULL;
1991 INIT_CPLUS_SPECIFIC (type);
1992 TYPE_LENGTH (type) = 0;
1993 TYPE_FIELDS (type) = 0;
1994 TYPE_NFIELDS (type) = 0;
1998 type = coff_read_struct_type (cs->c_symnum,
1999 aux->x_sym.x_misc.x_lnsz.x_size,
2000 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
2003 TYPE_CODE (type) = TYPE_CODE_UNION;
2007 if (cs->c_naux != 1)
2009 /* Anonymous enum type. */
2010 type = coff_alloc_type (cs->c_symnum);
2011 TYPE_CODE (type) = TYPE_CODE_ENUM;
2012 TYPE_NAME (type) = NULL;
2013 /* This used to set the tag to "<opaque>". But I think
2014 setting it to NULL is right, and the printing code can
2015 print it as "enum {...}". */
2016 TYPE_TAG_NAME (type) = NULL;
2017 TYPE_LENGTH (type) = 0;
2018 TYPE_FIELDS (type) = 0;
2019 TYPE_NFIELDS (type) = 0;
2023 type = coff_read_enum_type (cs->c_symnum,
2024 aux->x_sym.x_misc.x_lnsz.x_size,
2025 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
2031 /* Shouldn't show up here. */
2035 return objfile_type (objfile)->builtin_unsigned_char;
2038 return objfile_type (objfile)->builtin_unsigned_short;
2041 return objfile_type (objfile)->builtin_unsigned_int;
2044 if (cs->c_sclass == C_FIELD
2045 && aux->x_sym.x_misc.x_lnsz.x_size
2046 > gdbarch_long_bit (gdbarch))
2047 return objfile_type (objfile)->builtin_unsigned_long_long;
2049 return objfile_type (objfile)->builtin_unsigned_long;
2051 complaint (&symfile_complaints,
2052 _("Unexpected type for symbol %s"), cs->c_name);
2053 return objfile_type (objfile)->builtin_void;
2056 /* This page contains subroutines of read_type. */
2058 /* Read the description of a structure (or union type) and return an
2059 object describing the type. */
2061 static struct type *
2062 coff_read_struct_type (int index, int length, int lastsym,
2063 struct objfile *objfile)
2067 struct nextfield *next;
2072 struct nextfield *list = 0;
2073 struct nextfield *newobj;
2077 struct coff_symbol member_sym;
2078 struct coff_symbol *ms = &member_sym;
2079 struct internal_syment sub_sym;
2080 union internal_auxent sub_aux;
2083 type = coff_alloc_type (index);
2084 TYPE_CODE (type) = TYPE_CODE_STRUCT;
2085 INIT_CPLUS_SPECIFIC (type);
2086 TYPE_LENGTH (type) = length;
2088 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2090 read_one_sym (ms, &sub_sym, &sub_aux);
2092 name = EXTERNAL_NAME (name, objfile->obfd);
2094 switch (ms->c_sclass)
2099 /* Get space to record the next field's data. */
2100 newobj = XALLOCA (struct nextfield);
2101 newobj->next = list;
2104 /* Save the data. */
2106 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
2107 name, strlen (name));
2108 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type,
2110 SET_FIELD_BITPOS (list->field, 8 * ms->c_value);
2111 FIELD_BITSIZE (list->field) = 0;
2117 /* Get space to record the next field's data. */
2118 newobj = XALLOCA (struct nextfield);
2119 newobj->next = list;
2122 /* Save the data. */
2124 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
2125 name, strlen (name));
2126 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type,
2128 SET_FIELD_BITPOS (list->field, ms->c_value);
2129 FIELD_BITSIZE (list->field) = sub_aux.x_sym.x_misc.x_lnsz.x_size;
2138 /* Now create the vector of fields, and record how big it is. */
2140 TYPE_NFIELDS (type) = nfields;
2141 TYPE_FIELDS (type) = (struct field *)
2142 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2144 /* Copy the saved-up fields into the field vector. */
2146 for (n = nfields; list; list = list->next)
2147 TYPE_FIELD (type, --n) = list->field;
2152 /* Read a definition of an enumeration type,
2153 and create and return a suitable type object.
2154 Also defines the symbols that represent the values of the type. */
2156 static struct type *
2157 coff_read_enum_type (int index, int length, int lastsym,
2158 struct objfile *objfile)
2160 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2165 struct pending **symlist;
2166 struct coff_symbol member_sym;
2167 struct coff_symbol *ms = &member_sym;
2168 struct internal_syment sub_sym;
2169 union internal_auxent sub_aux;
2170 struct pending *osyms, *syms;
2174 int unsigned_enum = 1;
2176 type = coff_alloc_type (index);
2177 if (within_function)
2178 symlist = &local_symbols;
2180 symlist = &file_symbols;
2182 o_nsyms = osyms ? osyms->nsyms : 0;
2184 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2186 read_one_sym (ms, &sub_sym, &sub_aux);
2188 name = EXTERNAL_NAME (name, objfile->obfd);
2190 switch (ms->c_sclass)
2193 sym = allocate_symbol (objfile);
2195 name = (char *) obstack_copy0 (&objfile->objfile_obstack, name,
2197 SYMBOL_SET_LINKAGE_NAME (sym, name);
2198 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
2199 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
2200 SYMBOL_VALUE (sym) = ms->c_value;
2201 add_symbol_to_list (sym, symlist);
2206 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
2207 up the count of how many symbols to read. So stop
2214 /* Now fill in the fields of the type-structure. */
2217 TYPE_LENGTH (type) = length;
2218 else /* Assume ints. */
2219 TYPE_LENGTH (type) = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
2220 TYPE_CODE (type) = TYPE_CODE_ENUM;
2221 TYPE_NFIELDS (type) = nsyms;
2222 TYPE_FIELDS (type) = (struct field *)
2223 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2225 /* Find the symbols for the values and put them into the type.
2226 The symbols can be found in the symlist that we put them on
2227 to cause them to be defined. osyms contains the old value
2228 of that symlist; everything up to there was defined by us. */
2229 /* Note that we preserve the order of the enum constants, so
2230 that in something like "enum {FOO, LAST_THING=FOO}" we print
2231 FOO, not LAST_THING. */
2233 for (syms = *symlist, n = 0; syms; syms = syms->next)
2239 for (; j < syms->nsyms; j++, n++)
2241 struct symbol *xsym = syms->symbol[j];
2243 SYMBOL_TYPE (xsym) = type;
2244 TYPE_FIELD_NAME (type, n) = SYMBOL_LINKAGE_NAME (xsym);
2245 SET_FIELD_ENUMVAL (TYPE_FIELD (type, n), SYMBOL_VALUE (xsym));
2246 if (SYMBOL_VALUE (xsym) < 0)
2248 TYPE_FIELD_BITSIZE (type, n) = 0;
2255 TYPE_UNSIGNED (type) = 1;
2260 /* Register our ability to parse symbols for coff BFD files. */
2262 static const struct sym_fns coff_sym_fns =
2264 coff_new_init, /* sym_new_init: init anything gbl to
2266 coff_symfile_init, /* sym_init: read initial info, setup
2268 coff_symfile_read, /* sym_read: read a symbol file into
2270 NULL, /* sym_read_psymbols */
2271 coff_symfile_finish, /* sym_finish: finished with file,
2273 default_symfile_offsets, /* sym_offsets: xlate external to
2275 default_symfile_segments, /* sym_segments: Get segment
2276 information from a file */
2277 NULL, /* sym_read_linetable */
2279 default_symfile_relocate, /* sym_relocate: Relocate a debug
2281 NULL, /* sym_probe_fns */
2285 /* Free the per-objfile COFF data. */
2288 coff_free_info (struct objfile *objfile, void *arg)
2294 _initialize_coffread (void)
2296 add_symtab_fns (bfd_target_coff_flavour, &coff_sym_fns);
2298 coff_objfile_data_key = register_objfile_data_with_cleanup (NULL,
2302 = register_symbol_register_impl (LOC_REGISTER, &coff_register_funcs);