1 /* Read dbx symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1986-1991 Free Software Foundation, Inc.
4 This file is part of GDB.
6 GDB is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
11 GDB is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GDB; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Symbol read-in occurs in two phases:
21 1. A scan (read_dbx_symtab()) of the entire executable, whose sole
22 purpose is to make a list of symbols (partial symbol table)
23 which will cause symbols
24 to be read in if referenced. This scan happens when the
25 "symbol-file" command is given (symbol_file_command()).
26 1a. The "add-file" command. Similar to #1.
27 2. Full read-in of symbols. (dbx_psymtab_to_symtab()). This happens
28 when a symbol in a file for which symbols have not yet been
29 read in is referenced. */
31 /* There used to be some PROFILE_TYPES code in this file which counted
32 the number of occurances of various symbols. I'd suggest instead:
33 nm -ap foo | awk 'print $5' | sort | uniq -c
34 to print how many of each n_type, or something like
35 nm -ap foo | awk '$5 == "LSYM" {print $6 $7 $8 $9 $10 $11}' | \
37 {print substr($2,1,1)}' | sort | uniq -c
38 to print the number of each kind of symbol descriptor (i.e. the letter
47 #include <sys/types.h>
53 #include "a.out.gnu.h"
54 #include "stab.gnu.h" /* We always use GNU stabs, not native, now */
59 * Define specifically gnu symbols here.
62 /* The following type indicates the definition of a symbol as being
63 an indirect reference to another symbol. The other symbol
64 appears as an undefined reference, immediately following this symbol.
66 Indirection is asymmetrical. The other symbol's value will be used
67 to satisfy requests for the indirect symbol, but not vice versa.
68 If the other symbol does not have a definition, libraries will
69 be searched to find a definition. */
74 /* The following symbols refer to set elements.
75 All the N_SET[ATDB] symbols with the same name form one set.
76 Space is allocated for the set in the text section, and each set
77 element's value is stored into one word of the space.
78 The first word of the space is the length of the set (number of elements).
80 The address of the set is made into an N_SETV symbol
81 whose name is the same as the name of the set.
82 This symbol acts like a N_DATA global symbol
83 in that it can satisfy undefined external references. */
86 #define N_SETA 0x14 /* Absolute set element symbol */
87 #endif /* This is input to LD, in a .o file. */
90 #define N_SETT 0x16 /* Text set element symbol */
91 #endif /* This is input to LD, in a .o file. */
94 #define N_SETD 0x18 /* Data set element symbol */
95 #endif /* This is input to LD, in a .o file. */
98 #define N_SETB 0x1A /* Bss set element symbol */
99 #endif /* This is input to LD, in a .o file. */
101 /* Macros dealing with the set element symbols defined in a.out.h */
102 #define SET_ELEMENT_P(x) ((x)>=N_SETA&&(x)<=(N_SETB|N_EXT))
103 #define TYPE_OF_SET_ELEMENT(x) ((x)-N_SETA+N_ABS)
106 #define N_SETV 0x1C /* Pointer to set vector in data area. */
107 #endif /* This is output from LD. */
110 #define N_WARNING 0x1E /* Warning message to print if file included */
111 #endif /* This is input to ld */
113 #endif /* NO_GNU_STABS */
116 #include <sys/param.h>
117 #include <sys/file.h>
118 #include <sys/stat.h>
120 #include "breakpoint.h"
123 #include "gdbcore.h" /* for bfd stuff */
124 #include "liba.out.h" /* FIXME Secret internal BFD stuff for a.out */
127 struct dbx_symfile_info {
128 asection *text_sect; /* Text section accessor */
129 int symcount; /* How many symbols are there in the file */
130 char *stringtab; /* The actual string table */
131 int stringtab_size; /* Its size */
132 off_t symtab_offset; /* Offset in file to symbol table */
133 int desc; /* File descriptor of symbol file */
136 extern void qsort ();
137 extern double atof ();
138 extern struct cmd_list_element *cmdlist;
140 extern void symbol_file_command ();
142 /* Forward declarations */
144 static void add_symbol_to_list ();
145 static void read_dbx_symtab ();
146 static void init_psymbol_list ();
147 static void process_one_symbol ();
148 static struct type *read_type ();
149 static struct type *read_range_type ();
150 static struct type *read_enum_type ();
151 static struct type *read_struct_type ();
152 static struct type *read_array_type ();
153 static long read_number ();
154 static void finish_block ();
155 static struct blockvector *make_blockvector ();
156 static struct symbol *define_symbol ();
157 static void start_subfile ();
158 static int hashname ();
159 static struct pending *copy_pending ();
160 static void fix_common_block ();
161 static void add_undefined_type ();
162 static void cleanup_undefined_types ();
163 static void scan_file_globals ();
164 static void read_ofile_symtab ();
165 static void dbx_psymtab_to_symtab ();
168 static struct type **read_args ();
170 static const char vptr_name[] = { '_','v','p','t','r',CPLUS_MARKER };
171 static const char vb_name[] = { '_','v','b',CPLUS_MARKER };
173 /* Macro to determine which symbols to ignore when reading the first symbol
174 of a file. Some machines override this definition. */
175 #ifndef IGNORE_SYMBOL
176 /* This code is used on Ultrix systems. Ignore it */
177 #define IGNORE_SYMBOL(type) (type == (int)N_NSYMS)
180 /* Macro for name of symbol to indicate a file compiled with gcc. */
181 #ifndef GCC_COMPILED_FLAG_SYMBOL
182 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
185 /* Convert stab register number (from `r' declaration) to a gdb REGNUM. */
187 #ifndef STAB_REG_TO_REGNUM
188 #define STAB_REG_TO_REGNUM(VALUE) (VALUE)
191 /* Define this as 1 if a pcc declaration of a char or short argument
192 gives the correct address. Otherwise assume pcc gives the
193 address of the corresponding int, which is not the same on a
194 big-endian machine. */
196 #ifndef BELIEVE_PCC_PROMOTION
197 #define BELIEVE_PCC_PROMOTION 0
200 /* Nonzero means give verbose info on gdb action. From main.c. */
201 extern int info_verbose;
203 /* Name of source file whose symbol data we are now processing.
204 This comes from a symbol of type N_SO. */
206 static char *last_source_file;
208 /* Core address of start of text of current source file.
209 This too comes from the N_SO symbol. */
211 static CORE_ADDR last_source_start_addr;
213 /* The entry point of a file we are reading. */
214 CORE_ADDR entry_point;
216 /* The list of sub-source-files within the current individual compilation.
217 Each file gets its own symtab with its own linetable and associated info,
218 but they all share one blockvector. */
222 struct subfile *next;
225 struct linetable *line_vector;
226 int line_vector_length;
227 int line_vector_index;
228 int prev_line_number;
231 static struct subfile *subfiles;
233 static struct subfile *current_subfile;
235 /* Count symbols as they are processed, for error messages. */
237 static unsigned int symnum;
239 /* Vector of types defined so far, indexed by their dbx type numbers.
240 (In newer sun systems, dbx uses a pair of numbers in parens,
241 as in "(SUBFILENUM,NUMWITHINSUBFILE)". Then these numbers must be
242 translated through the type_translations hash table to get
243 the index into the type vector.) */
245 static struct typevector *type_vector;
247 /* Number of elements allocated for type_vector currently. */
249 static int type_vector_length;
251 /* Vector of line number information. */
253 static struct linetable *line_vector;
255 /* Index of next entry to go in line_vector_index. */
257 static int line_vector_index;
259 /* Last line number recorded in the line vector. */
261 static int prev_line_number;
263 /* Number of elements allocated for line_vector currently. */
265 static int line_vector_length;
267 /* Hash table of global symbols whose values are not known yet.
268 They are chained thru the SYMBOL_VALUE_CHAIN, since we don't
269 have the correct data for that slot yet. */
270 /* The use of the LOC_BLOCK code in this chain is nonstandard--
271 it refers to a FORTRAN common block rather than the usual meaning. */
274 static struct symbol *global_sym_chain[HASHSIZE];
276 /* Record the symbols defined for each context in a list.
277 We don't create a struct block for the context until we
278 know how long to make it. */
280 #define PENDINGSIZE 100
284 struct pending *next;
286 struct symbol *symbol[PENDINGSIZE];
289 /* List of free `struct pending' structures for reuse. */
290 struct pending *free_pendings;
292 /* Here are the three lists that symbols are put on. */
294 struct pending *file_symbols; /* static at top level, and types */
296 struct pending *global_symbols; /* global functions and variables */
298 struct pending *local_symbols; /* everything local to lexical context */
300 /* List of symbols declared since the last BCOMM. This list is a tail
301 of local_symbols. When ECOMM is seen, the symbols on the list
302 are noted so their proper addresses can be filled in later,
303 using the common block base address gotten from the assembler
306 struct pending *common_block;
309 /* Stack representing unclosed lexical contexts
310 (that will become blocks, eventually). */
314 struct pending *locals;
315 struct pending_block *old_blocks;
317 CORE_ADDR start_addr;
318 CORE_ADDR end_addr; /* Temp slot for exception handling. */
322 struct context_stack *context_stack;
324 /* Index of first unused entry in context stack. */
325 int context_stack_depth;
327 /* Currently allocated size of context stack. */
329 int context_stack_size;
331 /* Nonzero if within a function (so symbols should be local,
332 if nothing says specifically). */
336 /* List of blocks already made (lexical contexts already closed).
337 This is used at the end to make the blockvector. */
341 struct pending_block *next;
345 struct pending_block *pending_blocks;
347 extern CORE_ADDR startup_file_start; /* From blockframe.c */
348 extern CORE_ADDR startup_file_end; /* From blockframe.c */
350 /* Global variable which, when set, indicates that we are processing a
351 .o file compiled with gcc */
353 static unsigned char processing_gcc_compilation;
355 /* Make a list of forward references which haven't been defined. */
356 static struct type **undef_types;
357 static int undef_types_allocated, undef_types_length;
359 /* String table for the main symbol file. It is kept in memory
360 permanently, to speed up symbol reading. Other files' symbol tables
361 are read in on demand. FIXME, this should be cleaner. */
363 static char *symfile_string_table;
364 static int symfile_string_table_size;
366 /* Setup a define to deal cleanly with the underscore problem */
368 #ifdef NAMES_HAVE_UNDERSCORE
369 #define HASH_OFFSET 1
371 #define HASH_OFFSET 0
374 /* Complaints about the symbols we have encountered. */
376 struct complaint innerblock_complaint =
377 {"inner block not inside outer block in %s", 0, 0};
379 struct complaint blockvector_complaint =
380 {"block at %x out of order", 0, 0};
382 struct complaint lbrac_complaint =
383 {"bad block start address patched", 0, 0};
386 struct complaint dbx_class_complaint =
387 {"encountered DBX-style class variable debugging information.\n\
388 You seem to have compiled your program with \
389 \"g++ -g0\" instead of \"g++ -g\".\n\
390 Therefore GDB will not know about your class variables", 0, 0};
393 struct complaint string_table_offset_complaint =
394 {"bad string table offset in symbol %d", 0, 0};
396 struct complaint unknown_symtype_complaint =
397 {"unknown symbol type 0x%x", 0, 0};
399 struct complaint lbrac_rbrac_complaint =
400 {"block start larger than block end", 0, 0};
402 struct complaint const_vol_complaint =
403 {"const/volatile indicator missing, got '%c'", 0, 0};
405 struct complaint error_type_complaint =
406 {"C++ type mismatch between compiler and debugger", 0, 0};
408 struct complaint invalid_member_complaint =
409 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
411 /* Support for Sun changes to dbx symbol format */
413 /* For each identified header file, we have a table of types defined
416 header_files maps header file names to their type tables.
417 It is a vector of n_header_files elements.
418 Each element describes one header file.
419 It contains a vector of types.
421 Sometimes it can happen that the same header file produces
422 different results when included in different places.
423 This can result from conditionals or from different
424 things done before including the file.
425 When this happens, there are multiple entries for the file in this table,
426 one entry for each distinct set of results.
427 The entries are distinguished by the INSTANCE field.
428 The INSTANCE field appears in the N_BINCL and N_EXCL symbol table and is
429 used to match header-file references to their corresponding data. */
433 char *name; /* Name of header file */
434 int instance; /* Numeric code distinguishing instances
435 of one header file that produced
436 different results when included.
437 It comes from the N_BINCL or N_EXCL. */
438 struct type **vector; /* Pointer to vector of types */
439 int length; /* Allocated length (# elts) of that vector */
442 static struct header_file *header_files = 0;
444 static int n_header_files;
446 static int n_allocated_header_files;
448 /* During initial symbol readin, we need to have a structure to keep
449 track of which psymtabs have which bincls in them. This structure
450 is used during readin to setup the list of dependencies within each
451 partial symbol table. */
453 struct header_file_location
455 char *name; /* Name of header file */
456 int instance; /* See above */
457 struct partial_symtab *pst; /* Partial symtab that has the
458 BINCL/EINCL defs for this file */
461 /* The actual list and controling variables */
462 static struct header_file_location *bincl_list, *next_bincl;
463 static int bincls_allocated;
465 /* Within each object file, various header files are assigned numbers.
466 A type is defined or referred to with a pair of numbers
467 (FILENUM,TYPENUM) where FILENUM is the number of the header file
468 and TYPENUM is the number within that header file.
469 TYPENUM is the index within the vector of types for that header file.
471 FILENUM == 1 is special; it refers to the main source of the object file,
472 and not to any header file. FILENUM != 1 is interpreted by looking it up
473 in the following table, which contains indices in header_files. */
475 static int *this_object_header_files = 0;
477 static int n_this_object_header_files;
479 static int n_allocated_this_object_header_files;
481 /* When a header file is getting special overriding definitions
482 for one source file, record here the header_files index
483 of its normal definition vector.
484 At other times, this is -1. */
486 static int header_file_prev_index;
488 /* Free up old header file tables, and allocate new ones.
489 We're reading a new symbol file now. */
492 free_and_init_header_files ()
495 for (i = 0; i < n_header_files; i++)
496 free (header_files[i].name);
497 if (header_files) /* First time null */
499 if (this_object_header_files) /* First time null */
500 free (this_object_header_files);
502 n_allocated_header_files = 10;
503 header_files = (struct header_file *) xmalloc (10 * sizeof (struct header_file));
506 n_allocated_this_object_header_files = 10;
507 this_object_header_files = (int *) xmalloc (10 * sizeof (int));
510 /* Called at the start of each object file's symbols.
511 Clear out the mapping of header file numbers to header files. */
514 new_object_header_files ()
516 /* Leave FILENUM of 0 free for builtin types and this file's types. */
517 n_this_object_header_files = 1;
518 header_file_prev_index = -1;
521 /* Add header file number I for this object file
522 at the next successive FILENUM. */
525 add_this_object_header_file (i)
528 if (n_this_object_header_files == n_allocated_this_object_header_files)
530 n_allocated_this_object_header_files *= 2;
531 this_object_header_files
532 = (int *) xrealloc (this_object_header_files,
533 n_allocated_this_object_header_files * sizeof (int));
536 this_object_header_files[n_this_object_header_files++] = i;
539 /* Add to this file an "old" header file, one already seen in
540 a previous object file. NAME is the header file's name.
541 INSTANCE is its instance code, to select among multiple
542 symbol tables for the same header file. */
545 add_old_header_file (name, instance)
549 register struct header_file *p = header_files;
552 for (i = 0; i < n_header_files; i++)
553 if (!strcmp (p[i].name, name) && instance == p[i].instance)
555 add_this_object_header_file (i);
558 error ("Invalid symbol data: \"repeated\" header file that hasn't been seen before, at symtab pos %d.",
562 /* Add to this file a "new" header file: definitions for its types follow.
563 NAME is the header file's name.
564 Most often this happens only once for each distinct header file,
565 but not necessarily. If it happens more than once, INSTANCE has
566 a different value each time, and references to the header file
567 use INSTANCE values to select among them.
569 dbx output contains "begin" and "end" markers for each new header file,
570 but at this level we just need to know which files there have been;
571 so we record the file when its "begin" is seen and ignore the "end". */
574 add_new_header_file (name, instance)
579 header_file_prev_index = -1;
581 /* Make sure there is room for one more header file. */
583 if (n_header_files == n_allocated_header_files)
585 n_allocated_header_files *= 2;
586 header_files = (struct header_file *)
587 xrealloc (header_files,
588 (n_allocated_header_files
589 * sizeof (struct header_file)));
592 /* Create an entry for this header file. */
594 i = n_header_files++;
595 header_files[i].name = savestring (name, strlen(name));
596 header_files[i].instance = instance;
597 header_files[i].length = 10;
598 header_files[i].vector
599 = (struct type **) xmalloc (10 * sizeof (struct type *));
600 bzero (header_files[i].vector, 10 * sizeof (struct type *));
602 add_this_object_header_file (i);
605 /* Look up a dbx type-number pair. Return the address of the slot
606 where the type for that number-pair is stored.
607 The number-pair is in TYPENUMS.
609 This can be used for finding the type associated with that pair
610 or for associating a new type with the pair. */
612 static struct type **
613 dbx_lookup_type (typenums)
616 register int filenum = typenums[0], index = typenums[1];
618 if (filenum < 0 || filenum >= n_this_object_header_files)
619 error ("Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
620 filenum, index, symnum);
624 /* Type is defined outside of header files.
625 Find it in this object file's type vector. */
626 if (index >= type_vector_length)
628 type_vector_length *= 2;
629 type_vector = (struct typevector *)
630 xrealloc (type_vector,
631 (sizeof (struct typevector)
632 + type_vector_length * sizeof (struct type *)));
633 bzero (&type_vector->type[type_vector_length / 2],
634 type_vector_length * sizeof (struct type *) / 2);
636 return &type_vector->type[index];
640 register int real_filenum = this_object_header_files[filenum];
641 register struct header_file *f;
644 if (real_filenum >= n_header_files)
647 f = &header_files[real_filenum];
649 f_orig_length = f->length;
650 if (index >= f_orig_length)
652 while (index >= f->length)
654 f->vector = (struct type **)
655 xrealloc (f->vector, f->length * sizeof (struct type *));
656 bzero (&f->vector[f_orig_length],
657 (f->length - f_orig_length) * sizeof (struct type *));
659 return &f->vector[index];
663 /* Create a type object. Occaisionally used when you need a type
664 which isn't going to be given a type number. */
669 register struct type *type =
670 (struct type *) obstack_alloc (symbol_obstack, sizeof (struct type));
672 bzero (type, sizeof (struct type));
673 TYPE_VPTR_FIELDNO (type) = -1;
677 /* Make sure there is a type allocated for type numbers TYPENUMS
678 and return the type object.
679 This can create an empty (zeroed) type object.
680 TYPENUMS may be (-1, -1) to return a new type object that is not
681 put into the type vector, and so may not be referred to by number. */
684 dbx_alloc_type (typenums)
687 register struct type **type_addr;
688 register struct type *type;
690 if (typenums[1] != -1)
692 type_addr = dbx_lookup_type (typenums);
701 /* If we are referring to a type not known at all yet,
702 allocate an empty type for it.
703 We will fill it in later if we find out how. */
706 type = dbx_create_type ();
715 static struct type **
716 explicit_lookup_type (real_filenum, index)
717 int real_filenum, index;
719 register struct header_file *f = &header_files[real_filenum];
721 if (index >= f->length)
724 f->vector = (struct type **)
725 xrealloc (f->vector, f->length * sizeof (struct type *));
726 bzero (&f->vector[f->length / 2],
727 f->length * sizeof (struct type *) / 2);
729 return &f->vector[index];
733 /* maintain the lists of symbols and blocks */
735 /* Add a symbol to one of the lists of symbols. */
737 add_symbol_to_list (symbol, listhead)
738 struct symbol *symbol;
739 struct pending **listhead;
741 /* We keep PENDINGSIZE symbols in each link of the list.
742 If we don't have a link with room in it, add a new link. */
743 if (*listhead == 0 || (*listhead)->nsyms == PENDINGSIZE)
745 register struct pending *link;
748 link = free_pendings;
749 free_pendings = link->next;
752 link = (struct pending *) xmalloc (sizeof (struct pending));
754 link->next = *listhead;
759 (*listhead)->symbol[(*listhead)->nsyms++] = symbol;
762 /* At end of reading syms, or in case of quit,
763 really free as many `struct pending's as we can easily find. */
767 really_free_pendings (foo)
770 struct pending *next, *next1;
771 struct pending_block *bnext, *bnext1;
773 for (next = free_pendings; next; next = next1)
780 #if 0 /* Now we make the links in the symbol_obstack, so don't free them. */
781 for (bnext = pending_blocks; bnext; bnext = bnext1)
783 bnext1 = bnext->next;
789 for (next = file_symbols; next; next = next1)
796 for (next = global_symbols; next; next = next1)
804 /* Take one of the lists of symbols and make a block from it.
805 Keep the order the symbols have in the list (reversed from the input file).
806 Put the block on the list of pending blocks. */
809 finish_block (symbol, listhead, old_blocks, start, end)
810 struct symbol *symbol;
811 struct pending **listhead;
812 struct pending_block *old_blocks;
813 CORE_ADDR start, end;
815 register struct pending *next, *next1;
816 register struct block *block;
817 register struct pending_block *pblock;
818 struct pending_block *opblock;
821 /* Count the length of the list of symbols. */
823 for (next = *listhead, i = 0; next; i += next->nsyms, next = next->next)
826 block = (struct block *) obstack_alloc (symbol_obstack,
827 (sizeof (struct block)
829 * sizeof (struct symbol *))));
831 /* Copy the symbols into the block. */
833 BLOCK_NSYMS (block) = i;
834 for (next = *listhead; next; next = next->next)
837 for (j = next->nsyms - 1; j >= 0; j--)
838 BLOCK_SYM (block, --i) = next->symbol[j];
841 BLOCK_START (block) = start;
842 BLOCK_END (block) = end;
843 BLOCK_SUPERBLOCK (block) = 0; /* Filled in when containing block is made */
844 BLOCK_GCC_COMPILED (block) = processing_gcc_compilation;
846 /* Put the block in as the value of the symbol that names it. */
850 SYMBOL_BLOCK_VALUE (symbol) = block;
851 BLOCK_FUNCTION (block) = symbol;
854 BLOCK_FUNCTION (block) = 0;
856 /* Now "free" the links of the list, and empty the list. */
858 for (next = *listhead; next; next = next1)
861 next->next = free_pendings;
862 free_pendings = next;
866 /* Install this block as the superblock
867 of all blocks made since the start of this scope
868 that don't have superblocks yet. */
871 for (pblock = pending_blocks; pblock != old_blocks; pblock = pblock->next)
873 if (BLOCK_SUPERBLOCK (pblock->block) == 0) {
875 /* Check to be sure the blocks are nested as we receive them.
876 If the compiler/assembler/linker work, this just burns a small
878 if (BLOCK_START (pblock->block) < BLOCK_START (block)
879 || BLOCK_END (pblock->block) > BLOCK_END (block)) {
880 complain(&innerblock_complaint, symbol? SYMBOL_NAME (symbol):
882 BLOCK_START (pblock->block) = BLOCK_START (block);
883 BLOCK_END (pblock->block) = BLOCK_END (block);
886 BLOCK_SUPERBLOCK (pblock->block) = block;
891 /* Record this block on the list of all blocks in the file.
892 Put it after opblock, or at the beginning if opblock is 0.
893 This puts the block in the list after all its subblocks. */
895 /* Allocate in the symbol_obstack to save time.
896 It wastes a little space. */
897 pblock = (struct pending_block *)
898 obstack_alloc (symbol_obstack,
899 sizeof (struct pending_block));
900 pblock->block = block;
903 pblock->next = opblock->next;
904 opblock->next = pblock;
908 pblock->next = pending_blocks;
909 pending_blocks = pblock;
913 static struct blockvector *
916 register struct pending_block *next;
917 register struct blockvector *blockvector;
920 /* Count the length of the list of blocks. */
922 for (next = pending_blocks, i = 0; next; next = next->next, i++);
924 blockvector = (struct blockvector *)
925 obstack_alloc (symbol_obstack,
926 (sizeof (struct blockvector)
927 + (i - 1) * sizeof (struct block *)));
929 /* Copy the blocks into the blockvector.
930 This is done in reverse order, which happens to put
931 the blocks into the proper order (ascending starting address).
932 finish_block has hair to insert each block into the list
933 after its subblocks in order to make sure this is true. */
935 BLOCKVECTOR_NBLOCKS (blockvector) = i;
936 for (next = pending_blocks; next; next = next->next) {
937 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
940 #if 0 /* Now we make the links in the obstack, so don't free them. */
941 /* Now free the links of the list, and empty the list. */
943 for (next = pending_blocks; next; next = next1)
951 #if 1 /* FIXME, shut this off after a while to speed up symbol reading. */
952 /* Some compilers output blocks in the wrong order, but we depend
953 on their being in the right order so we can binary search.
954 Check the order and moan about it. FIXME. */
955 if (BLOCKVECTOR_NBLOCKS (blockvector) > 1)
956 for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++) {
957 if (BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i-1))
958 > BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i))) {
959 complain (&blockvector_complaint,
960 BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i)));
968 /* Manage the vector of line numbers. */
971 record_line (line, pc)
975 struct linetable_entry *e;
976 /* Ignore the dummy line number in libg.o */
981 /* Make sure line vector is big enough. */
983 if (line_vector_index + 1 >= line_vector_length)
985 line_vector_length *= 2;
986 line_vector = (struct linetable *)
987 xrealloc (line_vector,
988 (sizeof (struct linetable)
989 + line_vector_length * sizeof (struct linetable_entry)));
990 current_subfile->line_vector = line_vector;
993 e = line_vector->item + line_vector_index++;
994 e->line = line; e->pc = pc;
997 /* Start a new symtab for a new source file.
998 This is called when a dbx symbol of type N_SO is seen;
999 it indicates the start of data for one original source file. */
1002 start_symtab (name, dirname, start_addr)
1005 CORE_ADDR start_addr;
1008 last_source_file = name;
1009 last_source_start_addr = start_addr;
1012 within_function = 0;
1014 /* Context stack is initially empty, with room for 10 levels. */
1016 = (struct context_stack *) xmalloc (10 * sizeof (struct context_stack));
1017 context_stack_size = 10;
1018 context_stack_depth = 0;
1020 new_object_header_files ();
1022 type_vector_length = 160;
1023 type_vector = (struct typevector *)
1024 xmalloc (sizeof (struct typevector)
1025 + type_vector_length * sizeof (struct type *));
1026 bzero (type_vector->type, type_vector_length * sizeof (struct type *));
1028 /* Initialize the list of sub source files with one entry
1029 for this file (the top-level source file). */
1032 current_subfile = 0;
1033 start_subfile (name, dirname);
1036 /* Handle an N_SOL symbol, which indicates the start of
1037 code that came from an included (or otherwise merged-in)
1038 source file with a different name. */
1041 start_subfile (name, dirname)
1045 register struct subfile *subfile;
1047 /* Save the current subfile's line vector data. */
1049 if (current_subfile)
1051 current_subfile->line_vector_index = line_vector_index;
1052 current_subfile->line_vector_length = line_vector_length;
1053 current_subfile->prev_line_number = prev_line_number;
1056 /* See if this subfile is already known as a subfile of the
1057 current main source file. */
1059 for (subfile = subfiles; subfile; subfile = subfile->next)
1061 if (!strcmp (subfile->name, name))
1063 line_vector = subfile->line_vector;
1064 line_vector_index = subfile->line_vector_index;
1065 line_vector_length = subfile->line_vector_length;
1066 prev_line_number = subfile->prev_line_number;
1067 current_subfile = subfile;
1072 /* This subfile is not known. Add an entry for it. */
1074 line_vector_index = 0;
1075 line_vector_length = 1000;
1076 prev_line_number = -2; /* Force first line number to be explicit */
1077 line_vector = (struct linetable *)
1078 xmalloc (sizeof (struct linetable)
1079 + line_vector_length * sizeof (struct linetable_entry));
1081 /* Make an entry for this subfile in the list of all subfiles
1082 of the current main source file. */
1084 subfile = (struct subfile *) xmalloc (sizeof (struct subfile));
1085 subfile->next = subfiles;
1086 subfile->name = obsavestring (name, strlen (name));
1087 if (dirname == NULL)
1088 subfile->dirname = NULL;
1090 subfile->dirname = obsavestring (dirname, strlen (dirname));
1092 subfile->line_vector = line_vector;
1094 current_subfile = subfile;
1097 /* Finish the symbol definitions for one main source file,
1098 close off all the lexical contexts for that file
1099 (creating struct block's for them), then make the struct symtab
1100 for that file and put it in the list of all such.
1102 END_ADDR is the address of the end of the file's text. */
1105 end_symtab (end_addr)
1108 register struct symtab *symtab;
1109 register struct blockvector *blockvector;
1110 register struct subfile *subfile;
1111 register struct linetable *lv;
1112 struct subfile *nextsub;
1114 /* Finish the lexical context of the last function in the file;
1115 pop the context stack. */
1117 if (context_stack_depth > 0)
1119 register struct context_stack *cstk;
1120 context_stack_depth--;
1121 cstk = &context_stack[context_stack_depth];
1122 /* Make a block for the local symbols within. */
1123 finish_block (cstk->name, &local_symbols, cstk->old_blocks,
1124 cstk->start_addr, end_addr);
1127 /* Cleanup any undefined types that have been left hanging around
1128 (this needs to be done before the finish_blocks so that
1129 file_symbols is still good). */
1130 cleanup_undefined_types ();
1132 /* Finish defining all the blocks of this symtab. */
1133 finish_block (0, &file_symbols, 0, last_source_start_addr, end_addr);
1134 finish_block (0, &global_symbols, 0, last_source_start_addr, end_addr);
1135 blockvector = make_blockvector ();
1137 current_subfile->line_vector_index = line_vector_index;
1139 /* Now create the symtab objects proper, one for each subfile. */
1140 /* (The main file is one of them.) */
1142 for (subfile = subfiles; subfile; subfile = nextsub)
1144 symtab = (struct symtab *) xmalloc (sizeof (struct symtab));
1146 /* Fill in its components. */
1147 symtab->blockvector = blockvector;
1148 lv = subfile->line_vector;
1149 lv->nitems = subfile->line_vector_index;
1150 symtab->linetable = (struct linetable *)
1151 xrealloc (lv, (sizeof (struct linetable)
1152 + lv->nitems * sizeof (struct linetable_entry)));
1153 type_vector->length = type_vector_length;
1154 symtab->typevector = type_vector;
1156 symtab->filename = subfile->name;
1157 symtab->dirname = subfile->dirname;
1159 symtab->free_code = free_linetable;
1160 symtab->free_ptr = 0;
1161 if (subfile->next == 0)
1162 symtab->free_ptr = (char *) type_vector;
1165 symtab->line_charpos = 0;
1167 symtab->language = language_unknown;
1168 symtab->fullname = NULL;
1170 /* There should never already be a symtab for this name, since
1171 any prev dups have been removed when the psymtab was read in.
1172 FIXME, there ought to be a way to check this here. */
1173 /* FIXME blewit |= free_named_symtabs (symtab->filename); */
1175 /* Link the new symtab into the list of such. */
1176 symtab->next = symtab_list;
1177 symtab_list = symtab;
1179 nextsub = subfile->next;
1184 type_vector_length = -1;
1186 line_vector_length = -1;
1187 last_source_file = 0;
1190 /* Handle the N_BINCL and N_EINCL symbol types
1191 that act like N_SOL for switching source files
1192 (different subfiles, as we call them) within one object file,
1193 but using a stack rather than in an arbitrary order. */
1195 struct subfile_stack
1197 struct subfile_stack *next;
1202 struct subfile_stack *subfile_stack;
1207 register struct subfile_stack *tem
1208 = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack));
1210 tem->next = subfile_stack;
1211 subfile_stack = tem;
1212 if (current_subfile == 0 || current_subfile->name == 0)
1214 tem->name = current_subfile->name;
1215 tem->prev_index = header_file_prev_index;
1221 register char *name;
1222 register struct subfile_stack *link = subfile_stack;
1228 subfile_stack = link->next;
1229 header_file_prev_index = link->prev_index;
1236 record_misc_function (name, address, type)
1241 enum misc_function_type misc_type =
1242 (type == (N_TEXT | N_EXT) ? mf_text :
1243 (type == (N_DATA | N_EXT)
1245 || type == (N_SETV | N_EXT)
1247 type == (N_BSS | N_EXT) ? mf_bss :
1248 type == (N_ABS | N_EXT) ? mf_abs : mf_unknown);
1250 prim_record_misc_function (obsavestring (name, strlen (name)),
1251 address, misc_type);
1254 /* Scan and build partial symbols for a symbol file.
1255 We have been initialized by a call to dbx_symfile_init, which
1256 put all the relevant info into a "struct dbx_symfile_info"
1257 hung off the struct sym_fns SF.
1259 ADDR is the address relative to which the symbols in it are (e.g.
1260 the base address of the text segment).
1261 MAINLINE is true if we are reading the main symbol
1262 table (as opposed to a shared lib or dynamically loaded file). */
1265 dbx_symfile_read (sf, addr, mainline)
1268 int mainline; /* FIXME comments above */
1270 struct dbx_symfile_info *info = (struct dbx_symfile_info *) (sf->sym_private);
1271 bfd *sym_bfd = sf->sym_bfd;
1273 char *filename = bfd_get_filename (sym_bfd);
1275 val = lseek (info->desc, info->symtab_offset, L_SET);
1277 perror_with_name (filename);
1279 /* If mainline, set global string table pointers, and reinitialize global
1280 partial symbol list. */
1282 symfile_string_table = info->stringtab;
1283 symfile_string_table_size = info->stringtab_size;
1286 /* If we are reinitializing, or if we have never loaded syms yet, init */
1287 if (mainline || global_psymbols.size == 0 || static_psymbols.size == 0)
1288 init_psymbol_list (info->symcount);
1290 symfile_bfd = sym_bfd; /* Kludge for SWAP_SYMBOL */
1293 make_cleanup (really_free_pendings, 0);
1295 init_misc_bunches ();
1296 make_cleanup (discard_misc_bunches, 0);
1298 /* Now that the symbol table data of the executable file are all in core,
1299 process them and define symbols accordingly. */
1301 read_dbx_symtab (filename,
1302 addr - bfd_section_vma (sym_bfd, info->text_sect), /*offset*/
1303 info->desc, info->stringtab, info->stringtab_size,
1305 bfd_section_vma (sym_bfd, info->text_sect),
1306 bfd_section_size (sym_bfd, info->text_sect));
1308 /* Go over the misc symbol bunches and install them in vector. */
1310 condense_misc_bunches (!mainline);
1312 /* Free up any memory we allocated for ourselves. */
1315 free (info->stringtab); /* Stringtab is only saved for mainline */
1318 sf->sym_private = 0; /* Zap pointer to our (now gone) info struct */
1320 /* Call to select_source_symtab used to be here; it was using too
1321 much time. I'll make sure that list_sources can handle the lack
1322 of current_source_symtab */
1324 if (!partial_symtab_list)
1325 printf_filtered ("\n(no debugging symbols found)...");
1328 /* Discard any information we have cached during the reading of a
1329 single symbol file. This should not toss global information
1330 from previous symbol files that have been read. E.g. we might
1331 be discarding info from reading a shared library, and should not
1332 throw away the info from the main file. */
1335 dbx_symfile_discard ()
1338 /* Empty the hash table of global syms looking for values. */
1339 bzero (global_sym_chain, sizeof global_sym_chain);
1346 /* Initialize anything that needs initializing when a completely new
1347 symbol file is specified (not just adding some symbols from another
1348 file, e.g. a shared library). */
1353 dbx_symfile_discard ();
1354 /* Don't put these on the cleanup chain; they need to stick around
1355 until the next call to symbol_file_command. *Then* we'll free
1357 if (symfile_string_table)
1359 free (symfile_string_table);
1360 symfile_string_table = 0;
1361 symfile_string_table_size = 0;
1363 free_and_init_header_files ();
1367 /* dbx_symfile_init ()
1368 is the dbx-specific initialization routine for reading symbols.
1369 It is passed a struct sym_fns which contains, among other things,
1370 the BFD for the file whose symbols are being read, and a slot for a pointer
1371 to "private data" which we fill with goodies.
1373 We read the string table into malloc'd space and stash a pointer to it.
1375 Since BFD doesn't know how to read debug symbols in a format-independent
1376 way (and may never do so...), we have to do it ourselves. We will never
1377 be called unless this is an a.out (or very similar) file.
1378 FIXME, there should be a cleaner peephole into the BFD environment here. */
1381 dbx_symfile_init (sf)
1386 struct stat statbuf;
1387 bfd *sym_bfd = sf->sym_bfd;
1388 char *name = bfd_get_filename (sym_bfd);
1389 struct dbx_symfile_info *info;
1390 unsigned char size_temp[4];
1392 /* Allocate struct to keep track of the symfile */
1393 sf->sym_private = xmalloc (sizeof (*info)); /* FIXME storage leak */
1394 info = (struct dbx_symfile_info *)sf->sym_private;
1396 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
1397 desc = fileno ((FILE *)(sym_bfd->iostream)); /* Raw file descriptor */
1398 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
1399 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
1400 /* FIXME POKING INSIDE BFD DATA STRUCTURES */
1403 info->text_sect = bfd_get_section_by_name (sym_bfd, ".text");
1404 if (!info->text_sect)
1406 info->symcount = bfd_get_symcount_upper_bound(sym_bfd); /* It's exact for a.out */
1408 /* Read the string table size and check it for bogosity. */
1409 val = lseek (desc, STRING_TABLE_OFFSET, L_SET);
1411 perror_with_name (name);
1412 if (fstat (desc, &statbuf) == -1)
1413 perror_with_name (name);
1415 val = myread (desc, size_temp, sizeof (long));
1417 perror_with_name (name);
1418 info->stringtab_size = bfd_h_getlong (sym_bfd, size_temp);
1420 if (info->stringtab_size >= 0 && info->stringtab_size < statbuf.st_size)
1422 info->stringtab = (char *) xmalloc (info->stringtab_size);
1423 /* Caller is responsible for freeing the string table. No cleanup. */
1426 info->stringtab = NULL;
1427 if (info->stringtab == NULL && info->stringtab_size != 0)
1428 error ("ridiculous string table size: %d bytes", info->stringtab_size);
1430 /* Now read in the string table in one big gulp. */
1432 val = lseek (desc, STRING_TABLE_OFFSET, L_SET);
1434 perror_with_name (name);
1435 val = myread (desc, info->stringtab, info->stringtab_size);
1437 perror_with_name (name);
1439 /* Record the position of the symbol table for later use. */
1441 info->symtab_offset = SYMBOL_TABLE_OFFSET;
1444 /* Buffer for reading the symbol table entries. */
1445 static struct nlist symbuf[4096];
1446 static int symbuf_idx;
1447 static int symbuf_end;
1449 /* I/O descriptor for reading the symbol table. */
1450 static int symtab_input_desc;
1452 /* The address in memory of the string table of the object file we are
1453 reading (which might not be the "main" object file, but might be a
1454 shared library or some other dynamically loaded thing). This is set
1455 by read_dbx_symtab when building psymtabs, and by read_ofile_symtab
1456 when building symtabs, and is used only by next_symbol_text. */
1457 static char *stringtab_global;
1459 /* Refill the symbol table input buffer
1460 and set the variables that control fetching entries from it.
1461 Reports an error if no data available.
1462 This function can read past the end of the symbol table
1463 (into the string table) but this does no harm. */
1468 int nbytes = myread (symtab_input_desc, symbuf, sizeof (symbuf));
1470 perror_with_name ("<symbol file>");
1471 else if (nbytes == 0)
1472 error ("Premature end of file reading symbol table");
1473 symbuf_end = nbytes / sizeof (struct nlist);
1478 #define SWAP_SYMBOL(symp) \
1480 (symp)->n_un.n_strx = bfd_h_getlong(symfile_bfd, \
1481 (unsigned char *)&(symp)->n_un.n_strx); \
1482 (symp)->n_desc = bfd_h_getshort (symfile_bfd, \
1483 (unsigned char *)&(symp)->n_desc); \
1484 (symp)->n_value = bfd_h_getlong (symfile_bfd, \
1485 (unsigned char *)&(symp)->n_value); \
1488 /* Invariant: The symbol pointed to by symbuf_idx is the first one
1489 that hasn't been swapped. Swap the symbol at the same time
1490 that symbuf_idx is incremented. */
1492 /* dbx allows the text of a symbol name to be continued into the
1493 next symbol name! When such a continuation is encountered
1494 (a \ at the end of the text of a name)
1495 call this function to get the continuation. */
1500 if (symbuf_idx == symbuf_end)
1503 SWAP_SYMBOL(&symbuf[symbuf_idx]);
1504 return symbuf[symbuf_idx++].n_un.n_strx + stringtab_global;
1507 /* Initializes storage for all of the partial symbols that will be
1508 created by read_dbx_symtab and subsidiaries. */
1511 init_psymbol_list (total_symbols)
1514 /* Free any previously allocated psymbol lists. */
1515 if (global_psymbols.list)
1516 free (global_psymbols.list);
1517 if (static_psymbols.list)
1518 free (static_psymbols.list);
1520 /* Current best guess is that there are approximately a twentieth
1521 of the total symbols (in a debugging file) are global or static
1523 global_psymbols.size = total_symbols / 10;
1524 static_psymbols.size = total_symbols / 10;
1525 global_psymbols.next = global_psymbols.list = (struct partial_symbol *)
1526 xmalloc (global_psymbols.size * sizeof (struct partial_symbol));
1527 static_psymbols.next = static_psymbols.list = (struct partial_symbol *)
1528 xmalloc (static_psymbols.size * sizeof (struct partial_symbol));
1531 /* Initialize the list of bincls to contain none and have some
1535 init_bincl_list (number)
1538 bincls_allocated = number;
1539 next_bincl = bincl_list = (struct header_file_location *)
1540 xmalloc (bincls_allocated * sizeof(struct header_file_location));
1543 /* Add a bincl to the list. */
1546 add_bincl_to_list (pst, name, instance)
1547 struct partial_symtab *pst;
1551 if (next_bincl >= bincl_list + bincls_allocated)
1553 int offset = next_bincl - bincl_list;
1554 bincls_allocated *= 2;
1555 bincl_list = (struct header_file_location *)
1556 xrealloc ((char *)bincl_list,
1557 bincls_allocated * sizeof (struct header_file_location));
1558 next_bincl = bincl_list + offset;
1560 next_bincl->pst = pst;
1561 next_bincl->instance = instance;
1562 next_bincl++->name = name;
1565 /* Given a name, value pair, find the corresponding
1566 bincl in the list. Return the partial symtab associated
1567 with that header_file_location. */
1569 struct partial_symtab *
1570 find_corresponding_bincl_psymtab (name, instance)
1574 struct header_file_location *bincl;
1576 for (bincl = bincl_list; bincl < next_bincl; bincl++)
1577 if (bincl->instance == instance
1578 && !strcmp (name, bincl->name))
1581 return (struct partial_symtab *) 0;
1584 /* Free the storage allocated for the bincl list. */
1590 bincls_allocated = 0;
1593 static struct partial_symtab *start_psymtab ();
1594 static void end_psymtab();
1597 /* This is normally a macro defined in read_dbx_symtab, but this
1598 is a lot easier to debug. */
1600 ADD_PSYMBOL_TO_PLIST(NAME, NAMELENGTH, NAMESPACE, CLASS, PLIST, VALUE)
1603 enum namespace NAMESPACE;
1604 enum address_class CLASS;
1605 struct psymbol_allocation_list *PLIST;
1606 unsigned long VALUE;
1608 register struct partial_symbol *psym;
1613 (LIST).list + (LIST).size)
1615 (LIST).list = (struct partial_symbol *)
1616 xrealloc ((LIST).list,
1618 * sizeof (struct partial_symbol)));
1619 /* Next assumes we only went one over. Should be good if
1620 program works correctly */
1622 (LIST).list + (LIST).size;
1625 psym = (LIST).next++;
1628 SYMBOL_NAME (psym) = (char *) obstack_alloc (psymbol_obstack,
1630 strncpy (SYMBOL_NAME (psym), (NAME), (NAMELENGTH));
1631 SYMBOL_NAME (psym)[(NAMELENGTH)] = '\0';
1632 SYMBOL_NAMESPACE (psym) = (NAMESPACE);
1633 SYMBOL_CLASS (psym) = (CLASS);
1634 SYMBOL_VALUE (psym) = (VALUE);
1638 /* Since one arg is a struct, we have to pass in a ptr and deref it (sigh) */
1639 #define ADD_PSYMBOL_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE) \
1640 ADD_PSYMBOL_TO_PLIST(NAME, NAMELENGTH, NAMESPACE, CLASS, &LIST, VALUE)
1644 /* Given pointers to an a.out symbol table in core containing dbx
1645 style data, setup partial_symtab's describing each source file for
1646 which debugging information is available. NLISTLEN is the number
1647 of symbols in the symbol table. All symbol names are given as
1648 offsets relative to STRINGTAB. STRINGTAB_SIZE is the size of
1649 STRINGTAB. SYMFILE_NAME is the name of the file we are reading from
1650 and ADDR is its relocated address (if incremental) or 0 (if not). */
1653 read_dbx_symtab (symfile_name, addr,
1654 desc, stringtab, stringtab_size, nlistlen,
1655 text_addr, text_size)
1659 register char *stringtab;
1660 register long stringtab_size;
1661 register int nlistlen;
1662 CORE_ADDR text_addr;
1665 register struct nlist *bufp;
1666 register char *namestring;
1667 register struct partial_symbol *psym;
1669 int past_first_source_file = 0;
1670 CORE_ADDR last_o_file_start = 0;
1671 struct cleanup *old_chain;
1674 /* End of the text segment of the executable file. */
1675 CORE_ADDR end_of_text_addr;
1677 /* Current partial symtab */
1678 struct partial_symtab *pst;
1680 /* List of current psymtab's include files */
1681 char **psymtab_include_list;
1682 int includes_allocated;
1685 /* Index within current psymtab dependency list */
1686 struct partial_symtab **dependency_list;
1687 int dependencies_used, dependencies_allocated;
1689 stringtab_global = stringtab;
1691 pst = (struct partial_symtab *) 0;
1693 includes_allocated = 30;
1695 psymtab_include_list = (char **) alloca (includes_allocated *
1698 dependencies_allocated = 30;
1699 dependencies_used = 0;
1701 (struct partial_symtab **) alloca (dependencies_allocated *
1702 sizeof (struct partial_symtab *));
1704 /* FIXME!! If an error occurs, this blows away the whole symbol table!
1705 It should only blow away the psymtabs created herein. We could
1706 be reading a shared library or a dynloaded file! */
1707 old_chain = make_cleanup (free_all_psymtabs, 0);
1709 /* Init bincl list */
1710 init_bincl_list (20);
1711 make_cleanup (free_bincl_list, 0);
1713 last_source_file = 0;
1715 #ifdef END_OF_TEXT_DEFAULT
1716 end_of_text_addr = END_OF_TEXT_DEFAULT;
1718 end_of_text_addr = text_addr + text_size;
1721 symtab_input_desc = desc; /* This is needed for fill_symbuf below */
1722 symbuf_end = symbuf_idx = 0;
1724 for (symnum = 0; symnum < nlistlen; symnum++)
1726 /* Get the symbol for this run and pull out some info */
1727 QUIT; /* allow this to be interruptable */
1728 if (symbuf_idx == symbuf_end)
1730 bufp = &symbuf[symbuf_idx++];
1733 * Special case to speed up readin.
1735 if (bufp->n_type == (unsigned char)N_SLINE) continue;
1739 /* Ok. There is a lot of code duplicated in the rest of this
1740 switch statement (for efficiency reasons). Since I don't
1741 like duplicating code, I will do my penance here, and
1742 describe the code which is duplicated:
1744 *) The assignment to namestring.
1745 *) The call to strchr.
1746 *) The addition of a partial symbol the the two partial
1747 symbol lists. This last is a large section of code, so
1748 I've imbedded it in the following macro.
1751 /* Set namestring based on bufp. If the string table index is invalid,
1752 give a fake name, and print a single error message per symbol file read,
1753 rather than abort the symbol reading or flood the user with messages. */
1754 #define SET_NAMESTRING()\
1755 if (bufp->n_un.n_strx < 0 || bufp->n_un.n_strx >= stringtab_size) { \
1756 complain (&string_table_offset_complaint, symnum); \
1757 namestring = "foo"; \
1759 namestring = bufp->n_un.n_strx + stringtab
1761 /* Add a symbol with an integer value to a psymtab. */
1762 /* This is a macro unless we're debugging. See above this function. */
1764 # define ADD_PSYMBOL_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE) \
1765 ADD_PSYMBOL_VT_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE, \
1769 /* Add a symbol with a CORE_ADDR value to a psymtab. */
1770 #define ADD_PSYMBOL_ADDR_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE) \
1771 ADD_PSYMBOL_VT_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE, \
1772 SYMBOL_VALUE_ADDRESS)
1774 /* Add any kind of symbol to a psymtab. */
1775 #define ADD_PSYMBOL_VT_TO_LIST(NAME, NAMELENGTH, NAMESPACE, CLASS, LIST, VALUE, VT)\
1777 if ((LIST).next >= \
1778 (LIST).list + (LIST).size) \
1780 (LIST).list = (struct partial_symbol *) \
1781 xrealloc ((LIST).list, \
1783 * sizeof (struct partial_symbol))); \
1784 /* Next assumes we only went one over. Should be good if \
1785 program works correctly */ \
1787 (LIST).list + (LIST).size; \
1790 psym = (LIST).next++; \
1792 SYMBOL_NAME (psym) = (char *) obstack_alloc (psymbol_obstack, \
1793 (NAMELENGTH) + 1); \
1794 strncpy (SYMBOL_NAME (psym), (NAME), (NAMELENGTH)); \
1795 SYMBOL_NAME (psym)[(NAMELENGTH)] = '\0'; \
1796 SYMBOL_NAMESPACE (psym) = (NAMESPACE); \
1797 SYMBOL_CLASS (psym) = (CLASS); \
1798 VT (psym) = (VALUE); \
1801 /* End of macro definitions, now let's handle them symbols! */
1803 switch (bufp->n_type)
1806 * Standard, external, non-debugger, symbols
1809 case N_TEXT | N_EXT:
1810 case N_NBTEXT | N_EXT:
1811 case N_NBDATA | N_EXT:
1812 case N_NBBSS | N_EXT:
1813 case N_SETV | N_EXT:
1815 case N_DATA | N_EXT:
1818 bufp->n_value += addr; /* Relocate */
1823 record_misc_function (namestring, bufp->n_value,
1824 bufp->n_type); /* Always */
1828 /* Standard, local, non-debugger, symbols */
1832 /* We need to be able to deal with both N_FN or N_TEXT,
1833 because we have no way of knowing whether the sys-supplied ld
1834 or GNU ld was used to make the executable. */
1835 #if ! (N_FN & N_EXT)
1840 bufp->n_value += addr; /* Relocate */
1842 if ((namestring[0] == '-' && namestring[1] == 'l')
1843 || (namestring [(nsl = strlen (namestring)) - 1] == 'o'
1844 && namestring [nsl - 2] == '.'))
1846 if (entry_point < bufp->n_value
1847 && entry_point >= last_o_file_start
1848 && addr == 0) /* FIXME nogood nomore */
1850 startup_file_start = last_o_file_start;
1851 startup_file_end = bufp->n_value;
1853 if (past_first_source_file && pst
1854 /* The gould NP1 uses low values for .o and -l symbols
1855 which are not the address. */
1856 && bufp->n_value > pst->textlow)
1858 end_psymtab (pst, psymtab_include_list, includes_used,
1859 symnum * sizeof (struct nlist), bufp->n_value,
1860 dependency_list, dependencies_used,
1861 global_psymbols.next, static_psymbols.next);
1862 pst = (struct partial_symtab *) 0;
1864 dependencies_used = 0;
1867 past_first_source_file = 1;
1868 last_o_file_start = bufp->n_value;
1873 bufp->n_value += addr; /* Relocate */
1875 /* Check for __DYNAMIC, which is used by Sun shared libraries.
1876 Record it even if it's local, not global, so we can find it. */
1877 if (namestring[8] == 'C' && (strcmp ("__DYNAMIC", namestring) == 0))
1879 /* Not really a function here, but... */
1880 record_misc_function (namestring, bufp->n_value,
1881 bufp->n_type); /* Always */
1885 case N_UNDF | N_EXT:
1886 if (bufp->n_value != 0) {
1887 /* This is a "Fortran COMMON" symbol. See if the target
1888 environment knows where it has been relocated to. */
1893 if (target_lookup_symbol (namestring, &reladdr)) {
1894 continue; /* Error in lookup; ignore symbol for now. */
1896 bufp->n_type ^= (N_BSS^N_UNDF); /* Define it as a bss-symbol */
1897 bufp->n_value = reladdr;
1898 goto bss_ext_symbol;
1900 continue; /* Just undefined, not COMMON */
1902 /* Lots of symbol types we can just ignore. */
1911 /* Keep going . . .*/
1914 * Special symbol types for GNU
1917 case N_INDR | N_EXT:
1919 case N_SETA | N_EXT:
1921 case N_SETT | N_EXT:
1923 case N_SETD | N_EXT:
1925 case N_SETB | N_EXT:
1934 unsigned long valu = bufp->n_value;
1935 /* Symbol number of the first symbol of this file (i.e. the N_SO
1936 if there is just one, or the first if we have a pair). */
1937 int first_symnum = symnum;
1939 /* End the current partial symtab and start a new one */
1943 /* Peek at the next symbol. If it is also an N_SO, the
1944 first one just indicates the directory. */
1945 if (symbuf_idx == symbuf_end)
1947 bufp = &symbuf[symbuf_idx];
1948 /* n_type is only a char, so swapping swapping is irrelevant. */
1949 if (bufp->n_type == (unsigned char)N_SO)
1953 valu = bufp->n_value;
1957 valu += addr; /* Relocate */
1959 if (pst && past_first_source_file)
1961 end_psymtab (pst, psymtab_include_list, includes_used,
1962 first_symnum * sizeof (struct nlist), valu,
1963 dependency_list, dependencies_used,
1964 global_psymbols.next, static_psymbols.next);
1965 pst = (struct partial_symtab *) 0;
1967 dependencies_used = 0;
1970 past_first_source_file = 1;
1972 pst = start_psymtab (symfile_name, addr,
1974 first_symnum * sizeof (struct nlist),
1975 global_psymbols.next, static_psymbols.next);
1981 /* Add this bincl to the bincl_list for future EXCLs. No
1982 need to save the string; it'll be around until
1983 read_dbx_symtab function returns */
1987 add_bincl_to_list (pst, namestring, bufp->n_value);
1989 /* Mark down an include file in the current psymtab */
1991 psymtab_include_list[includes_used++] = namestring;
1992 if (includes_used >= includes_allocated)
1994 char **orig = psymtab_include_list;
1996 psymtab_include_list = (char **)
1997 alloca ((includes_allocated *= 2) *
1999 bcopy (orig, psymtab_include_list,
2000 includes_used * sizeof (char *));
2006 /* Mark down an include file in the current psymtab */
2010 /* In C++, one may expect the same filename to come round many
2011 times, when code is coming alternately from the main file
2012 and from inline functions in other files. So I check to see
2013 if this is a file we've seen before -- either the main
2014 source file, or a previously included file.
2016 This seems to be a lot of time to be spending on N_SOL, but
2017 things like "break expread.y:435" need to work (I
2018 suppose the psymtab_include_list could be hashed or put
2019 in a binary tree, if profiling shows this is a major hog). */
2020 if (!strcmp (namestring, pst->filename))
2024 for (i = 0; i < includes_used; i++)
2025 if (!strcmp (namestring, psymtab_include_list[i]))
2034 psymtab_include_list[includes_used++] = namestring;
2035 if (includes_used >= includes_allocated)
2037 char **orig = psymtab_include_list;
2039 psymtab_include_list = (char **)
2040 alloca ((includes_allocated *= 2) *
2042 bcopy (orig, psymtab_include_list,
2043 includes_used * sizeof (char *));
2047 case N_LSYM: /* Typedef or automatic variable. */
2050 p = (char *) strchr (namestring, ':');
2052 /* Skip if there is no :. */
2058 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2059 STRUCT_NAMESPACE, LOC_TYPEDEF,
2060 static_psymbols, bufp->n_value);
2063 /* Also a typedef with the same name. */
2064 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2065 VAR_NAMESPACE, LOC_TYPEDEF,
2066 static_psymbols, bufp->n_value);
2071 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2072 VAR_NAMESPACE, LOC_TYPEDEF,
2073 static_psymbols, bufp->n_value);
2075 /* If this is an enumerated type, we need to
2076 add all the enum constants to the partial symbol
2077 table. This does not cover enums without names, e.g.
2078 "enum {a, b} c;" in C, but fortunately those are
2079 rare. There is no way for GDB to find those from the
2080 enum type without spending too much time on it. Thus
2081 to solve this problem, the compiler needs to put out separate
2082 constant symbols ('c' N_LSYMS) for enum constants in
2083 enums without names, or put out a dummy type. */
2085 /* We are looking for something of the form
2086 <name> ":" ("t" | "T") [<number> "="] "e"
2087 {<constant> ":" <value> ","} ";". */
2089 /* Skip over the colon and the 't' or 'T'. */
2091 /* This type may be given a number. Skip over it. */
2092 while ((*p >= '0' && *p <= '9')
2098 /* We have found an enumerated type. */
2099 /* According to comments in read_enum_type
2100 a comma could end it instead of a semicolon.
2101 I don't know where that happens.
2103 while (*p && *p != ';' && *p != ',')
2107 /* Check for and handle cretinous dbx symbol name
2110 p = next_symbol_text ();
2112 /* Point to the character after the name
2113 of the enum constant. */
2114 for (q = p; *q && *q != ':'; q++)
2116 /* Note that the value doesn't matter for
2117 enum constants in psymtabs, just in symtabs. */
2118 ADD_PSYMBOL_TO_LIST (p, q - p,
2119 VAR_NAMESPACE, LOC_CONST,
2120 static_psymbols, 0);
2121 /* Point past the name. */
2123 /* Skip over the value. */
2124 while (*p && *p != ',')
2126 /* Advance past the comma. */
2134 /* Constant, e.g. from "const" in Pascal. */
2135 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2136 VAR_NAMESPACE, LOC_CONST,
2137 static_psymbols, bufp->n_value);
2140 /* Skip if the thing following the : is
2141 not a letter (which indicates declaration of a local
2142 variable, which we aren't interested in). */
2147 case N_GSYM: /* Global (extern) variable; can be
2148 data or bss (sigh). */
2149 case N_STSYM: /* Data seg var -- static */
2150 case N_LCSYM: /* BSS " */
2152 case N_NBSTS: /* Gould nobase. */
2153 case N_NBLCS: /* symbols. */
2155 /* Following may probably be ignored; I'll leave them here
2156 for now (until I do Pascal and Modula 2 extensions). */
2158 case N_PC: /* I may or may not need this; I
2160 case N_M2C: /* I suspect that I can ignore this here. */
2161 case N_SCOPE: /* Same. */
2165 p = (char *) strchr (namestring, ':');
2167 continue; /* Not a debugging symbol. */
2171 /* Main processing section for debugging symbols which
2172 the initial read through the symbol tables needs to worry
2173 about. If we reach this point, the symbol which we are
2174 considering is definitely one we are interested in.
2175 p must also contain the (valid) index into the namestring
2176 which indicates the debugging type symbol. */
2181 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2182 VAR_NAMESPACE, LOC_CONST,
2183 static_psymbols, bufp->n_value);
2186 bufp->n_value += addr; /* Relocate */
2187 ADD_PSYMBOL_ADDR_TO_LIST (namestring, p - namestring,
2188 VAR_NAMESPACE, LOC_STATIC,
2189 static_psymbols, bufp->n_value);
2192 bufp->n_value += addr; /* Relocate */
2193 ADD_PSYMBOL_ADDR_TO_LIST (namestring, p - namestring,
2194 VAR_NAMESPACE, LOC_EXTERNAL,
2195 global_psymbols, bufp->n_value);
2199 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2200 VAR_NAMESPACE, LOC_TYPEDEF,
2201 global_psymbols, bufp->n_value);
2205 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2206 VAR_NAMESPACE, LOC_BLOCK,
2207 static_psymbols, bufp->n_value);
2210 /* Global functions were ignored here, but now they
2211 are put into the global psymtab like one would expect.
2212 They're also in the misc fn vector...
2213 FIXME, why did it used to ignore these? That broke
2214 "i fun" on these functions. */
2216 ADD_PSYMBOL_TO_LIST (namestring, p - namestring,
2217 VAR_NAMESPACE, LOC_BLOCK,
2218 global_psymbols, bufp->n_value);
2221 /* Two things show up here (hopefully); static symbols of
2222 local scope (static used inside braces) or extensions
2223 of structure symbols. We can ignore both. */
2239 /* Unexpected symbol. Ignore it; perhaps it is an extension
2240 that we don't know about.
2242 Someone says sun cc puts out symbols like
2243 /foo/baz/maclib::/usr/local/bin/maclib,
2244 which would get here with a symbol type of ':'. */
2252 /* Find the corresponding bincl and mark that psymtab on the
2253 psymtab dependency list */
2255 struct partial_symtab *needed_pst =
2256 find_corresponding_bincl_psymtab (namestring, bufp->n_value);
2258 /* If this include file was defined earlier in this file,
2260 if (needed_pst == pst) continue;
2267 for (i = 0; i < dependencies_used; i++)
2268 if (dependency_list[i] == needed_pst)
2274 /* If it's already in the list, skip the rest. */
2275 if (found) continue;
2277 dependency_list[dependencies_used++] = needed_pst;
2278 if (dependencies_used >= dependencies_allocated)
2280 struct partial_symtab **orig = dependency_list;
2282 (struct partial_symtab **)
2283 alloca ((dependencies_allocated *= 2)
2284 * sizeof (struct partial_symtab *));
2285 bcopy (orig, dependency_list,
2287 * sizeof (struct partial_symtab *)));
2289 fprintf (stderr, "Had to reallocate dependency list.\n");
2290 fprintf (stderr, "New dependencies allocated: %d\n",
2291 dependencies_allocated);
2296 error ("Invalid symbol data: \"repeated\" header file not previously seen, at symtab pos %d.",
2304 case N_SSYM: /* Claim: Structure or union element.
2305 Hopefully, I can ignore this. */
2306 case N_ENTRY: /* Alternate entry point; can ignore. */
2307 case N_MAIN: /* Can definitely ignore this. */
2308 case N_CATCH: /* These are GNU C++ extensions */
2309 case N_EHDECL: /* that can safely be ignored here. */
2320 case N_NSYMS: /* Ultrix 4.0: symbol count */
2321 /* These symbols aren't interesting; don't worry about them */
2326 /* If we haven't found it yet, ignore it. It's probably some
2327 new type we don't know about yet. */
2328 complain (&unknown_symtype_complaint, bufp->n_type);
2333 /* If there's stuff to be cleaned up, clean it up. */
2334 if (entry_point < bufp->n_value
2335 && entry_point >= last_o_file_start)
2337 startup_file_start = last_o_file_start;
2338 startup_file_end = bufp->n_value;
2343 end_psymtab (pst, psymtab_include_list, includes_used,
2344 symnum * sizeof (struct nlist), end_of_text_addr,
2345 dependency_list, dependencies_used,
2346 global_psymbols.next, static_psymbols.next);
2348 dependencies_used = 0;
2349 pst = (struct partial_symtab *) 0;
2353 discard_cleanups (old_chain);
2357 * Allocate and partially fill a partial symtab. It will be
2358 * completely filled at the end of the symbol list.
2360 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2361 is the address relative to which its symbols are (incremental) or 0
2363 static struct partial_symtab *
2364 start_psymtab (symfile_name, addr,
2365 filename, textlow, ldsymoff, global_syms, static_syms)
2371 struct partial_symbol *global_syms;
2372 struct partial_symbol *static_syms;
2374 struct partial_symtab *result =
2375 (struct partial_symtab *) obstack_alloc (psymbol_obstack,
2376 sizeof (struct partial_symtab));
2378 result->addr = addr;
2380 result->symfile_name =
2381 (char *) obstack_alloc (psymbol_obstack,
2382 strlen (symfile_name) + 1);
2383 strcpy (result->symfile_name, symfile_name);
2386 (char *) obstack_alloc (psymbol_obstack,
2387 strlen (filename) + 1);
2388 strcpy (result->filename, filename);
2390 result->textlow = textlow;
2391 result->ldsymoff = ldsymoff;
2395 result->read_symtab = dbx_psymtab_to_symtab;
2397 result->globals_offset = global_syms - global_psymbols.list;
2398 result->statics_offset = static_syms - static_psymbols.list;
2400 result->n_global_syms = 0;
2401 result->n_static_syms = 0;
2408 compare_psymbols (s1, s2)
2409 register struct partial_symbol *s1, *s2;
2412 *st1 = SYMBOL_NAME (s1),
2413 *st2 = SYMBOL_NAME (s2);
2415 return (st1[0] - st2[0] ? st1[0] - st2[0] :
2416 strcmp (st1 + 1, st2 + 1));
2420 /* Close off the current usage of a partial_symbol table entry. This
2421 involves setting the correct number of includes (with a realloc),
2422 setting the high text mark, setting the symbol length in the
2423 executable, and setting the length of the global and static lists
2426 The global symbols and static symbols are then seperately sorted.
2428 Then the partial symtab is put on the global list.
2429 *** List variables and peculiarities of same. ***
2432 end_psymtab (pst, include_list, num_includes, capping_symbol_offset,
2433 capping_text, dependency_list, number_dependencies,
2434 capping_global, capping_static)
2435 struct partial_symtab *pst;
2436 char **include_list;
2438 int capping_symbol_offset;
2439 CORE_ADDR capping_text;
2440 struct partial_symtab **dependency_list;
2441 int number_dependencies;
2442 struct partial_symbol *capping_global, *capping_static;
2446 pst->ldsymlen = capping_symbol_offset - pst->ldsymoff;
2447 pst->texthigh = capping_text;
2449 pst->n_global_syms =
2450 capping_global - (global_psymbols.list + pst->globals_offset);
2451 pst->n_static_syms =
2452 capping_static - (static_psymbols.list + pst->statics_offset);
2454 pst->number_of_dependencies = number_dependencies;
2455 if (number_dependencies)
2457 pst->dependencies = (struct partial_symtab **)
2458 obstack_alloc (psymbol_obstack,
2459 number_dependencies * sizeof (struct partial_symtab *));
2460 bcopy (dependency_list, pst->dependencies,
2461 number_dependencies * sizeof (struct partial_symtab *));
2464 pst->dependencies = 0;
2466 for (i = 0; i < num_includes; i++)
2468 /* Eventually, put this on obstack */
2469 struct partial_symtab *subpst =
2470 (struct partial_symtab *)
2471 obstack_alloc (psymbol_obstack,
2472 sizeof (struct partial_symtab));
2475 (char *) obstack_alloc (psymbol_obstack,
2476 strlen (include_list[i]) + 1);
2477 strcpy (subpst->filename, include_list[i]);
2479 subpst->symfile_name = pst->symfile_name;
2480 subpst->addr = pst->addr;
2484 subpst->texthigh = 0;
2486 subpst->dependencies = (struct partial_symtab **)
2487 obstack_alloc (psymbol_obstack,
2488 sizeof (struct partial_symtab *));
2489 subpst->dependencies[0] = pst;
2490 subpst->number_of_dependencies = 1;
2492 subpst->globals_offset =
2493 subpst->n_global_syms =
2494 subpst->statics_offset =
2495 subpst->n_static_syms = 0;
2498 subpst->read_symtab = dbx_psymtab_to_symtab;
2500 subpst->next = partial_symtab_list;
2501 partial_symtab_list = subpst;
2504 /* Sort the global list; don't sort the static list */
2505 qsort (global_psymbols.list + pst->globals_offset, pst->n_global_syms,
2506 sizeof (struct partial_symbol), compare_psymbols);
2508 /* If there is already a psymtab or symtab for a file of this name, remove it.
2509 (If there is a symtab, more drastic things also happen.)
2510 This happens in VxWorks. */
2511 free_named_symtabs (pst->filename);
2513 /* Put the psymtab on the psymtab list */
2514 pst->next = partial_symtab_list;
2515 partial_symtab_list = pst;
2519 psymtab_to_symtab_1 (pst, desc, stringtab, stringtab_size, sym_offset)
2520 struct partial_symtab *pst;
2526 struct cleanup *old_chain;
2534 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
2539 /* Read in all partial symbtabs on which this one is dependent */
2540 for (i = 0; i < pst->number_of_dependencies; i++)
2541 if (!pst->dependencies[i]->readin)
2543 /* Inform about additional files that need to be read in. */
2546 fputs_filtered (" ", stdout);
2548 fputs_filtered ("and ", stdout);
2550 printf_filtered ("%s...", pst->dependencies[i]->filename);
2551 wrap_here (""); /* Flush output */
2554 psymtab_to_symtab_1 (pst->dependencies[i], desc,
2555 stringtab, stringtab_size, sym_offset);
2558 if (pst->ldsymlen) /* Otherwise it's a dummy */
2560 /* Init stuff necessary for reading in symbols */
2565 old_chain = make_cleanup (really_free_pendings, 0);
2567 /* Read in this files symbols */
2568 lseek (desc, sym_offset, L_SET);
2569 read_ofile_symtab (desc, stringtab, stringtab_size,
2571 pst->ldsymlen, pst->textlow,
2572 pst->texthigh - pst->textlow, pst->addr);
2573 sort_symtab_syms (symtab_list); /* At beginning since just added */
2575 do_cleanups (old_chain);
2582 * Read in all of the symbols for a given psymtab for real.
2583 * Be verbose about it if the user wants that.
2586 dbx_psymtab_to_symtab (pst)
2587 struct partial_symtab *pst;
2592 struct stat statbuf;
2593 struct cleanup *old_chain;
2602 fprintf (stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
2607 if (pst->ldsymlen || pst->number_of_dependencies)
2609 /* Print the message now, before reading the string table,
2610 to avoid disconcerting pauses. */
2613 printf_filtered ("Reading in symbols for %s...", pst->filename);
2617 /* Open symbol file and read in string table. Symbol_file_command
2618 guarantees that the symbol file name will be absolute, so there is
2619 no need for openp. */
2620 desc = open(pst->symfile_name, O_RDONLY, 0);
2623 perror_with_name (pst->symfile_name);
2625 sym_bfd = bfd_fdopenr (pst->symfile_name, NULL, desc);
2629 error ("Could not open `%s' to read symbols: %s",
2630 pst->symfile_name, bfd_errmsg (bfd_error));
2632 old_chain = make_cleanup (bfd_close, sym_bfd);
2633 if (!bfd_check_format (sym_bfd, bfd_object))
2634 error ("\"%s\": can't read symbols: %s.",
2635 pst->symfile_name, bfd_errmsg (bfd_error));
2637 /* We keep the string table for symfile resident in memory, but
2638 not the string table for any other symbol files. */
2639 if ((symfile == 0) || 0 != strcmp(pst->symfile_name, symfile))
2641 /* Read in the string table */
2643 /* FIXME, this uses internal BFD variables. See above in
2644 dbx_symbol_file_open where the macro is defined! */
2645 lseek (desc, STRING_TABLE_OFFSET, L_SET);
2647 val = myread (desc, &st_temp, sizeof st_temp);
2649 perror_with_name (pst->symfile_name);
2650 stsize = bfd_h_getlong (sym_bfd, (unsigned char *)&st_temp);
2651 if (fstat (desc, &statbuf) < 0)
2652 perror_with_name (pst->symfile_name);
2654 if (stsize >= 0 && stsize < statbuf.st_size)
2656 #ifdef BROKEN_LARGE_ALLOCA
2657 stringtab = (char *) xmalloc (stsize);
2658 make_cleanup (free, stringtab);
2660 stringtab = (char *) alloca (stsize);
2665 if (stringtab == NULL && stsize != 0)
2666 error ("ridiculous string table size: %d bytes", stsize);
2668 /* FIXME, this uses internal BFD variables. See above in
2669 dbx_symbol_file_open where the macro is defined! */
2670 val = lseek (desc, STRING_TABLE_OFFSET, L_SET);
2672 perror_with_name (pst->symfile_name);
2673 val = myread (desc, stringtab, stsize);
2675 perror_with_name (pst->symfile_name);
2679 stringtab = symfile_string_table;
2680 stsize = symfile_string_table_size;
2683 symfile_bfd = sym_bfd; /* Kludge for SWAP_SYMBOL */
2685 /* FIXME, this uses internal BFD variables. See above in
2686 dbx_symbol_file_open where the macro is defined! */
2687 psymtab_to_symtab_1 (pst, desc, stringtab, stsize,
2688 SYMBOL_TABLE_OFFSET);
2690 /* Match with global symbols. This only needs to be done once,
2691 after all of the symtabs and dependencies have been read in. */
2692 scan_file_globals ();
2694 do_cleanups (old_chain);
2696 /* Finish up the debug error message. */
2698 printf_filtered ("done.\n");
2703 * Scan through all of the global symbols defined in the object file,
2704 * assigning values to the debugging symbols that need to be assigned
2705 * to. Get these symbols from the misc function list.
2708 scan_file_globals ()
2713 for (mf = 0; mf < misc_function_count; mf++)
2715 char *namestring = misc_function_vector[mf].name;
2716 struct symbol *sym, *prev;
2720 prev = (struct symbol *) 0;
2722 /* Get the hash index and check all the symbols
2723 under that hash index. */
2725 hash = hashname (namestring);
2727 for (sym = global_sym_chain[hash]; sym;)
2729 if (*namestring == SYMBOL_NAME (sym)[0]
2730 && !strcmp(namestring + 1, SYMBOL_NAME (sym) + 1))
2732 /* Splice this symbol out of the hash chain and
2733 assign the value we have to it. */
2735 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
2737 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
2739 /* Check to see whether we need to fix up a common block. */
2740 /* Note: this code might be executed several times for
2741 the same symbol if there are multiple references. */
2742 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
2743 fix_common_block (sym, misc_function_vector[mf].address);
2745 SYMBOL_VALUE_ADDRESS (sym) = misc_function_vector[mf].address;
2748 sym = SYMBOL_VALUE_CHAIN (prev);
2750 sym = global_sym_chain[hash];
2755 sym = SYMBOL_VALUE_CHAIN (sym);
2761 /* Process a pair of symbols. Currently they must both be N_SO's. */
2763 process_symbol_pair (type1, desc1, value1, name1,
2764 type2, desc2, value2, name2)
2774 /* No need to check PCC_SOL_BROKEN, on the assumption that such
2775 broken PCC's don't put out N_SO pairs. */
2776 if (last_source_file)
2777 end_symtab (value2);
2778 start_symtab (name2, name1, value2);
2782 * Read in a defined section of a specific object file's symbols.
2784 * DESC is the file descriptor for the file, positioned at the
2785 * beginning of the symtab
2786 * STRINGTAB is a pointer to the files string
2787 * table, already read in
2788 * SYM_OFFSET is the offset within the file of
2789 * the beginning of the symbols we want to read, NUM_SUMBOLS is the
2790 * number of symbols to read
2791 * TEXT_OFFSET is the beginning of the text segment we are reading symbols for
2792 * TEXT_SIZE is the size of the text segment read in.
2793 * OFFSET is a relocation offset which gets added to each symbol
2797 read_ofile_symtab (desc, stringtab, stringtab_size, sym_offset,
2798 sym_size, text_offset, text_size, offset)
2800 register char *stringtab;
2801 unsigned int stringtab_size;
2804 CORE_ADDR text_offset;
2808 register char *namestring;
2813 stringtab_global = stringtab;
2814 last_source_file = 0;
2816 symtab_input_desc = desc;
2817 symbuf_end = symbuf_idx = 0;
2819 /* It is necessary to actually read one symbol *before* the start
2820 of this symtab's symbols, because the GCC_COMPILED_FLAG_SYMBOL
2821 occurs before the N_SO symbol.
2823 Detecting this in read_dbx_symtab
2824 would slow down initial readin, so we look for it here instead. */
2825 if (sym_offset >= (int)sizeof (struct nlist))
2827 lseek (desc, sym_offset - sizeof (struct nlist), L_INCR);
2829 bufp = &symbuf[symbuf_idx++];
2832 if (bufp->n_un.n_strx < 0 || bufp->n_un.n_strx >= stringtab_size)
2833 error ("Invalid symbol data: bad string table offset: %d",
2835 namestring = bufp->n_un.n_strx + stringtab;
2837 processing_gcc_compilation =
2838 (bufp->n_type == N_TEXT
2839 && !strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL));
2843 /* The N_SO starting this symtab is the first symbol, so we
2844 better not check the symbol before it. I'm not this can
2845 happen, but it doesn't hurt to check for it. */
2846 lseek(desc, sym_offset, L_INCR);
2847 processing_gcc_compilation = 0;
2850 if (symbuf_idx == symbuf_end)
2852 bufp = &symbuf[symbuf_idx];
2853 if (bufp->n_type != (unsigned char)N_SO)
2854 error("First symbol in segment of executable not a source symbol");
2857 symnum < sym_size / sizeof(struct nlist);
2860 QUIT; /* Allow this to be interruptable */
2861 if (symbuf_idx == symbuf_end)
2863 bufp = &symbuf[symbuf_idx++];
2866 type = bufp->n_type & N_TYPE;
2867 if (type == (unsigned char)N_CATCH)
2869 /* N_CATCH is not fixed up by the linker, and unfortunately,
2870 there's no other place to put it in the .stab map. */
2871 /* FIXME, do we also have to add OFFSET or something? -- gnu@cygnus */
2872 bufp->n_value += text_offset;
2874 else if (type == N_TEXT || type == N_DATA || type == N_BSS)
2875 bufp->n_value += offset;
2877 type = bufp->n_type;
2878 if (bufp->n_un.n_strx < 0 || bufp->n_un.n_strx >= stringtab_size)
2879 error ("Invalid symbol data: bad string table offset: %d",
2881 namestring = bufp->n_un.n_strx + stringtab;
2885 short desc = bufp->n_desc;
2886 unsigned long valu = bufp->n_value;
2888 /* Check for a pair of N_SO symbols. */
2889 if (type == (unsigned char)N_SO)
2891 if (symbuf_idx == symbuf_end)
2893 bufp = &symbuf[symbuf_idx];
2894 if (bufp->n_type == (unsigned char)N_SO)
2899 bufp->n_value += offset; /* Relocate */
2903 if (bufp->n_un.n_strx < 0
2904 || bufp->n_un.n_strx >= stringtab_size)
2905 error ("Invalid symbol data: bad string table offset: %d",
2907 namestring2 = bufp->n_un.n_strx + stringtab;
2909 process_symbol_pair (N_SO, desc, valu, namestring,
2910 N_SO, bufp->n_desc, bufp->n_value,
2914 process_one_symbol(type, desc, valu, namestring);
2917 process_one_symbol (type, desc, valu, namestring);
2919 /* We skip checking for a new .o or -l file; that should never
2920 happen in this routine. */
2921 else if (type == N_TEXT
2922 && !strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL))
2923 /* I don't think this code will ever be executed, because
2924 the GCC_COMPILED_FLAG_SYMBOL usually is right before
2925 the N_SO symbol which starts this source file.
2926 However, there is no reason not to accept
2927 the GCC_COMPILED_FLAG_SYMBOL anywhere. */
2928 processing_gcc_compilation = 1;
2929 else if (type & N_EXT || type == (unsigned char)N_TEXT
2930 || type == (unsigned char)N_NBTEXT
2932 /* Global symbol: see if we came across a dbx defintion for
2933 a corresponding symbol. If so, store the value. Remove
2934 syms from the chain when their values are stored, but
2935 search the whole chain, as there may be several syms from
2936 different files with the same name. */
2937 /* This is probably not true. Since the files will be read
2938 in one at a time, each reference to a global symbol will
2939 be satisfied in each file as it appears. So we skip this
2943 end_symtab (text_offset + text_size);
2950 register char *p = name;
2951 register int total = p[0];
2964 /* Ensure result is positive. */
2965 if (total < 0) total += (1000 << 6);
2966 return total % HASHSIZE;
2971 process_one_symbol (type, desc, valu, name)
2976 #ifndef SUN_FIXED_LBRAC_BUG
2977 /* This records the last pc address we've seen. We depend on their being
2978 an SLINE or FUN or SO before the first LBRAC, since the variable does
2979 not get reset in between reads of different symbol files. */
2980 static CORE_ADDR last_pc_address;
2982 register struct context_stack *new;
2985 /* Something is wrong if we see real data before
2986 seeing a source file name. */
2988 if (last_source_file == 0 && type != (unsigned char)N_SO)
2990 /* Currently this ignores N_ENTRY on Gould machines, N_NSYM on machines
2991 where that code is defined. */
2992 if (IGNORE_SYMBOL (type))
2995 /* FIXME, this should not be an error, since it precludes extending
2996 the symbol table information in this way... */
2997 error ("Invalid symbol data: does not start by identifying a source file.");
3004 /* Either of these types of symbols indicates the start of
3005 a new function. We must process its "name" normally for dbx,
3006 but also record the start of a new lexical context, and possibly
3007 also the end of the lexical context for the previous function. */
3008 /* This is not always true. This type of symbol may indicate a
3009 text segment variable. */
3011 #ifndef SUN_FIXED_LBRAC_BUG
3012 last_pc_address = valu; /* Save for SunOS bug circumcision */
3015 colon_pos = strchr (name, ':');
3017 || (*colon_pos != 'f' && *colon_pos != 'F'))
3019 define_symbol (valu, name, desc, type);
3023 within_function = 1;
3024 if (context_stack_depth > 0)
3026 new = &context_stack[--context_stack_depth];
3027 /* Make a block for the local symbols within. */
3028 finish_block (new->name, &local_symbols, new->old_blocks,
3029 new->start_addr, valu);
3031 /* Stack must be empty now. */
3032 if (context_stack_depth != 0)
3033 error ("Invalid symbol data: unmatched N_LBRAC before symtab pos %d.",
3036 new = &context_stack[context_stack_depth++];
3037 new->old_blocks = pending_blocks;
3038 new->start_addr = valu;
3039 new->name = define_symbol (valu, name, desc, type);
3044 /* Record the address at which this catch takes place. */
3045 define_symbol (valu, name, desc, type);
3049 /* Don't know what to do with these yet. */
3050 error ("action uncertain for eh extensions");
3054 /* This "symbol" just indicates the start of an inner lexical
3055 context within a function. */
3057 #if !defined (BLOCK_ADDRESS_ABSOLUTE)
3058 /* On most machines, the block addresses are relative to the
3059 N_SO, the linker did not relocate them (sigh). */
3060 valu += last_source_start_addr;
3063 #ifndef SUN_FIXED_LBRAC_BUG
3064 if (valu < last_pc_address) {
3065 /* Patch current LBRAC pc value to match last handy pc value */
3066 complain (&lbrac_complaint, 0);
3067 valu = last_pc_address;
3070 if (context_stack_depth == context_stack_size)
3072 context_stack_size *= 2;
3073 context_stack = (struct context_stack *)
3074 xrealloc (context_stack,
3076 * sizeof (struct context_stack)));
3079 new = &context_stack[context_stack_depth++];
3081 new->locals = local_symbols;
3082 new->old_blocks = pending_blocks;
3083 new->start_addr = valu;
3089 /* This "symbol" just indicates the end of an inner lexical
3090 context that was started with N_LBRAC. */
3092 #if !defined (BLOCK_ADDRESS_ABSOLUTE)
3093 /* On most machines, the block addresses are relative to the
3094 N_SO, the linker did not relocate them (sigh). */
3095 valu += last_source_start_addr;
3098 new = &context_stack[--context_stack_depth];
3099 if (desc != new->depth)
3100 error ("Invalid symbol data: N_LBRAC/N_RBRAC symbol mismatch, symtab pos %d.", symnum);
3102 /* Some compilers put the variable decls inside of an
3103 LBRAC/RBRAC block. This macro should be nonzero if this
3104 is true. DESC is N_DESC from the N_RBRAC symbol.
3105 GCC_P is true if we've detected the GCC_COMPILED_SYMBOL. */
3106 #if !defined (VARIABLES_INSIDE_BLOCK)
3107 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) 0
3110 /* Can only use new->locals as local symbols here if we're in
3111 gcc or on a machine that puts them before the lbrack. */
3112 if (!VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
3113 local_symbols = new->locals;
3115 /* If this is not the outermost LBRAC...RBRAC pair in the
3116 function, its local symbols preceded it, and are the ones
3117 just recovered from the context stack. Defined the block for them.
3119 If this is the outermost LBRAC...RBRAC pair, there is no
3120 need to do anything; leave the symbols that preceded it
3121 to be attached to the function's own block. However, if
3122 it is so, we need to indicate that we just moved outside
3125 && (context_stack_depth
3126 > !VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation)))
3128 /* FIXME Muzzle a compiler bug that makes end < start. */
3129 if (new->start_addr > valu)
3131 complain(&lbrac_rbrac_complaint, 0);
3132 new->start_addr = valu;
3134 /* Make a block for the local symbols within. */
3135 finish_block (0, &local_symbols, new->old_blocks,
3136 new->start_addr, valu);
3140 within_function = 0;
3142 if (VARIABLES_INSIDE_BLOCK(desc, processing_gcc_compilation))
3143 /* Now pop locals of block just finished. */
3144 local_symbols = new->locals;
3148 /* This kind of symbol supposedly indicates the start
3149 of an object file. In fact this type does not appear. */
3153 /* This type of symbol indicates the start of data
3154 for one source file.
3155 Finish the symbol table of the previous source file
3156 (if any) and start accumulating a new symbol table. */
3157 #ifndef SUN_FIXED_LBRAC_BUG
3158 last_pc_address = valu; /* Save for SunOS bug circumcision */
3161 #ifdef PCC_SOL_BROKEN
3162 /* pcc bug, occasionally puts out SO for SOL. */
3163 if (context_stack_depth > 0)
3165 start_subfile (name, NULL);
3169 if (last_source_file)
3171 start_symtab (name, NULL, valu);
3175 /* This type of symbol indicates the start of data for
3176 a sub-source-file, one whose contents were copied or
3177 included in the compilation of the main source file
3178 (whose name was given in the N_SO symbol.) */
3179 start_subfile (name, NULL);
3184 add_new_header_file (name, valu);
3185 start_subfile (name, NULL);
3189 start_subfile (pop_subfile (), NULL);
3193 add_old_header_file (name, valu);
3197 /* This type of "symbol" really just records
3198 one line-number -- core-address correspondence.
3199 Enter it in the line list for this symbol table. */
3200 #ifndef SUN_FIXED_LBRAC_BUG
3201 last_pc_address = valu; /* Save for SunOS bug circumcision */
3203 record_line (desc, valu);
3208 error ("Invalid symbol data: common within common at symtab pos %d",
3210 common_block = local_symbols;
3211 common_block_i = local_symbols ? local_symbols->nsyms : 0;
3215 /* Symbols declared since the BCOMM are to have the common block
3216 start address added in when we know it. common_block points to
3217 the first symbol after the BCOMM in the local_symbols list;
3218 copy the list and hang it off the symbol for the common block name
3222 struct symbol *sym =
3223 (struct symbol *) xmalloc (sizeof (struct symbol));
3224 bzero (sym, sizeof *sym);
3225 SYMBOL_NAME (sym) = savestring (name, strlen (name));
3226 SYMBOL_CLASS (sym) = LOC_BLOCK;
3227 SYMBOL_NAMESPACE (sym) = (enum namespace)((long)
3228 copy_pending (local_symbols, common_block_i, common_block));
3229 i = hashname (SYMBOL_NAME (sym));
3230 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
3231 global_sym_chain[i] = sym;
3242 define_symbol (valu, name, desc, type);
3246 /* Read a number by which a type is referred to in dbx data,
3247 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
3248 Just a single number N is equivalent to (0,N).
3249 Return the two numbers by storing them in the vector TYPENUMS.
3250 TYPENUMS will then be used as an argument to dbx_lookup_type. */
3253 read_type_number (pp, typenums)
3255 register int *typenums;
3260 typenums[0] = read_number (pp, ',');
3261 typenums[1] = read_number (pp, ')');
3266 typenums[1] = read_number (pp, 0);
3270 /* To handle GNU C++ typename abbreviation, we need to be able to
3271 fill in a type's name as soon as space for that type is allocated.
3272 `type_synonym_name' is the name of the type being allocated.
3273 It is cleared as soon as it is used (lest all allocated types
3275 static char *type_synonym_name;
3277 static struct symbol *
3278 define_symbol (valu, string, desc, type)
3284 register struct symbol *sym;
3285 char *p = (char *) strchr (string, ':');
3290 /* Ignore syms with empty names. */
3294 /* Ignore old-style symbols from cc -go */
3298 sym = (struct symbol *)obstack_alloc (symbol_obstack, sizeof (struct symbol));
3300 if (processing_gcc_compilation) {
3301 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
3302 number of bytes occupied by a type or object, which we ignore. */
3303 SYMBOL_LINE(sym) = desc;
3305 SYMBOL_LINE(sym) = 0; /* unknown */
3308 if (string[0] == CPLUS_MARKER)
3310 /* Special GNU C++ names. */
3314 SYMBOL_NAME (sym) = "this";
3316 case 'v': /* $vtbl_ptr_type */
3317 /* Was: SYMBOL_NAME (sym) = "vptr"; */
3320 SYMBOL_NAME (sym) = "eh_throw";
3324 /* This was an anonymous type that was never fixed up. */
3335 = (char *) obstack_alloc (symbol_obstack, ((p - string) + 1));
3336 /* Open-coded bcopy--saves function call time. */
3338 register char *p1 = string;
3339 register char *p2 = SYMBOL_NAME (sym);
3346 /* Determine the type of name being defined. */
3347 /* The Acorn RISC machine's compiler can put out locals that don't
3348 start with "234=" or "(3,4)=", so assume anything other than the
3349 deftypes we know how to handle is a local. */
3350 /* (Peter Watkins @ Computervision)
3351 Handle Sun-style local fortran array types 'ar...' .
3354 if (!strchr ("cfFGpPrStTvVXC", *p))
3359 /* c is a special case, not followed by a type-number.
3360 SYMBOL:c=iVALUE for an integer constant symbol.
3361 SYMBOL:c=rVALUE for a floating constant symbol.
3362 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
3363 e.g. "b:c=e6,0" for "const b = blob1"
3364 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
3368 error ("Invalid symbol data at symtab pos %d.", symnum);
3373 double d = atof (p);
3376 SYMBOL_TYPE (sym) = builtin_type_double;
3377 valu = (char *) obstack_alloc (symbol_obstack, sizeof (double));
3378 bcopy (&d, valu, sizeof (double));
3379 SWAP_TARGET_AND_HOST (valu, sizeof (double));
3380 SYMBOL_VALUE_BYTES (sym) = valu;
3381 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
3386 SYMBOL_TYPE (sym) = builtin_type_int;
3387 SYMBOL_VALUE (sym) = atoi (p);
3388 SYMBOL_CLASS (sym) = LOC_CONST;
3392 /* SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
3393 e.g. "b:c=e6,0" for "const b = blob1"
3394 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
3398 read_type_number (&p, typenums);
3400 error ("Invalid symbol data: no comma in enum const symbol");
3402 SYMBOL_TYPE (sym) = *dbx_lookup_type (typenums);
3403 SYMBOL_VALUE (sym) = atoi (p);
3404 SYMBOL_CLASS (sym) = LOC_CONST;
3408 error ("Invalid symbol data at symtab pos %d.", symnum);
3410 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3411 add_symbol_to_list (sym, &file_symbols);
3415 /* Now usually comes a number that says which data type,
3416 and possibly more stuff to define the type
3417 (all of which is handled by read_type) */
3419 if (deftype == 'p' && *p == 'F')
3420 /* pF is a two-letter code that means a function parameter in Fortran.
3421 The type-number specifies the type of the return value.
3422 Translate it into a pointer-to-function type. */
3426 = lookup_pointer_type (lookup_function_type (read_type (&p)));
3431 synonym = *p == 't';
3436 type_synonym_name = obsavestring (SYMBOL_NAME (sym),
3437 strlen (SYMBOL_NAME (sym)));
3440 type = read_type (&p);
3442 if ((deftype == 'F' || deftype == 'f')
3443 && TYPE_CODE (type) != TYPE_CODE_FUNC)
3444 SYMBOL_TYPE (sym) = lookup_function_type (type);
3446 SYMBOL_TYPE (sym) = type;
3452 /* The name of a caught exception. */
3453 SYMBOL_CLASS (sym) = LOC_LABEL;
3454 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3455 SYMBOL_VALUE_ADDRESS (sym) = valu;
3456 add_symbol_to_list (sym, &local_symbols);
3460 SYMBOL_CLASS (sym) = LOC_BLOCK;
3461 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3462 add_symbol_to_list (sym, &file_symbols);
3466 SYMBOL_CLASS (sym) = LOC_BLOCK;
3467 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3468 add_symbol_to_list (sym, &global_symbols);
3472 /* For a class G (global) symbol, it appears that the
3473 value is not correct. It is necessary to search for the
3474 corresponding linker definition to find the value.
3475 These definitions appear at the end of the namelist. */
3476 i = hashname (SYMBOL_NAME (sym));
3477 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
3478 global_sym_chain[i] = sym;
3479 SYMBOL_CLASS (sym) = LOC_STATIC;
3480 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3481 add_symbol_to_list (sym, &global_symbols);
3484 /* This case is faked by a conditional above,
3485 when there is no code letter in the dbx data.
3486 Dbx data never actually contains 'l'. */
3488 SYMBOL_CLASS (sym) = LOC_LOCAL;
3489 SYMBOL_VALUE (sym) = valu;
3490 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3491 add_symbol_to_list (sym, &local_symbols);
3495 /* Normally this is a parameter, a LOC_ARG. On the i960, it
3496 can also be a LOC_LOCAL_ARG depending on symbol type. */
3497 #ifndef DBX_PARM_SYMBOL_CLASS
3498 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
3500 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
3501 SYMBOL_VALUE (sym) = valu;
3502 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3503 add_symbol_to_list (sym, &local_symbols);
3505 /* If it's gcc-compiled, if it says `short', believe it. */
3506 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
3509 #if defined(BELIEVE_PCC_PROMOTION_TYPE)
3510 /* This macro is defined on machines (e.g. sparc) where
3511 we should believe the type of a PCC 'short' argument,
3512 but shouldn't believe the address (the address is
3513 the address of the corresponding int). Note that
3514 this is only different from the BELIEVE_PCC_PROMOTION
3515 case on big-endian machines.
3517 My guess is that this correction, as opposed to changing
3518 the parameter to an 'int' (as done below, for PCC
3519 on most machines), is the right thing to do
3520 on all machines, but I don't want to risk breaking
3521 something that already works. On most PCC machines,
3522 the sparc problem doesn't come up because the calling
3523 function has to zero the top bytes (not knowing whether
3524 the called function wants an int or a short), so there
3525 is no practical difference between an int and a short
3526 (except perhaps what happens when the GDB user types
3527 "print short_arg = 0x10000;").
3530 actually produces the correct address (we don't need to fix it
3531 up). I made this code adapt so that it will offset the symbol
3532 if it was pointing at an int-aligned location and not
3533 otherwise. This way you can use the same gdb for 4.0.x and
3536 if (0 == SYMBOL_VALUE (sym) % sizeof (int))
3538 if (SYMBOL_TYPE (sym) == builtin_type_char
3539 || SYMBOL_TYPE (sym) == builtin_type_unsigned_char)
3540 SYMBOL_VALUE (sym) += 3;
3541 else if (SYMBOL_TYPE (sym) == builtin_type_short
3542 || SYMBOL_TYPE (sym) == builtin_type_unsigned_short)
3543 SYMBOL_VALUE (sym) += 2;
3547 #else /* no BELIEVE_PCC_PROMOTION_TYPE. */
3549 /* If PCC says a parameter is a short or a char,
3550 it is really an int. */
3551 if (SYMBOL_TYPE (sym) == builtin_type_char
3552 || SYMBOL_TYPE (sym) == builtin_type_short)
3553 SYMBOL_TYPE (sym) = builtin_type_int;
3554 else if (SYMBOL_TYPE (sym) == builtin_type_unsigned_char
3555 || SYMBOL_TYPE (sym) == builtin_type_unsigned_short)
3556 SYMBOL_TYPE (sym) = builtin_type_unsigned_int;
3559 #endif /* no BELIEVE_PCC_PROMOTION_TYPE. */
3562 SYMBOL_CLASS (sym) = LOC_REGPARM;
3563 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
3564 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3565 add_symbol_to_list (sym, &local_symbols);
3569 SYMBOL_CLASS (sym) = LOC_REGISTER;
3570 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
3571 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3572 add_symbol_to_list (sym, &local_symbols);
3576 /* Static symbol at top level of file */
3577 SYMBOL_CLASS (sym) = LOC_STATIC;
3578 SYMBOL_VALUE_ADDRESS (sym) = valu;
3579 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3580 add_symbol_to_list (sym, &file_symbols);
3584 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
3585 SYMBOL_VALUE (sym) = valu;
3586 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3587 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0
3588 && (TYPE_FLAGS (SYMBOL_TYPE (sym)) & TYPE_FLAG_PERM) == 0)
3589 TYPE_NAME (SYMBOL_TYPE (sym)) =
3590 obsavestring (SYMBOL_NAME (sym),
3591 strlen (SYMBOL_NAME (sym)));
3592 /* C++ vagaries: we may have a type which is derived from
3593 a base type which did not have its name defined when the
3594 derived class was output. We fill in the derived class's
3595 base part member's name here in that case. */
3596 else if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
3597 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
3598 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
3601 for (i = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; i >= 0; i--)
3602 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), i) == 0)
3603 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), i) =
3604 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), i));
3607 add_symbol_to_list (sym, &file_symbols);
3611 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
3612 SYMBOL_VALUE (sym) = valu;
3613 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
3614 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0
3615 && (TYPE_FLAGS (SYMBOL_TYPE (sym)) & TYPE_FLAG_PERM) == 0)
3616 TYPE_NAME (SYMBOL_TYPE (sym))
3618 (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_ENUM
3620 : (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
3621 ? "struct " : "union ")),
3623 add_symbol_to_list (sym, &file_symbols);
3627 register struct symbol *typedef_sym
3628 = (struct symbol *) obstack_alloc (symbol_obstack, sizeof (struct symbol));
3629 SYMBOL_NAME (typedef_sym) = SYMBOL_NAME (sym);
3630 SYMBOL_TYPE (typedef_sym) = SYMBOL_TYPE (sym);
3632 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
3633 SYMBOL_VALUE (typedef_sym) = valu;
3634 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
3635 add_symbol_to_list (typedef_sym, &file_symbols);
3640 /* Static symbol of local scope */
3641 SYMBOL_CLASS (sym) = LOC_STATIC;
3642 SYMBOL_VALUE_ADDRESS (sym) = valu;
3643 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3644 add_symbol_to_list (sym, &local_symbols);
3648 /* Reference parameter */
3649 SYMBOL_CLASS (sym) = LOC_REF_ARG;
3650 SYMBOL_VALUE (sym) = valu;
3651 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3652 add_symbol_to_list (sym, &local_symbols);
3656 /* This is used by Sun FORTRAN for "function result value".
3657 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
3658 that Pascal uses it too, but when I tried it Pascal used
3659 "x:3" (local symbol) instead. */
3660 SYMBOL_CLASS (sym) = LOC_LOCAL;
3661 SYMBOL_VALUE (sym) = valu;
3662 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
3663 add_symbol_to_list (sym, &local_symbols);
3667 error ("Invalid symbol data: unknown symbol-type code `%c' at symtab pos %d.", deftype, symnum);
3672 /* What about types defined as forward references inside of a small lexical
3674 /* Add a type to the list of undefined types to be checked through
3675 once this file has been read in. */
3677 add_undefined_type (type)
3680 if (undef_types_length == undef_types_allocated)
3682 undef_types_allocated *= 2;
3683 undef_types = (struct type **)
3684 xrealloc (undef_types,
3685 undef_types_allocated * sizeof (struct type *));
3687 undef_types[undef_types_length++] = type;
3690 /* Add here something to go through each undefined type, see if it's
3691 still undefined, and do a full lookup if so. */
3693 cleanup_undefined_types ()
3697 for (type = undef_types; type < undef_types + undef_types_length; type++)
3699 /* Reasonable test to see if it's been defined since. */
3700 if (TYPE_NFIELDS (*type) == 0)
3702 struct pending *ppt;
3704 /* Name of the type, without "struct" or "union" */
3705 char *typename = TYPE_NAME (*type);
3707 if (!strncmp (typename, "struct ", 7))
3709 if (!strncmp (typename, "union ", 6))
3712 for (ppt = file_symbols; ppt; ppt = ppt->next)
3713 for (i = 0; i < ppt->nsyms; i++)
3715 struct symbol *sym = ppt->symbol[i];
3717 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3718 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
3719 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
3721 && !strcmp (SYMBOL_NAME (sym), typename))
3722 bcopy (SYMBOL_TYPE (sym), *type, sizeof (struct type));
3726 /* It has been defined; don't mark it as a stub. */
3727 TYPE_FLAGS (*type) &= ~TYPE_FLAG_STUB;
3729 undef_types_length = 0;
3732 /* Skip rest of this symbol and return an error type.
3734 General notes on error recovery: error_type always skips to the
3735 end of the symbol (modulo cretinous dbx symbol name continuation).
3736 Thus code like this:
3738 if (*(*pp)++ != ';')
3739 return error_type (pp);
3741 is wrong because if *pp starts out pointing at '\0' (typically as the
3742 result of an earlier error), it will be incremented to point to the
3743 start of the next symbol, which might produce strange results, at least
3744 if you run off the end of the string table. Instead use
3747 return error_type (pp);
3753 foo = error_type (pp);
3757 And in case it isn't obvious, the point of all this hair is so the compiler
3758 can define new types and new syntaxes, and old versions of the
3759 debugger will be able to read the new symbol tables. */
3761 static struct type *
3765 complain (&error_type_complaint, 0);
3768 /* Skip to end of symbol. */
3769 while (**pp != '\0')
3772 /* Check for and handle cretinous dbx symbol name continuation! */
3773 if ((*pp)[-1] == '\\')
3774 *pp = next_symbol_text ();
3778 return builtin_type_error;
3781 /* Read a dbx type reference or definition;
3782 return the type that is meant.
3783 This can be just a number, in which case it references
3784 a type already defined and placed in type_vector.
3785 Or the number can be followed by an =, in which case
3786 it means to define a new type according to the text that
3794 register struct type *type = 0;
3799 /* Read type number if present. The type number may be omitted.
3800 for instance in a two-dimensional array declared with type
3801 "ar1;1;10;ar1;1;10;4". */
3802 if ((**pp >= '0' && **pp <= '9')
3805 read_type_number (pp, typenums);
3807 /* Detect random reference to type not yet defined.
3808 Allocate a type object but leave it zeroed. */
3810 return dbx_alloc_type (typenums);
3816 /* 'typenums=' not present, type is anonymous. Read and return
3817 the definition, but don't put it in the type vector. */
3818 typenums[0] = typenums[1] = -1;
3826 enum type_code code;
3828 /* Used to index through file_symbols. */
3829 struct pending *ppt;
3832 /* Name including "struct", etc. */
3835 /* Name without "struct", etc. */
3836 char *type_name_only;
3842 /* Set the type code according to the following letter. */
3846 code = TYPE_CODE_STRUCT;
3850 code = TYPE_CODE_UNION;
3854 code = TYPE_CODE_ENUM;
3858 return error_type (pp);
3861 to = type_name = (char *)
3862 obstack_alloc (symbol_obstack,
3864 ((char *) strchr (*pp, ':') - (*pp)) + 1));
3866 /* Copy the prefix. */
3868 while (*to++ = *from++)
3872 type_name_only = to;
3874 /* Copy the name. */
3876 while ((*to++ = *from++) != ':')
3880 /* Set the pointer ahead of the name which we just read. */
3884 /* The following hack is clearly wrong, because it doesn't
3885 check whether we are in a baseclass. I tried to reproduce
3886 the case that it is trying to fix, but I couldn't get
3887 g++ to put out a cross reference to a basetype. Perhaps
3888 it doesn't do it anymore. */
3889 /* Note: for C++, the cross reference may be to a base type which
3890 has not yet been seen. In this case, we skip to the comma,
3891 which will mark the end of the base class name. (The ':'
3892 at the end of the base class name will be skipped as well.)
3893 But sometimes (ie. when the cross ref is the last thing on
3894 the line) there will be no ','. */
3895 from = (char *) strchr (*pp, ',');
3901 /* Now check to see whether the type has already been declared. */
3902 /* This is necessary at least in the case where the
3903 program says something like
3905 The compiler puts out a cross-reference; we better find
3906 set the length of the structure correctly so we can
3907 set the length of the array. */
3908 for (ppt = file_symbols; ppt; ppt = ppt->next)
3909 for (i = 0; i < ppt->nsyms; i++)
3911 struct symbol *sym = ppt->symbol[i];
3913 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3914 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
3915 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
3916 && !strcmp (SYMBOL_NAME (sym), type_name_only))
3918 obstack_free (symbol_obstack, type_name);
3919 type = SYMBOL_TYPE (sym);
3924 /* Didn't find the type to which this refers, so we must
3925 be dealing with a forward reference. Allocate a type
3926 structure for it, and keep track of it so we can
3927 fill in the rest of the fields when we get the full
3929 type = dbx_alloc_type (typenums);
3930 TYPE_CODE (type) = code;
3931 TYPE_NAME (type) = type_name;
3933 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
3935 add_undefined_type (type);
3951 read_type_number (pp, xtypenums);
3952 type = *dbx_lookup_type (xtypenums);
3954 type = builtin_type_void;
3955 if (typenums[0] != -1)
3956 *dbx_lookup_type (typenums) = type;
3960 type1 = read_type (pp);
3961 type = lookup_pointer_type (type1);
3962 if (typenums[0] != -1)
3963 *dbx_lookup_type (typenums) = type;
3968 struct type *domain = read_type (pp);
3969 struct type *memtype;
3972 /* Invalid member type data format. */
3973 return error_type (pp);
3976 memtype = read_type (pp);
3977 type = dbx_alloc_type (typenums);
3978 smash_to_member_type (type, domain, memtype);
3983 if ((*pp)[0] == '#')
3985 /* We'll get the parameter types from the name. */
3986 struct type *return_type;
3989 return_type = read_type (pp);
3990 if (*(*pp)++ != ';')
3991 complain (&invalid_member_complaint, symnum);
3992 type = lookup_function_type (return_type);
3993 if (typenums[0] != -1)
3994 *dbx_lookup_type (typenums) = type;
3995 TYPE_CODE (type) = TYPE_CODE_METHOD;
3996 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
4000 struct type *domain = read_type (pp);
4001 struct type *return_type;
4004 if (*(*pp)++ != ',')
4005 error ("invalid member type data format, at symtab pos %d.",
4008 return_type = read_type (pp);
4009 args = read_args (pp, ';');
4010 type = dbx_alloc_type (typenums);
4011 smash_to_method_type (type, domain, return_type, args);
4016 type1 = read_type (pp);
4017 type = lookup_reference_type (type1);
4018 if (typenums[0] != -1)
4019 *dbx_lookup_type (typenums) = type;
4023 type1 = read_type (pp);
4024 type = lookup_function_type (type1);
4025 if (typenums[0] != -1)
4026 *dbx_lookup_type (typenums) = type;
4030 type = read_range_type (pp, typenums);
4031 if (typenums[0] != -1)
4032 *dbx_lookup_type (typenums) = type;
4036 type = dbx_alloc_type (typenums);
4037 type = read_enum_type (pp, type);
4038 *dbx_lookup_type (typenums) = type;
4042 type = dbx_alloc_type (typenums);
4043 TYPE_NAME (type) = type_synonym_name;
4044 type_synonym_name = 0;
4045 type = read_struct_type (pp, type);
4049 type = dbx_alloc_type (typenums);
4050 TYPE_NAME (type) = type_synonym_name;
4051 type_synonym_name = 0;
4052 type = read_struct_type (pp, type);
4053 TYPE_CODE (type) = TYPE_CODE_UNION;
4058 return error_type (pp);
4061 type = dbx_alloc_type (typenums);
4062 type = read_array_type (pp, type);
4066 return error_type (pp);
4073 /* If this is an overriding temporary alteration for a header file's
4074 contents, and this type number is unknown in the global definition,
4075 put this type into the global definition at this type number. */
4076 if (header_file_prev_index >= 0)
4078 register struct type **tp
4079 = explicit_lookup_type (header_file_prev_index, typenums[1]);
4088 /* This would be a good idea, but it doesn't really work. The problem
4089 is that in order to get the virtual context for a particular type,
4090 you need to know the virtual info from all of its basetypes,
4091 and you need to have processed its methods. Since GDB reads
4092 symbols on a file-by-file basis, this means processing the symbols
4093 of all the files that are needed for each baseclass, which
4094 means potentially reading in all the debugging info just to fill
4095 in information we may never need. */
4097 /* This page contains subroutines of read_type. */
4099 /* FOR_TYPE is a struct type defining a virtual function NAME with type
4100 FN_TYPE. The `virtual context' for this virtual function is the
4101 first base class of FOR_TYPE in which NAME is defined with signature
4102 matching FN_TYPE. OFFSET serves as a hash on matches here.
4104 TYPE is the current type in which we are searching. */
4106 static struct type *
4107 virtual_context (for_type, type, name, fn_type, offset)
4108 struct type *for_type, *type;
4110 struct type *fn_type;
4113 struct type *basetype = 0;
4116 if (for_type != type)
4118 /* Check the methods of TYPE. */
4119 /* Need to do a check_stub_type here, but that breaks
4120 things because we can get infinite regress. */
4121 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
4122 if (!strcmp (TYPE_FN_FIELDLIST_NAME (type, i), name))
4126 int j = TYPE_FN_FIELDLIST_LENGTH (type, i);
4127 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
4130 if (TYPE_FN_FIELD_VOFFSET (f, j) == offset-1)
4131 return TYPE_FN_FIELD_FCONTEXT (f, j);
4134 for (i = TYPE_N_BASECLASSES (type); i > 0; i--)
4136 basetype = virtual_context (for_type, TYPE_BASECLASS (type, i), name,
4138 if (basetype != for_type)
4145 /* Read the description of a structure (or union type)
4146 and return an object describing the type. */
4148 static struct type *
4149 read_struct_type (pp, type)
4151 register struct type *type;
4153 /* Total number of methods defined in this class.
4154 If the class defines two `f' methods, and one `g' method,
4155 then this will have the value 3. */
4156 int total_length = 0;
4160 struct nextfield *next;
4161 int visibility; /* 0=public, 1=protected, 2=public */
4167 struct next_fnfield *next;
4168 int visibility; /* 0=public, 1=protected, 2=public */
4169 struct fn_field fn_field;
4172 struct next_fnfieldlist
4174 struct next_fnfieldlist *next;
4175 struct fn_fieldlist fn_fieldlist;
4178 register struct nextfield *list = 0;
4179 struct nextfield *new;
4184 register struct next_fnfieldlist *mainlist = 0;
4187 if (TYPE_MAIN_VARIANT (type) == 0)
4189 TYPE_MAIN_VARIANT (type) = type;
4192 TYPE_CODE (type) = TYPE_CODE_STRUCT;
4194 /* First comes the total size in bytes. */
4196 TYPE_LENGTH (type) = read_number (pp, 0);
4198 /* C++: Now, if the class is a derived class, then the next character
4199 will be a '!', followed by the number of base classes derived from.
4200 Each element in the list contains visibility information,
4201 the offset of this base class in the derived structure,
4202 and then the base type. */
4205 int i, n_baseclasses, offset;
4206 struct type *baseclass;
4209 /* Nonzero if it is a virtual baseclass, i.e.,
4213 struct C : public B, public virtual A {};
4215 B is a baseclass of C; A is a virtual baseclass for C. This is a C++
4216 2.0 language feature. */
4221 n_baseclasses = read_number (pp, ',');
4222 TYPE_FIELD_VIRTUAL_BITS (type) =
4223 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (n_baseclasses));
4224 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), n_baseclasses);
4226 for (i = 0; i < n_baseclasses; i++)
4229 *pp = next_symbol_text ();
4240 /* Bad visibility format. */
4241 return error_type (pp);
4254 /* Bad visibility format. */
4255 return error_type (pp);
4258 SET_TYPE_FIELD_VIRTUAL (type, i);
4261 /* Offset of the portion of the object corresponding to
4262 this baseclass. Always zero in the absence of
4263 multiple inheritance. */
4264 offset = read_number (pp, ',');
4265 baseclass = read_type (pp);
4266 *pp += 1; /* skip trailing ';' */
4269 /* One's understanding improves, grasshopper... */
4272 static int error_printed = 0;
4277 "\nWarning: GDB has limited understanding of multiple inheritance...");
4279 fprintf(stderr, "\n");
4285 /* Make this baseclass visible for structure-printing purposes. */
4286 new = (struct nextfield *) alloca (sizeof (struct nextfield));
4289 list->visibility = via_public;
4290 list->field.type = baseclass;
4291 list->field.name = type_name_no_tag (baseclass);
4292 list->field.bitpos = offset;
4293 list->field.bitsize = 0; /* this should be an unpacked field! */
4296 TYPE_N_BASECLASSES (type) = n_baseclasses;
4299 /* Now come the fields, as NAME:?TYPENUM,BITPOS,BITSIZE; for each one.
4300 At the end, we see a semicolon instead of a field.
4302 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
4305 The `?' is a placeholder for one of '/2' (public visibility),
4306 '/1' (protected visibility), '/0' (private visibility), or nothing
4307 (C style symbol table, public visibility). */
4309 /* We better set p right now, in case there are no fields at all... */
4314 /* Check for and handle cretinous dbx symbol name continuation! */
4315 if (**pp == '\\') *pp = next_symbol_text ();
4317 /* Get space to record the next field's data. */
4318 new = (struct nextfield *) alloca (sizeof (struct nextfield));
4322 /* Get the field name. */
4324 if (*p == CPLUS_MARKER)
4326 /* Special GNU C++ name. */
4329 char *prefix, *name; /* FIXME: NAME never set! */
4330 struct type *context;
4341 error ("invalid abbreviation at symtab pos %d.", symnum);
4344 context = read_type (pp);
4345 if (type_name_no_tag (context) == 0)
4348 error ("type name unknown at symtab pos %d.", symnum);
4349 TYPE_NAME (context) = obsavestring (name, p - name - 1);
4351 list->field.name = obconcat (prefix, type_name_no_tag (context), "");
4354 error ("invalid abbreviation at symtab pos %d.", symnum);
4355 list->field.type = read_type (pp);
4356 (*pp)++; /* Skip the comma. */
4357 list->field.bitpos = read_number (pp, ';');
4358 /* This field is unpacked. */
4359 list->field.bitsize = 0;
4362 error ("invalid abbreviation at symtab pos %d.", symnum);
4368 while (*p != ':') p++;
4369 list->field.name = obsavestring (*pp, p - *pp);
4371 /* C++: Check to see if we have hit the methods yet. */
4377 /* This means we have a visibility for a field coming. */
4383 list->visibility = 0; /* private */
4388 list->visibility = 1; /* protected */
4393 list->visibility = 2; /* public */
4398 else /* normal dbx-style format. */
4399 list->visibility = 2; /* public */
4401 list->field.type = read_type (pp);
4404 /* Static class member. */
4405 list->field.bitpos = (long)-1;
4407 while (*p != ';') p++;
4408 list->field.bitsize = (long) savestring (*pp, p - *pp);
4413 else if (**pp != ',')
4414 /* Bad structure-type format. */
4415 return error_type (pp);
4417 (*pp)++; /* Skip the comma. */
4418 list->field.bitpos = read_number (pp, ',');
4419 list->field.bitsize = read_number (pp, ';');
4422 /* FIXME tiemann: what is the story here? What does the compiler
4423 really do? Also, patch gdb.texinfo for this case; I document
4424 it as a possible problem there. Search for "DBX-style". */
4426 /* This is wrong because this is identical to the symbols
4427 produced for GCC 0-size arrays. For example:
4432 The code which dumped core in such circumstances should be
4433 fixed not to dump core. */
4435 /* g++ -g0 can put out bitpos & bitsize zero for a static
4436 field. This does not give us any way of getting its
4437 class, so we can't know its name. But we can just
4438 ignore the field so we don't dump core and other nasty
4440 if (list->field.bitpos == 0
4441 && list->field.bitsize == 0)
4443 complain (&dbx_class_complaint, 0);
4444 /* Ignore this field. */
4450 /* Detect an unpacked field and mark it as such.
4451 dbx gives a bit size for all fields.
4452 Note that forward refs cannot be packed,
4453 and treat enums as if they had the width of ints. */
4454 if (TYPE_CODE (list->field.type) != TYPE_CODE_INT
4455 && TYPE_CODE (list->field.type) != TYPE_CODE_ENUM)
4456 list->field.bitsize = 0;
4457 if ((list->field.bitsize == 8 * TYPE_LENGTH (list->field.type)
4458 || (TYPE_CODE (list->field.type) == TYPE_CODE_ENUM
4459 && (list->field.bitsize
4460 == 8 * TYPE_LENGTH (builtin_type_int))
4464 list->field.bitpos % 8 == 0)
4465 list->field.bitsize = 0;
4471 /* chill the list of fields: the last entry (at the head)
4472 is a partially constructed entry which we now scrub. */
4475 /* Now create the vector of fields, and record how big it is.
4476 We need this info to record proper virtual function table information
4477 for this class's virtual functions. */
4479 TYPE_NFIELDS (type) = nfields;
4480 TYPE_FIELDS (type) = (struct field *) obstack_alloc (symbol_obstack,
4481 sizeof (struct field) * nfields);
4483 TYPE_FIELD_PRIVATE_BITS (type) =
4484 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (nfields));
4485 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
4487 TYPE_FIELD_PROTECTED_BITS (type) =
4488 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (nfields));
4489 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
4491 /* Copy the saved-up fields into the field vector. */
4493 for (n = nfields; list; list = list->next)
4496 TYPE_FIELD (type, n) = list->field;
4497 if (list->visibility == 0)
4498 SET_TYPE_FIELD_PRIVATE (type, n);
4499 else if (list->visibility == 1)
4500 SET_TYPE_FIELD_PROTECTED (type, n);
4503 /* Now come the method fields, as NAME::methods
4504 where each method is of the form TYPENUM,ARGS,...:PHYSNAME;
4505 At the end, we see a semicolon instead of a field.
4507 For the case of overloaded operators, the format is
4508 OPERATOR::*.methods, where OPERATOR is the string "operator",
4509 `*' holds the place for an operator name (such as `+=')
4510 and `.' marks the end of the operator name. */
4513 /* Now, read in the methods. To simplify matters, we
4514 "unread" the name that has been read, so that we can
4515 start from the top. */
4517 /* For each list of method lists... */
4521 struct next_fnfield *sublist = 0;
4523 struct next_fnfieldlist *new_mainlist =
4524 (struct next_fnfieldlist *)alloca (sizeof (struct next_fnfieldlist));
4529 /* read in the name. */
4530 while (*p != ':') p++;
4531 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && (*pp)[2] == CPLUS_MARKER)
4533 /* This lets the user type "break operator+".
4534 We could just put in "+" as the name, but that wouldn't
4536 static char opname[32] = "operator";
4537 char *o = opname + 8;
4539 /* Skip past '::'. */
4543 main_fn_name = savestring (opname, o - opname);
4550 main_fn_name = savestring (*pp, p - *pp);
4551 /* Skip past '::'. */
4554 new_mainlist->fn_fieldlist.name = main_fn_name;
4558 struct next_fnfield *new_sublist =
4559 (struct next_fnfield *)alloca (sizeof (struct next_fnfield));
4561 /* Check for and handle cretinous dbx symbol name continuation! */
4562 if (**pp == '\\') *pp = next_symbol_text ();
4564 new_sublist->fn_field.type = read_type (pp);
4566 /* Invalid symtab info for method. */
4567 return error_type (pp);
4571 while (*p != ';') p++;
4572 /* If this is just a stub, then we don't have the
4574 new_sublist->fn_field.physname = savestring (*pp, p - *pp);
4576 new_sublist->visibility = *(*pp)++ - '0';
4577 if (**pp == '\\') *pp = next_symbol_text ();
4578 /* FIXME: tiemann needs to add const/volatile info
4579 to the methods. For now, just skip the char.
4580 In future, here's what we need to implement:
4582 A for normal functions.
4583 B for `const' member functions.
4584 C for `volatile' member functions.
4585 D for `const volatile' member functions. */
4586 if (**pp == 'A' || **pp == 'B' || **pp == 'C' || **pp == 'D')
4589 complain(&const_vol_complaint, **pp);
4594 /* virtual member function, followed by index. */
4595 /* The sign bit is set to distinguish pointers-to-methods
4596 from virtual function indicies. Since the array is
4597 in words, the quantity must be shifted left by 1
4598 on 16 bit machine, and by 2 on 32 bit machine, forcing
4599 the sign bit out, and usable as a valid index into
4600 the array. Remove the sign bit here. */
4601 new_sublist->fn_field.voffset =
4602 (0x7fffffff & read_number (pp, ';')) + 1;
4604 /* Figure out from whence this virtual function came.
4605 It may belong to virtual function table of
4606 one of its baseclasses. */
4607 new_sublist->fn_field.fcontext = read_type (pp);
4615 /* static member function. */
4616 new_sublist->fn_field.voffset = VOFFSET_STATIC;
4620 /* normal member function. */
4621 new_sublist->fn_field.voffset = 0;
4625 new_sublist->next = sublist;
4626 sublist = new_sublist;
4629 while (**pp != ';' && *pp != '\0');
4633 new_mainlist->fn_fieldlist.fn_fields =
4634 (struct fn_field *) obstack_alloc (symbol_obstack,
4635 sizeof (struct fn_field) * length);
4636 TYPE_FN_PRIVATE_BITS (new_mainlist->fn_fieldlist) =
4637 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (length));
4638 B_CLRALL (TYPE_FN_PRIVATE_BITS (new_mainlist->fn_fieldlist), length);
4640 TYPE_FN_PROTECTED_BITS (new_mainlist->fn_fieldlist) =
4641 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (length));
4642 B_CLRALL (TYPE_FN_PROTECTED_BITS (new_mainlist->fn_fieldlist), length);
4644 for (i = length; (i--, sublist); sublist = sublist->next)
4646 new_mainlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
4647 if (sublist->visibility == 0)
4648 B_SET (new_mainlist->fn_fieldlist.private_fn_field_bits, i);
4649 else if (sublist->visibility == 1)
4650 B_SET (new_mainlist->fn_fieldlist.protected_fn_field_bits, i);
4653 new_mainlist->fn_fieldlist.length = length;
4654 new_mainlist->next = mainlist;
4655 mainlist = new_mainlist;
4657 total_length += length;
4659 while (**pp != ';');
4664 TYPE_FN_FIELDLISTS (type) =
4665 (struct fn_fieldlist *) obstack_alloc (symbol_obstack,
4666 sizeof (struct fn_fieldlist) * nfn_fields);
4668 TYPE_NFN_FIELDS (type) = nfn_fields;
4669 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
4673 for (i = 0; i < TYPE_N_BASECLASSES (type); ++i)
4674 TYPE_NFN_FIELDS_TOTAL (type) +=
4675 TYPE_NFN_FIELDS_TOTAL (TYPE_BASECLASS (type, i));
4678 for (n = nfn_fields; mainlist; mainlist = mainlist->next)
4679 TYPE_FN_FIELDLISTS (type)[--n] = mainlist->fn_fieldlist;
4688 |= TYPE_FLAG_HAS_CONSTRUCTOR | TYPE_FLAG_HAS_DESTRUCTOR;
4691 else if (**pp == '+')
4693 TYPE_FLAGS (type) |= TYPE_FLAG_HAS_CONSTRUCTOR;
4696 else if (**pp == '-')
4698 TYPE_FLAGS (type) |= TYPE_FLAG_HAS_DESTRUCTOR;
4702 /* Read either a '%' or the final ';'. */
4703 if (*(*pp)++ == '%')
4705 /* Now we must record the virtual function table pointer's
4706 field information. */
4713 while (*p != '\0' && *p != ';')
4716 /* Premature end of symbol. */
4717 return error_type (pp);
4719 TYPE_VPTR_BASETYPE (type) = t;
4722 if (TYPE_FIELD_NAME (t, TYPE_N_BASECLASSES (t)) == 0)
4723 TYPE_VPTR_FIELDNO (type) = i = TYPE_N_BASECLASSES (t);
4724 else for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); --i)
4725 if (! strncmp (TYPE_FIELD_NAME (t, i), vptr_name,
4726 sizeof (vptr_name) -1))
4728 TYPE_VPTR_FIELDNO (type) = i;
4732 /* Virtual function table field not found. */
4733 return error_type (pp);
4736 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
4741 TYPE_VPTR_BASETYPE (type) = 0;
4742 TYPE_VPTR_FIELDNO (type) = -1;
4747 TYPE_VPTR_BASETYPE (type) = 0;
4748 TYPE_VPTR_FIELDNO (type) = -1;
4754 /* Read a definition of an array type,
4755 and create and return a suitable type object.
4756 Also creates a range type which represents the bounds of that
4758 static struct type *
4759 read_array_type (pp, type)
4761 register struct type *type;
4763 struct type *index_type, *element_type, *range_type;
4767 /* Format of an array type:
4768 "ar<index type>;lower;upper;<array_contents_type>". Put code in
4771 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
4772 for these, produce a type like float[][]. */
4774 index_type = read_type (pp);
4776 /* Improper format of array type decl. */
4777 return error_type (pp);
4780 if (!(**pp >= '0' && **pp <= '9'))
4785 lower = read_number (pp, ';');
4787 if (!(**pp >= '0' && **pp <= '9'))
4792 upper = read_number (pp, ';');
4794 element_type = read_type (pp);
4803 /* Create range type. */
4804 range_type = (struct type *) obstack_alloc (symbol_obstack,
4805 sizeof (struct type));
4806 TYPE_CODE (range_type) = TYPE_CODE_RANGE;
4807 TYPE_TARGET_TYPE (range_type) = index_type;
4809 /* This should never be needed. */
4810 TYPE_LENGTH (range_type) = sizeof (int);
4812 TYPE_NFIELDS (range_type) = 2;
4813 TYPE_FIELDS (range_type) =
4814 (struct field *) obstack_alloc (symbol_obstack,
4815 2 * sizeof (struct field));
4816 TYPE_FIELD_BITPOS (range_type, 0) = lower;
4817 TYPE_FIELD_BITPOS (range_type, 1) = upper;
4820 TYPE_CODE (type) = TYPE_CODE_ARRAY;
4821 TYPE_TARGET_TYPE (type) = element_type;
4822 TYPE_LENGTH (type) = (upper - lower + 1) * TYPE_LENGTH (element_type);
4823 TYPE_NFIELDS (type) = 1;
4824 TYPE_FIELDS (type) =
4825 (struct field *) obstack_alloc (symbol_obstack,
4826 sizeof (struct field));
4827 TYPE_FIELD_TYPE (type, 0) = range_type;
4833 /* Read a definition of an enumeration type,
4834 and create and return a suitable type object.
4835 Also defines the symbols that represent the values of the type. */
4837 static struct type *
4838 read_enum_type (pp, type)
4840 register struct type *type;
4845 register struct symbol *sym;
4847 struct pending **symlist;
4848 struct pending *osyms, *syms;
4851 if (within_function)
4852 symlist = &local_symbols;
4854 symlist = &file_symbols;
4856 o_nsyms = osyms ? osyms->nsyms : 0;
4858 /* Read the value-names and their values.
4859 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
4860 A semicolon or comman instead of a NAME means the end. */
4861 while (**pp && **pp != ';' && **pp != ',')
4863 /* Check for and handle cretinous dbx symbol name continuation! */
4864 if (**pp == '\\') *pp = next_symbol_text ();
4867 while (*p != ':') p++;
4868 name = obsavestring (*pp, p - *pp);
4870 n = read_number (pp, ',');
4872 sym = (struct symbol *) obstack_alloc (symbol_obstack, sizeof (struct symbol));
4873 bzero (sym, sizeof (struct symbol));
4874 SYMBOL_NAME (sym) = name;
4875 SYMBOL_CLASS (sym) = LOC_CONST;
4876 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
4877 SYMBOL_VALUE (sym) = n;
4878 add_symbol_to_list (sym, symlist);
4883 (*pp)++; /* Skip the semicolon. */
4885 /* Now fill in the fields of the type-structure. */
4887 TYPE_LENGTH (type) = sizeof (int);
4888 TYPE_CODE (type) = TYPE_CODE_ENUM;
4889 TYPE_NFIELDS (type) = nsyms;
4890 TYPE_FIELDS (type) = (struct field *) obstack_alloc (symbol_obstack, sizeof (struct field) * nsyms);
4892 /* Find the symbols for the values and put them into the type.
4893 The symbols can be found in the symlist that we put them on
4894 to cause them to be defined. osyms contains the old value
4895 of that symlist; everything up to there was defined by us. */
4896 /* Note that we preserve the order of the enum constants, so
4897 that in something like "enum {FOO, LAST_THING=FOO}" we print
4898 FOO, not LAST_THING. */
4900 for (syms = *symlist, n = 0; syms; syms = syms->next)
4905 for (; j < syms->nsyms; j++,n++)
4907 struct symbol *sym = syms->symbol[j];
4908 SYMBOL_TYPE (sym) = type;
4909 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (sym);
4910 TYPE_FIELD_VALUE (type, n) = 0;
4911 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (sym);
4912 TYPE_FIELD_BITSIZE (type, n) = 0;
4921 /* Read a number from the string pointed to by *PP.
4922 The value of *PP is advanced over the number.
4923 If END is nonzero, the character that ends the
4924 number must match END, or an error happens;
4925 and that character is skipped if it does match.
4926 If END is zero, *PP is left pointing to that character.
4928 If the number fits in a long, set *VALUE and set *BITS to 0.
4929 If not, set *BITS to be the number of bits in the number.
4931 If encounter garbage, set *BITS to -1. */
4934 read_huge_number (pp, end, valu, bits)
4954 /* Leading zero means octal. GCC uses this to output values larger
4955 than an int (because that would be hard in decimal). */
4962 while ((c = *p++) >= '0' && c <= ('0' + radix))
4964 if (n <= LONG_MAX / radix)
4967 n += c - '0'; /* FIXME this overflows anyway */
4972 /* This depends on large values being output in octal, which is
4979 /* Ignore leading zeroes. */
4983 else if (c == '2' || c == '3')
5009 /* Large decimal constants are an error (because it is hard to
5010 count how many bits are in them). */
5016 /* -0x7f is the same as 0x80. So deal with it by adding one to
5017 the number of bits. */
5032 #define MAX_OF_TYPE(t) ((1 << (sizeof (t)*8 - 1)) - 1)
5033 #define MIN_OF_TYPE(t) (-(1 << (sizeof (t)*8 - 1)))
5035 static struct type *
5036 read_range_type (pp, typenums)
5044 struct type *result_type;
5046 /* First comes a type we are a subrange of.
5047 In C it is usually 0, 1 or the type being defined. */
5048 read_type_number (pp, rangenums);
5049 self_subrange = (rangenums[0] == typenums[0] &&
5050 rangenums[1] == typenums[1]);
5052 /* A semicolon should now follow; skip it. */
5056 /* The remaining two operands are usually lower and upper bounds
5057 of the range. But in some special cases they mean something else. */
5058 read_huge_number (pp, ';', &n2, &n2bits);
5059 read_huge_number (pp, ';', &n3, &n3bits);
5061 if (n2bits == -1 || n3bits == -1)
5062 return error_type (pp);
5064 /* If limits are huge, must be large integral type. */
5065 if (n2bits != 0 || n3bits != 0)
5067 char got_signed = 0;
5068 char got_unsigned = 0;
5069 /* Number of bits in the type. */
5072 /* Range from 0 to <large number> is an unsigned large integral type. */
5073 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
5078 /* Range from <large number> to <large number>-1 is a large signed
5080 else if (n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
5086 if (got_signed || got_unsigned)
5088 result_type = (struct type *) obstack_alloc (symbol_obstack,
5089 sizeof (struct type));
5090 bzero (result_type, sizeof (struct type));
5091 TYPE_LENGTH (result_type) = nbits / TARGET_CHAR_BIT;
5092 TYPE_MAIN_VARIANT (result_type) = result_type;
5093 TYPE_CODE (result_type) = TYPE_CODE_INT;
5095 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
5099 return error_type (pp);
5102 /* A type defined as a subrange of itself, with bounds both 0, is void. */
5103 if (self_subrange && n2 == 0 && n3 == 0)
5104 return builtin_type_void;
5106 /* If n3 is zero and n2 is not, we want a floating type,
5107 and n2 is the width in bytes.
5109 Fortran programs appear to use this for complex types also,
5110 and they give no way to distinguish between double and single-complex!
5111 We don't have complex types, so we would lose on all fortran files!
5112 So return type `double' for all of those. It won't work right
5113 for the complex values, but at least it makes the file loadable. */
5115 if (n3 == 0 && n2 > 0)
5117 if (n2 == sizeof (float))
5118 return builtin_type_float;
5119 return builtin_type_double;
5122 /* If the upper bound is -1, it must really be an unsigned int. */
5124 else if (n2 == 0 && n3 == -1)
5126 if (sizeof (int) == sizeof (long))
5127 return builtin_type_unsigned_int;
5129 return builtin_type_unsigned_long;
5132 /* Special case: char is defined (Who knows why) as a subrange of
5133 itself with range 0-127. */
5134 else if (self_subrange && n2 == 0 && n3 == 127)
5135 return builtin_type_char;
5137 /* Assumptions made here: Subrange of self is equivalent to subrange
5140 && (self_subrange ||
5141 *dbx_lookup_type (rangenums) == builtin_type_int))
5143 /* an unsigned type */
5145 if (n3 == - sizeof (long long))
5146 return builtin_type_unsigned_long_long;
5148 if (n3 == (unsigned int)~0L)
5149 return builtin_type_unsigned_int;
5150 if (n3 == (unsigned long)~0L)
5151 return builtin_type_unsigned_long;
5152 if (n3 == (unsigned short)~0L)
5153 return builtin_type_unsigned_short;
5154 if (n3 == (unsigned char)~0L)
5155 return builtin_type_unsigned_char;
5158 else if (n3 == 0 && n2 == -sizeof (long long))
5159 return builtin_type_long_long;
5161 else if (n2 == -n3 -1)
5164 if (n3 == (1 << (8 * sizeof (int) - 1)) - 1)
5165 return builtin_type_int;
5166 if (n3 == (1 << (8 * sizeof (long) - 1)) - 1)
5167 return builtin_type_long;
5168 if (n3 == (1 << (8 * sizeof (short) - 1)) - 1)
5169 return builtin_type_short;
5170 if (n3 == (1 << (8 * sizeof (char) - 1)) - 1)
5171 return builtin_type_char;
5174 /* We have a real range type on our hands. Allocate space and
5175 return a real pointer. */
5177 /* At this point I don't have the faintest idea how to deal with
5178 a self_subrange type; I'm going to assume that this is used
5179 as an idiom, and that all of them are special cases. So . . . */
5181 return error_type (pp);
5183 result_type = (struct type *) obstack_alloc (symbol_obstack,
5184 sizeof (struct type));
5185 bzero (result_type, sizeof (struct type));
5187 TYPE_TARGET_TYPE (result_type) = (self_subrange ?
5189 *dbx_lookup_type(rangenums));
5191 /* We have to figure out how many bytes it takes to hold this
5192 range type. I'm going to assume that anything that is pushing
5193 the bounds of a long was taken care of above. */
5194 if (n2 >= MIN_OF_TYPE(char) && n3 <= MAX_OF_TYPE(char))
5195 TYPE_LENGTH (result_type) = 1;
5196 else if (n2 >= MIN_OF_TYPE(short) && n3 <= MAX_OF_TYPE(short))
5197 TYPE_LENGTH (result_type) = sizeof (short);
5198 else if (n2 >= MIN_OF_TYPE(int) && n3 <= MAX_OF_TYPE(int))
5199 TYPE_LENGTH (result_type) = sizeof (int);
5200 else if (n2 >= MIN_OF_TYPE(long) && n3 <= MAX_OF_TYPE(long))
5201 TYPE_LENGTH (result_type) = sizeof (long);
5203 /* Ranged type doesn't fit within known sizes. */
5204 return error_type (pp);
5206 TYPE_LENGTH (result_type) = TYPE_LENGTH (TYPE_TARGET_TYPE (result_type));
5207 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
5208 TYPE_NFIELDS (result_type) = 2;
5209 TYPE_FIELDS (result_type) =
5210 (struct field *) obstack_alloc (symbol_obstack,
5211 2 * sizeof (struct field));
5212 bzero (TYPE_FIELDS (result_type), 2 * sizeof (struct field));
5213 TYPE_FIELD_BITPOS (result_type, 0) = n2;
5214 TYPE_FIELD_BITPOS (result_type, 1) = n3;
5219 /* Read a number from the string pointed to by *PP.
5220 The value of *PP is advanced over the number.
5221 If END is nonzero, the character that ends the
5222 number must match END, or an error happens;
5223 and that character is skipped if it does match.
5224 If END is zero, *PP is left pointing to that character. */
5227 read_number (pp, end)
5231 register char *p = *pp;
5232 register long n = 0;
5236 /* Handle an optional leading minus sign. */
5244 /* Read the digits, as far as they go. */
5246 while ((c = *p++) >= '0' && c <= '9')
5254 error ("Invalid symbol data: invalid character \\%03o at symbol pos %d.", c, symnum);
5263 /* Read in an argument list. This is a list of types, separated by commas
5264 and terminated with END. Return the list of types read in, or (struct type
5265 **)-1 if there is an error. */
5266 static struct type **
5271 struct type *types[1024], **rval; /* allow for fns of 1023 parameters */
5277 /* Invalid argument list: no ','. */
5278 return (struct type **)-1;
5281 /* Check for and handle cretinous dbx symbol name continuation! */
5283 *pp = next_symbol_text ();
5285 types[n++] = read_type (pp);
5287 *pp += 1; /* get past `end' (the ':' character) */
5291 rval = (struct type **) xmalloc (2 * sizeof (struct type *));
5293 else if (TYPE_CODE (types[n-1]) != TYPE_CODE_VOID)
5295 rval = (struct type **) xmalloc ((n + 1) * sizeof (struct type *));
5296 bzero (rval + n, sizeof (struct type *));
5300 rval = (struct type **) xmalloc (n * sizeof (struct type *));
5302 bcopy (types, rval, n * sizeof (struct type *));
5306 /* Copy a pending list, used to record the contents of a common
5307 block for later fixup. */
5308 static struct pending *
5309 copy_pending (beg, begi, end)
5310 struct pending *beg, *end;
5313 struct pending *new = 0;
5314 struct pending *next;
5316 for (next = beg; next != 0 && (next != end || begi < end->nsyms);
5317 next = next->next, begi = 0)
5320 for (j = begi; j < next->nsyms; j++)
5321 add_symbol_to_list (next->symbol[j], &new);
5326 /* Add a common block's start address to the offset of each symbol
5327 declared to be in it (by being between a BCOMM/ECOMM pair that uses
5328 the common block name). */
5331 fix_common_block (sym, valu)
5335 struct pending *next = (struct pending *) SYMBOL_NAMESPACE (sym);
5336 for ( ; next; next = next->next)
5339 for (j = next->nsyms - 1; j >= 0; j--)
5340 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
5344 /* Register our willingness to decode symbols for SunOS and a.out and
5345 b.out files handled by BFD... */
5346 static struct sym_fns sunos_sym_fns = {"sunOs", 6,
5347 dbx_new_init, dbx_symfile_init,
5348 dbx_symfile_read, dbx_symfile_discard};
5350 static struct sym_fns aout_sym_fns = {"a.out", 5,
5351 dbx_new_init, dbx_symfile_init,
5352 dbx_symfile_read, dbx_symfile_discard};
5354 static struct sym_fns bout_sym_fns = {"b.out", 5,
5355 dbx_new_init, dbx_symfile_init,
5356 dbx_symfile_read, dbx_symfile_discard};
5359 _initialize_dbxread ()
5361 add_symtab_fns(&sunos_sym_fns);
5362 add_symtab_fns(&aout_sym_fns);
5363 add_symtab_fns(&bout_sym_fns);
5365 undef_types_allocated = 20;
5366 undef_types_length = 0;
5367 undef_types = (struct type **) xmalloc (undef_types_allocated *
5368 sizeof (struct type *));