1 /* Read coff symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
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"
45 extern void _initialize_coffread (void);
47 /* Key for COFF-associated data. */
49 static const struct objfile_data *coff_objfile_data_key;
51 /* The objfile we are currently reading. */
53 static struct objfile *coffread_objfile;
55 struct coff_symfile_info
57 file_ptr min_lineno_offset; /* Where in file lowest line#s are. */
58 file_ptr max_lineno_offset; /* 1+last byte of line#s in file. */
60 CORE_ADDR textaddr; /* Addr of .text section. */
61 unsigned int textsize; /* Size of .text section. */
62 struct stab_section_list *stabsects; /* .stab sections. */
63 asection *stabstrsect; /* Section pointer for .stab section. */
67 /* Translate an external name string into a user-visible name. */
68 #define EXTERNAL_NAME(string, abfd) \
69 (string[0] == bfd_get_symbol_leading_char (abfd) \
70 ? string + 1 : string)
72 /* To be an sdb debug type, type must have at least a basic or primary
73 derived type. Using this rather than checking against T_NULL is
74 said to prevent core dumps if we try to operate on Michael Bloom
77 #define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
79 /* Core address of start and end of text of current source file.
80 This comes from a ".text" symbol where x_nlinno > 0. */
82 static CORE_ADDR current_source_start_addr;
83 static CORE_ADDR current_source_end_addr;
85 /* The addresses of the symbol table stream and number of symbols
86 of the object file we are reading (as copied into core). */
88 static bfd *nlist_bfd_global;
89 static int nlist_nsyms_global;
92 /* Pointers to scratch storage, used for reading raw symbols and
95 static char *temp_sym;
96 static char *temp_aux;
98 /* Local variables that hold the shift and mask values for the
99 COFF file that we are currently reading. These come back to us
100 from BFD, and are referenced by their macro names, as well as
101 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
102 macros from include/coff/internal.h . */
104 static unsigned local_n_btmask;
105 static unsigned local_n_btshft;
106 static unsigned local_n_tmask;
107 static unsigned local_n_tshift;
109 #define N_BTMASK local_n_btmask
110 #define N_BTSHFT local_n_btshft
111 #define N_TMASK local_n_tmask
112 #define N_TSHIFT local_n_tshift
114 /* Local variables that hold the sizes in the file of various COFF
115 structures. (We only need to know this to read them from the file
116 -- BFD will then translate the data in them, into `internal_xxx'
117 structs in the right byte order, alignment, etc.) */
119 static unsigned local_linesz;
120 static unsigned local_symesz;
121 static unsigned local_auxesz;
123 /* This is set if this is a PE format file. */
127 /* Chain of typedefs of pointers to empty struct/union types.
128 They are chained thru the SYMBOL_VALUE_CHAIN. */
130 static struct symbol *opaque_type_chain[HASHSIZE];
132 /* Simplified internal version of coff symbol table information. */
137 int c_symnum; /* Symbol number of this entry. */
138 int c_naux; /* 0 if syment only, 1 if syment +
146 /* Vector of types defined so far, indexed by their type numbers. */
148 static struct type **type_vector;
150 /* Number of elements allocated for type_vector currently. */
152 static int type_vector_length;
154 /* Initial size of type vector. Is realloc'd larger if needed, and
155 realloc'd down to the size actually used, when completed. */
157 #define INITIAL_TYPE_VECTOR_LENGTH 160
159 extern void stabsread_clear_cache (void);
161 static struct type *coff_read_struct_type (int, int, int,
164 static struct type *decode_base_type (struct coff_symbol *,
166 union internal_auxent *,
169 static struct type *decode_type (struct coff_symbol *, unsigned int,
170 union internal_auxent *,
173 static struct type *decode_function_type (struct coff_symbol *,
175 union internal_auxent *,
178 static struct type *coff_read_enum_type (int, int, int,
181 static struct symbol *process_coff_symbol (struct coff_symbol *,
182 union internal_auxent *,
185 static void patch_opaque_types (struct symtab *);
187 static void enter_linenos (long, int, int, struct objfile *);
189 static void free_linetab (void);
191 static void free_linetab_cleanup (void *ignore);
193 static int init_lineno (bfd *, long, int);
195 static char *getsymname (struct internal_syment *);
197 static const char *coff_getfilename (union internal_auxent *);
199 static void free_stringtab (void);
201 static void free_stringtab_cleanup (void *ignore);
203 static int init_stringtab (bfd *, long);
205 static void read_one_sym (struct coff_symbol *,
206 struct internal_syment *,
207 union internal_auxent *);
209 static void coff_symtab_read (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 (strncmp (name, ".text", sizeof ".text" - 1) == 0)
236 csi->textsize += bfd_section_size (abfd, sectp);
238 else if (strcmp (name, ".stabstr") == 0)
240 csi->stabstrsect = sectp;
242 else if (strncmp (name, ".stab", sizeof ".stab" - 1) == 0)
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 = ((struct stab_section_list *)
256 xmalloc (sizeof (struct stab_section_list)));
259 for (pn = &csi->stabsects; *pn != NULL; pn = &(*pn)->next)
263 /* This will be run after coffstab_build_psymtabs is called
264 in coff_symfile_read, at which point we no longer need
266 make_cleanup (xfree, n);
271 /* Return the section_offsets* that CS points to. */
272 static int cs_to_section (struct coff_symbol *, struct objfile *);
274 struct find_targ_sec_arg
281 find_targ_sec (bfd *abfd, asection *sect, void *obj)
283 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
285 if (sect->target_index == args->targ_index)
286 *args->resultp = sect;
289 /* Return the bfd_section that CS points to. */
290 static struct bfd_section*
291 cs_to_bfd_section (struct coff_symbol *cs, struct objfile *objfile)
293 asection *sect = NULL;
294 struct find_targ_sec_arg args;
296 args.targ_index = cs->c_secnum;
297 args.resultp = §
298 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
302 /* Return the section number (SECT_OFF_*) that CS points to. */
304 cs_to_section (struct coff_symbol *cs, struct objfile *objfile)
306 asection *sect = cs_to_bfd_section (cs, objfile);
309 return SECT_OFF_TEXT (objfile);
310 return gdb_bfd_section_index (objfile->obfd, sect);
313 /* Return the address of the section of a COFF symbol. */
315 static CORE_ADDR cs_section_address (struct coff_symbol *, bfd *);
318 cs_section_address (struct coff_symbol *cs, bfd *abfd)
320 asection *sect = NULL;
321 struct find_targ_sec_arg args;
324 args.targ_index = cs->c_secnum;
325 args.resultp = §
326 bfd_map_over_sections (abfd, find_targ_sec, &args);
328 addr = bfd_get_section_vma (abfd, sect);
332 /* Look up a coff type-number index. Return the address of the slot
333 where the type for that index is stored.
334 The type-number is in INDEX.
336 This can be used for finding the type associated with that index
337 or for associating a new type with the index. */
339 static struct type **
340 coff_lookup_type (int index)
342 if (index >= type_vector_length)
344 int old_vector_length = type_vector_length;
346 type_vector_length *= 2;
347 if (index /* is still */ >= type_vector_length)
348 type_vector_length = index * 2;
350 type_vector = (struct type **)
351 xrealloc ((char *) type_vector,
352 type_vector_length * sizeof (struct type *));
353 memset (&type_vector[old_vector_length], 0,
354 (type_vector_length - old_vector_length) * sizeof (struct type *));
356 return &type_vector[index];
359 /* Make sure there is a type allocated for type number index
360 and return the type object.
361 This can create an empty (zeroed) type object. */
364 coff_alloc_type (int index)
366 struct type **type_addr = coff_lookup_type (index);
367 struct type *type = *type_addr;
369 /* If we are referring to a type not known at all yet,
370 allocate an empty type for it.
371 We will fill it in later if we find out how. */
374 type = alloc_type (coffread_objfile);
380 /* Start a new symtab for a new source file.
381 This is called when a COFF ".file" symbol is seen;
382 it indicates the start of data for one original source file. */
385 coff_start_symtab (struct objfile *objfile, const char *name)
387 start_symtab (objfile,
388 /* We fill in the filename later. start_symtab puts this pointer
389 into last_source_file and we put it in subfiles->name, which
390 end_symtab frees; that's why it must be malloc'd. */
392 /* We never know the directory name for COFF. */
394 /* The start address is irrelevant, since we set
395 last_source_start_addr in coff_end_symtab. */
397 record_debugformat ("COFF");
400 /* Save the vital information from when starting to read a file,
401 for use when closing off the current file.
402 NAME is the file name the symbols came from, START_ADDR is the
403 first text address for the file, and SIZE is the number of bytes of
407 complete_symtab (const char *name, CORE_ADDR start_addr, unsigned int size)
409 set_last_source_file (name);
410 current_source_start_addr = start_addr;
411 current_source_end_addr = start_addr + size;
414 /* Finish the symbol definitions for one main source file, close off
415 all the lexical contexts for that file (creating struct block's for
416 them), then make the struct symtab for that file and put it in the
420 coff_end_symtab (struct objfile *objfile)
422 last_source_start_addr = current_source_start_addr;
424 end_symtab (current_source_end_addr, SECT_OFF_TEXT (objfile));
426 /* Reinitialize for beginning of new file. */
427 set_last_source_file (NULL);
430 /* The linker sometimes generates some non-function symbols inside
431 functions referencing variables imported from another DLL.
432 Return nonzero if the given symbol corresponds to one of them. */
435 is_import_fixup_symbol (struct coff_symbol *cs,
436 enum minimal_symbol_type type)
438 /* The following is a bit of a heuristic using the characterictics
439 of these fixup symbols, but should work well in practice... */
442 /* Must be a non-static text symbol. */
443 if (type != mst_text)
446 /* Must be a non-function symbol. */
447 if (ISFCN (cs->c_type))
450 /* The name must start with "__fu<digits>__". */
451 if (strncmp (cs->c_name, "__fu", 4) != 0)
453 if (! isdigit (cs->c_name[4]))
455 for (i = 5; cs->c_name[i] != '\0' && isdigit (cs->c_name[i]); i++)
456 /* Nothing, just incrementing index past all digits. */;
457 if (cs->c_name[i] != '_' || cs->c_name[i + 1] != '_')
463 static struct minimal_symbol *
464 record_minimal_symbol (struct coff_symbol *cs, CORE_ADDR address,
465 enum minimal_symbol_type type, int section,
466 struct objfile *objfile)
468 /* We don't want TDESC entry points in the minimal symbol table. */
469 if (cs->c_name[0] == '@')
472 if (is_import_fixup_symbol (cs, type))
474 /* Because the value of these symbols is within a function code
475 range, these symbols interfere with the symbol-from-address
476 reverse lookup; this manifests itselfs in backtraces, or any
477 other commands that prints symbolic addresses. Just pretend
478 these symbols do not exist. */
482 return prim_record_minimal_symbol_and_info (cs->c_name, address,
483 type, section, objfile);
486 /* coff_symfile_init ()
487 is the coff-specific initialization routine for reading symbols.
488 It is passed a struct objfile which contains, among other things,
489 the BFD for the file whose symbols are being read, and a slot for
490 a pointer to "private data" which we fill with cookies and other
491 treats for coff_symfile_read ().
493 We will only be called if this is a COFF or COFF-like file. BFD
494 handles figuring out the format of the file, and code in symtab.c
495 uses BFD's determination to vector to us.
497 The ultimate result is a new symtab (or, FIXME, eventually a
501 coff_symfile_init (struct objfile *objfile)
503 struct dbx_symfile_info *dbx;
504 struct coff_symfile_info *coff;
506 /* Allocate struct to keep track of stab reading. */
507 dbx = XCNEW (struct dbx_symfile_info);
508 set_objfile_data (objfile, dbx_objfile_data_key, dbx);
510 /* Allocate struct to keep track of the symfile. */
511 coff = XCNEW (struct coff_symfile_info);
512 set_objfile_data (objfile, coff_objfile_data_key, coff);
514 /* COFF objects may be reordered, so set OBJF_REORDERED. If we
515 find this causes a significant slowdown in gdb then we could
516 set it in the debug symbol readers only when necessary. */
517 objfile->flags |= OBJF_REORDERED;
520 /* This function is called for every section; it finds the outer
521 limits of the line table (minimum and maximum file offset) so that
522 the mainline code can read the whole thing for efficiency. */
525 find_linenos (bfd *abfd, struct bfd_section *asect, void *vpinfo)
527 struct coff_symfile_info *info;
529 file_ptr offset, maxoff;
531 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
532 count = asect->lineno_count;
533 /* End of warning. */
537 size = count * local_linesz;
539 info = (struct coff_symfile_info *) vpinfo;
540 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
541 offset = asect->line_filepos;
542 /* End of warning. */
544 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
545 info->min_lineno_offset = offset;
547 maxoff = offset + size;
548 if (maxoff > info->max_lineno_offset)
549 info->max_lineno_offset = maxoff;
553 /* The BFD for this file -- only good while we're actively reading
554 symbols into a psymtab or a symtab. */
556 static bfd *symfile_bfd;
558 /* Read a symbol file, after initialization by coff_symfile_init. */
561 coff_symfile_read (struct objfile *objfile, int symfile_flags)
563 struct coff_symfile_info *info;
564 struct dbx_symfile_info *dbxinfo;
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, *cleanup_minimal_symbols;
575 info = objfile_data (objfile, coff_objfile_data_key);
576 dbxinfo = DBX_SYMFILE_INFO (objfile);
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 strncmp (bfd_get_target (objfile->obfd), "pe", 2) == 0
609 || strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7) == 0;
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 init_minimal_symbol_collection ();
650 cleanup_minimal_symbols = make_cleanup_discard_minimal_symbols ();
652 /* Now that the executable file is positioned at symbol table,
653 process it and define symbols accordingly. */
655 coff_symtab_read ((long) symtab_offset, num_symbols, objfile);
657 /* Install any minimal symbols that have been collected as the
658 current minimal symbols for this objfile. */
660 install_minimal_symbols (objfile);
664 struct minimal_symbol *msym;
666 ALL_OBJFILE_MSYMBOLS (objfile, msym)
668 const char *name = MSYMBOL_LINKAGE_NAME (msym);
670 /* If the minimal symbols whose name are prefixed by "__imp_"
671 or "_imp_", get rid of the prefix, and search the minimal
672 symbol in OBJFILE. Note that 'maintenance print msymbols'
673 shows that type of these "_imp_XXXX" symbols is mst_data. */
674 if (MSYMBOL_TYPE (msym) == mst_data
675 && (strncmp (name, "__imp_", 6) == 0
676 || strncmp (name, "_imp_", 5) == 0))
678 const char *name1 = (name[1] == '_' ? &name[7] : &name[6]);
679 struct bound_minimal_symbol found;
681 found = lookup_minimal_symbol (name1, NULL, objfile);
682 /* If found, there are symbols named "_imp_foo" and "foo"
683 respectively in OBJFILE. Set the type of symbol "foo"
684 as 'mst_solib_trampoline'. */
685 if (found.minsym != NULL
686 && MSYMBOL_TYPE (found.minsym) == mst_text)
687 MSYMBOL_TYPE (found.minsym) = mst_solib_trampoline;
692 /* Free the installed minimal symbol data. */
693 do_cleanups (cleanup_minimal_symbols);
695 bfd_map_over_sections (abfd, coff_locate_sections, (void *) info);
699 if (!info->stabstrsect)
701 error (_("The debugging information in `%s' is corrupted.\nThe "
702 "file has a `.stabs' section, but no `.stabstr' section."),
706 /* FIXME: dubious. Why can't we use something normal like
707 bfd_get_section_contents? */
708 bfd_seek (abfd, abfd->where, 0);
710 stabstrsize = bfd_section_size (abfd, info->stabstrsect);
712 coffstab_build_psymtabs (objfile,
713 info->textaddr, info->textsize,
715 info->stabstrsect->filepos, stabstrsize);
717 if (dwarf2_has_info (objfile, NULL))
719 /* DWARF2 sections. */
720 dwarf2_build_psymtabs (objfile);
723 dwarf2_build_frame_info (objfile);
725 /* Try to add separate debug file if no symbols table found. */
726 if (!objfile_has_partial_symbols (objfile))
730 debugfile = find_separate_debug_file_by_debuglink (objfile);
731 make_cleanup (xfree, debugfile);
735 bfd *abfd = symfile_bfd_open (debugfile);
737 make_cleanup_bfd_unref (abfd);
738 symbol_file_add_separate (abfd, debugfile, symfile_flags, objfile);
742 do_cleanups (back_to);
746 coff_new_init (struct objfile *ignore)
750 /* Perform any local cleanups required when we are done with a
751 particular objfile. I.E, we are in the process of discarding all
752 symbol information for an objfile, freeing up all memory held for
753 it, and unlinking the objfile struct from the global list of known
757 coff_symfile_finish (struct objfile *objfile)
759 /* Let stabs reader clean up. */
760 stabsread_clear_cache ();
762 dwarf2_free_objfile (objfile);
766 /* Given pointers to a symbol table in coff style exec file,
767 analyze them and create struct symtab's describing the symbols.
768 NSYMS is the number of symbols in the symbol table.
769 We read them one at a time using read_one_sym (). */
772 coff_symtab_read (long symtab_offset, unsigned int nsyms,
773 struct objfile *objfile)
775 struct gdbarch *gdbarch = get_objfile_arch (objfile);
776 struct context_stack *new;
777 struct coff_symbol coff_symbol;
778 struct coff_symbol *cs = &coff_symbol;
779 static struct internal_syment main_sym;
780 static union internal_auxent main_aux;
781 struct coff_symbol fcn_cs_saved;
782 static struct internal_syment fcn_sym_saved;
783 static union internal_auxent fcn_aux_saved;
784 /* A .file is open. */
785 int in_source_file = 0;
786 int next_file_symnum = -1;
787 /* Name of the current file. */
788 const char *filestring = "";
790 int fcn_first_line = 0;
791 CORE_ADDR fcn_first_line_addr = 0;
792 int fcn_last_line = 0;
793 int fcn_start_addr = 0;
794 long fcn_line_ptr = 0;
797 struct minimal_symbol *msym;
799 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
800 it's hard to know I've really worked around it. The fix should
801 be harmless, anyway). The symptom of the bug is that the first
802 fread (in read_one_sym), will (in my example) actually get data
803 from file offset 268, when the fseek was to 264 (and ftell shows
804 264). This causes all hell to break loose. I was unable to
805 reproduce this on a short test program which operated on the same
806 file, performing (I think) the same sequence of operations.
808 It stopped happening when I put in this (former) rewind().
810 FIXME: Find out if this has been reported to Sun, whether it has
811 been fixed in a later release, etc. */
813 bfd_seek (objfile->obfd, 0, 0);
815 /* Position to read the symbol table. */
816 val = bfd_seek (objfile->obfd, (long) symtab_offset, 0);
818 perror_with_name (objfile_name (objfile));
820 coffread_objfile = objfile;
821 nlist_bfd_global = objfile->obfd;
822 nlist_nsyms_global = nsyms;
823 set_last_source_file (NULL);
824 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
826 if (type_vector) /* Get rid of previous one. */
828 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
829 type_vector = (struct type **)
830 xmalloc (type_vector_length * sizeof (struct type *));
831 memset (type_vector, 0, type_vector_length * sizeof (struct type *));
833 coff_start_symtab (objfile, "");
836 while (symnum < nsyms)
838 QUIT; /* Make this command interruptable. */
840 read_one_sym (cs, &main_sym, &main_aux);
842 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
844 if (get_last_source_file ())
845 coff_end_symtab (objfile);
847 coff_start_symtab (objfile, "_globals_");
848 /* coff_start_symtab will set the language of this symtab to
849 language_unknown, since such a ``file name'' is not
850 recognized. Override that with the minimal language to
851 allow printing values in this symtab. */
852 current_subfile->language = language_minimal;
853 complete_symtab ("_globals_", 0, 0);
854 /* Done with all files, everything from here on out is
858 /* Special case for file with type declarations only, no
860 if (!get_last_source_file () && SDB_TYPE (cs->c_type)
861 && cs->c_secnum == N_DEBUG)
862 complete_symtab (filestring, 0, 0);
864 /* Typedefs should not be treated as symbol definitions. */
865 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
867 /* Record all functions -- external and static -- in
869 int section = cs_to_section (cs, objfile);
871 tmpaddr = cs->c_value;
872 record_minimal_symbol (cs, tmpaddr, mst_text,
875 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
876 fcn_start_addr = tmpaddr;
878 fcn_sym_saved = main_sym;
879 fcn_aux_saved = main_aux;
883 switch (cs->c_sclass)
892 complaint (&symfile_complaints,
893 _("Bad n_sclass for symbol %s"),
898 /* c_value field contains symnum of next .file entry in
899 table or symnum of first global after last .file. */
900 next_file_symnum = cs->c_value;
902 filestring = coff_getfilename (&main_aux);
906 /* Complete symbol table for last object file
907 containing debugging information. */
908 if (get_last_source_file ())
910 coff_end_symtab (objfile);
911 coff_start_symtab (objfile, filestring);
916 /* C_LABEL is used for labels and static functions.
917 Including it here allows gdb to see static functions when
918 no debug info is available. */
920 /* However, labels within a function can make weird
927 case C_THUMBSTATFUNC:
928 if (cs->c_name[0] == '.')
930 if (strcmp (cs->c_name, ".text") == 0)
932 /* FIXME: don't wire in ".text" as section name or
934 /* Check for in_source_file deals with case of a
935 file with debugging symbols followed by a later
936 file with no symbols. */
938 complete_symtab (filestring,
939 cs->c_value + ANOFFSET (objfile->section_offsets,
940 SECT_OFF_TEXT (objfile)),
941 main_aux.x_scn.x_scnlen);
944 /* Flush rest of '.' symbols. */
947 else if (!SDB_TYPE (cs->c_type)
948 && cs->c_name[0] == 'L'
949 && (strncmp (cs->c_name, "LI%", 3) == 0
950 || strncmp (cs->c_name, "LF%", 3) == 0
951 || strncmp (cs->c_name, "LC%", 3) == 0
952 || strncmp (cs->c_name, "LP%", 3) == 0
953 || strncmp (cs->c_name, "LPB%", 4) == 0
954 || strncmp (cs->c_name, "LBB%", 4) == 0
955 || strncmp (cs->c_name, "LBE%", 4) == 0
956 || strncmp (cs->c_name, "LPBX%", 5) == 0))
957 /* At least on a 3b1, gcc generates swbeg and string labels
958 that look like this. Ignore them. */
960 /* Fall in for static symbols that don't start with '.' */
965 /* Record it in the minimal symbols regardless of
966 SDB_TYPE. This parallels what we do for other debug
967 formats, and probably is needed to make
968 print_address_symbolic work right without the (now
969 gone) "set fast-symbolic-addr off" kludge. */
971 enum minimal_symbol_type ms_type;
973 CORE_ADDR offset = 0;
975 if (cs->c_secnum == N_UNDEF)
977 /* This is a common symbol. We used to rely on
978 the target to tell us whether it knows where
979 the symbol has been relocated to, but none of
980 the target implementations actually provided
981 that operation. So we just ignore the symbol,
982 the same way we would do if we had a target-side
983 symbol lookup which returned no match. */
986 else if (cs->c_secnum == N_ABS)
988 /* Use the correct minimal symbol type (and don't
989 relocate) for absolute values. */
991 sec = cs_to_section (cs, objfile);
992 tmpaddr = cs->c_value;
996 asection *bfd_section = cs_to_bfd_section (cs, objfile);
998 sec = cs_to_section (cs, objfile);
999 tmpaddr = cs->c_value;
1000 /* Statics in a PE file also get relocated. */
1001 if (cs->c_sclass == C_EXT
1002 || cs->c_sclass == C_THUMBEXTFUNC
1003 || cs->c_sclass == C_THUMBEXT
1004 || (pe_file && (cs->c_sclass == C_STAT)))
1005 offset = ANOFFSET (objfile->section_offsets, sec);
1007 if (bfd_section->flags & SEC_CODE)
1010 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
1011 || cs->c_sclass == C_THUMBEXT ?
1012 mst_text : mst_file_text;
1013 tmpaddr = gdbarch_addr_bits_remove (gdbarch, tmpaddr);
1015 else if (bfd_section->flags & SEC_ALLOC
1016 && bfd_section->flags & SEC_LOAD)
1019 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1020 ? mst_data : mst_file_data;
1022 else if (bfd_section->flags & SEC_ALLOC)
1025 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1026 ? mst_bss : mst_file_bss;
1029 ms_type = mst_unknown;
1032 msym = record_minimal_symbol (cs, tmpaddr, ms_type,
1035 gdbarch_coff_make_msymbol_special (gdbarch,
1036 cs->c_sclass, msym);
1038 if (SDB_TYPE (cs->c_type))
1042 sym = process_coff_symbol
1043 (cs, &main_aux, objfile);
1044 SYMBOL_VALUE (sym) = tmpaddr + offset;
1045 SYMBOL_SECTION (sym) = sec;
1051 if (strcmp (cs->c_name, ".bf") == 0)
1053 within_function = 1;
1055 /* Value contains address of first non-init type
1057 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
1058 contains line number of '{' }. */
1059 if (cs->c_naux != 1)
1060 complaint (&symfile_complaints,
1061 _("`.bf' symbol %d has no aux entry"),
1063 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1064 fcn_first_line_addr = cs->c_value;
1066 /* Might want to check that locals are 0 and
1067 context_stack_depth is zero, and complain if not. */
1070 new = push_context (depth, fcn_start_addr);
1071 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
1073 process_coff_symbol (&fcn_cs_saved,
1074 &fcn_aux_saved, objfile);
1076 else if (strcmp (cs->c_name, ".ef") == 0)
1078 if (!within_function)
1079 error (_("Bad coff function information."));
1080 /* The value of .ef is the address of epilogue code;
1081 not useful for gdb. */
1082 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1083 contains number of lines to '}' */
1085 if (context_stack_depth <= 0)
1086 { /* We attempted to pop an empty context stack. */
1087 complaint (&symfile_complaints,
1088 _("`.ef' symbol without matching `.bf' "
1089 "symbol ignored starting at symnum %d"),
1091 within_function = 0;
1095 new = pop_context ();
1096 /* Stack must be empty now. */
1097 if (context_stack_depth > 0 || new == NULL)
1099 complaint (&symfile_complaints,
1100 _("Unmatched .ef symbol(s) ignored "
1101 "starting at symnum %d"),
1103 within_function = 0;
1106 if (cs->c_naux != 1)
1108 complaint (&symfile_complaints,
1109 _("`.ef' symbol %d has no aux entry"),
1111 fcn_last_line = 0x7FFFFFFF;
1115 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1117 /* fcn_first_line is the line number of the opening '{'.
1118 Do not record it - because it would affect gdb's idea
1119 of the line number of the first statement of the
1120 function - except for one-line functions, for which
1121 it is also the line number of all the statements and
1122 of the closing '}', and for which we do not have any
1123 other statement-line-number. */
1124 if (fcn_last_line == 1)
1125 record_line (current_subfile, fcn_first_line,
1126 gdbarch_addr_bits_remove (gdbarch,
1127 fcn_first_line_addr));
1129 enter_linenos (fcn_line_ptr, fcn_first_line,
1130 fcn_last_line, objfile);
1132 finish_block (new->name, &local_symbols,
1133 new->old_blocks, new->start_addr,
1134 fcn_cs_saved.c_value
1135 + fcn_aux_saved.x_sym.x_misc.x_fsize
1136 + ANOFFSET (objfile->section_offsets,
1137 SECT_OFF_TEXT (objfile)));
1138 within_function = 0;
1143 if (strcmp (cs->c_name, ".bb") == 0)
1145 tmpaddr = cs->c_value;
1146 tmpaddr += ANOFFSET (objfile->section_offsets,
1147 SECT_OFF_TEXT (objfile));
1148 push_context (++depth, tmpaddr);
1150 else if (strcmp (cs->c_name, ".eb") == 0)
1152 if (context_stack_depth <= 0)
1153 { /* We attempted to pop an empty context stack. */
1154 complaint (&symfile_complaints,
1155 _("`.eb' symbol without matching `.bb' "
1156 "symbol ignored starting at symnum %d"),
1161 new = pop_context ();
1162 if (depth-- != new->depth)
1164 complaint (&symfile_complaints,
1165 _("Mismatched .eb symbol ignored "
1166 "starting at symnum %d"),
1170 if (local_symbols && context_stack_depth > 0)
1173 cs->c_value + ANOFFSET (objfile->section_offsets,
1174 SECT_OFF_TEXT (objfile));
1175 /* Make a block for the local symbols within. */
1176 finish_block (0, &local_symbols, new->old_blocks,
1177 new->start_addr, tmpaddr);
1179 /* Now pop locals of block just finished. */
1180 local_symbols = new->locals;
1185 process_coff_symbol (cs, &main_aux, objfile);
1190 if ((nsyms == 0) && (pe_file))
1192 /* We've got no debugging symbols, but it's a portable
1193 executable, so try to read the export table. */
1194 read_pe_exported_syms (objfile);
1197 if (get_last_source_file ())
1198 coff_end_symtab (objfile);
1200 /* Patch up any opaque types (references to types that are not defined
1201 in the file where they are referenced, e.g. "struct foo *bar"). */
1203 struct compunit_symtab *cu;
1206 ALL_OBJFILE_FILETABS (objfile, cu, s)
1207 patch_opaque_types (s);
1210 coffread_objfile = NULL;
1213 /* Routines for reading headers and symbols from executable. */
1215 /* Read the next symbol, swap it, and return it in both
1216 internal_syment form, and coff_symbol form. Also return its first
1217 auxent, if any, in internal_auxent form, and skip any other
1221 read_one_sym (struct coff_symbol *cs,
1222 struct internal_syment *sym,
1223 union internal_auxent *aux)
1226 bfd_size_type bytes;
1228 cs->c_symnum = symnum;
1229 bytes = bfd_bread (temp_sym, local_symesz, nlist_bfd_global);
1230 if (bytes != local_symesz)
1231 error (_("%s: error reading symbols"), objfile_name (coffread_objfile));
1232 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *) sym);
1233 cs->c_naux = sym->n_numaux & 0xff;
1234 if (cs->c_naux >= 1)
1236 bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
1237 if (bytes != local_auxesz)
1238 error (_("%s: error reading symbols"), objfile_name (coffread_objfile));
1239 bfd_coff_swap_aux_in (symfile_bfd, temp_aux,
1240 sym->n_type, sym->n_sclass,
1241 0, cs->c_naux, (char *) aux);
1242 /* If more than one aux entry, read past it (only the first aux
1244 for (i = 1; i < cs->c_naux; i++)
1246 bytes = bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
1247 if (bytes != local_auxesz)
1248 error (_("%s: error reading symbols"),
1249 objfile_name (coffread_objfile));
1252 cs->c_name = getsymname (sym);
1253 cs->c_value = sym->n_value;
1254 cs->c_sclass = (sym->n_sclass & 0xff);
1255 cs->c_secnum = sym->n_scnum;
1256 cs->c_type = (unsigned) sym->n_type;
1257 if (!SDB_TYPE (cs->c_type))
1261 if (cs->c_sclass & 128)
1262 printf (_("thumb symbol %s, class 0x%x\n"), cs->c_name, cs->c_sclass);
1265 symnum += 1 + cs->c_naux;
1267 /* The PE file format stores symbol values as offsets within the
1268 section, rather than as absolute addresses. We correct that
1269 here, if the symbol has an appropriate storage class. FIXME: We
1270 should use BFD to read the symbols, rather than duplicating the
1274 switch (cs->c_sclass)
1278 case C_THUMBEXTFUNC:
1283 case C_THUMBSTATFUNC:
1289 if (cs->c_secnum != 0)
1290 cs->c_value += cs_section_address (cs, symfile_bfd);
1296 /* Support for string table handling. */
1298 static char *stringtab = NULL;
1301 init_stringtab (bfd *abfd, long offset)
1305 unsigned char lengthbuf[4];
1309 /* If the file is stripped, the offset might be zero, indicating no
1310 string table. Just return with `stringtab' set to null. */
1314 if (bfd_seek (abfd, offset, 0) < 0)
1317 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
1318 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
1320 /* If no string table is needed, then the file may end immediately
1321 after the symbols. Just return with `stringtab' set to null. */
1322 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1325 stringtab = (char *) xmalloc (length);
1326 /* This is in target format (probably not very useful, and not
1327 currently used), not host format. */
1328 memcpy (stringtab, lengthbuf, sizeof lengthbuf);
1329 if (length == sizeof length) /* Empty table -- just the count. */
1332 val = bfd_bread (stringtab + sizeof lengthbuf,
1333 length - sizeof lengthbuf, abfd);
1334 if (val != length - sizeof lengthbuf || stringtab[length - 1] != '\0')
1341 free_stringtab (void)
1349 free_stringtab_cleanup (void *ignore)
1355 getsymname (struct internal_syment *symbol_entry)
1357 static char buffer[SYMNMLEN + 1];
1360 if (symbol_entry->_n._n_n._n_zeroes == 0)
1362 /* FIXME: Probably should be detecting corrupt symbol files by
1363 seeing whether offset points to within the stringtab. */
1364 result = stringtab + symbol_entry->_n._n_n._n_offset;
1368 strncpy (buffer, symbol_entry->_n._n_name, SYMNMLEN);
1369 buffer[SYMNMLEN] = '\0';
1375 /* Extract the file name from the aux entry of a C_FILE symbol.
1376 Return only the last component of the name. Result is in static
1377 storage and is only good for temporary use. */
1380 coff_getfilename (union internal_auxent *aux_entry)
1382 static char buffer[BUFSIZ];
1385 if (aux_entry->x_file.x_n.x_zeroes == 0)
1387 if (strlen (stringtab + aux_entry->x_file.x_n.x_offset) >= BUFSIZ)
1388 internal_error (__FILE__, __LINE__, _("coff file name too long"));
1389 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1393 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1394 buffer[FILNMLEN] = '\0';
1398 /* FIXME: We should not be throwing away the information about what
1399 directory. It should go into dirname of the symtab, or some such
1401 result = lbasename (result);
1405 /* Support for line number handling. */
1407 static char *linetab = NULL;
1408 static long linetab_offset;
1409 static unsigned long linetab_size;
1411 /* Read in all the line numbers for fast lookups later. Leave them in
1412 external (unswapped) format in memory; we'll swap them as we enter
1413 them into GDB's data structures. */
1416 init_lineno (bfd *abfd, long offset, int size)
1420 linetab_offset = offset;
1421 linetab_size = size;
1428 if (bfd_seek (abfd, offset, 0) < 0)
1431 /* Allocate the desired table, plus a sentinel. */
1432 linetab = (char *) xmalloc (size + local_linesz);
1434 val = bfd_bread (linetab, size, abfd);
1438 /* Terminate it with an all-zero sentinel record. */
1439 memset (linetab + size, 0, local_linesz);
1453 free_linetab_cleanup (void *ignore)
1458 #if !defined (L_LNNO32)
1459 #define L_LNNO32(lp) ((lp)->l_lnno)
1463 enter_linenos (long file_offset, int first_line,
1464 int last_line, struct objfile *objfile)
1466 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1468 struct internal_lineno lptr;
1472 if (file_offset < linetab_offset)
1474 complaint (&symfile_complaints,
1475 _("Line number pointer %ld lower than start of line numbers"),
1477 if (file_offset > linetab_size) /* Too big to be an offset? */
1479 file_offset += linetab_offset; /* Try reading at that linetab
1483 rawptr = &linetab[file_offset - linetab_offset];
1485 /* Skip first line entry for each function. */
1486 rawptr += local_linesz;
1487 /* Line numbers start at one for the first line of the function. */
1490 /* If the line number table is full (e.g. 64K lines in COFF debug
1491 info), the next function's L_LNNO32 might not be zero, so don't
1492 overstep the table's end in any case. */
1493 while (rawptr <= &linetab[0] + linetab_size)
1495 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1496 rawptr += local_linesz;
1497 /* The next function, or the sentinel, will have L_LNNO32 zero;
1499 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
1501 CORE_ADDR addr = lptr.l_addr.l_paddr;
1502 addr += ANOFFSET (objfile->section_offsets,
1503 SECT_OFF_TEXT (objfile));
1504 record_line (current_subfile,
1505 first_line + L_LNNO32 (&lptr),
1506 gdbarch_addr_bits_remove (gdbarch, addr));
1514 patch_type (struct type *type, struct type *real_type)
1516 struct type *target = TYPE_TARGET_TYPE (type);
1517 struct type *real_target = TYPE_TARGET_TYPE (real_type);
1518 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1520 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1521 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
1522 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target,
1525 memcpy (TYPE_FIELDS (target),
1526 TYPE_FIELDS (real_target),
1529 if (TYPE_NAME (real_target))
1531 /* The previous copy of TYPE_NAME is allocated by
1532 process_coff_symbol. */
1533 if (TYPE_NAME (target))
1534 xfree ((char*) TYPE_NAME (target));
1535 TYPE_NAME (target) = xstrdup (TYPE_NAME (real_target));
1539 /* Patch up all appropriate typedef symbols in the opaque_type_chains
1540 so that they can be used to print out opaque data structures
1544 patch_opaque_types (struct symtab *s)
1547 struct block_iterator iter;
1548 struct symbol *real_sym;
1550 /* Go through the per-file symbols only. */
1551 b = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (s), STATIC_BLOCK);
1552 ALL_BLOCK_SYMBOLS (b, iter, real_sym)
1554 /* Find completed typedefs to use to fix opaque ones.
1555 Remove syms from the chain when their types are stored,
1556 but search the whole chain, as there may be several syms
1557 from different files with the same name. */
1558 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF
1559 && SYMBOL_DOMAIN (real_sym) == VAR_DOMAIN
1560 && TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR
1561 && TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
1563 const char *name = SYMBOL_LINKAGE_NAME (real_sym);
1564 int hash = hashname (name);
1565 struct symbol *sym, *prev;
1568 for (sym = opaque_type_chain[hash]; sym;)
1570 if (name[0] == SYMBOL_LINKAGE_NAME (sym)[0]
1571 && strcmp (name + 1, SYMBOL_LINKAGE_NAME (sym) + 1) == 0)
1575 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
1579 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
1582 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
1586 sym = SYMBOL_VALUE_CHAIN (prev);
1590 sym = opaque_type_chain[hash];
1596 sym = SYMBOL_VALUE_CHAIN (sym);
1604 coff_reg_to_regnum (struct symbol *sym, struct gdbarch *gdbarch)
1606 return gdbarch_sdb_reg_to_regnum (gdbarch, SYMBOL_VALUE (sym));
1609 static const struct symbol_register_ops coff_register_funcs = {
1613 /* The "aclass" index for computed COFF symbols. */
1615 static int coff_register_index;
1617 static struct symbol *
1618 process_coff_symbol (struct coff_symbol *cs,
1619 union internal_auxent *aux,
1620 struct objfile *objfile)
1622 struct symbol *sym = allocate_symbol (objfile);
1626 name = EXTERNAL_NAME (name, objfile->obfd);
1627 SYMBOL_SET_LANGUAGE (sym, current_subfile->language,
1628 &objfile->objfile_obstack);
1629 SYMBOL_SET_NAMES (sym, name, strlen (name), 1, objfile);
1631 /* default assumptions */
1632 SYMBOL_VALUE (sym) = cs->c_value;
1633 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1634 SYMBOL_SECTION (sym) = cs_to_section (cs, objfile);
1636 if (ISFCN (cs->c_type))
1638 SYMBOL_VALUE (sym) += ANOFFSET (objfile->section_offsets,
1639 SECT_OFF_TEXT (objfile));
1641 lookup_function_type (decode_function_type (cs, cs->c_type,
1644 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
1645 if (cs->c_sclass == C_STAT || cs->c_sclass == C_THUMBSTAT
1646 || cs->c_sclass == C_THUMBSTATFUNC)
1647 add_symbol_to_list (sym, &file_symbols);
1648 else if (cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1649 || cs->c_sclass == C_THUMBEXTFUNC)
1650 add_symbol_to_list (sym, &global_symbols);
1654 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux, objfile);
1655 switch (cs->c_sclass)
1661 SYMBOL_ACLASS_INDEX (sym) = LOC_LOCAL;
1662 add_symbol_to_list (sym, &local_symbols);
1666 case C_THUMBEXTFUNC:
1668 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
1669 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1670 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
1671 SECT_OFF_TEXT (objfile));
1672 add_symbol_to_list (sym, &global_symbols);
1676 case C_THUMBSTATFUNC:
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 if (within_function)
1684 /* Static symbol of local scope. */
1685 add_symbol_to_list (sym, &local_symbols);
1689 /* Static symbol at top level of file. */
1690 add_symbol_to_list (sym, &file_symbols);
1694 #ifdef C_GLBLREG /* AMD coff */
1698 SYMBOL_ACLASS_INDEX (sym) = coff_register_index;
1699 SYMBOL_VALUE (sym) = cs->c_value;
1700 add_symbol_to_list (sym, &local_symbols);
1708 SYMBOL_ACLASS_INDEX (sym) = LOC_ARG;
1709 SYMBOL_IS_ARGUMENT (sym) = 1;
1710 add_symbol_to_list (sym, &local_symbols);
1714 SYMBOL_ACLASS_INDEX (sym) = coff_register_index;
1715 SYMBOL_IS_ARGUMENT (sym) = 1;
1716 SYMBOL_VALUE (sym) = cs->c_value;
1717 add_symbol_to_list (sym, &local_symbols);
1721 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
1722 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1724 /* If type has no name, give it one. */
1725 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1727 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1728 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1730 /* If we are giving a name to a type such as
1731 "pointer to foo" or "function returning foo", we
1732 better not set the TYPE_NAME. If the program
1733 contains "typedef char *caddr_t;", we don't want
1734 all variables of type char * to print as caddr_t.
1735 This is not just a consequence of GDB's type
1736 management; CC and GCC (at least through version
1737 2.4) both output variables of either type char *
1738 or caddr_t with the type refering to the C_TPDEF
1739 symbol for caddr_t. If a future compiler cleans
1740 this up it GDB is not ready for it yet, but if it
1741 becomes ready we somehow need to disable this
1742 check (without breaking the PCC/GCC2.4 case).
1746 Fortunately, this check seems not to be necessary
1747 for anything except pointers or functions. */
1751 TYPE_NAME (SYMBOL_TYPE (sym)) =
1752 xstrdup (SYMBOL_LINKAGE_NAME (sym));
1755 /* Keep track of any type which points to empty structured
1756 type, so it can be filled from a definition from another
1757 file. A simple forward reference (TYPE_CODE_UNDEF) is
1758 not an empty structured type, though; the forward
1759 references work themselves out via the magic of
1760 coff_lookup_type. */
1761 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1762 && TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0
1763 && TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym)))
1766 int i = hashname (SYMBOL_LINKAGE_NAME (sym));
1768 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1769 opaque_type_chain[i] = sym;
1771 add_symbol_to_list (sym, &file_symbols);
1777 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
1778 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
1780 /* Some compilers try to be helpful by inventing "fake"
1781 names for anonymous enums, structures, and unions, like
1782 "~0fake" or ".0fake". Thanks, but no thanks... */
1783 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
1784 if (SYMBOL_LINKAGE_NAME (sym) != NULL
1785 && *SYMBOL_LINKAGE_NAME (sym) != '~'
1786 && *SYMBOL_LINKAGE_NAME (sym) != '.')
1787 TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
1788 concat (SYMBOL_LINKAGE_NAME (sym), (char *)NULL);
1790 add_symbol_to_list (sym, &file_symbols);
1800 /* Decode a coff type specifier; return the type that is meant. */
1802 static struct type *
1803 decode_type (struct coff_symbol *cs, unsigned int c_type,
1804 union internal_auxent *aux, struct objfile *objfile)
1806 struct type *type = 0;
1807 unsigned int new_c_type;
1809 if (c_type & ~N_BTMASK)
1811 new_c_type = DECREF (c_type);
1814 type = decode_type (cs, new_c_type, aux, objfile);
1815 type = lookup_pointer_type (type);
1817 else if (ISFCN (c_type))
1819 type = decode_type (cs, new_c_type, aux, objfile);
1820 type = lookup_function_type (type);
1822 else if (ISARY (c_type))
1825 unsigned short *dim;
1826 struct type *base_type, *index_type, *range_type;
1828 /* Define an array type. */
1829 /* auxent refers to array, not base type. */
1830 if (aux->x_sym.x_tagndx.l == 0)
1833 /* Shift the indices down. */
1834 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1837 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1841 base_type = decode_type (cs, new_c_type, aux, objfile);
1842 index_type = objfile_type (objfile)->builtin_int;
1844 = create_static_range_type ((struct type *) NULL,
1845 index_type, 0, n - 1);
1847 create_array_type ((struct type *) NULL,
1848 base_type, range_type);
1853 /* Reference to existing type. This only occurs with the struct,
1854 union, and enum types. EPI a29k coff fakes us out by producing
1855 aux entries with a nonzero x_tagndx for definitions of structs,
1856 unions, and enums, so we have to check the c_sclass field. SCO
1857 3.2v4 cc gets confused with pointers to pointers to defined
1858 structs, and generates negative x_tagndx fields. */
1859 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
1861 if (cs->c_sclass != C_STRTAG
1862 && cs->c_sclass != C_UNTAG
1863 && cs->c_sclass != C_ENTAG
1864 && aux->x_sym.x_tagndx.l >= 0)
1866 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1871 complaint (&symfile_complaints,
1872 _("Symbol table entry for %s has bad tagndx value"),
1874 /* And fall through to decode_base_type... */
1878 return decode_base_type (cs, BTYPE (c_type), aux, objfile);
1881 /* Decode a coff type specifier for function definition;
1882 return the type that the function returns. */
1884 static struct type *
1885 decode_function_type (struct coff_symbol *cs,
1886 unsigned int c_type,
1887 union internal_auxent *aux,
1888 struct objfile *objfile)
1890 if (aux->x_sym.x_tagndx.l == 0)
1891 cs->c_naux = 0; /* auxent refers to function, not base
1894 return decode_type (cs, DECREF (c_type), aux, objfile);
1897 /* Basic C types. */
1899 static struct type *
1900 decode_base_type (struct coff_symbol *cs,
1901 unsigned int c_type,
1902 union internal_auxent *aux,
1903 struct objfile *objfile)
1905 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1911 /* Shows up with "void (*foo)();" structure members. */
1912 return objfile_type (objfile)->builtin_void;
1916 /* Intel 960 COFF has this symbol and meaning. */
1917 return objfile_type (objfile)->builtin_void;
1921 return objfile_type (objfile)->builtin_char;
1924 return objfile_type (objfile)->builtin_short;
1927 return objfile_type (objfile)->builtin_int;
1930 if (cs->c_sclass == C_FIELD
1931 && aux->x_sym.x_misc.x_lnsz.x_size
1932 > gdbarch_long_bit (gdbarch))
1933 return objfile_type (objfile)->builtin_long_long;
1935 return objfile_type (objfile)->builtin_long;
1938 return objfile_type (objfile)->builtin_float;
1941 return objfile_type (objfile)->builtin_double;
1944 return objfile_type (objfile)->builtin_long_double;
1947 if (cs->c_naux != 1)
1949 /* Anonymous structure type. */
1950 type = coff_alloc_type (cs->c_symnum);
1951 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1952 TYPE_NAME (type) = NULL;
1953 /* This used to set the tag to "<opaque>". But I think
1954 setting it to NULL is right, and the printing code can
1955 print it as "struct {...}". */
1956 TYPE_TAG_NAME (type) = NULL;
1957 INIT_CPLUS_SPECIFIC (type);
1958 TYPE_LENGTH (type) = 0;
1959 TYPE_FIELDS (type) = 0;
1960 TYPE_NFIELDS (type) = 0;
1964 type = coff_read_struct_type (cs->c_symnum,
1965 aux->x_sym.x_misc.x_lnsz.x_size,
1966 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
1972 if (cs->c_naux != 1)
1974 /* Anonymous union type. */
1975 type = coff_alloc_type (cs->c_symnum);
1976 TYPE_NAME (type) = NULL;
1977 /* This used to set the tag to "<opaque>". But I think
1978 setting it to NULL is right, and the printing code can
1979 print it as "union {...}". */
1980 TYPE_TAG_NAME (type) = NULL;
1981 INIT_CPLUS_SPECIFIC (type);
1982 TYPE_LENGTH (type) = 0;
1983 TYPE_FIELDS (type) = 0;
1984 TYPE_NFIELDS (type) = 0;
1988 type = coff_read_struct_type (cs->c_symnum,
1989 aux->x_sym.x_misc.x_lnsz.x_size,
1990 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
1993 TYPE_CODE (type) = TYPE_CODE_UNION;
1997 if (cs->c_naux != 1)
1999 /* Anonymous enum type. */
2000 type = coff_alloc_type (cs->c_symnum);
2001 TYPE_CODE (type) = TYPE_CODE_ENUM;
2002 TYPE_NAME (type) = NULL;
2003 /* This used to set the tag to "<opaque>". But I think
2004 setting it to NULL is right, and the printing code can
2005 print it as "enum {...}". */
2006 TYPE_TAG_NAME (type) = NULL;
2007 TYPE_LENGTH (type) = 0;
2008 TYPE_FIELDS (type) = 0;
2009 TYPE_NFIELDS (type) = 0;
2013 type = coff_read_enum_type (cs->c_symnum,
2014 aux->x_sym.x_misc.x_lnsz.x_size,
2015 aux->x_sym.x_fcnary.x_fcn.x_endndx.l,
2021 /* Shouldn't show up here. */
2025 return objfile_type (objfile)->builtin_unsigned_char;
2028 return objfile_type (objfile)->builtin_unsigned_short;
2031 return objfile_type (objfile)->builtin_unsigned_int;
2034 if (cs->c_sclass == C_FIELD
2035 && aux->x_sym.x_misc.x_lnsz.x_size
2036 > gdbarch_long_bit (gdbarch))
2037 return objfile_type (objfile)->builtin_unsigned_long_long;
2039 return objfile_type (objfile)->builtin_unsigned_long;
2041 complaint (&symfile_complaints,
2042 _("Unexpected type for symbol %s"), cs->c_name);
2043 return objfile_type (objfile)->builtin_void;
2046 /* This page contains subroutines of read_type. */
2048 /* Read the description of a structure (or union type) and return an
2049 object describing the type. */
2051 static struct type *
2052 coff_read_struct_type (int index, int length, int lastsym,
2053 struct objfile *objfile)
2057 struct nextfield *next;
2062 struct nextfield *list = 0;
2063 struct nextfield *new;
2067 struct coff_symbol member_sym;
2068 struct coff_symbol *ms = &member_sym;
2069 struct internal_syment sub_sym;
2070 union internal_auxent sub_aux;
2073 type = coff_alloc_type (index);
2074 TYPE_CODE (type) = TYPE_CODE_STRUCT;
2075 INIT_CPLUS_SPECIFIC (type);
2076 TYPE_LENGTH (type) = length;
2078 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2080 read_one_sym (ms, &sub_sym, &sub_aux);
2082 name = EXTERNAL_NAME (name, objfile->obfd);
2084 switch (ms->c_sclass)
2089 /* Get space to record the next field's data. */
2090 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2094 /* Save the data. */
2095 list->field.name = obstack_copy0 (&objfile->objfile_obstack,
2096 name, strlen (name));
2097 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type,
2099 SET_FIELD_BITPOS (list->field, 8 * ms->c_value);
2100 FIELD_BITSIZE (list->field) = 0;
2106 /* Get space to record the next field's data. */
2107 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2111 /* Save the data. */
2112 list->field.name = obstack_copy0 (&objfile->objfile_obstack,
2113 name, strlen (name));
2114 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type,
2116 SET_FIELD_BITPOS (list->field, ms->c_value);
2117 FIELD_BITSIZE (list->field) = sub_aux.x_sym.x_misc.x_lnsz.x_size;
2126 /* Now create the vector of fields, and record how big it is. */
2128 TYPE_NFIELDS (type) = nfields;
2129 TYPE_FIELDS (type) = (struct field *)
2130 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2132 /* Copy the saved-up fields into the field vector. */
2134 for (n = nfields; list; list = list->next)
2135 TYPE_FIELD (type, --n) = list->field;
2140 /* Read a definition of an enumeration type,
2141 and create and return a suitable type object.
2142 Also defines the symbols that represent the values of the type. */
2144 static struct type *
2145 coff_read_enum_type (int index, int length, int lastsym,
2146 struct objfile *objfile)
2148 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2153 struct pending **symlist;
2154 struct coff_symbol member_sym;
2155 struct coff_symbol *ms = &member_sym;
2156 struct internal_syment sub_sym;
2157 union internal_auxent sub_aux;
2158 struct pending *osyms, *syms;
2162 int unsigned_enum = 1;
2164 type = coff_alloc_type (index);
2165 if (within_function)
2166 symlist = &local_symbols;
2168 symlist = &file_symbols;
2170 o_nsyms = osyms ? osyms->nsyms : 0;
2172 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2174 read_one_sym (ms, &sub_sym, &sub_aux);
2176 name = EXTERNAL_NAME (name, objfile->obfd);
2178 switch (ms->c_sclass)
2181 sym = allocate_symbol (objfile);
2183 SYMBOL_SET_LINKAGE_NAME (sym,
2184 obstack_copy0 (&objfile->objfile_obstack,
2185 name, strlen (name)));
2186 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
2187 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
2188 SYMBOL_VALUE (sym) = ms->c_value;
2189 add_symbol_to_list (sym, symlist);
2194 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
2195 up the count of how many symbols to read. So stop
2202 /* Now fill in the fields of the type-structure. */
2205 TYPE_LENGTH (type) = length;
2206 else /* Assume ints. */
2207 TYPE_LENGTH (type) = gdbarch_int_bit (gdbarch) / TARGET_CHAR_BIT;
2208 TYPE_CODE (type) = TYPE_CODE_ENUM;
2209 TYPE_NFIELDS (type) = nsyms;
2210 TYPE_FIELDS (type) = (struct field *)
2211 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2213 /* Find the symbols for the values and put them into the type.
2214 The symbols can be found in the symlist that we put them on
2215 to cause them to be defined. osyms contains the old value
2216 of that symlist; everything up to there was defined by us. */
2217 /* Note that we preserve the order of the enum constants, so
2218 that in something like "enum {FOO, LAST_THING=FOO}" we print
2219 FOO, not LAST_THING. */
2221 for (syms = *symlist, n = 0; syms; syms = syms->next)
2227 for (; j < syms->nsyms; j++, n++)
2229 struct symbol *xsym = syms->symbol[j];
2231 SYMBOL_TYPE (xsym) = type;
2232 TYPE_FIELD_NAME (type, n) = SYMBOL_LINKAGE_NAME (xsym);
2233 SET_FIELD_ENUMVAL (TYPE_FIELD (type, n), SYMBOL_VALUE (xsym));
2234 if (SYMBOL_VALUE (xsym) < 0)
2236 TYPE_FIELD_BITSIZE (type, n) = 0;
2243 TYPE_UNSIGNED (type) = 1;
2248 /* Register our ability to parse symbols for coff BFD files. */
2250 static const struct sym_fns coff_sym_fns =
2252 coff_new_init, /* sym_new_init: init anything gbl to
2254 coff_symfile_init, /* sym_init: read initial info, setup
2256 coff_symfile_read, /* sym_read: read a symbol file into
2258 NULL, /* sym_read_psymbols */
2259 coff_symfile_finish, /* sym_finish: finished with file,
2261 default_symfile_offsets, /* sym_offsets: xlate external to
2263 default_symfile_segments, /* sym_segments: Get segment
2264 information from a file */
2265 NULL, /* sym_read_linetable */
2267 default_symfile_relocate, /* sym_relocate: Relocate a debug
2269 NULL, /* sym_probe_fns */
2273 /* Free the per-objfile COFF data. */
2276 coff_free_info (struct objfile *objfile, void *arg)
2282 _initialize_coffread (void)
2284 add_symtab_fns (bfd_target_coff_flavour, &coff_sym_fns);
2286 coff_objfile_data_key = register_objfile_data_with_cleanup (NULL,
2290 = register_symbol_register_impl (LOC_REGISTER, &coff_register_funcs);