1 /* Read coff symbol tables and convert to internal format, for GDB.
3 Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
25 #include "breakpoint.h"
30 #include "gdb-stabs.h"
31 #include "complaints.h"
36 #include <time.h> /* For time_t in libbfd.h. */
37 #include <sys/types.h> /* For time_t, if not in time.h. */
38 #include "libbfd.h" /* FIXME secret internal data from BFD */
39 #include "coff/internal.h" /* Internal format of COFF symbols in BFD */
40 #include "libcoff.h" /* FIXME secret internal data from BFD */
42 struct coff_symfile_info {
43 asection *text_sect; /* Text section accessor */
44 int symcount; /* How many symbols are there in the file */
45 char *stringtab; /* The actual string table */
46 int stringtab_size; /* Its size */
47 file_ptr symtab_offset; /* Offset in file to symbol table */
48 int symbol_size; /* Bytes in a single symbol */
49 struct stab_section_info *stab_section_info; /* section starting points
50 of the original .o files before linking. */
52 asection *stabsect; /* Section pointer for .stab section */
53 asection *stabstrsect; /* Section pointer for .stab section */
54 asection *stabindexsect; /* Section pointer for .stab.index section */
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 */
61 /* Translate an external name string into a user-visible name. */
62 #define EXTERNAL_NAME(string, abfd) \
63 (string[0] == bfd_get_symbol_leading_char(abfd)? string+1: string)
65 /* To be an sdb debug type, type must have at least a basic or primary
66 derived type. Using this rather than checking against T_NULL is
67 said to prevent core dumps if we try to operate on Michael Bloom
70 #define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
73 * Convert from an sdb register number to an internal gdb register number.
74 * This should be defined in tm.h, if REGISTER_NAMES is not set up
75 * to map one to one onto the sdb register numbers.
77 #ifndef SDB_REG_TO_REGNUM
78 # define SDB_REG_TO_REGNUM(value) (value)
81 /* Core address of start and end of text of current source file.
82 This comes from a ".text" symbol where x_nlinno > 0. */
84 static CORE_ADDR cur_src_start_addr;
85 static CORE_ADDR cur_src_end_addr;
87 /* Core address of the end of the first object file. */
88 static CORE_ADDR first_object_file_end;
90 /* The addresses of the symbol table stream and number of symbols
91 of the object file we are reading (as copied into core). */
93 static FILE *nlist_stream_global;
94 static int nlist_nsyms_global;
96 /* Vector of line number information. */
98 static struct linetable *line_vector;
100 /* Index of next entry to go in line_vector_index. */
102 static int line_vector_index;
104 /* Last line number recorded in the line vector. */
106 static int prev_line_number;
108 /* Number of elements allocated for line_vector currently. */
110 static int line_vector_length;
112 /* Pointers to scratch storage, used for reading raw symbols and auxents. */
114 static char *temp_sym;
115 static char *temp_aux;
117 /* Local variables that hold the shift and mask values for the
118 COFF file that we are currently reading. These come back to us
119 from BFD, and are referenced by their macro names, as well as
120 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
121 macros from ../internalcoff.h . */
123 static unsigned local_n_btmask;
124 static unsigned local_n_btshft;
125 static unsigned local_n_tmask;
126 static unsigned local_n_tshift;
128 #define N_BTMASK local_n_btmask
129 #define N_BTSHFT local_n_btshft
130 #define N_TMASK local_n_tmask
131 #define N_TSHIFT local_n_tshift
133 /* Local variables that hold the sizes in the file of various COFF structures.
134 (We only need to know this to read them from the file -- BFD will then
135 translate the data in them, into `internal_xxx' structs in the right
136 byte order, alignment, etc.) */
138 static unsigned local_linesz;
139 static unsigned local_symesz;
140 static unsigned local_auxesz;
143 /* Chain of typedefs of pointers to empty struct/union types.
144 They are chained thru the SYMBOL_VALUE_CHAIN. */
146 static struct symbol *opaque_type_chain[HASHSIZE];
149 /* The type of the function we are currently reading in. This is
150 used by define_symbol to record the type of arguments to a function. */
152 struct type *in_function_type;
155 struct pending_block *pending_blocks;
157 /* Complaints about various problems in the file being read */
159 struct complaint ef_complaint =
160 {"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
162 struct complaint bf_no_aux_complaint =
163 {"`.bf' symbol %d has no aux entry", 0, 0};
165 struct complaint ef_no_aux_complaint =
166 {"`.ef' symbol %d has no aux entry", 0, 0};
168 struct complaint lineno_complaint =
169 {"Line number pointer %d lower than start of line numbers", 0, 0};
171 struct complaint unexpected_type_complaint =
172 {"Unexpected type for symbol %s", 0, 0};
174 struct complaint bad_sclass_complaint =
175 {"Bad n_sclass for symbol %s", 0, 0};
177 struct complaint misordered_blocks_complaint =
178 {"Blocks out of order at address %x", 0, 0};
180 struct complaint tagndx_bad_complaint =
181 {"Symbol table entry for %s has bad tagndx value", 0, 0};
183 struct complaint eb_complaint =
184 {"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
186 /* Simplified internal version of coff symbol table information */
190 int c_symnum; /* symbol number of this entry */
191 int c_naux; /* 0 if syment only, 1 if syment + auxent, etc */
199 coff_read_struct_type PARAMS ((int, int, int));
202 decode_base_type PARAMS ((struct coff_symbol *, unsigned int,
203 union internal_auxent *));
206 decode_type PARAMS ((struct coff_symbol *, unsigned int,
207 union internal_auxent *));
210 decode_function_type PARAMS ((struct coff_symbol *, unsigned int,
211 union internal_auxent *));
214 coff_read_enum_type PARAMS ((int, int, int));
216 static struct symbol *
217 process_coff_symbol PARAMS ((struct coff_symbol *, union internal_auxent *,
221 patch_opaque_types PARAMS ((struct symtab *));
224 patch_type PARAMS ((struct type *, struct type *));
227 enter_linenos PARAMS ((long, int, int));
230 free_linetab PARAMS ((void));
233 init_lineno PARAMS ((int, long, int));
236 getfilename PARAMS ((union internal_auxent *));
239 getsymname PARAMS ((struct internal_syment *));
242 free_stringtab PARAMS ((void));
245 init_stringtab PARAMS ((int, long));
248 read_one_sym PARAMS ((struct coff_symbol *, struct internal_syment *,
249 union internal_auxent *));
252 read_coff_symtab PARAMS ((long, int, struct objfile *));
255 find_linenos PARAMS ((bfd *, sec_ptr, PTR));
258 coff_symfile_init PARAMS ((struct objfile *));
261 coff_new_init PARAMS ((struct objfile *));
264 coff_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
267 coff_symfile_finish PARAMS ((struct objfile *));
270 record_minimal_symbol PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type));
273 coff_end_symtab PARAMS ((struct objfile *));
276 complete_symtab PARAMS ((char *, CORE_ADDR, unsigned int));
279 coff_start_symtab PARAMS ((void));
282 coff_record_line PARAMS ((int, CORE_ADDR));
285 coff_alloc_type PARAMS ((int));
287 static struct type **
288 coff_lookup_type PARAMS ((int));
292 coff_locate_sections PARAMS ((bfd *, asection *, PTR));
294 /* We are called once per section from coff_symfile_read. We
295 need to examine each section we are passed, check to see
296 if it is something we are interested in processing, and
297 if so, stash away some access information for the section.
299 FIXME: The section names should not be hardwired strings (what
300 should they be? I don't think most debug formats have enough
301 special section flags to specify what kind of debug section it is
305 coff_locate_sections (ignore_abfd, sectp, csip)
310 register struct coff_symfile_info *csi;
312 csi = (struct coff_symfile_info *) csip;
313 if (STREQ (sectp->name, ".stab"))
315 csi->stabsect = sectp;
317 else if (STREQ (sectp->name, ".stabstr"))
319 csi->stabstrsect = sectp;
321 else if (STREQ (sectp->name, ".stab.index"))
323 csi->stabindexsect = sectp;
327 /* Look up a coff type-number index. Return the address of the slot
328 where the type for that index is stored.
329 The type-number is in INDEX.
331 This can be used for finding the type associated with that index
332 or for associating a new type with the index. */
334 static struct type **
335 coff_lookup_type (index)
338 if (index >= type_vector_length)
340 int old_vector_length = type_vector_length;
342 type_vector_length *= 2;
343 if (index /* is still */ >= type_vector_length) {
344 type_vector_length = index * 2;
346 type_vector = (struct type **)
347 xrealloc ((char *) type_vector,
348 type_vector_length * sizeof (struct type *));
349 memset (&type_vector[old_vector_length], 0,
350 (type_vector_length - old_vector_length) * sizeof(struct type *));
352 return &type_vector[index];
355 /* Make sure there is a type allocated for type number index
356 and return the type object.
357 This can create an empty (zeroed) type object. */
360 coff_alloc_type (index)
363 register struct type **type_addr = coff_lookup_type (index);
364 register struct type *type = *type_addr;
366 /* If we are referring to a type not known at all yet,
367 allocate an empty type for it.
368 We will fill it in later if we find out how. */
371 type = alloc_type (current_objfile);
377 /* Record a line number entry for line LINE at address PC.
378 FIXME: Use record_line instead. */
381 coff_record_line (line, pc)
385 struct linetable_entry *e;
386 /* Make sure line vector is big enough. */
388 if (line_vector_index + 2 >= line_vector_length)
390 line_vector_length *= 2;
391 line_vector = (struct linetable *)
392 xrealloc ((char *) line_vector, sizeof (struct linetable)
393 + (line_vector_length
394 * sizeof (struct linetable_entry)));
397 e = line_vector->item + line_vector_index++;
398 e->line = line; e->pc = pc;
401 /* Start a new symtab for a new source file.
402 This is called when a COFF ".file" symbol is seen;
403 it indicates the start of data for one original source file. */
409 /* We fill in the filename later. start_symtab
410 puts this pointer into last_source file and in
411 coff_end_symtab we assume we can free() it.
412 FIXME: leaks memory. */
414 /* We never know the directory name for COFF. */
416 /* The start address is irrelevant, since we set
417 last_source_start_addr in coff_end_symtab. */
420 /* Initialize the source file line number information for this file. */
422 if (line_vector) /* Unlikely, but maybe possible? */
423 free ((PTR)line_vector);
424 line_vector_index = 0;
425 line_vector_length = 1000;
426 prev_line_number = -2; /* Force first line number to be explicit */
427 line_vector = (struct linetable *)
428 xmalloc (sizeof (struct linetable)
429 + line_vector_length * sizeof (struct linetable_entry));
432 /* Save the vital information from when starting to read a file,
433 for use when closing off the current file.
434 NAME is the file name the symbols came from, START_ADDR is the first
435 text address for the file, and SIZE is the number of bytes of text. */
438 complete_symtab (name, start_addr, size)
440 CORE_ADDR start_addr;
443 last_source_file = savestring (name, strlen (name));
444 cur_src_start_addr = start_addr;
445 cur_src_end_addr = start_addr + size;
447 if (current_objfile -> ei.entry_point >= cur_src_start_addr &&
448 current_objfile -> ei.entry_point < cur_src_end_addr)
450 current_objfile -> ei.entry_file_lowpc = cur_src_start_addr;
451 current_objfile -> ei.entry_file_highpc = cur_src_end_addr;
455 /* Finish the symbol definitions for one main source file,
456 close off all the lexical contexts for that file
457 (creating struct block's for them), then make the
458 struct symtab for that file and put it in the list of all such. */
461 coff_end_symtab (objfile)
462 struct objfile *objfile;
464 struct symtab *symtab;
466 last_source_start_addr = cur_src_start_addr;
468 /* For no good reason, this file stores the number of entries in a
469 separate variable instead of in line_vector->nitems. Fix it. */
471 line_vector->nitems = line_vector_index;
473 /* For COFF, we only have one subfile, so we can just look at
474 subfiles and not worry about there being other elements in the
475 chain. We fill in various fields now because we didn't know them
476 before (or because doing it now is simply an artifact of how this
477 file used to be written). */
478 subfiles->line_vector = line_vector;
479 subfiles->name = last_source_file;
481 /* sort_pending is needed for amdcoff, at least.
482 sort_linevec is needed for the SCO compiler. */
483 symtab = end_symtab (cur_src_end_addr, 1, 1, objfile, 0);
486 free_named_symtabs (symtab->filename);
488 /* Reinitialize for beginning of new file. */
490 line_vector_length = -1;
491 last_source_file = NULL;
495 record_minimal_symbol (name, address, type)
498 enum minimal_symbol_type type;
500 /* We don't want TDESC entry points in the minimal symbol table */
501 if (name[0] == '@') return;
503 prim_record_minimal_symbol (savestring (name, strlen (name)), address, type);
506 /* coff_symfile_init ()
507 is the coff-specific initialization routine for reading symbols.
508 It is passed a struct objfile which contains, among other things,
509 the BFD for the file whose symbols are being read, and a slot for
510 a pointer to "private data" which we fill with cookies and other
511 treats for coff_symfile_read ().
513 We will only be called if this is a COFF or COFF-like file.
514 BFD handles figuring out the format of the file, and code in symtab.c
515 uses BFD's determination to vector to us.
517 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
519 static int text_bfd_scnum;
522 coff_symfile_init (objfile)
523 struct objfile *objfile;
525 asection *section, *strsection;
526 bfd *abfd = objfile->obfd;
528 /* Allocate struct to keep track of the symfile */
529 objfile -> sym_private = xmmalloc (objfile -> md,
530 sizeof (struct coff_symfile_info));
532 memset (objfile->sym_private, 0, sizeof (struct coff_symfile_info));
534 init_entry_point_info (objfile);
536 /* Save the section number for the text section */
537 section = bfd_get_section_by_name (abfd, ".text");
539 text_bfd_scnum = section->index;
544 /* This function is called for every section; it finds the outer limits
545 of the line table (minimum and maximum file offset) so that the
546 mainline code can read the whole thing for efficiency. */
550 find_linenos (abfd, asect, vpinfo)
555 struct coff_symfile_info *info;
557 file_ptr offset, maxoff;
559 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
560 count = asect->lineno_count;
565 size = count * local_linesz;
567 info = (struct coff_symfile_info *)vpinfo;
568 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
569 offset = asect->line_filepos;
572 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
573 info->min_lineno_offset = offset;
575 maxoff = offset + size;
576 if (maxoff > info->max_lineno_offset)
577 info->max_lineno_offset = maxoff;
581 /* The BFD for this file -- only good while we're actively reading
582 symbols into a psymtab or a symtab. */
584 static bfd *symfile_bfd;
586 /* Read a symbol file, after initialization by coff_symfile_init. */
587 /* FIXME! Addr and Mainline are not used yet -- this will not work for
588 shared libraries or add_file! */
592 coff_symfile_read (objfile, section_offsets, mainline)
593 struct objfile *objfile;
594 struct section_offsets *section_offsets;
597 struct coff_symfile_info *info;
598 bfd *abfd = objfile->obfd;
599 coff_data_type *cdata = coff_data (abfd);
600 char *name = bfd_get_filename (abfd);
605 int stringtab_offset;
606 struct cleanup *back_to;
607 int stabsize, stabstrsize;
609 info = (struct coff_symfile_info *) objfile -> sym_private;
610 symfile_bfd = abfd; /* Kludge for swap routines */
612 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
613 desc = fileno ((FILE *)(abfd->iostream)); /* File descriptor */
614 num_symbols = bfd_get_symcount (abfd); /* How many syms */
615 symtab_offset = cdata->sym_filepos; /* Symbol table file offset */
616 stringtab_offset = symtab_offset + /* String table file offset */
617 num_symbols * cdata->local_symesz;
619 /* Set a few file-statics that give us specific information about
620 the particular COFF file format we're reading. */
621 local_linesz = cdata->local_linesz;
622 local_n_btmask = cdata->local_n_btmask;
623 local_n_btshft = cdata->local_n_btshft;
624 local_n_tmask = cdata->local_n_tmask;
625 local_n_tshift = cdata->local_n_tshift;
626 local_linesz = cdata->local_linesz;
627 local_symesz = cdata->local_symesz;
628 local_auxesz = cdata->local_auxesz;
630 /* Allocate space for raw symbol and aux entries, based on their
631 space requirements as reported by BFD. */
632 temp_sym = (char *) xmalloc
633 (cdata->local_symesz + cdata->local_auxesz);
634 temp_aux = temp_sym + cdata->local_symesz;
635 back_to = make_cleanup (free_current_contents, &temp_sym);
638 /* Read the line number table, all at once. */
639 info->min_lineno_offset = 0;
640 info->max_lineno_offset = 0;
641 bfd_map_over_sections (abfd, find_linenos, (PTR) info);
643 make_cleanup (free_linetab, 0);
644 val = init_lineno (desc, info->min_lineno_offset,
645 info->max_lineno_offset - info->min_lineno_offset);
647 error ("\"%s\": error reading line numbers\n", name);
649 /* Now read the string table, all at once. */
651 make_cleanup (free_stringtab, 0);
652 val = init_stringtab (desc, stringtab_offset);
654 error ("\"%s\": can't get string table", name);
656 init_minimal_symbol_collection ();
657 make_cleanup (discard_minimal_symbols, 0);
659 /* Now that the executable file is positioned at symbol table,
660 process it and define symbols accordingly. */
662 read_coff_symtab ((long)symtab_offset, num_symbols, objfile);
664 /* Sort symbols alphabetically within each block. */
666 sort_all_symtab_syms ();
668 /* Install any minimal symbols that have been collected as the current
669 minimal symbols for this objfile. */
671 install_minimal_symbols (objfile);
673 bfd_map_over_sections (abfd, coff_locate_sections, (PTR) info);
677 /* FIXME: dubious. Why can't we use something normal like
678 bfd_get_section_contents? */
679 fseek ((FILE *) abfd->iostream, abfd->where, 0);
681 stabsize = bfd_section_size (abfd, info->stabsect);
682 stabstrsize = bfd_section_size (abfd, info->stabstrsect);
684 coffstab_build_psymtabs (objfile,
687 info->stabsect->filepos, stabsize,
688 info->stabstrsect->filepos, stabstrsize);
691 do_cleanups (back_to);
695 coff_new_init (ignore)
696 struct objfile *ignore;
700 /* Perform any local cleanups required when we are done with a particular
701 objfile. I.E, we are in the process of discarding all symbol information
702 for an objfile, freeing up all memory held for it, and unlinking the
703 objfile struct from the global list of known objfiles. */
706 coff_symfile_finish (objfile)
707 struct objfile *objfile;
709 if (objfile -> sym_private != NULL)
711 mfree (objfile -> md, objfile -> sym_private);
716 /* Given pointers to a symbol table in coff style exec file,
717 analyze them and create struct symtab's describing the symbols.
718 NSYMS is the number of symbols in the symbol table.
719 We read them one at a time using read_one_sym (). */
722 read_coff_symtab (symtab_offset, nsyms, objfile)
725 struct objfile *objfile;
728 register struct context_stack *new;
729 struct coff_symbol coff_symbol;
730 register struct coff_symbol *cs = &coff_symbol;
731 static struct internal_syment main_sym;
732 static union internal_auxent main_aux;
733 struct coff_symbol fcn_cs_saved;
734 static struct internal_syment fcn_sym_saved;
735 static union internal_auxent fcn_aux_saved;
738 /* A .file is open. */
739 int in_source_file = 0;
740 int num_object_files = 0;
741 int next_file_symnum = -1;
743 /* Name of the current file. */
744 char *filestring = "";
746 int fcn_first_line = 0;
747 int fcn_last_line = 0;
748 int fcn_start_addr = 0;
749 long fcn_line_ptr = 0;
752 stream = bfd_cache_lookup(objfile->obfd);
754 perror_with_name(objfile->name);
756 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
757 it's hard to know I've really worked around it. The fix should be
758 harmless, anyway). The symptom of the bug is that the first
759 fread (in read_one_sym), will (in my example) actually get data
760 from file offset 268, when the fseek was to 264 (and ftell shows
761 264). This causes all hell to break loose. I was unable to
762 reproduce this on a short test program which operated on the same
763 file, performing (I think) the same sequence of operations.
765 It stopped happening when I put in this rewind().
767 FIXME: Find out if this has been reported to Sun, whether it has
768 been fixed in a later release, etc. */
772 /* Position to read the symbol table. */
773 val = fseek (stream, (long)symtab_offset, 0);
775 perror_with_name (objfile->name);
777 current_objfile = objfile;
778 nlist_stream_global = stream;
779 nlist_nsyms_global = nsyms;
780 last_source_file = NULL;
781 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
783 if (type_vector) /* Get rid of previous one */
784 free ((PTR)type_vector);
785 type_vector_length = 160;
786 type_vector = (struct type **)
787 xmalloc (type_vector_length * sizeof (struct type *));
788 memset (type_vector, 0, type_vector_length * sizeof (struct type *));
790 coff_start_symtab ();
793 while (symnum < nsyms)
795 QUIT; /* Make this command interruptable. */
796 read_one_sym (cs, &main_sym, &main_aux);
799 temp_sem_val = cs->c_name[0] << 24 | cs->c_name[1] << 16 |
800 cs->c_name[2] << 8 | cs->c_name[3];
801 if (int_sem_val == temp_sem_val)
802 last_coffsem = (int) strtol (cs->c_name+4, (char **) NULL, 10);
805 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
807 if (last_source_file)
808 coff_end_symtab (objfile);
810 coff_start_symtab ();
811 complete_symtab ("_globals_", 0, first_object_file_end);
812 /* done with all files, everything from here on out is globals */
815 /* Special case for file with type declarations only, no text. */
816 if (!last_source_file && SDB_TYPE (cs->c_type)
817 && cs->c_secnum == N_DEBUG)
818 complete_symtab (filestring, 0, 0);
820 /* Typedefs should not be treated as symbol definitions. */
821 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
823 /* Record all functions -- external and static -- in minsyms. */
824 record_minimal_symbol (cs->c_name, cs->c_value, mst_text);
826 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
827 fcn_start_addr = cs->c_value;
829 fcn_sym_saved = main_sym;
830 fcn_aux_saved = main_aux;
834 switch (cs->c_sclass)
843 complain (&bad_sclass_complaint, cs->c_name);
848 * c_value field contains symnum of next .file entry in table
849 * or symnum of first global after last .file.
851 next_file_symnum = cs->c_value;
853 filestring = getfilename (&main_aux);
858 * Complete symbol table for last object file
859 * containing debugging information.
861 if (last_source_file)
863 coff_end_symtab (objfile);
864 coff_start_symtab ();
870 if (cs->c_name[0] == '.') {
871 if (STREQ (cs->c_name, ".text")) {
872 /* FIXME: don't wire in ".text" as section name
874 if (++num_object_files == 1) {
875 /* last address of startup file */
876 first_object_file_end = cs->c_value +
877 main_aux.x_scn.x_scnlen;
879 /* Check for in_source_file deals with case of
880 a file with debugging symbols
881 followed by a later file with no symbols. */
883 complete_symtab (filestring, cs->c_value,
884 main_aux.x_scn.x_scnlen);
887 /* flush rest of '.' symbols */
890 else if (!SDB_TYPE (cs->c_type)
891 && cs->c_name[0] == 'L'
892 && (strncmp (cs->c_name, "LI%", 3) == 0
893 || strncmp (cs->c_name, "LF%", 3) == 0
894 || strncmp (cs->c_name,"LC%",3) == 0
895 || strncmp (cs->c_name,"LP%",3) == 0
896 || strncmp (cs->c_name,"LPB%",4) == 0
897 || strncmp (cs->c_name,"LBB%",4) == 0
898 || strncmp (cs->c_name,"LBE%",4) == 0
899 || strncmp (cs->c_name,"LPBX%",5) == 0))
900 /* At least on a 3b1, gcc generates swbeg and string labels
901 that look like this. Ignore them. */
903 /* fall in for static symbols that don't start with '.' */
905 /* Record external symbols in minsyms if we don't have debug
906 info for them. FIXME, this is probably the wrong thing
907 to do. Why don't we record them even if we do have
908 debug symbol info? What really belongs in the minsyms
910 if (!SDB_TYPE (cs->c_type)) {
911 /* FIXME: This is BOGUS Will Robinson!
912 Coff should provide the SEC_CODE flag for executable sections,
913 then if we could look up sections by section number we
914 could see if the flags indicate SEC_CODE. If so, then
915 record this symbol as a function in the minimal symbol table.
916 But why are absolute syms recorded as functions, anyway? */
917 if (cs->c_secnum <= text_bfd_scnum+1) {/* text or abs */
918 record_minimal_symbol (cs->c_name, cs->c_value,
922 record_minimal_symbol (cs->c_name, cs->c_value,
927 process_coff_symbol (cs, &main_aux, objfile);
931 if (STREQ (cs->c_name, ".bf"))
935 /* value contains address of first non-init type code */
936 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
937 contains line number of '{' } */
939 complain (&bf_no_aux_complaint, cs->c_symnum);
940 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
942 /* Might want to check that locals are 0 and
943 context_stack_depth is zero, and complain if not. */
946 new = push_context (depth, fcn_start_addr);
947 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
948 new->name = process_coff_symbol (&fcn_cs_saved,
949 &fcn_aux_saved, objfile);
951 else if (STREQ (cs->c_name, ".ef"))
953 /* the value of .ef is the address of epilogue code;
954 not useful for gdb. */
955 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
956 contains number of lines to '}' */
957 new = pop_context ();
958 /* Stack must be empty now. */
959 if (context_stack_depth > 0 || new == NULL)
961 complain (&ef_complaint, cs->c_symnum);
967 complain (&ef_no_aux_complaint, cs->c_symnum);
968 fcn_last_line = 0x7FFFFFFF;
972 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
974 enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line);
976 finish_block (new->name, &local_symbols, new->old_blocks,
978 #if defined (FUNCTION_EPILOGUE_SIZE)
979 /* This macro should be defined only on
981 fcn_aux_saved.x_sym.x_misc.x_fsize
982 field is always zero.
983 So use the .bf record information that
984 points to the epilogue and add the size
986 cs->c_value + FUNCTION_EPILOGUE_SIZE,
988 fcn_cs_saved.c_value +
989 fcn_aux_saved.x_sym.x_misc.x_fsize,
998 if (STREQ (cs->c_name, ".bb"))
1000 push_context (++depth, cs->c_value);
1002 else if (STREQ (cs->c_name, ".eb"))
1004 new = pop_context ();
1005 if (depth-- != new->depth)
1007 complain (&eb_complaint, symnum);
1010 if (local_symbols && context_stack_depth > 0)
1012 /* Make a block for the local symbols within. */
1013 finish_block (0, &local_symbols, new->old_blocks,
1014 new->start_addr, cs->c_value, objfile);
1016 /* Now pop locals of block just finished. */
1017 local_symbols = new->locals;
1022 process_coff_symbol (cs, &main_aux, objfile);
1027 if (last_source_file)
1028 coff_end_symtab (objfile);
1030 /* Patch up any opaque types (references to types that are not defined
1031 in the file where they are referenced, e.g. "struct foo *bar"). */
1032 ALL_OBJFILE_SYMTABS (objfile, s)
1033 patch_opaque_types (s);
1035 current_objfile = NULL;
1038 /* Routines for reading headers and symbols from executable. */
1041 /* Move these XXXMAGIC symbol defns into BFD! */
1043 /* Read COFF file header, check magic number,
1044 and return number of symbols. */
1045 read_file_hdr (chan, file_hdr)
1049 lseek (chan, 0L, 0);
1050 if (myread (chan, (char *)file_hdr, FILHSZ) < 0)
1053 switch (file_hdr->f_magic)
1068 #if defined (MC68KWRMAGIC) \
1069 && (!defined (MC68MAGIC) || MC68KWRMAGIC != MC68MAGIC)
1083 case I960ROMAGIC: /* Intel 960 */
1086 case I960RWMAGIC: /* Intel 960 */
1088 return file_hdr->f_nsyms;
1092 if (BADMAG(file_hdr))
1095 return file_hdr->f_nsyms;
1103 /* Read the next symbol, swap it, and return it in both internal_syment
1104 form, and coff_symbol form. Also return its first auxent, if any,
1105 in internal_auxent form, and skip any other auxents. */
1108 read_one_sym (cs, sym, aux)
1109 register struct coff_symbol *cs;
1110 register struct internal_syment *sym;
1111 register union internal_auxent *aux;
1115 cs->c_symnum = symnum;
1116 fread (temp_sym, local_symesz, 1, nlist_stream_global);
1117 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *)sym);
1118 cs->c_naux = sym->n_numaux & 0xff;
1119 if (cs->c_naux >= 1)
1121 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
1122 bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
1124 /* If more than one aux entry, read past it (only the first aux
1126 for (i = 1; i < cs->c_naux; i++)
1127 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
1129 cs->c_name = getsymname (sym);
1130 cs->c_value = sym->n_value;
1131 cs->c_sclass = (sym->n_sclass & 0xff);
1132 cs->c_secnum = sym->n_scnum;
1133 cs->c_type = (unsigned) sym->n_type;
1134 if (!SDB_TYPE (cs->c_type))
1137 symnum += 1 + cs->c_naux;
1140 /* Support for string table handling */
1142 static char *stringtab = NULL;
1145 init_stringtab (chan, offset)
1151 unsigned char lengthbuf[4];
1155 if (lseek (chan, offset, 0) < 0)
1158 val = myread (chan, (char *)lengthbuf, sizeof lengthbuf);
1159 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
1161 /* If no string table is needed, then the file may end immediately
1162 after the symbols. Just return with `stringtab' set to null. */
1163 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1166 stringtab = (char *) xmalloc (length);
1167 memcpy (stringtab, &length, sizeof length);
1168 if (length == sizeof length) /* Empty table -- just the count */
1171 val = myread (chan, stringtab + sizeof lengthbuf, length - sizeof lengthbuf);
1172 if (val != length - sizeof lengthbuf || stringtab[length - 1] != '\0')
1187 getsymname (symbol_entry)
1188 struct internal_syment *symbol_entry;
1190 static char buffer[SYMNMLEN+1];
1193 if (symbol_entry->_n._n_n._n_zeroes == 0)
1195 result = stringtab + symbol_entry->_n._n_n._n_offset;
1199 strncpy (buffer, symbol_entry->_n._n_name, SYMNMLEN);
1200 buffer[SYMNMLEN] = '\0';
1206 /* Extract the file name from the aux entry of a C_FILE symbol. Return
1207 only the last component of the name. Result is in static storage and
1208 is only good for temporary use. */
1211 getfilename (aux_entry)
1212 union internal_auxent *aux_entry;
1214 static char buffer[BUFSIZ];
1215 register char *temp;
1218 if (aux_entry->x_file.x_n.x_zeroes == 0)
1219 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1222 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1223 buffer[FILNMLEN] = '\0';
1226 if ((temp = strrchr (result, '/')) != NULL)
1231 /* Support for line number handling */
1232 static char *linetab = NULL;
1233 static long linetab_offset;
1234 static unsigned long linetab_size;
1236 /* Read in all the line numbers for fast lookups later. Leave them in
1237 external (unswapped) format in memory; we'll swap them as we enter
1238 them into GDB's data structures. */
1241 init_lineno (chan, offset, size)
1248 linetab_offset = offset;
1249 linetab_size = size;
1256 if (lseek (chan, offset, 0) < 0)
1259 /* Allocate the desired table, plus a sentinel */
1260 linetab = (char *) xmalloc (size + local_linesz);
1262 val = myread (chan, linetab, size);
1266 /* Terminate it with an all-zero sentinel record */
1267 memset (linetab + size, 0, local_linesz);
1280 #if !defined (L_LNNO32)
1281 #define L_LNNO32(lp) ((lp)->l_lnno)
1285 enter_linenos (file_offset, first_line, last_line)
1287 register int first_line;
1288 register int last_line;
1290 register char *rawptr;
1291 struct internal_lineno lptr;
1293 if (file_offset < linetab_offset)
1295 complain (&lineno_complaint, file_offset);
1296 if (file_offset > linetab_size) /* Too big to be an offset? */
1298 file_offset += linetab_offset; /* Try reading at that linetab offset */
1301 rawptr = &linetab[file_offset - linetab_offset];
1303 /* skip first line entry for each function */
1304 rawptr += local_linesz;
1305 /* line numbers start at one for the first line of the function */
1309 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1310 rawptr += local_linesz;
1311 /* The next function, or the sentinel, will have L_LNNO32 zero; we exit. */
1312 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
1313 coff_record_line (first_line + L_LNNO32 (&lptr), lptr.l_addr.l_paddr);
1320 patch_type (type, real_type)
1322 struct type *real_type;
1324 register struct type *target = TYPE_TARGET_TYPE (type);
1325 register struct type *real_target = TYPE_TARGET_TYPE (real_type);
1326 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1328 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1329 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
1330 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target, field_size);
1332 memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size);
1334 if (TYPE_NAME (real_target))
1336 if (TYPE_NAME (target))
1337 free (TYPE_NAME (target));
1338 TYPE_NAME (target) = concat (TYPE_NAME (real_target), NULL);
1342 /* Patch up all appropriate typedef symbols in the opaque_type_chains
1343 so that they can be used to print out opaque data structures properly. */
1346 patch_opaque_types (s)
1349 register struct block *b;
1351 register struct symbol *real_sym;
1353 /* Go through the per-file symbols only */
1354 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
1355 for (i = BLOCK_NSYMS (b) - 1; i >= 0; i--)
1357 /* Find completed typedefs to use to fix opaque ones.
1358 Remove syms from the chain when their types are stored,
1359 but search the whole chain, as there may be several syms
1360 from different files with the same name. */
1361 real_sym = BLOCK_SYM (b, i);
1362 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF &&
1363 SYMBOL_NAMESPACE (real_sym) == VAR_NAMESPACE &&
1364 TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR &&
1365 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
1367 register char *name = SYMBOL_NAME (real_sym);
1368 register int hash = hashname (name);
1369 register struct symbol *sym, *prev;
1372 for (sym = opaque_type_chain[hash]; sym;)
1374 if (name[0] == SYMBOL_NAME (sym)[0] &&
1375 STREQ (name + 1, SYMBOL_NAME (sym) + 1))
1379 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
1383 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
1386 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
1390 sym = SYMBOL_VALUE_CHAIN (prev);
1394 sym = opaque_type_chain[hash];
1400 sym = SYMBOL_VALUE_CHAIN (sym);
1407 static struct symbol *
1408 process_coff_symbol (cs, aux, objfile)
1409 register struct coff_symbol *cs;
1410 register union internal_auxent *aux;
1411 struct objfile *objfile;
1413 register struct symbol *sym
1414 = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
1415 sizeof (struct symbol));
1417 struct type *temptype;
1419 memset (sym, 0, sizeof (struct symbol));
1421 name = EXTERNAL_NAME (name, objfile->obfd);
1422 SYMBOL_NAME (sym) = obstack_copy0 (&objfile->symbol_obstack, name,
1425 /* default assumptions */
1426 SYMBOL_VALUE (sym) = cs->c_value;
1427 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1429 if (ISFCN (cs->c_type))
1432 /* FIXME: This has NOT been tested. The DBX version has.. */
1433 /* Generate a template for the type of this function. The
1434 types of the arguments will be added as we read the symbol
1436 struct type *new = (struct type *)
1437 obstack_alloc (&objfile->symbol_obstack, sizeof (struct type));
1439 memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)),
1440 sizeof(struct type));
1441 SYMBOL_TYPE (sym) = new;
1442 in_function_type = SYMBOL_TYPE(sym);
1445 lookup_function_type (decode_function_type (cs, cs->c_type, aux));
1448 SYMBOL_CLASS (sym) = LOC_BLOCK;
1449 if (cs->c_sclass == C_STAT)
1450 add_symbol_to_list (sym, &file_symbols);
1451 else if (cs->c_sclass == C_EXT)
1452 add_symbol_to_list (sym, &global_symbols);
1456 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux);
1457 switch (cs->c_sclass)
1463 SYMBOL_CLASS (sym) = LOC_LOCAL;
1464 add_symbol_to_list (sym, &local_symbols);
1468 SYMBOL_CLASS (sym) = LOC_STATIC;
1469 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1470 add_symbol_to_list (sym, &global_symbols);
1474 SYMBOL_CLASS (sym) = LOC_STATIC;
1475 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1476 if (within_function) {
1477 /* Static symbol of local scope */
1478 add_symbol_to_list (sym, &local_symbols);
1481 /* Static symbol at top level of file */
1482 add_symbol_to_list (sym, &file_symbols);
1486 #ifdef C_GLBLREG /* AMD coff */
1490 SYMBOL_CLASS (sym) = LOC_REGISTER;
1491 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
1492 add_symbol_to_list (sym, &local_symbols);
1499 SYMBOL_CLASS (sym) = LOC_ARG;
1501 /* FIXME: This has not been tested. */
1502 /* Add parameter to function. */
1503 add_param_to_type(&in_function_type,sym);
1505 add_symbol_to_list (sym, &local_symbols);
1506 #if !defined (BELIEVE_PCC_PROMOTION) && (TARGET_BYTE_ORDER == BIG_ENDIAN)
1507 /* If PCC says a parameter is a short or a char,
1508 aligned on an int boundary, realign it to the "little end"
1510 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1511 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1512 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1513 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
1515 SYMBOL_VALUE (sym) += TYPE_LENGTH (temptype)
1516 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1522 SYMBOL_CLASS (sym) = LOC_REGPARM;
1523 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
1524 add_symbol_to_list (sym, &local_symbols);
1525 #if !defined (BELIEVE_PCC_PROMOTION)
1526 /* FIXME: This should retain the current type, since it's just
1527 a register value. gnu@adobe, 26Feb93 */
1528 /* If PCC says a parameter is a short or a char,
1529 it is really an int. */
1530 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1531 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1532 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
1534 SYMBOL_TYPE (sym) = TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1535 ? lookup_fundamental_type (current_objfile,
1536 FT_UNSIGNED_INTEGER)
1543 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1544 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1546 /* If type has no name, give it one */
1547 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1548 TYPE_NAME (SYMBOL_TYPE (sym)) = concat (SYMBOL_NAME (sym), NULL);
1550 /* Keep track of any type which points to empty structured type,
1551 so it can be filled from a definition from another file. A
1552 simple forward reference (TYPE_CODE_UNDEF) is not an
1553 empty structured type, though; the forward references
1554 work themselves out via the magic of coff_lookup_type. */
1555 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
1556 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
1557 TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
1560 register int i = hashname (SYMBOL_NAME (sym));
1562 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1563 opaque_type_chain[i] = sym;
1565 add_symbol_to_list (sym, &file_symbols);
1571 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1572 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1574 /* Some compilers try to be helpful by inventing "fake"
1575 names for anonymous enums, structures, and unions, like
1576 "~0fake" or ".0fake". Thanks, but no thanks... */
1577 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
1578 if (SYMBOL_NAME(sym) != NULL
1579 && *SYMBOL_NAME(sym) != '~'
1580 && *SYMBOL_NAME(sym) != '.')
1581 TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
1582 concat (SYMBOL_NAME (sym), NULL);
1584 add_symbol_to_list (sym, &file_symbols);
1594 /* Decode a coff type specifier;
1595 return the type that is meant. */
1599 decode_type (cs, c_type, aux)
1600 register struct coff_symbol *cs;
1601 unsigned int c_type;
1602 register union internal_auxent *aux;
1604 register struct type *type = 0;
1605 unsigned int new_c_type;
1607 if (c_type & ~N_BTMASK)
1609 new_c_type = DECREF (c_type);
1612 type = decode_type (cs, new_c_type, aux);
1613 type = lookup_pointer_type (type);
1615 else if (ISFCN (c_type))
1617 type = decode_type (cs, new_c_type, aux);
1618 type = lookup_function_type (type);
1620 else if (ISARY (c_type))
1623 register unsigned short *dim;
1624 struct type *base_type, *index_type, *range_type;
1626 /* Define an array type. */
1627 /* auxent refers to array, not base type */
1628 if (aux->x_sym.x_tagndx.l == 0)
1631 /* shift the indices down */
1632 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1635 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1639 base_type = decode_type (cs, new_c_type, aux);
1640 index_type = lookup_fundamental_type (current_objfile, FT_INTEGER);
1642 create_range_type ((struct type *) NULL, index_type, 0, n - 1);
1644 create_array_type ((struct type *) NULL, base_type, range_type);
1649 /* Reference to existing type. This only occurs with the
1650 struct, union, and enum types. EPI a29k coff
1651 fakes us out by producing aux entries with a nonzero
1652 x_tagndx for definitions of structs, unions, and enums, so we
1653 have to check the c_sclass field. SCO 3.2v4 cc gets confused
1654 with pointers to pointers to defined structs, and generates
1655 negative x_tagndx fields. */
1656 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
1658 if (cs->c_sclass != C_STRTAG
1659 && cs->c_sclass != C_UNTAG
1660 && cs->c_sclass != C_ENTAG
1661 && aux->x_sym.x_tagndx.l >= 0)
1663 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1666 complain (&tagndx_bad_complaint, cs->c_name);
1667 /* And fall through to decode_base_type... */
1671 return decode_base_type (cs, BTYPE (c_type), aux);
1674 /* Decode a coff type specifier for function definition;
1675 return the type that the function returns. */
1679 decode_function_type (cs, c_type, aux)
1680 register struct coff_symbol *cs;
1681 unsigned int c_type;
1682 register union internal_auxent *aux;
1684 if (aux->x_sym.x_tagndx.l == 0)
1685 cs->c_naux = 0; /* auxent refers to function, not base type */
1687 return decode_type (cs, DECREF (c_type), aux);
1694 decode_base_type (cs, c_type, aux)
1695 register struct coff_symbol *cs;
1696 unsigned int c_type;
1697 register union internal_auxent *aux;
1704 /* shows up with "void (*foo)();" structure members */
1705 return lookup_fundamental_type (current_objfile, FT_VOID);
1708 /* DGUX actually defines both T_ARG and T_VOID to the same value. */
1711 /* Shows up in DGUX, I think. Not sure where. */
1712 return lookup_fundamental_type (current_objfile, FT_VOID); /* shouldn't show up here */
1718 /* Intel 960 COFF has this symbol and meaning. */
1719 return lookup_fundamental_type (current_objfile, FT_VOID);
1723 return lookup_fundamental_type (current_objfile, FT_CHAR);
1726 return lookup_fundamental_type (current_objfile, FT_SHORT);
1729 return lookup_fundamental_type (current_objfile, FT_INTEGER);
1732 return lookup_fundamental_type (current_objfile, FT_LONG);
1735 return lookup_fundamental_type (current_objfile, FT_FLOAT);
1738 return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
1741 if (cs->c_naux != 1)
1743 /* anonymous structure type */
1744 type = coff_alloc_type (cs->c_symnum);
1745 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1746 TYPE_NAME (type) = NULL;
1747 /* This used to set the tag to "<opaque>". But I think setting it
1748 to NULL is right, and the printing code can print it as
1750 TYPE_TAG_NAME (type) = NULL;
1751 INIT_CPLUS_SPECIFIC(type);
1752 TYPE_LENGTH (type) = 0;
1753 TYPE_FIELDS (type) = 0;
1754 TYPE_NFIELDS (type) = 0;
1758 type = coff_read_struct_type (cs->c_symnum,
1759 aux->x_sym.x_misc.x_lnsz.x_size,
1760 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1765 if (cs->c_naux != 1)
1767 /* anonymous union type */
1768 type = coff_alloc_type (cs->c_symnum);
1769 TYPE_NAME (type) = NULL;
1770 /* This used to set the tag to "<opaque>". But I think setting it
1771 to NULL is right, and the printing code can print it as
1773 TYPE_TAG_NAME (type) = NULL;
1774 INIT_CPLUS_SPECIFIC(type);
1775 TYPE_LENGTH (type) = 0;
1776 TYPE_FIELDS (type) = 0;
1777 TYPE_NFIELDS (type) = 0;
1781 type = coff_read_struct_type (cs->c_symnum,
1782 aux->x_sym.x_misc.x_lnsz.x_size,
1783 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1785 TYPE_CODE (type) = TYPE_CODE_UNION;
1789 if (cs->c_naux != 1)
1791 /* anonymous enum type */
1792 type = coff_alloc_type (cs->c_symnum);
1793 TYPE_CODE (type) = TYPE_CODE_ENUM;
1794 TYPE_NAME (type) = NULL;
1795 /* This used to set the tag to "<opaque>". But I think setting it
1796 to NULL is right, and the printing code can print it as
1798 TYPE_TAG_NAME (type) = NULL;
1799 TYPE_LENGTH (type) = 0;
1800 TYPE_FIELDS (type) = 0;
1801 TYPE_NFIELDS(type) = 0;
1805 type = coff_read_enum_type (cs->c_symnum,
1806 aux->x_sym.x_misc.x_lnsz.x_size,
1807 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1812 /* shouldn't show up here */
1816 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
1819 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
1822 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
1825 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
1827 complain (&unexpected_type_complaint, cs->c_name);
1828 return lookup_fundamental_type (current_objfile, FT_VOID);
1831 /* This page contains subroutines of read_type. */
1833 /* Read the description of a structure (or union type)
1834 and return an object describing the type. */
1836 static struct type *
1837 coff_read_struct_type (index, length, lastsym)
1844 struct nextfield *next;
1848 register struct type *type;
1849 register struct nextfield *list = 0;
1850 struct nextfield *new;
1854 struct coff_symbol member_sym;
1855 register struct coff_symbol *ms = &member_sym;
1856 struct internal_syment sub_sym;
1857 union internal_auxent sub_aux;
1860 type = coff_alloc_type (index);
1861 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1862 INIT_CPLUS_SPECIFIC(type);
1863 TYPE_LENGTH (type) = length;
1865 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
1867 read_one_sym (ms, &sub_sym, &sub_aux);
1869 name = EXTERNAL_NAME (name, current_objfile->obfd);
1871 switch (ms->c_sclass)
1876 /* Get space to record the next field's data. */
1877 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1881 /* Save the data. */
1882 list->field.name = savestring (name, strlen (name));
1883 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
1884 list->field.bitpos = 8 * ms->c_value;
1885 list->field.bitsize = 0;
1891 /* Get space to record the next field's data. */
1892 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1896 /* Save the data. */
1897 list->field.name = savestring (name, strlen (name));
1898 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
1899 list->field.bitpos = ms->c_value;
1900 list->field.bitsize = sub_aux.x_sym.x_misc.x_lnsz.x_size;
1909 /* Now create the vector of fields, and record how big it is. */
1911 TYPE_NFIELDS (type) = nfields;
1912 TYPE_FIELDS (type) = (struct field *)
1913 TYPE_ALLOC (type, sizeof (struct field) * nfields);
1915 /* Copy the saved-up fields into the field vector. */
1917 for (n = nfields; list; list = list->next)
1918 TYPE_FIELD (type, --n) = list->field;
1923 /* Read a definition of an enumeration type,
1924 and create and return a suitable type object.
1925 Also defines the symbols that represent the values of the type. */
1928 static struct type *
1929 coff_read_enum_type (index, length, lastsym)
1934 register struct symbol *sym;
1935 register struct type *type;
1938 struct pending **symlist;
1939 struct coff_symbol member_sym;
1940 register struct coff_symbol *ms = &member_sym;
1941 struct internal_syment sub_sym;
1942 union internal_auxent sub_aux;
1943 struct pending *osyms, *syms;
1948 type = coff_alloc_type (index);
1949 if (within_function)
1950 symlist = &local_symbols;
1952 symlist = &file_symbols;
1954 o_nsyms = osyms ? osyms->nsyms : 0;
1956 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
1958 read_one_sym (ms, &sub_sym, &sub_aux);
1960 name = EXTERNAL_NAME (name, current_objfile->obfd);
1962 switch (ms->c_sclass)
1965 sym = (struct symbol *) xmalloc (sizeof (struct symbol));
1966 memset (sym, 0, sizeof (struct symbol));
1968 SYMBOL_NAME (sym) = savestring (name, strlen (name));
1969 SYMBOL_CLASS (sym) = LOC_CONST;
1970 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1971 SYMBOL_VALUE (sym) = ms->c_value;
1972 add_symbol_to_list (sym, symlist);
1977 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
1978 up the count of how many symbols to read. So stop
1985 /* Now fill in the fields of the type-structure. */
1988 TYPE_LENGTH (type) = length;
1990 TYPE_LENGTH (type) = TARGET_INT_BIT / TARGET_CHAR_BIT; /* Assume ints */
1991 TYPE_CODE (type) = TYPE_CODE_ENUM;
1992 TYPE_NFIELDS (type) = nsyms;
1993 TYPE_FIELDS (type) = (struct field *)
1994 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
1996 /* Find the symbols for the values and put them into the type.
1997 The symbols can be found in the symlist that we put them on
1998 to cause them to be defined. osyms contains the old value
1999 of that symlist; everything up to there was defined by us. */
2000 /* Note that we preserve the order of the enum constants, so
2001 that in something like "enum {FOO, LAST_THING=FOO}" we print
2002 FOO, not LAST_THING. */
2004 for (syms = *symlist, n = 0; syms; syms = syms->next)
2009 for (; j < syms->nsyms; j++,n++)
2011 struct symbol *xsym = syms->symbol[j];
2012 SYMBOL_TYPE (xsym) = type;
2013 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
2014 TYPE_FIELD_VALUE (type, n) = 0;
2015 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
2016 TYPE_FIELD_BITSIZE (type, n) = 0;
2023 /* This screws up perfectly good C programs with enums. FIXME. */
2024 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2025 if(TYPE_NFIELDS(type) == 2 &&
2026 ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
2027 STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2028 (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
2029 STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
2030 TYPE_CODE(type) = TYPE_CODE_BOOL;
2035 struct section_offsets *
2036 coff_symfile_offsets (objfile, addr)
2037 struct objfile *objfile;
2040 struct section_offsets *section_offsets;
2043 section_offsets = (struct section_offsets *)
2044 obstack_alloc (&objfile -> psymbol_obstack,
2045 sizeof (struct section_offsets) +
2046 sizeof (section_offsets->offsets) * (SECT_OFF_MAX-1));
2048 for (i = 0; i < SECT_OFF_MAX; i++)
2049 ANOFFSET (section_offsets, i) = addr;
2051 return section_offsets;
2054 /* Register our ability to parse symbols for coff BFD files */
2056 static struct sym_fns coff_sym_fns =
2058 "coff", /* sym_name: name or name prefix of BFD target type */
2059 4, /* sym_namelen: number of significant sym_name chars */
2060 coff_new_init, /* sym_new_init: init anything gbl to entire symtab */
2061 coff_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2062 coff_symfile_read, /* sym_read: read a symbol file into symtab */
2063 coff_symfile_finish, /* sym_finish: finished with file, cleanup */
2064 coff_symfile_offsets, /* sym_offsets: xlate external to internal form */
2065 NULL /* next: pointer to next struct sym_fns */
2069 _initialize_coffread ()
2071 add_symtab_fns(&coff_sym_fns);