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 "complaints.h"
35 #include "libbfd.h" /* FIXME secret internal data from BFD */
36 #include "coff/internal.h" /* Internal format of COFF symbols in BFD */
37 #include "libcoff.h" /* FIXME secret internal data from BFD */
39 /* Translate an external name string into a user-visible name. */
40 #define EXTERNAL_NAME(string, abfd) \
41 (string[0] == bfd_get_symbol_leading_char(abfd)? string+1: string)
43 /* To be an sdb debug type, type must have at least a basic or primary
44 derived type. Using this rather than checking against T_NULL is
45 said to prevent core dumps if we try to operate on Michael Bloom
48 #define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
51 * Convert from an sdb register number to an internal gdb register number.
52 * This should be defined in tm.h, if REGISTER_NAMES is not set up
53 * to map one to one onto the sdb register numbers.
55 #ifndef SDB_REG_TO_REGNUM
56 # define SDB_REG_TO_REGNUM(value) (value)
59 /* Core address of start and end of text of current source file.
60 This comes from a ".text" symbol where x_nlinno > 0. */
62 static CORE_ADDR cur_src_start_addr;
63 static CORE_ADDR cur_src_end_addr;
65 /* Core address of the end of the first object file. */
66 static CORE_ADDR first_object_file_end;
68 /* The addresses of the symbol table stream and number of symbols
69 of the object file we are reading (as copied into core). */
71 static FILE *nlist_stream_global;
72 static int nlist_nsyms_global;
74 /* Vector of line number information. */
76 static struct linetable *line_vector;
78 /* Index of next entry to go in line_vector_index. */
80 static int line_vector_index;
82 /* Last line number recorded in the line vector. */
84 static int prev_line_number;
86 /* Number of elements allocated for line_vector currently. */
88 static int line_vector_length;
90 /* Pointers to scratch storage, used for reading raw symbols and auxents. */
92 static char *temp_sym;
93 static char *temp_aux;
95 /* Local variables that hold the shift and mask values for the
96 COFF file that we are currently reading. These come back to us
97 from BFD, and are referenced by their macro names, as well as
98 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
99 macros from ../internalcoff.h . */
101 static unsigned local_n_btmask;
102 static unsigned local_n_btshft;
103 static unsigned local_n_tmask;
104 static unsigned local_n_tshift;
106 #define N_BTMASK local_n_btmask
107 #define N_BTSHFT local_n_btshft
108 #define N_TMASK local_n_tmask
109 #define N_TSHIFT local_n_tshift
111 /* Local variables that hold the sizes in the file of various COFF structures.
112 (We only need to know this to read them from the file -- BFD will then
113 translate the data in them, into `internal_xxx' structs in the right
114 byte order, alignment, etc.) */
116 static unsigned local_linesz;
117 static unsigned local_symesz;
118 static unsigned local_auxesz;
121 /* Chain of typedefs of pointers to empty struct/union types.
122 They are chained thru the SYMBOL_VALUE_CHAIN. */
124 static struct symbol *opaque_type_chain[HASHSIZE];
126 /* Record the symbols defined for each context in a list.
127 We don't create a struct block for the context until we
128 know how long to make it. */
132 struct coff_pending *next;
133 struct symbol *symbol;
136 /* Here are the three lists that symbols are put on. */
138 struct coff_pending *coff_file_symbols; /* static at top level, and types */
140 struct coff_pending *coff_global_symbols; /* global functions and variables */
142 struct coff_pending *coff_local_symbols; /* everything local to lexical context */
144 /* List of unclosed lexical contexts
145 (that will become blocks, eventually). */
147 struct coff_context_stack
149 struct coff_context_stack *next;
150 struct coff_pending *locals;
151 struct pending_block *old_blocks;
153 CORE_ADDR start_addr;
157 struct coff_context_stack *coff_context_stack;
159 /* Nonzero if within a function (so symbols should be local,
160 if nothing says specifically). */
165 /* The type of the function we are currently reading in. This is
166 used by define_symbol to record the type of arguments to a function. */
168 struct type *in_function_type;
171 struct pending_block *pending_blocks;
173 /* Complaints about various problems in the file being read */
175 struct complaint ef_complaint =
176 {"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
178 struct complaint bf_no_aux_complaint =
179 {"`.bf' symbol %d has no aux entry", 0, 0};
181 struct complaint ef_no_aux_complaint =
182 {"`.ef' symbol %d has no aux entry", 0, 0};
184 struct complaint lineno_complaint =
185 {"Line number pointer %d lower than start of line numbers", 0, 0};
187 struct complaint unexpected_type_complaint =
188 {"Unexpected type for symbol %s", 0, 0};
190 struct complaint bad_sclass_complaint =
191 {"Bad n_sclass for symbol %s", 0, 0};
193 struct complaint misordered_blocks_complaint =
194 {"Blocks out of order at address %x", 0, 0};
196 struct complaint tagndx_bad_complaint =
197 {"Symbol table entry for %s has bad tagndx value", 0, 0};
199 struct complaint eb_complaint =
200 {"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
202 /* Simplified internal version of coff symbol table information */
206 int c_symnum; /* symbol number of this entry */
207 int c_naux; /* 0 if syment only, 1 if syment + auxent, etc */
215 coff_read_struct_type PARAMS ((int, int, int));
218 decode_base_type PARAMS ((struct coff_symbol *, unsigned int,
219 union internal_auxent *));
222 decode_type PARAMS ((struct coff_symbol *, unsigned int,
223 union internal_auxent *));
226 decode_function_type PARAMS ((struct coff_symbol *, unsigned int,
227 union internal_auxent *));
230 coff_read_enum_type PARAMS ((int, int, int));
232 static struct blockvector *
233 make_blockvector PARAMS ((struct objfile *));
235 static struct symbol *
236 process_coff_symbol PARAMS ((struct coff_symbol *, union internal_auxent *,
240 patch_opaque_types PARAMS ((struct symtab *));
243 patch_type PARAMS ((struct type *, struct type *));
246 enter_linenos PARAMS ((long, int, int));
249 init_lineno PARAMS ((int, long, int));
252 getfilename PARAMS ((union internal_auxent *));
255 getsymname PARAMS ((struct internal_syment *));
258 free_stringtab PARAMS ((void));
261 init_stringtab PARAMS ((int, long));
264 read_one_sym PARAMS ((struct coff_symbol *, struct internal_syment *,
265 union internal_auxent *));
268 read_coff_symtab PARAMS ((long, int, struct objfile *));
271 find_linenos PARAMS ((bfd *, sec_ptr, PTR));
274 coff_symfile_init PARAMS ((struct objfile *));
277 coff_new_init PARAMS ((struct objfile *));
280 coff_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
283 coff_symfile_finish PARAMS ((struct objfile *));
286 record_minimal_symbol PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type));
289 coff_end_symtab PARAMS ((struct objfile *));
292 complete_symtab PARAMS ((char *, CORE_ADDR, unsigned int));
295 coff_start_symtab PARAMS ((void));
298 coff_record_line PARAMS ((int, CORE_ADDR));
301 coff_finish_block PARAMS ((struct symbol *, struct coff_pending **,
302 struct pending_block *, CORE_ADDR, CORE_ADDR,
306 coff_add_symbol_to_list PARAMS ((struct symbol *, struct coff_pending **));
309 coff_alloc_type PARAMS ((int));
311 static struct type **
312 coff_lookup_type PARAMS ((int));
315 /* Look up a coff type-number index. Return the address of the slot
316 where the type for that index is stored.
317 The type-number is in INDEX.
319 This can be used for finding the type associated with that index
320 or for associating a new type with the index. */
322 static struct type **
323 coff_lookup_type (index)
326 if (index >= type_vector_length)
328 int old_vector_length = type_vector_length;
330 type_vector_length *= 2;
331 if (index /* is still */ >= type_vector_length) {
332 type_vector_length = index * 2;
334 type_vector = (struct type **)
335 xrealloc ((char *) type_vector,
336 type_vector_length * sizeof (struct type *));
337 memset (&type_vector[old_vector_length], 0,
338 (type_vector_length - old_vector_length) * sizeof(struct type *));
340 return &type_vector[index];
343 /* Make sure there is a type allocated for type number index
344 and return the type object.
345 This can create an empty (zeroed) type object. */
348 coff_alloc_type (index)
351 register struct type **type_addr = coff_lookup_type (index);
352 register struct type *type = *type_addr;
354 /* If we are referring to a type not known at all yet,
355 allocate an empty type for it.
356 We will fill it in later if we find out how. */
359 type = alloc_type (current_objfile);
365 /* maintain the lists of symbols and blocks */
367 /* Add a symbol to one of the lists of symbols. */
369 coff_add_symbol_to_list (symbol, listhead)
370 struct symbol *symbol;
371 struct coff_pending **listhead;
373 register struct coff_pending *link
374 = (struct coff_pending *) xmalloc (sizeof (struct coff_pending));
376 link->next = *listhead;
377 link->symbol = symbol;
381 /* Take one of the lists of symbols and make a block from it.
382 Put the block on the list of pending blocks. */
385 coff_finish_block (symbol, listhead, old_blocks, start, end, objfile)
386 struct symbol *symbol;
387 struct coff_pending **listhead;
388 struct pending_block *old_blocks;
389 CORE_ADDR start, end;
390 struct objfile *objfile;
392 register struct coff_pending *next, *next1;
393 register struct block *block;
394 register struct pending_block *pblock;
395 struct pending_block *opblock;
398 /* Count the length of the list of symbols. */
400 for (next = *listhead, i = 0; next; next = next->next, i++);
402 block = (struct block *)
403 obstack_alloc (&objfile->symbol_obstack, sizeof (struct block) + (i - 1) * sizeof (struct symbol *));
405 /* Copy the symbols into the block. */
407 BLOCK_NSYMS (block) = i;
408 for (next = *listhead; next; next = next->next)
409 BLOCK_SYM (block, --i) = next->symbol;
411 BLOCK_START (block) = start;
412 BLOCK_END (block) = end;
413 BLOCK_SUPERBLOCK (block) = 0; /* Filled in when containing block is made */
415 /* Put the block in as the value of the symbol that names it. */
419 SYMBOL_BLOCK_VALUE (symbol) = block;
420 BLOCK_FUNCTION (block) = symbol;
423 BLOCK_FUNCTION (block) = 0;
425 /* Now free the links of the list, and empty the list. */
427 for (next = *listhead; next; next = next1)
434 /* Install this block as the superblock
435 of all blocks made since the start of this scope
436 that don't have superblocks yet. */
439 for (pblock = pending_blocks; pblock != old_blocks; pblock = pblock->next)
441 if (BLOCK_SUPERBLOCK (pblock->block) == 0)
442 BLOCK_SUPERBLOCK (pblock->block) = block;
446 /* Record this block on the list of all blocks in the file.
447 Put it after opblock, or at the beginning if opblock is 0.
448 This puts the block in the list after all its subblocks. */
450 pblock = (struct pending_block *) xmalloc (sizeof (struct pending_block));
451 pblock->block = block;
454 pblock->next = opblock->next;
455 opblock->next = pblock;
459 pblock->next = pending_blocks;
460 pending_blocks = pblock;
464 static struct blockvector *
465 make_blockvector (objfile)
466 struct objfile *objfile;
468 register struct pending_block *next, *next1;
469 register struct blockvector *blockvector;
472 /* Count the length of the list of blocks. */
474 for (next = pending_blocks, i = 0; next; next = next->next, i++);
476 blockvector = (struct blockvector *)
477 obstack_alloc (&objfile->symbol_obstack, sizeof (struct blockvector) + (i - 1) * sizeof (struct block *));
479 /* Copy the blocks into the blockvector.
480 This is done in reverse order, which happens to put
481 the blocks into the proper order (ascending starting address).
482 coff_finish_block has hair to insert each block into the list
483 after its subblocks in order to make sure this is true. */
485 BLOCKVECTOR_NBLOCKS (blockvector) = i;
486 for (next = pending_blocks; next; next = next->next)
487 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
489 /* Now free the links of the list, and empty the list. */
491 for (next = pending_blocks; next; next = next1)
501 /* Manage the vector of line numbers. */
504 coff_record_line (line, pc)
508 struct linetable_entry *e;
509 /* Make sure line vector is big enough. */
511 if (line_vector_index + 2 >= line_vector_length)
513 line_vector_length *= 2;
514 line_vector = (struct linetable *)
515 xrealloc ((char *) line_vector, sizeof (struct linetable)
516 + (line_vector_length
517 * sizeof (struct linetable_entry)));
520 e = line_vector->item + line_vector_index++;
521 e->line = line; e->pc = pc;
524 /* Start a new symtab for a new source file.
525 This is called when a COFF ".file" symbol is seen;
526 it indicates the start of data for one original source file. */
531 coff_file_symbols = 0;
532 coff_global_symbols = 0;
533 coff_context_stack = 0;
535 last_source_file = NULL;
537 /* Initialize the source file line number information for this file. */
539 if (line_vector) /* Unlikely, but maybe possible? */
540 free ((PTR)line_vector);
541 line_vector_index = 0;
542 line_vector_length = 1000;
543 prev_line_number = -2; /* Force first line number to be explicit */
544 line_vector = (struct linetable *)
545 xmalloc (sizeof (struct linetable)
546 + line_vector_length * sizeof (struct linetable_entry));
549 /* Save the vital information from when starting to read a file,
550 for use when closing off the current file.
551 NAME is the file name the symbols came from, START_ADDR is the first
552 text address for the file, and SIZE is the number of bytes of text. */
555 complete_symtab (name, start_addr, size)
557 CORE_ADDR start_addr;
560 last_source_file = savestring (name, strlen (name));
561 cur_src_start_addr = start_addr;
562 cur_src_end_addr = start_addr + size;
564 if (current_objfile -> ei.entry_point >= cur_src_start_addr &&
565 current_objfile -> ei.entry_point < cur_src_end_addr)
567 current_objfile -> ei.entry_file_lowpc = cur_src_start_addr;
568 current_objfile -> ei.entry_file_highpc = cur_src_end_addr;
572 /* Finish the symbol definitions for one main source file,
573 close off all the lexical contexts for that file
574 (creating struct block's for them), then make the
575 struct symtab for that file and put it in the list of all such. */
578 coff_end_symtab (objfile)
579 struct objfile *objfile;
581 register struct symtab *symtab;
582 register struct coff_context_stack *cstk;
583 register struct blockvector *blockvector;
584 register struct linetable *lv;
586 /* Finish the lexical context of the last function in the file. */
588 if (coff_context_stack)
590 cstk = coff_context_stack;
591 coff_context_stack = 0;
592 /* Make a block for the local symbols within. */
593 coff_finish_block (cstk->name, &coff_local_symbols, cstk->old_blocks,
594 cstk->start_addr, cur_src_end_addr, objfile);
598 /* Ignore a file that has no functions with real debugging info. */
599 if (pending_blocks == 0 && coff_file_symbols == 0 && coff_global_symbols == 0)
601 free ((PTR)line_vector);
603 line_vector_length = -1;
604 last_source_file = NULL;
608 /* It is unfortunate that in amdcoff, pending blocks might not be ordered
609 in this stage. Especially, blocks for static functions will show up at
610 the end. We need to sort them, so tools like `find_pc_function' and
611 `find_pc_block' can work reliably. */
612 if (pending_blocks) {
613 /* FIXME! Remove this horrid bubble sort and use qsort!!! */
616 struct pending_block *pb, *pbnext;
618 pb = pending_blocks, pbnext = pb->next;
623 /* swap blocks if unordered! */
625 if (BLOCK_START(pb->block) < BLOCK_START(pbnext->block)) {
626 struct block *tmp = pb->block;
627 complain (&misordered_blocks_complaint, BLOCK_START (pb->block));
628 pb->block = pbnext->block;
633 pbnext = pbnext->next;
638 /* Create the two top-level blocks for this file (STATIC_BLOCK and
640 coff_finish_block (0, &coff_file_symbols, 0, cur_src_start_addr, cur_src_end_addr, objfile);
641 coff_finish_block (0, &coff_global_symbols, 0, cur_src_start_addr, cur_src_end_addr, objfile);
643 /* Create the blockvector that points to all the file's blocks. */
644 blockvector = make_blockvector (objfile);
646 /* Now create the symtab object for this source file. */
647 symtab = allocate_symtab (last_source_file, objfile);
649 /* Fill in its components. */
650 symtab->blockvector = blockvector;
651 symtab->free_code = free_linetable;
652 symtab->free_ptr = 0;
653 symtab->filename = last_source_file;
654 symtab->dirname = NULL;
656 lv->nitems = line_vector_index;
657 symtab->linetable = (struct linetable *)
658 xrealloc ((char *) lv, (sizeof (struct linetable)
659 + lv->nitems * sizeof (struct linetable_entry)));
661 free_named_symtabs (symtab->filename);
663 /* Reinitialize for beginning of new file. */
665 line_vector_length = -1;
666 last_source_file = NULL;
670 record_minimal_symbol (name, address, type)
673 enum minimal_symbol_type type;
675 /* We don't want TDESC entry points in the minimal symbol table */
676 if (name[0] == '@') return;
678 /* mst_text isn't true, but apparently COFF doesn't tell us what it really
679 is, so this guess is more useful than mst_unknown. */
680 prim_record_minimal_symbol (savestring (name, strlen (name)),
685 /* coff_symfile_init ()
686 is the coff-specific initialization routine for reading symbols.
687 It is passed a struct objfile which contains, among other things,
688 the BFD for the file whose symbols are being read, and a slot for
689 a pointer to "private data" which we fill with cookies and other
690 treats for coff_symfile_read ().
692 We will only be called if this is a COFF or COFF-like file.
693 BFD handles figuring out the format of the file, and code in symtab.c
694 uses BFD's determination to vector to us.
696 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
698 struct coff_symfile_info {
699 file_ptr min_lineno_offset; /* Where in file lowest line#s are */
700 file_ptr max_lineno_offset; /* 1+last byte of line#s in file */
703 static int text_bfd_scnum;
706 coff_symfile_init (objfile)
707 struct objfile *objfile;
710 bfd *abfd = objfile->obfd;
712 /* Allocate struct to keep track of the symfile */
713 objfile -> sym_private = xmmalloc (objfile -> md,
714 sizeof (struct coff_symfile_info));
716 init_entry_point_info (objfile);
718 /* Save the section number for the text section */
719 section = bfd_get_section_by_name(abfd,".text");
721 text_bfd_scnum = section->index;
726 /* This function is called for every section; it finds the outer limits
727 of the line table (minimum and maximum file offset) so that the
728 mainline code can read the whole thing for efficiency. */
732 find_linenos (abfd, asect, vpinfo)
737 struct coff_symfile_info *info;
739 file_ptr offset, maxoff;
741 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
742 count = asect->lineno_count;
747 size = count * local_linesz;
749 info = (struct coff_symfile_info *)vpinfo;
750 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
751 offset = asect->line_filepos;
754 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
755 info->min_lineno_offset = offset;
757 maxoff = offset + size;
758 if (maxoff > info->max_lineno_offset)
759 info->max_lineno_offset = maxoff;
763 /* The BFD for this file -- only good while we're actively reading
764 symbols into a psymtab or a symtab. */
766 static bfd *symfile_bfd;
768 /* Read a symbol file, after initialization by coff_symfile_init. */
769 /* FIXME! Addr and Mainline are not used yet -- this will not work for
770 shared libraries or add_file! */
774 coff_symfile_read (objfile, section_offsets, mainline)
775 struct objfile *objfile;
776 struct section_offsets *section_offsets;
779 struct coff_symfile_info *info;
780 bfd *abfd = objfile->obfd;
781 coff_data_type *cdata = coff_data (abfd);
782 char *name = bfd_get_filename (abfd);
787 int stringtab_offset;
789 info = (struct coff_symfile_info *) objfile -> sym_private;
790 symfile_bfd = abfd; /* Kludge for swap routines */
792 /* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
793 desc = fileno ((FILE *)(abfd->iostream)); /* File descriptor */
794 num_symbols = bfd_get_symcount (abfd); /* How many syms */
795 symtab_offset = cdata->sym_filepos; /* Symbol table file offset */
796 stringtab_offset = symtab_offset + /* String table file offset */
797 num_symbols * cdata->local_symesz;
799 /* Set a few file-statics that give us specific information about
800 the particular COFF file format we're reading. */
801 local_linesz = cdata->local_linesz;
802 local_n_btmask = cdata->local_n_btmask;
803 local_n_btshft = cdata->local_n_btshft;
804 local_n_tmask = cdata->local_n_tmask;
805 local_n_tshift = cdata->local_n_tshift;
806 local_linesz = cdata->local_linesz;
807 local_symesz = cdata->local_symesz;
808 local_auxesz = cdata->local_auxesz;
810 /* Allocate space for raw symbol and aux entries, based on their
811 space requirements as reported by BFD. */
812 temp_sym = (char *) xmalloc
813 (cdata->local_symesz + cdata->local_auxesz);
814 temp_aux = temp_sym + cdata->local_symesz;
815 make_cleanup (free_current_contents, &temp_sym);
818 /* Read the line number table, all at once. */
819 info->min_lineno_offset = 0;
820 info->max_lineno_offset = 0;
821 bfd_map_over_sections (abfd, find_linenos, (PTR)info);
823 val = init_lineno (desc, info->min_lineno_offset,
824 info->max_lineno_offset - info->min_lineno_offset);
826 error ("\"%s\": error reading line numbers\n", name);
828 /* Now read the string table, all at once. */
830 val = init_stringtab (desc, stringtab_offset);
832 error ("\"%s\": can't get string table", name);
833 make_cleanup (free_stringtab, 0);
835 init_minimal_symbol_collection ();
836 make_cleanup (discard_minimal_symbols, 0);
838 /* Now that the executable file is positioned at symbol table,
839 process it and define symbols accordingly. */
841 read_coff_symtab ((long)symtab_offset, num_symbols, objfile);
843 /* Sort symbols alphabetically within each block. */
845 sort_all_symtab_syms ();
847 /* Install any minimal symbols that have been collected as the current
848 minimal symbols for this objfile. */
850 install_minimal_symbols (objfile);
854 coff_new_init (ignore)
855 struct objfile *ignore;
860 /* Perform any local cleanups required when we are done with a particular
861 objfile. I.E, we are in the process of discarding all symbol information
862 for an objfile, freeing up all memory held for it, and unlinking the
863 objfile struct from the global list of known objfiles. */
866 coff_symfile_finish (objfile)
867 struct objfile *objfile;
869 if (objfile -> sym_private != NULL)
871 mfree (objfile -> md, objfile -> sym_private);
876 /* Given pointers to a symbol table in coff style exec file,
877 analyze them and create struct symtab's describing the symbols.
878 NSYMS is the number of symbols in the symbol table.
879 We read them one at a time using read_one_sym (). */
882 read_coff_symtab (symtab_offset, nsyms, objfile)
885 struct objfile *objfile;
888 register struct coff_context_stack *new;
889 struct coff_symbol coff_symbol;
890 register struct coff_symbol *cs = &coff_symbol;
891 static struct internal_syment main_sym;
892 static union internal_auxent main_aux;
893 struct coff_symbol fcn_cs_saved;
894 static struct internal_syment fcn_sym_saved;
895 static union internal_auxent fcn_aux_saved;
898 /* A .file is open. */
899 int in_source_file = 0;
900 int num_object_files = 0;
901 int next_file_symnum = -1;
903 /* Name of the current file. */
904 char *filestring = "";
906 int fcn_first_line = 0;
907 int fcn_last_line = 0;
908 int fcn_start_addr = 0;
909 long fcn_line_ptr = 0;
910 struct cleanup *old_chain;
913 stream = bfd_cache_lookup(objfile->obfd);
915 perror_with_name(objfile->name);
917 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
918 it's hard to know I've really worked around it. This should be
919 harmless, anyway). */
922 /* Position to read the symbol table. */
923 val = fseek (stream, (long)symtab_offset, 0);
925 perror_with_name (objfile->name);
927 /* This cleanup will be discarded below if we succeed. */
928 old_chain = make_cleanup (free_objfile, objfile);
930 current_objfile = objfile;
931 nlist_stream_global = stream;
932 nlist_nsyms_global = nsyms;
933 last_source_file = NULL;
934 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
936 if (type_vector) /* Get rid of previous one */
937 free ((PTR)type_vector);
938 type_vector_length = 160;
939 type_vector = (struct type **)
940 xmalloc (type_vector_length * sizeof (struct type *));
941 memset (type_vector, 0, type_vector_length * sizeof (struct type *));
943 coff_start_symtab ();
946 while (symnum < nsyms)
948 QUIT; /* Make this command interruptable. */
949 read_one_sym (cs, &main_sym, &main_aux);
952 temp_sem_val = cs->c_name[0] << 24 | cs->c_name[1] << 16 |
953 cs->c_name[2] << 8 | cs->c_name[3];
954 if (int_sem_val == temp_sem_val)
955 last_coffsem = (int) strtol (cs->c_name+4, (char **) NULL, 10);
958 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
960 if (last_source_file)
961 coff_end_symtab (objfile);
963 coff_start_symtab ();
964 complete_symtab ("_globals_", 0, first_object_file_end);
965 /* done with all files, everything from here on out is globals */
968 /* Special case for file with type declarations only, no text. */
969 if (!last_source_file && SDB_TYPE (cs->c_type)
970 && cs->c_secnum == N_DEBUG)
971 complete_symtab (filestring, 0, 0);
973 /* Typedefs should not be treated as symbol definitions. */
974 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
976 /* record as a minimal symbol. if we get '.bf' next,
977 * then we undo this step
979 record_minimal_symbol (cs->c_name, cs->c_value, mst_text);
981 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
982 fcn_start_addr = cs->c_value;
984 fcn_sym_saved = main_sym;
985 fcn_aux_saved = main_aux;
989 switch (cs->c_sclass)
998 complain (&bad_sclass_complaint, cs->c_name);
1003 * c_value field contains symnum of next .file entry in table
1004 * or symnum of first global after last .file.
1006 next_file_symnum = cs->c_value;
1007 filestring = getfilename (&main_aux);
1009 * Complete symbol table for last object file
1010 * containing debugging information.
1012 if (last_source_file)
1014 coff_end_symtab (objfile);
1015 coff_start_symtab ();
1021 if (cs->c_name[0] == '.') {
1022 if (STREQ (cs->c_name, ".text")) {
1023 /* FIXME: don't wire in ".text" as section name
1025 if (++num_object_files == 1) {
1026 /* last address of startup file */
1027 first_object_file_end = cs->c_value +
1028 main_aux.x_scn.x_scnlen;
1030 /* Check for in_source_file deals with case of
1031 a file with debugging symbols
1032 followed by a later file with no symbols. */
1034 complete_symtab (filestring, cs->c_value,
1035 main_aux.x_scn.x_scnlen);
1038 /* flush rest of '.' symbols */
1041 else if (!SDB_TYPE (cs->c_type)
1042 && cs->c_name[0] == 'L'
1043 && (strncmp (cs->c_name, "LI%", 3) == 0
1044 || strncmp (cs->c_name, "LF%", 3) == 0
1045 || strncmp (cs->c_name,"LC%",3) == 0
1046 || strncmp (cs->c_name,"LP%",3) == 0
1047 || strncmp (cs->c_name,"LPB%",4) == 0
1048 || strncmp (cs->c_name,"LBB%",4) == 0
1049 || strncmp (cs->c_name,"LBE%",4) == 0
1050 || strncmp (cs->c_name,"LPBX%",5) == 0))
1051 /* At least on a 3b1, gcc generates swbeg and string labels
1052 that look like this. Ignore them. */
1054 /* fall in for static symbols that don't start with '.' */
1056 if (!SDB_TYPE (cs->c_type)) {
1057 /* FIXME: This is BOGUS Will Robinson!
1058 Coff should provide the SEC_CODE flag for executable sections,
1059 then if we could look up sections by section number we
1060 could see if the flags indicate SEC_CODE. If so, then
1061 record this symbol as a function in the minimal symbol table.
1062 But why are absolute syms recorded as functions, anyway? */
1063 if (cs->c_secnum <= text_bfd_scnum+1) {/* text or abs */
1064 record_minimal_symbol (cs->c_name, cs->c_value,
1068 record_minimal_symbol (cs->c_name, cs->c_value,
1073 process_coff_symbol (cs, &main_aux, objfile);
1077 if (STREQ (cs->c_name, ".bf"))
1079 within_function = 1;
1081 /* value contains address of first non-init type code */
1082 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
1083 contains line number of '{' } */
1084 if (cs->c_naux != 1)
1085 complain (&bf_no_aux_complaint, cs->c_symnum);
1086 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1088 new = (struct coff_context_stack *)
1089 xmalloc (sizeof (struct coff_context_stack));
1090 new->depth = depth = 0;
1092 coff_context_stack = new;
1094 new->old_blocks = pending_blocks;
1095 new->start_addr = fcn_start_addr;
1096 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
1097 new->name = process_coff_symbol (&fcn_cs_saved,
1098 &fcn_aux_saved, objfile);
1100 else if (STREQ (cs->c_name, ".ef"))
1102 /* the value of .ef is the address of epilogue code;
1103 * not useful for gdb
1105 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1106 contains number of lines to '}' */
1107 new = coff_context_stack;
1110 complain (&ef_complaint, cs->c_symnum);
1111 within_function = 0;
1114 if (cs->c_naux != 1) {
1115 complain (&ef_no_aux_complaint, cs->c_symnum);
1116 fcn_last_line = 0x7FFFFFFF;
1118 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1120 enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line);
1122 coff_finish_block (new->name, &coff_local_symbols, new->old_blocks,
1124 #if defined (FUNCTION_EPILOGUE_SIZE)
1125 /* This macro should be defined only on
1127 fcn_aux_saved.x_sym.x_misc.x_fsize
1128 field is always zero.
1129 So use the .bf record information that
1130 points to the epilogue and add the size
1132 cs->c_value + FUNCTION_EPILOGUE_SIZE,
1134 fcn_cs_saved.c_value +
1135 fcn_aux_saved.x_sym.x_misc.x_fsize,
1139 coff_context_stack = 0;
1140 within_function = 0;
1146 if (STREQ (cs->c_name, ".bb"))
1148 new = (struct coff_context_stack *)
1149 xmalloc (sizeof (struct coff_context_stack));
1152 new->next = coff_context_stack;
1153 coff_context_stack = new;
1154 new->locals = coff_local_symbols;
1155 new->old_blocks = pending_blocks;
1156 new->start_addr = cs->c_value;
1158 coff_local_symbols = 0;
1160 else if (STREQ (cs->c_name, ".eb"))
1162 new = coff_context_stack;
1163 if (new == 0 || depth != new->depth)
1165 complain (&eb_complaint, (char *)symnum);
1168 if (coff_local_symbols && coff_context_stack->next)
1170 /* Make a block for the local symbols within. */
1171 coff_finish_block (0, &coff_local_symbols, new->old_blocks,
1172 new->start_addr, cs->c_value, objfile);
1175 coff_local_symbols = new->locals;
1176 coff_context_stack = new->next;
1182 process_coff_symbol (cs, &main_aux, objfile);
1187 if (last_source_file)
1188 coff_end_symtab (objfile);
1191 /* Patch up any opaque types (references to types that are not defined
1192 in the file where they are referenced, e.g. "struct foo *bar"). */
1193 ALL_OBJFILE_SYMTABS (objfile, s)
1194 patch_opaque_types (s);
1196 discard_cleanups (old_chain);
1197 current_objfile = NULL;
1200 /* Routines for reading headers and symbols from executable. */
1203 /* Move these XXXMAGIC symbol defns into BFD! */
1205 /* Read COFF file header, check magic number,
1206 and return number of symbols. */
1207 read_file_hdr (chan, file_hdr)
1211 lseek (chan, 0L, 0);
1212 if (myread (chan, (char *)file_hdr, FILHSZ) < 0)
1215 switch (file_hdr->f_magic)
1230 #if defined (MC68KWRMAGIC) \
1231 && (!defined (MC68MAGIC) || MC68KWRMAGIC != MC68MAGIC)
1245 case I960ROMAGIC: /* Intel 960 */
1248 case I960RWMAGIC: /* Intel 960 */
1250 return file_hdr->f_nsyms;
1254 if (BADMAG(file_hdr))
1257 return file_hdr->f_nsyms;
1265 /* Read the next symbol, swap it, and return it in both internal_syment
1266 form, and coff_symbol form. Also return its first auxent, if any,
1267 in internal_auxent form, and skip any other auxents. */
1270 read_one_sym (cs, sym, aux)
1271 register struct coff_symbol *cs;
1272 register struct internal_syment *sym;
1273 register union internal_auxent *aux;
1277 cs->c_symnum = symnum;
1278 fread (temp_sym, local_symesz, 1, nlist_stream_global);
1279 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *)sym);
1280 cs->c_naux = sym->n_numaux & 0xff;
1281 if (cs->c_naux >= 1)
1283 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
1284 bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
1286 /* If more than one aux entry, read past it (only the first aux
1288 for (i = 1; i < cs->c_naux; i++)
1289 fread (temp_aux, local_auxesz, 1, nlist_stream_global);
1291 cs->c_name = getsymname (sym);
1292 cs->c_value = sym->n_value;
1293 cs->c_sclass = (sym->n_sclass & 0xff);
1294 cs->c_secnum = sym->n_scnum;
1295 cs->c_type = (unsigned) sym->n_type;
1296 if (!SDB_TYPE (cs->c_type))
1299 symnum += 1 + cs->c_naux;
1302 /* Support for string table handling */
1304 static char *stringtab = NULL;
1307 init_stringtab (chan, offset)
1313 unsigned char lengthbuf[4];
1321 if (lseek (chan, offset, 0) < 0)
1324 val = myread (chan, (char *)lengthbuf, sizeof lengthbuf);
1325 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
1327 /* If no string table is needed, then the file may end immediately
1328 after the symbols. Just return with `stringtab' set to null. */
1329 if (val != sizeof length || length < sizeof length)
1332 stringtab = (char *) xmalloc (length);
1333 if (stringtab == NULL)
1336 memcpy (stringtab, &length, sizeof length);
1337 if (length == sizeof length) /* Empty table -- just the count */
1340 val = myread (chan, stringtab + sizeof length, length - sizeof length);
1341 if (val != length - sizeof length || stringtab[length - 1] != '\0')
1356 getsymname (symbol_entry)
1357 struct internal_syment *symbol_entry;
1359 static char buffer[SYMNMLEN+1];
1362 if (symbol_entry->_n._n_n._n_zeroes == 0)
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. Return
1376 only the last component of the name. Result is in static storage and
1377 is only good for temporary use. */
1380 getfilename (aux_entry)
1381 union internal_auxent *aux_entry;
1383 static char buffer[BUFSIZ];
1384 register char *temp;
1387 if (aux_entry->x_file.x_n.x_zeroes == 0)
1388 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1391 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1392 buffer[FILNMLEN] = '\0';
1395 if ((temp = strrchr (result, '/')) != NULL)
1400 /* Support for line number handling */
1401 static char *linetab = NULL;
1402 static long linetab_offset;
1403 static unsigned long linetab_size;
1405 /* Read in all the line numbers for fast lookups later. Leave them in
1406 external (unswapped) format in memory; we'll swap them as we enter
1407 them into GDB's data structures. */
1410 init_lineno (chan, offset, size)
1417 linetab_offset = offset;
1418 linetab_size = size;
1423 if (lseek (chan, offset, 0) < 0)
1426 /* Allocate the desired table, plus a sentinel */
1427 linetab = (char *) xmalloc (size + local_linesz);
1429 val = myread (chan, linetab, size);
1433 /* Terminate it with an all-zero sentinel record */
1434 memset (linetab + size, 0, local_linesz);
1436 make_cleanup (free, linetab); /* Be sure it gets de-allocated. */
1440 #if !defined (L_LNNO32)
1441 #define L_LNNO32(lp) ((lp)->l_lnno)
1445 enter_linenos (file_offset, first_line, last_line)
1447 register int first_line;
1448 register int last_line;
1450 register char *rawptr;
1451 struct internal_lineno lptr;
1453 if (file_offset < linetab_offset)
1455 complain (&lineno_complaint, file_offset);
1456 if (file_offset > linetab_size) /* Too big to be an offset? */
1458 file_offset += linetab_offset; /* Try reading at that linetab offset */
1461 rawptr = &linetab[file_offset - linetab_offset];
1463 /* skip first line entry for each function */
1464 rawptr += local_linesz;
1465 /* line numbers start at one for the first line of the function */
1469 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1470 rawptr += local_linesz;
1471 /* The next function, or the sentinel, will have L_LNNO32 zero; we exit. */
1472 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
1473 coff_record_line (first_line + L_LNNO32 (&lptr), lptr.l_addr.l_paddr);
1480 patch_type (type, real_type)
1482 struct type *real_type;
1484 register struct type *target = TYPE_TARGET_TYPE (type);
1485 register struct type *real_target = TYPE_TARGET_TYPE (real_type);
1486 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1488 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1489 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
1490 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target, field_size);
1492 memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size);
1494 if (TYPE_NAME (real_target))
1496 if (TYPE_NAME (target))
1497 free (TYPE_NAME (target));
1498 TYPE_NAME (target) = concat (TYPE_NAME (real_target), NULL);
1502 /* Patch up all appropriate typedef symbols in the opaque_type_chains
1503 so that they can be used to print out opaque data structures properly. */
1506 patch_opaque_types (s)
1509 register struct block *b;
1511 register struct symbol *real_sym;
1513 /* Go through the per-file symbols only */
1514 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
1515 for (i = BLOCK_NSYMS (b) - 1; i >= 0; i--)
1517 /* Find completed typedefs to use to fix opaque ones.
1518 Remove syms from the chain when their types are stored,
1519 but search the whole chain, as there may be several syms
1520 from different files with the same name. */
1521 real_sym = BLOCK_SYM (b, i);
1522 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF &&
1523 SYMBOL_NAMESPACE (real_sym) == VAR_NAMESPACE &&
1524 TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR &&
1525 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
1527 register char *name = SYMBOL_NAME (real_sym);
1528 register int hash = hashname (name);
1529 register struct symbol *sym, *prev;
1532 for (sym = opaque_type_chain[hash]; sym;)
1534 if (name[0] == SYMBOL_NAME (sym)[0] &&
1535 STREQ (name + 1, SYMBOL_NAME (sym) + 1))
1539 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
1543 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
1546 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
1550 sym = SYMBOL_VALUE_CHAIN (prev);
1554 sym = opaque_type_chain[hash];
1560 sym = SYMBOL_VALUE_CHAIN (sym);
1567 static struct symbol *
1568 process_coff_symbol (cs, aux, objfile)
1569 register struct coff_symbol *cs;
1570 register union internal_auxent *aux;
1571 struct objfile *objfile;
1573 register struct symbol *sym
1574 = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
1575 sizeof (struct symbol));
1577 struct type *temptype;
1579 memset (sym, 0, sizeof (struct symbol));
1581 name = EXTERNAL_NAME (name, objfile->obfd);
1582 SYMBOL_NAME (sym) = obstack_copy0 (&objfile->symbol_obstack, name,
1585 /* default assumptions */
1586 SYMBOL_VALUE (sym) = cs->c_value;
1587 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1589 if (ISFCN (cs->c_type))
1592 /* FIXME: This has NOT been tested. The DBX version has.. */
1593 /* Generate a template for the type of this function. The
1594 types of the arguments will be added as we read the symbol
1596 struct type *new = (struct type *)
1597 obstack_alloc (&objfile->symbol_obstack, sizeof (struct type));
1599 memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)),
1600 sizeof(struct type));
1601 SYMBOL_TYPE (sym) = new;
1602 in_function_type = SYMBOL_TYPE(sym);
1605 lookup_function_type (decode_function_type (cs, cs->c_type, aux));
1608 SYMBOL_CLASS (sym) = LOC_BLOCK;
1609 if (cs->c_sclass == C_STAT)
1610 coff_add_symbol_to_list (sym, &coff_file_symbols);
1611 else if (cs->c_sclass == C_EXT)
1612 coff_add_symbol_to_list (sym, &coff_global_symbols);
1616 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux);
1617 switch (cs->c_sclass)
1623 SYMBOL_CLASS (sym) = LOC_LOCAL;
1624 coff_add_symbol_to_list (sym, &coff_local_symbols);
1628 SYMBOL_CLASS (sym) = LOC_STATIC;
1629 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1630 coff_add_symbol_to_list (sym, &coff_global_symbols);
1634 SYMBOL_CLASS (sym) = LOC_STATIC;
1635 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
1636 if (within_function) {
1637 /* Static symbol of local scope */
1638 coff_add_symbol_to_list (sym, &coff_local_symbols);
1641 /* Static symbol at top level of file */
1642 coff_add_symbol_to_list (sym, &coff_file_symbols);
1646 #ifdef C_GLBLREG /* AMD coff */
1650 SYMBOL_CLASS (sym) = LOC_REGISTER;
1651 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
1652 coff_add_symbol_to_list (sym, &coff_local_symbols);
1659 SYMBOL_CLASS (sym) = LOC_ARG;
1661 /* FIXME: This has not been tested. */
1662 /* Add parameter to function. */
1663 add_param_to_type(&in_function_type,sym);
1665 coff_add_symbol_to_list (sym, &coff_local_symbols);
1666 #if !defined (BELIEVE_PCC_PROMOTION) && (TARGET_BYTE_ORDER == BIG_ENDIAN)
1667 /* If PCC says a parameter is a short or a char,
1668 aligned on an int boundary, realign it to the "little end"
1670 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1671 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1672 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1673 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
1675 SYMBOL_VALUE (sym) += TYPE_LENGTH (temptype)
1676 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1682 SYMBOL_CLASS (sym) = LOC_REGPARM;
1683 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
1684 coff_add_symbol_to_list (sym, &coff_local_symbols);
1685 #if !defined (BELIEVE_PCC_PROMOTION)
1686 /* FIXME: This should retain the current type, since it's just
1687 a register value. gnu@adobe, 26Feb93 */
1688 /* If PCC says a parameter is a short or a char,
1689 it is really an int. */
1690 temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
1691 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1692 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
1694 SYMBOL_TYPE (sym) = TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1695 ? lookup_fundamental_type (current_objfile,
1696 FT_UNSIGNED_INTEGER)
1703 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1704 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1706 /* If type has no name, give it one */
1707 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1708 TYPE_NAME (SYMBOL_TYPE (sym)) = concat (SYMBOL_NAME (sym), NULL);
1710 /* Keep track of any type which points to empty structured type,
1711 so it can be filled from a definition from another file. A
1712 simple forward reference (TYPE_CODE_UNDEF) is not an
1713 empty structured type, though; the forward references
1714 work themselves out via the magic of coff_lookup_type. */
1715 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
1716 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
1717 TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
1720 register int i = hashname (SYMBOL_NAME (sym));
1722 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1723 opaque_type_chain[i] = sym;
1725 coff_add_symbol_to_list (sym, &coff_file_symbols);
1731 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1732 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1733 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1734 TYPE_NAME (SYMBOL_TYPE (sym))
1736 (cs->c_sclass == C_ENTAG
1738 : (cs->c_sclass == C_STRTAG
1739 ? "struct " : "union ")),
1740 SYMBOL_NAME (sym), NULL);
1741 coff_add_symbol_to_list (sym, &coff_file_symbols);
1751 /* Decode a coff type specifier;
1752 return the type that is meant. */
1756 decode_type (cs, c_type, aux)
1757 register struct coff_symbol *cs;
1758 unsigned int c_type;
1759 register union internal_auxent *aux;
1761 register struct type *type = 0;
1762 unsigned int new_c_type;
1764 if (c_type & ~N_BTMASK)
1766 new_c_type = DECREF (c_type);
1769 type = decode_type (cs, new_c_type, aux);
1770 type = lookup_pointer_type (type);
1772 else if (ISFCN (c_type))
1774 type = decode_type (cs, new_c_type, aux);
1775 type = lookup_function_type (type);
1777 else if (ISARY (c_type))
1780 register unsigned short *dim;
1781 struct type *base_type, *index_type, *range_type;
1783 /* Define an array type. */
1784 /* auxent refers to array, not base type */
1785 if (aux->x_sym.x_tagndx.l == 0)
1788 /* shift the indices down */
1789 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1792 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1796 base_type = decode_type (cs, new_c_type, aux);
1797 index_type = lookup_fundamental_type (current_objfile, FT_INTEGER);
1799 create_range_type ((struct type *) NULL, index_type, 0, n - 1);
1801 create_array_type ((struct type *) NULL, base_type, range_type);
1806 /* Reference to existing type. This only occurs with the
1807 struct, union, and enum types. EPI a29k coff
1808 fakes us out by producing aux entries with a nonzero
1809 x_tagndx for definitions of structs, unions, and enums, so we
1810 have to check the c_sclass field. SCO 3.2v4 cc gets confused
1811 with pointers to pointers to defined structs, and generates
1812 negative x_tagndx fields. */
1813 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
1815 if (cs->c_sclass != C_STRTAG
1816 && cs->c_sclass != C_UNTAG
1817 && cs->c_sclass != C_ENTAG
1818 && aux->x_sym.x_tagndx.l >= 0)
1820 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1823 complain (&tagndx_bad_complaint, cs->c_name);
1824 /* And fall through to decode_base_type... */
1828 return decode_base_type (cs, BTYPE (c_type), aux);
1831 /* Decode a coff type specifier for function definition;
1832 return the type that the function returns. */
1836 decode_function_type (cs, c_type, aux)
1837 register struct coff_symbol *cs;
1838 unsigned int c_type;
1839 register union internal_auxent *aux;
1841 if (aux->x_sym.x_tagndx.l == 0)
1842 cs->c_naux = 0; /* auxent refers to function, not base type */
1844 return decode_type (cs, DECREF (c_type), aux);
1851 decode_base_type (cs, c_type, aux)
1852 register struct coff_symbol *cs;
1853 unsigned int c_type;
1854 register union internal_auxent *aux;
1861 /* shows up with "void (*foo)();" structure members */
1862 return lookup_fundamental_type (current_objfile, FT_VOID);
1865 /* DGUX actually defines both T_ARG and T_VOID to the same value. */
1868 /* Shows up in DGUX, I think. Not sure where. */
1869 return lookup_fundamental_type (current_objfile, FT_VOID); /* shouldn't show up here */
1875 /* Intel 960 COFF has this symbol and meaning. */
1876 return lookup_fundamental_type (current_objfile, FT_VOID);
1880 return lookup_fundamental_type (current_objfile, FT_CHAR);
1883 return lookup_fundamental_type (current_objfile, FT_SHORT);
1886 return lookup_fundamental_type (current_objfile, FT_INTEGER);
1889 return lookup_fundamental_type (current_objfile, FT_LONG);
1892 return lookup_fundamental_type (current_objfile, FT_FLOAT);
1895 return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
1898 if (cs->c_naux != 1)
1900 /* anonymous structure type */
1901 type = coff_alloc_type (cs->c_symnum);
1902 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1903 TYPE_NAME (type) = concat ("struct ", "<opaque>", NULL);
1904 INIT_CPLUS_SPECIFIC(type);
1905 TYPE_LENGTH (type) = 0;
1906 TYPE_FIELDS (type) = 0;
1907 TYPE_NFIELDS (type) = 0;
1911 type = coff_read_struct_type (cs->c_symnum,
1912 aux->x_sym.x_misc.x_lnsz.x_size,
1913 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1918 if (cs->c_naux != 1)
1920 /* anonymous union type */
1921 type = coff_alloc_type (cs->c_symnum);
1922 TYPE_NAME (type) = concat ("union ", "<opaque>", NULL);
1923 INIT_CPLUS_SPECIFIC(type);
1924 TYPE_LENGTH (type) = 0;
1925 TYPE_LENGTH (type) = 0;
1926 TYPE_FIELDS (type) = 0;
1927 TYPE_NFIELDS (type) = 0;
1931 type = coff_read_struct_type (cs->c_symnum,
1932 aux->x_sym.x_misc.x_lnsz.x_size,
1933 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1935 TYPE_CODE (type) = TYPE_CODE_UNION;
1939 return coff_read_enum_type (cs->c_symnum,
1940 aux->x_sym.x_misc.x_lnsz.x_size,
1941 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1944 /* shouldn't show up here */
1948 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
1951 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
1954 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
1957 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
1959 complain (&unexpected_type_complaint, cs->c_name);
1960 return lookup_fundamental_type (current_objfile, FT_VOID);
1963 /* This page contains subroutines of read_type. */
1965 /* Read the description of a structure (or union type)
1966 and return an object describing the type. */
1968 static struct type *
1969 coff_read_struct_type (index, length, lastsym)
1976 struct nextfield *next;
1980 register struct type *type;
1981 register struct nextfield *list = 0;
1982 struct nextfield *new;
1986 struct coff_symbol member_sym;
1987 register struct coff_symbol *ms = &member_sym;
1988 struct internal_syment sub_sym;
1989 union internal_auxent sub_aux;
1992 type = coff_alloc_type (index);
1993 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1994 INIT_CPLUS_SPECIFIC(type);
1995 TYPE_LENGTH (type) = length;
1997 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
1999 read_one_sym (ms, &sub_sym, &sub_aux);
2001 name = EXTERNAL_NAME (name, current_objfile->obfd);
2003 switch (ms->c_sclass)
2008 /* Get space to record the next field's data. */
2009 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2013 /* Save the data. */
2014 list->field.name = savestring (name, strlen (name));
2015 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
2016 list->field.bitpos = 8 * ms->c_value;
2017 list->field.bitsize = 0;
2023 /* Get space to record the next field's data. */
2024 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2028 /* Save the data. */
2029 list->field.name = savestring (name, strlen (name));
2030 list->field.type = decode_type (ms, ms->c_type, &sub_aux);
2031 list->field.bitpos = ms->c_value;
2032 list->field.bitsize = sub_aux.x_sym.x_misc.x_lnsz.x_size;
2041 /* Now create the vector of fields, and record how big it is. */
2043 TYPE_NFIELDS (type) = nfields;
2044 TYPE_FIELDS (type) = (struct field *)
2045 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2047 /* Copy the saved-up fields into the field vector. */
2049 for (n = nfields; list; list = list->next)
2050 TYPE_FIELD (type, --n) = list->field;
2055 /* Read a definition of an enumeration type,
2056 and create and return a suitable type object.
2057 Also defines the symbols that represent the values of the type. */
2060 static struct type *
2061 coff_read_enum_type (index, length, lastsym)
2066 register struct symbol *sym;
2067 register struct type *type;
2070 struct coff_pending **symlist;
2071 struct coff_symbol member_sym;
2072 register struct coff_symbol *ms = &member_sym;
2073 struct internal_syment sub_sym;
2074 union internal_auxent sub_aux;
2075 struct coff_pending *osyms, *syms;
2079 type = coff_alloc_type (index);
2080 if (within_function)
2081 symlist = &coff_local_symbols;
2083 symlist = &coff_file_symbols;
2086 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2088 read_one_sym (ms, &sub_sym, &sub_aux);
2090 name = EXTERNAL_NAME (name, current_objfile->obfd);
2092 switch (ms->c_sclass)
2095 sym = (struct symbol *) xmalloc (sizeof (struct symbol));
2096 memset (sym, 0, sizeof (struct symbol));
2098 SYMBOL_NAME (sym) = savestring (name, strlen (name));
2099 SYMBOL_CLASS (sym) = LOC_CONST;
2100 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2101 SYMBOL_VALUE (sym) = ms->c_value;
2102 coff_add_symbol_to_list (sym, symlist);
2107 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
2108 up the count of how many symbols to read. So stop
2115 /* Now fill in the fields of the type-structure. */
2118 TYPE_LENGTH (type) = length;
2120 TYPE_LENGTH (type) = TARGET_INT_BIT / TARGET_CHAR_BIT; /* Assume ints */
2121 TYPE_CODE (type) = TYPE_CODE_ENUM;
2122 TYPE_NFIELDS (type) = nsyms;
2123 TYPE_FIELDS (type) = (struct field *)
2124 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2126 /* Find the symbols for the values and put them into the type.
2127 The symbols can be found in the symlist that we put them on
2128 to cause them to be defined. osyms contains the old value
2129 of that symlist; everything up to there was defined by us. */
2131 for (syms = *symlist, n = nsyms; syms != osyms; syms = syms->next)
2133 SYMBOL_TYPE (syms->symbol) = type;
2134 TYPE_FIELD_NAME (type, --n) = SYMBOL_NAME (syms->symbol);
2135 TYPE_FIELD_VALUE (type, n) = 0;
2136 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (syms->symbol);
2137 TYPE_FIELD_BITSIZE (type, n) = 0;
2139 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2140 if(TYPE_NFIELDS(type) == 2 &&
2141 ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
2142 STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2143 (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
2144 STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
2145 TYPE_CODE(type) = TYPE_CODE_BOOL;
2149 /* Fake up support for relocating symbol addresses. FIXME. */
2151 struct section_offsets coff_symfile_faker = {0};
2153 struct section_offsets *
2154 coff_symfile_offsets (objfile, addr)
2155 struct objfile *objfile;
2158 return &coff_symfile_faker;
2161 /* Register our ability to parse symbols for coff BFD files */
2163 static struct sym_fns coff_sym_fns =
2165 "coff", /* sym_name: name or name prefix of BFD target type */
2166 4, /* sym_namelen: number of significant sym_name chars */
2167 coff_new_init, /* sym_new_init: init anything gbl to entire symtab */
2168 coff_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2169 coff_symfile_read, /* sym_read: read a symbol file into symtab */
2170 coff_symfile_finish, /* sym_finish: finished with file, cleanup */
2171 coff_symfile_offsets, /* sym_offsets: xlate external to internal form */
2172 NULL /* next: pointer to next struct sym_fns */
2176 _initialize_coffread ()
2178 add_symtab_fns(&coff_sym_fns);