1 /* Support routines for decoding "stabs" debugging information format.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* Support routines for reading and decoding debugging information in
22 the "stabs" format. This format is used with many systems that use
23 the a.out object file format, as well as some systems that use
24 COFF or ELF where the stabs data is placed in a special section.
25 Avoid placing any object file format specific code in this file. */
34 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
36 #include "complaints.h"
41 /* Ask stabsread.h to define the vars it normally declares `extern'. */
43 #include "stabsread.h" /* Our own declarations */
46 /* The routines that read and process a complete stabs for a C struct or
47 C++ class pass lists of data member fields and lists of member function
48 fields in an instance of a field_info structure, as defined below.
49 This is part of some reorganization of low level C++ support and is
50 expected to eventually go away... (FIXME) */
56 struct nextfield *next;
60 struct next_fnfieldlist
62 struct next_fnfieldlist *next;
63 struct fn_fieldlist fn_fieldlist;
68 dbx_alloc_type PARAMS ((int [2], struct objfile *));
70 static long read_huge_number PARAMS ((char **, int, int *));
72 static struct type *error_type PARAMS ((char **));
75 patch_block_stabs PARAMS ((struct pending *, struct pending_stabs *,
79 fix_common_block PARAMS ((struct symbol *, int));
82 read_type_number PARAMS ((char **, int *));
85 read_range_type PARAMS ((char **, int [2], struct objfile *));
88 read_sun_builtin_type PARAMS ((char **, int [2], struct objfile *));
91 read_sun_floating_type PARAMS ((char **, int [2], struct objfile *));
94 read_enum_type PARAMS ((char **, struct type *, struct objfile *));
97 rs6000_builtin_type PARAMS ((int));
100 read_member_functions PARAMS ((struct field_info *, char **, struct type *,
104 read_struct_fields PARAMS ((struct field_info *, char **, struct type *,
108 read_baseclasses PARAMS ((struct field_info *, char **, struct type *,
112 read_tilde_fields PARAMS ((struct field_info *, char **, struct type *,
116 attach_fn_fields_to_type PARAMS ((struct field_info *, struct type *));
119 attach_fields_to_type PARAMS ((struct field_info *, struct type *,
123 read_struct_type PARAMS ((char **, struct type *, struct objfile *));
126 read_array_type PARAMS ((char **, struct type *, struct objfile *));
128 static struct type **
129 read_args PARAMS ((char **, int, struct objfile *));
132 read_cpp_abbrev PARAMS ((struct field_info *, char **, struct type *,
135 static const char vptr_name[] = { '_','v','p','t','r',CPLUS_MARKER,'\0' };
136 static const char vb_name[] = { '_','v','b',CPLUS_MARKER,'\0' };
138 /* Define this as 1 if a pcc declaration of a char or short argument
139 gives the correct address. Otherwise assume pcc gives the
140 address of the corresponding int, which is not the same on a
141 big-endian machine. */
143 #ifndef BELIEVE_PCC_PROMOTION
144 #define BELIEVE_PCC_PROMOTION 0
148 /* I think this can go away, all current uses have been removed.
149 GCC emits a few crazy types which can only be distinguished by the
150 name (complex, long long on some machines), but I'd say fix GCC. */
152 /* During some calls to read_type (and thus to read_range_type), this
153 contains the name of the type being defined. Range types are only
154 used in C as basic types. We use the name to distinguish the otherwise
155 identical basic types "int" and "long" and their unsigned versions.
156 FIXME, this should disappear with better type management. */
158 static char *long_kludge_name;
162 struct complaint dbx_class_complaint =
164 "encountered DBX-style class variable debugging information.\n\
165 You seem to have compiled your program with \
166 \"g++ -g0\" instead of \"g++ -g\".\n\
167 Therefore GDB will not know about your class variables", 0, 0
171 struct complaint invalid_cpp_abbrev_complaint =
172 {"invalid C++ abbreviation `%s'", 0, 0};
174 struct complaint invalid_cpp_type_complaint =
175 {"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
177 struct complaint member_fn_complaint =
178 {"member function type missing, got '%c'", 0, 0};
180 struct complaint const_vol_complaint =
181 {"const/volatile indicator missing, got '%c'", 0, 0};
183 struct complaint error_type_complaint =
184 {"debug info mismatch between compiler and debugger", 0, 0};
186 struct complaint invalid_member_complaint =
187 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
189 struct complaint range_type_base_complaint =
190 {"base type %d of range type is not defined", 0, 0};
192 struct complaint reg_value_complaint =
193 {"register number too large in symbol %s", 0, 0};
195 struct complaint vtbl_notfound_complaint =
196 {"virtual function table pointer not found when defining class `%s'", 0, 0};
198 struct complaint unrecognized_cplus_name_complaint =
199 {"Unknown C++ symbol name `%s'", 0, 0};
201 struct complaint rs6000_builtin_complaint =
202 {"Unknown builtin type %d", 0, 0};
204 struct complaint stabs_general_complaint =
207 /* Make a list of forward references which haven't been defined. */
209 static struct type **undef_types;
210 static int undef_types_allocated;
211 static int undef_types_length;
213 /* Check for and handle cretinous stabs symbol name continuation! */
214 #define STABS_CONTINUE(pp) \
216 if (**(pp) == '\\') *(pp) = next_symbol_text (); \
220 /* This is used by other symbol readers besides stabs, so for cleanliness
221 should probably be in buildsym.c. */
227 register char *p = name;
228 register int total = p[0];
243 /* Ensure result is positive. */
246 total += (1000 << 6);
248 return (total % HASHSIZE);
252 /* Look up a dbx type-number pair. Return the address of the slot
253 where the type for that number-pair is stored.
254 The number-pair is in TYPENUMS.
256 This can be used for finding the type associated with that pair
257 or for associating a new type with the pair. */
260 dbx_lookup_type (typenums)
263 register int filenum = typenums[0];
264 register int index = typenums[1];
266 register int real_filenum;
267 register struct header_file *f;
270 if (filenum == -1) /* -1,-1 is for temporary types. */
273 if (filenum < 0 || filenum >= n_this_object_header_files)
275 static struct complaint msg = {"\
276 Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
278 complain (&msg, filenum, index, symnum);
286 /* Caller wants address of address of type. We think
287 that negative (rs6k builtin) types will never appear as
288 "lvalues", (nor should they), so we stuff the real type
289 pointer into a temp, and return its address. If referenced,
290 this will do the right thing. */
291 static struct type *temp_type;
293 temp_type = rs6000_builtin_type(index);
297 /* Type is defined outside of header files.
298 Find it in this object file's type vector. */
299 if (index >= type_vector_length)
301 old_len = type_vector_length;
304 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
305 type_vector = (struct type **)
306 malloc (type_vector_length * sizeof (struct type *));
308 while (index >= type_vector_length)
310 type_vector_length *= 2;
312 type_vector = (struct type **)
313 xrealloc ((char *) type_vector,
314 (type_vector_length * sizeof (struct type *)));
315 memset (&type_vector[old_len], 0,
316 (type_vector_length - old_len) * sizeof (struct type *));
318 return (&type_vector[index]);
322 real_filenum = this_object_header_files[filenum];
324 if (real_filenum >= n_header_files)
326 struct type *temp_type;
327 struct type **temp_type_p;
329 warning ("GDB internal error: bad real_filenum");
332 temp_type = init_type (TYPE_CODE_ERROR, 0, 0, NULL, NULL);
333 temp_type_p = (struct type **) xmalloc (sizeof (struct type *));
334 *temp_type_p = temp_type;
338 f = &header_files[real_filenum];
340 f_orig_length = f->length;
341 if (index >= f_orig_length)
343 while (index >= f->length)
347 f->vector = (struct type **)
348 xrealloc ((char *) f->vector, f->length * sizeof (struct type *));
349 memset (&f->vector[f_orig_length], 0,
350 (f->length - f_orig_length) * sizeof (struct type *));
352 return (&f->vector[index]);
356 /* Make sure there is a type allocated for type numbers TYPENUMS
357 and return the type object.
358 This can create an empty (zeroed) type object.
359 TYPENUMS may be (-1, -1) to return a new type object that is not
360 put into the type vector, and so may not be referred to by number. */
363 dbx_alloc_type (typenums, objfile)
365 struct objfile *objfile;
367 register struct type **type_addr;
369 if (typenums[0] == -1)
371 return (alloc_type (objfile));
374 type_addr = dbx_lookup_type (typenums);
376 /* If we are referring to a type not known at all yet,
377 allocate an empty type for it.
378 We will fill it in later if we find out how. */
381 *type_addr = alloc_type (objfile);
387 /* for all the stabs in a given stab vector, build appropriate types
388 and fix their symbols in given symbol vector. */
391 patch_block_stabs (symbols, stabs, objfile)
392 struct pending *symbols;
393 struct pending_stabs *stabs;
394 struct objfile *objfile;
404 /* for all the stab entries, find their corresponding symbols and
405 patch their types! */
407 for (ii = 0; ii < stabs->count; ++ii)
409 name = stabs->stab[ii];
410 pp = (char*) strchr (name, ':');
411 sym = find_symbol_in_list (symbols, name, pp-name);
414 /* On xcoff, if a global is defined and never referenced,
415 ld will remove it from the executable. There is then
416 a N_GSYM stab for it, but no regular (C_EXT) symbol. */
417 sym = (struct symbol *)
418 obstack_alloc (&objfile->symbol_obstack,
419 sizeof (struct symbol));
421 memset (sym, 0, sizeof (struct symbol));
422 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
423 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
425 obstack_copy0 (&objfile->symbol_obstack, name, pp - name);
427 if (*(pp-1) == 'F' || *(pp-1) == 'f')
429 /* I don't think the linker does this with functions,
430 so as far as I know this is never executed.
431 But it doesn't hurt to check. */
433 lookup_function_type (read_type (&pp, objfile));
437 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
439 add_symbol_to_list (sym, &global_symbols);
444 if (*(pp-1) == 'F' || *(pp-1) == 'f')
447 lookup_function_type (read_type (&pp, objfile));
451 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
459 /* Read a number by which a type is referred to in dbx data,
460 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
461 Just a single number N is equivalent to (0,N).
462 Return the two numbers by storing them in the vector TYPENUMS.
463 TYPENUMS will then be used as an argument to dbx_lookup_type.
465 Returns 0 for success, -1 for error. */
468 read_type_number (pp, typenums)
470 register int *typenums;
476 typenums[0] = read_huge_number (pp, ',', &nbits);
477 if (nbits != 0) return -1;
478 typenums[1] = read_huge_number (pp, ')', &nbits);
479 if (nbits != 0) return -1;
484 typenums[1] = read_huge_number (pp, 0, &nbits);
485 if (nbits != 0) return -1;
491 /* To handle GNU C++ typename abbreviation, we need to be able to
492 fill in a type's name as soon as space for that type is allocated.
493 `type_synonym_name' is the name of the type being allocated.
494 It is cleared as soon as it is used (lest all allocated types
497 static char *type_synonym_name;
501 define_symbol (valu, string, desc, type, objfile)
506 struct objfile *objfile;
508 register struct symbol *sym;
509 char *p = (char *) strchr (string, ':');
514 /* We would like to eliminate nameless symbols, but keep their types.
515 E.g. stab entry ":t10=*2" should produce a type 10, which is a pointer
516 to type 2, but, should not create a symbol to address that type. Since
517 the symbol will be nameless, there is no way any user can refer to it. */
521 /* Ignore syms with empty names. */
525 /* Ignore old-style symbols from cc -go */
529 /* If a nameless stab entry, all we need is the type, not the symbol.
530 e.g. ":t10=*2" or a nameless enum like " :T16=ered:0,green:1,blue:2,;" */
531 nameless = (p == string || ((string[0] == ' ') && (string[1] == ':')));
533 sym = (struct symbol *)
534 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
535 memset (sym, 0, sizeof (struct symbol));
537 if (processing_gcc_compilation)
539 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
540 number of bytes occupied by a type or object, which we ignore. */
541 SYMBOL_LINE(sym) = desc;
545 SYMBOL_LINE(sym) = 0; /* unknown */
548 if (string[0] == CPLUS_MARKER)
550 /* Special GNU C++ names. */
554 SYMBOL_NAME (sym) = obsavestring ("this", strlen ("this"),
555 &objfile -> symbol_obstack);
558 case 'v': /* $vtbl_ptr_type */
559 /* Was: SYMBOL_NAME (sym) = "vptr"; */
563 SYMBOL_NAME (sym) = obsavestring ("eh_throw", strlen ("eh_throw"),
564 &objfile -> symbol_obstack);
568 /* This was an anonymous type that was never fixed up. */
572 complain (&unrecognized_cplus_name_complaint, string);
573 goto normal; /* Do *something* with it */
579 SYMBOL_LANGUAGE (sym) = current_subfile -> language;
580 SYMBOL_NAME (sym) = (char *)
581 obstack_alloc (&objfile -> symbol_obstack, ((p - string) + 1));
582 /* Open-coded bcopy--saves function call time. */
583 /* FIXME: Does it really? Try replacing with simple strcpy and
584 try it on an executable with a large symbol table. */
586 register char *p1 = string;
587 register char *p2 = SYMBOL_NAME (sym);
595 /* If this symbol is from a C++ compilation, then attempt to cache the
596 demangled form for future reference. This is a typical time versus
597 space tradeoff, that was decided in favor of time because it sped up
598 C++ symbol lookups by a factor of about 20. */
600 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
604 /* Determine the type of name being defined. */
606 /* Getting GDB to correctly skip the symbol on an undefined symbol
607 descriptor and not ever dump core is a very dodgy proposition if
608 we do things this way. I say the acorn RISC machine can just
609 fix their compiler. */
610 /* The Acorn RISC machine's compiler can put out locals that don't
611 start with "234=" or "(3,4)=", so assume anything other than the
612 deftypes we know how to handle is a local. */
613 if (!strchr ("cfFGpPrStTvVXCR", *p))
615 if (isdigit (*p) || *p == '(' || *p == '-')
624 /* c is a special case, not followed by a type-number.
625 SYMBOL:c=iVALUE for an integer constant symbol.
626 SYMBOL:c=rVALUE for a floating constant symbol.
627 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
628 e.g. "b:c=e6,0" for "const b = blob1"
629 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
632 SYMBOL_CLASS (sym) = LOC_CONST;
633 SYMBOL_TYPE (sym) = error_type (&p);
634 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
635 add_symbol_to_list (sym, &file_symbols);
646 /* FIXME: lookup_fundamental_type is a hack. We should be
647 creating a type especially for the type of float constants.
648 Problem is, what type should it be? We currently have to
649 read this in host floating point format, but what type
650 represents a host format "double"?
652 Also, what should the name of this type be? Should we
653 be using 'S' constants (see stabs.texinfo) instead? */
655 SYMBOL_TYPE (sym) = lookup_fundamental_type (objfile,
658 obstack_alloc (&objfile -> symbol_obstack, sizeof (double));
659 memcpy (dbl_valu, &d, sizeof (double));
660 /* Put it in target byte order, but it's still in host
661 floating point format. */
662 SWAP_TARGET_AND_HOST (dbl_valu, sizeof (double));
663 SYMBOL_VALUE_BYTES (sym) = dbl_valu;
664 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
669 /* Defining integer constants this way is kind of silly,
670 since 'e' constants allows the compiler to give not
671 only the value, but the type as well. C has at least
672 int, long, unsigned int, and long long as constant
673 types; other languages probably should have at least
674 unsigned as well as signed constants. */
676 /* We just need one int constant type for all objfiles.
677 It doesn't depend on languages or anything (arguably its
678 name should be a language-specific name for a type of
679 that size, but I'm inclined to say that if the compiler
680 wants a nice name for the type, it can use 'e'). */
681 static struct type *int_const_type;
683 /* Yes, this is as long as a *host* int. That is because we
685 if (int_const_type == NULL)
687 init_type (TYPE_CODE_INT,
688 sizeof (int) * HOST_CHAR_BIT / TARGET_CHAR_BIT, 0,
690 (struct objfile *)NULL);
691 SYMBOL_TYPE (sym) = int_const_type;
692 SYMBOL_VALUE (sym) = atoi (p);
693 SYMBOL_CLASS (sym) = LOC_CONST;
697 /* SYMBOL:c=eTYPE,INTVALUE for a constant symbol whose value
698 can be represented as integral.
699 e.g. "b:c=e6,0" for "const b = blob1"
700 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
702 SYMBOL_CLASS (sym) = LOC_CONST;
703 SYMBOL_TYPE (sym) = read_type (&p, objfile);
707 SYMBOL_TYPE (sym) = error_type (&p);
712 /* If the value is too big to fit in an int (perhaps because
713 it is unsigned), or something like that, we silently get
714 a bogus value. The type and everything else about it is
715 correct. Ideally, we should be using whatever we have
716 available for parsing unsigned and long long values,
718 SYMBOL_VALUE (sym) = atoi (p);
723 SYMBOL_CLASS (sym) = LOC_CONST;
724 SYMBOL_TYPE (sym) = error_type (&p);
727 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
728 add_symbol_to_list (sym, &file_symbols);
732 /* The name of a caught exception. */
733 SYMBOL_TYPE (sym) = read_type (&p, objfile);
734 SYMBOL_CLASS (sym) = LOC_LABEL;
735 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
736 SYMBOL_VALUE_ADDRESS (sym) = valu;
737 add_symbol_to_list (sym, &local_symbols);
741 /* A static function definition. */
742 SYMBOL_TYPE (sym) = read_type (&p, objfile);
743 SYMBOL_CLASS (sym) = LOC_BLOCK;
744 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
745 add_symbol_to_list (sym, &file_symbols);
746 /* fall into process_function_types. */
748 process_function_types:
749 /* Function result types are described as the result type in stabs.
750 We need to convert this to the function-returning-type-X type
751 in GDB. E.g. "int" is converted to "function returning int". */
752 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_FUNC)
755 /* This code doesn't work -- it needs to realloc and can't. */
756 /* Attempt to set up to record a function prototype... */
757 struct type *new = alloc_type (objfile);
759 /* Generate a template for the type of this function. The
760 types of the arguments will be added as we read the symbol
762 *new = *lookup_function_type (SYMBOL_TYPE(sym));
763 SYMBOL_TYPE(sym) = new;
764 TYPE_OBJFILE (new) = objfile;
765 in_function_type = new;
767 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
770 /* fall into process_prototype_types */
772 process_prototype_types:
773 /* Sun acc puts declared types of arguments here. We don't care
774 about their actual types (FIXME -- we should remember the whole
775 function prototype), but the list may define some new types
776 that we have to remember, so we must scan it now. */
779 read_type (&p, objfile);
784 /* A global function definition. */
785 SYMBOL_TYPE (sym) = read_type (&p, objfile);
786 SYMBOL_CLASS (sym) = LOC_BLOCK;
787 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
788 add_symbol_to_list (sym, &global_symbols);
789 goto process_function_types;
792 /* For a class G (global) symbol, it appears that the
793 value is not correct. It is necessary to search for the
794 corresponding linker definition to find the value.
795 These definitions appear at the end of the namelist. */
796 SYMBOL_TYPE (sym) = read_type (&p, objfile);
797 i = hashname (SYMBOL_NAME (sym));
798 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
799 global_sym_chain[i] = sym;
800 SYMBOL_CLASS (sym) = LOC_STATIC;
801 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
802 add_symbol_to_list (sym, &global_symbols);
805 /* This case is faked by a conditional above,
806 when there is no code letter in the dbx data.
807 Dbx data never actually contains 'l'. */
809 SYMBOL_TYPE (sym) = read_type (&p, objfile);
810 SYMBOL_CLASS (sym) = LOC_LOCAL;
811 SYMBOL_VALUE (sym) = valu;
812 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
813 add_symbol_to_list (sym, &local_symbols);
818 /* pF is a two-letter code that means a function parameter in Fortran.
819 The type-number specifies the type of the return value.
820 Translate it into a pointer-to-function type. */
824 = lookup_pointer_type
825 (lookup_function_type (read_type (&p, objfile)));
828 SYMBOL_TYPE (sym) = read_type (&p, objfile);
830 /* Normally this is a parameter, a LOC_ARG. On the i960, it
831 can also be a LOC_LOCAL_ARG depending on symbol type. */
832 #ifndef DBX_PARM_SYMBOL_CLASS
833 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
836 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
837 SYMBOL_VALUE (sym) = valu;
838 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
840 /* This doesn't work yet. */
841 add_param_to_type (&in_function_type, sym);
843 add_symbol_to_list (sym, &local_symbols);
845 /* If it's gcc-compiled, if it says `short', believe it. */
846 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
849 #if !BELIEVE_PCC_PROMOTION
851 /* This is the signed type which arguments get promoted to. */
852 static struct type *pcc_promotion_type;
853 /* This is the unsigned type which arguments get promoted to. */
854 static struct type *pcc_unsigned_promotion_type;
856 /* Call it "int" because this is mainly C lossage. */
857 if (pcc_promotion_type == NULL)
859 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
862 if (pcc_unsigned_promotion_type == NULL)
863 pcc_unsigned_promotion_type =
864 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
865 TYPE_FLAG_UNSIGNED, "unsigned int", NULL);
867 #if defined(BELIEVE_PCC_PROMOTION_TYPE)
868 /* This macro is defined on machines (e.g. sparc) where
869 we should believe the type of a PCC 'short' argument,
870 but shouldn't believe the address (the address is
871 the address of the corresponding int). Note that
872 this is only different from the BELIEVE_PCC_PROMOTION
873 case on big-endian machines.
875 My guess is that this correction, as opposed to changing
876 the parameter to an 'int' (as done below, for PCC
877 on most machines), is the right thing to do
878 on all machines, but I don't want to risk breaking
879 something that already works. On most PCC machines,
880 the sparc problem doesn't come up because the calling
881 function has to zero the top bytes (not knowing whether
882 the called function wants an int or a short), so there
883 is no practical difference between an int and a short
884 (except perhaps what happens when the GDB user types
885 "print short_arg = 0x10000;").
888 actually produces the correct address (we don't need to fix it
889 up). I made this code adapt so that it will offset the symbol
890 if it was pointing at an int-aligned location and not
891 otherwise. This way you can use the same gdb for 4.0.x and
894 If the parameter is shorter than an int, and is integral
895 (e.g. char, short, or unsigned equivalent), and is claimed to
896 be passed on an integer boundary, don't believe it! Offset the
897 parameter's address to the tail-end of that integer. */
899 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
900 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
901 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (pcc_promotion_type))
903 SYMBOL_VALUE (sym) += TYPE_LENGTH (pcc_promotion_type)
904 - TYPE_LENGTH (SYMBOL_TYPE (sym));
908 #else /* no BELIEVE_PCC_PROMOTION_TYPE. */
910 /* If PCC says a parameter is a short or a char,
911 it is really an int. */
912 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
913 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
916 TYPE_UNSIGNED (SYMBOL_TYPE (sym))
917 ? pcc_unsigned_promotion_type
918 : pcc_promotion_type;
922 #endif /* no BELIEVE_PCC_PROMOTION_TYPE. */
924 #endif /* !BELIEVE_PCC_PROMOTION. */
927 /* acc seems to use P to delare the prototypes of functions that
928 are referenced by this file. gdb is not prepared to deal
929 with this extra information. FIXME, it ought to. */
932 read_type (&p, objfile);
933 goto process_prototype_types;
938 /* Parameter which is in a register. */
939 SYMBOL_TYPE (sym) = read_type (&p, objfile);
940 SYMBOL_CLASS (sym) = LOC_REGPARM;
941 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
942 if (SYMBOL_VALUE (sym) >= NUM_REGS)
944 complain (®_value_complaint, SYMBOL_SOURCE_NAME (sym));
945 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
947 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
948 add_symbol_to_list (sym, &local_symbols);
952 /* Register variable (either global or local). */
953 SYMBOL_TYPE (sym) = read_type (&p, objfile);
954 SYMBOL_CLASS (sym) = LOC_REGISTER;
955 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
956 if (SYMBOL_VALUE (sym) >= NUM_REGS)
958 complain (®_value_complaint, SYMBOL_SOURCE_NAME (sym));
959 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
961 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
964 /* Sun cc uses a pair of symbols, one 'p' and one 'r' with the same
965 name to represent an argument passed in a register.
966 GCC uses 'P' for the same case. So if we find such a symbol pair
967 we combine it into one 'P' symbol.
968 Note that this code illegally combines
969 main(argc) int argc; { register int argc = 1; }
970 but this case is considered pathological and causes a warning
971 from a decent compiler. */
973 && local_symbols->nsyms > 0)
975 struct symbol *prev_sym;
976 prev_sym = local_symbols->symbol[local_symbols->nsyms - 1];
977 if (SYMBOL_CLASS (prev_sym) == LOC_ARG
978 && STREQ (SYMBOL_NAME (prev_sym), SYMBOL_NAME(sym)))
980 SYMBOL_CLASS (prev_sym) = LOC_REGPARM;
981 SYMBOL_VALUE (prev_sym) = SYMBOL_VALUE (sym);
986 add_symbol_to_list (sym, &local_symbols);
989 add_symbol_to_list (sym, &file_symbols);
993 /* Static symbol at top level of file */
994 SYMBOL_TYPE (sym) = read_type (&p, objfile);
995 SYMBOL_CLASS (sym) = LOC_STATIC;
996 SYMBOL_VALUE_ADDRESS (sym) = valu;
997 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
998 add_symbol_to_list (sym, &file_symbols);
1003 /* See comment where long_kludge_name is declared. */
1004 /* Here we save the name of the symbol for read_range_type, which
1005 ends up reading in the basic types. In stabs, unfortunately there
1006 is no distinction between "int" and "long" types except their
1007 names. Until we work out a saner type policy (eliminating most
1008 builtin types and using the names specified in the files), we
1009 save away the name so that far away from here in read_range_type,
1010 we can examine it to decide between "int" and "long". FIXME. */
1011 long_kludge_name = SYMBOL_NAME (sym);
1013 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1015 /* For a nameless type, we don't want a create a symbol, thus we
1016 did not use `sym'. Return without further processing. */
1017 if (nameless) return NULL;
1019 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1020 SYMBOL_VALUE (sym) = valu;
1021 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1022 /* C++ vagaries: we may have a type which is derived from
1023 a base type which did not have its name defined when the
1024 derived class was output. We fill in the derived class's
1025 base part member's name here in that case. */
1026 if (TYPE_NAME (SYMBOL_TYPE (sym)) != NULL)
1027 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1028 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
1029 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
1032 for (j = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; j >= 0; j--)
1033 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) == 0)
1034 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) =
1035 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), j));
1038 if (TYPE_NAME (SYMBOL_TYPE (sym)) == NULL)
1040 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1041 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1043 /* If we are giving a name to a type such as "pointer to
1044 foo" or "function returning foo", we better not set
1045 the TYPE_NAME. If the program contains "typedef char
1046 *caddr_t;", we don't want all variables of type char
1047 * to print as caddr_t. This is not just a
1048 consequence of GDB's type management; PCC and GCC (at
1049 least through version 2.4) both output variables of
1050 either type char * or caddr_t with the type number
1051 defined in the 't' symbol for caddr_t. If a future
1052 compiler cleans this up it GDB is not ready for it
1053 yet, but if it becomes ready we somehow need to
1054 disable this check (without breaking the PCC/GCC2.4
1059 Fortunately, this check seems not to be necessary
1060 for anything except pointers or functions. */
1063 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1066 add_symbol_to_list (sym, &file_symbols);
1070 /* Struct, union, or enum tag. For GNU C++, this can be be followed
1071 by 't' which means we are typedef'ing it as well. */
1072 synonym = *p == 't';
1077 type_synonym_name = obsavestring (SYMBOL_NAME (sym),
1078 strlen (SYMBOL_NAME (sym)),
1079 &objfile -> symbol_obstack);
1082 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1084 /* For a nameless type, we don't want a create a symbol, thus we
1085 did not use `sym'. Return without further processing. */
1086 if (nameless) return NULL;
1088 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1089 SYMBOL_VALUE (sym) = valu;
1090 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1091 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
1092 TYPE_TAG_NAME (SYMBOL_TYPE (sym))
1093 = obconcat (&objfile -> type_obstack, "", "", SYMBOL_NAME (sym));
1094 add_symbol_to_list (sym, &file_symbols);
1098 /* Clone the sym and then modify it. */
1099 register struct symbol *typedef_sym = (struct symbol *)
1100 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
1101 *typedef_sym = *sym;
1102 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
1103 SYMBOL_VALUE (typedef_sym) = valu;
1104 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
1105 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1106 TYPE_NAME (SYMBOL_TYPE (sym))
1107 = obconcat (&objfile -> type_obstack, "", "", SYMBOL_NAME (sym));
1108 add_symbol_to_list (typedef_sym, &file_symbols);
1113 /* Static symbol of local scope */
1114 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1115 SYMBOL_CLASS (sym) = LOC_STATIC;
1116 SYMBOL_VALUE_ADDRESS (sym) = valu;
1117 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1118 add_symbol_to_list (sym, &local_symbols);
1122 /* Reference parameter */
1123 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1124 SYMBOL_CLASS (sym) = LOC_REF_ARG;
1125 SYMBOL_VALUE (sym) = valu;
1126 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1127 add_symbol_to_list (sym, &local_symbols);
1131 /* This is used by Sun FORTRAN for "function result value".
1132 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
1133 that Pascal uses it too, but when I tried it Pascal used
1134 "x:3" (local symbol) instead. */
1135 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1136 SYMBOL_CLASS (sym) = LOC_LOCAL;
1137 SYMBOL_VALUE (sym) = valu;
1138 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1139 add_symbol_to_list (sym, &local_symbols);
1143 SYMBOL_TYPE (sym) = error_type (&p);
1144 SYMBOL_CLASS (sym) = LOC_CONST;
1145 SYMBOL_VALUE (sym) = 0;
1146 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1147 add_symbol_to_list (sym, &file_symbols);
1151 /* When passing structures to a function, some systems sometimes pass
1152 the address in a register, not the structure itself.
1154 If REG_STRUCT_HAS_ADDR yields non-zero we have to convert LOC_REGPARM
1155 to LOC_REGPARM_ADDR for structures and unions. */
1157 #if !defined (REG_STRUCT_HAS_ADDR)
1158 #define REG_STRUCT_HAS_ADDR(gcc_p) 0
1161 if (SYMBOL_CLASS (sym) == LOC_REGPARM
1162 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation)
1163 && ( (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT)
1164 || (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)))
1165 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
1171 /* Skip rest of this symbol and return an error type.
1173 General notes on error recovery: error_type always skips to the
1174 end of the symbol (modulo cretinous dbx symbol name continuation).
1175 Thus code like this:
1177 if (*(*pp)++ != ';')
1178 return error_type (pp);
1180 is wrong because if *pp starts out pointing at '\0' (typically as the
1181 result of an earlier error), it will be incremented to point to the
1182 start of the next symbol, which might produce strange results, at least
1183 if you run off the end of the string table. Instead use
1186 return error_type (pp);
1192 foo = error_type (pp);
1196 And in case it isn't obvious, the point of all this hair is so the compiler
1197 can define new types and new syntaxes, and old versions of the
1198 debugger will be able to read the new symbol tables. */
1200 static struct type *
1204 complain (&error_type_complaint);
1207 /* Skip to end of symbol. */
1208 while (**pp != '\0')
1213 /* Check for and handle cretinous dbx symbol name continuation! */
1214 if ((*pp)[-1] == '\\')
1216 *pp = next_symbol_text ();
1223 return (builtin_type_error);
1227 /* Read type information or a type definition; return the type. Even
1228 though this routine accepts either type information or a type
1229 definition, the distinction is relevant--some parts of stabsread.c
1230 assume that type information starts with a digit, '-', or '(' in
1231 deciding whether to call read_type. */
1234 read_type (pp, objfile)
1236 struct objfile *objfile;
1238 register struct type *type = 0;
1242 char type_descriptor;
1244 /* Read type number if present. The type number may be omitted.
1245 for instance in a two-dimensional array declared with type
1246 "ar1;1;10;ar1;1;10;4". */
1247 if ((**pp >= '0' && **pp <= '9')
1250 if (read_type_number (pp, typenums) != 0)
1251 return error_type (pp);
1253 /* Type is not being defined here. Either it already exists,
1254 or this is a forward reference to it. dbx_alloc_type handles
1257 return dbx_alloc_type (typenums, objfile);
1259 /* Type is being defined here. */
1266 /* It might be a type attribute or a member type. */
1267 if (isdigit (*p) || *p == '(' || *p == '-')
1272 /* Type attributes; skip to the semicolon. */
1273 while (*p != ';' && *p != '\0')
1277 return error_type (pp);
1279 /* Skip the semicolon. */
1283 /* Skip the type descriptor, we get it below with (*pp)[-1]. */
1288 /* 'typenums=' not present, type is anonymous. Read and return
1289 the definition, but don't put it in the type vector. */
1290 typenums[0] = typenums[1] = -1;
1294 type_descriptor = (*pp)[-1];
1295 switch (type_descriptor)
1299 enum type_code code;
1301 /* Used to index through file_symbols. */
1302 struct pending *ppt;
1305 /* Name including "struct", etc. */
1308 /* Name without "struct", etc. */
1309 char *type_name_only;
1315 /* Set the type code according to the following letter. */
1319 code = TYPE_CODE_STRUCT;
1322 code = TYPE_CODE_UNION;
1325 code = TYPE_CODE_ENUM;
1328 return error_type (pp);
1331 to = type_name = (char *)
1332 obstack_alloc (&objfile -> type_obstack,
1333 (((char *) strchr (*pp, ':') - (*pp)) + 1));
1335 /* Copy the name. */
1337 while ((*to++ = *from++) != ':')
1341 /* Set the pointer ahead of the name which we just read. */
1345 /* Now check to see whether the type has already been declared. */
1346 /* This is necessary at least in the case where the
1347 program says something like
1349 The compiler puts out a cross-reference; we better find
1350 set the length of the structure correctly so we can
1351 set the length of the array. */
1352 for (ppt = file_symbols; ppt; ppt = ppt->next)
1353 for (i = 0; i < ppt->nsyms; i++)
1355 struct symbol *sym = ppt->symbol[i];
1357 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
1358 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
1359 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
1360 && STREQ (SYMBOL_NAME (sym), type_name))
1362 obstack_free (&objfile -> type_obstack, type_name);
1363 type = SYMBOL_TYPE (sym);
1368 /* Didn't find the type to which this refers, so we must
1369 be dealing with a forward reference. Allocate a type
1370 structure for it, and keep track of it so we can
1371 fill in the rest of the fields when we get the full
1373 type = dbx_alloc_type (typenums, objfile);
1374 TYPE_CODE (type) = code;
1375 TYPE_TAG_NAME (type) = type_name;
1376 INIT_CPLUS_SPECIFIC(type);
1377 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
1379 add_undefined_type (type);
1383 case '-': /* RS/6000 built-in type */
1396 /* The type is being defined to another type. When we support
1397 Ada (and arguably for C, so "whatis foo" can give "size_t",
1398 "wchar_t", or whatever it was declared as) we'll need to
1399 allocate a distinct type here rather than returning the
1400 existing one. GCC is currently (deliberately) incapable of
1401 putting out the debugging information to do that, however. */
1404 if (read_type_number (pp, xtypenums) != 0)
1405 return error_type (pp);
1406 if (typenums[0] == xtypenums[0] && typenums[1] == xtypenums[1])
1407 /* It's being defined as itself. That means it is "void". */
1408 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, objfile);
1410 type = *dbx_lookup_type (xtypenums);
1411 if (typenums[0] != -1)
1412 *dbx_lookup_type (typenums) = type;
1413 /* This can happen if we had '-' followed by a garbage character,
1416 return error_type (pp);
1419 /* In the following types, we must be sure to overwrite any existing
1420 type that the typenums refer to, rather than allocating a new one
1421 and making the typenums point to the new one. This is because there
1422 may already be pointers to the existing type (if it had been
1423 forward-referenced), and we must change it to a pointer, function,
1424 reference, or whatever, *in-place*. */
1427 type1 = read_type (pp, objfile);
1428 type = make_pointer_type (type1, dbx_lookup_type (typenums));
1431 case '&': /* Reference to another type */
1432 type1 = read_type (pp, objfile);
1433 type = make_reference_type (type1, dbx_lookup_type (typenums));
1436 case 'f': /* Function returning another type */
1437 type1 = read_type (pp, objfile);
1438 type = make_function_type (type1, dbx_lookup_type (typenums));
1441 case 'k': /* Const qualifier on some type (Sun) */
1442 type = read_type (pp, objfile);
1443 /* FIXME! For now, we ignore const and volatile qualifiers. */
1446 case 'B': /* Volatile qual on some type (Sun) */
1447 type = read_type (pp, objfile);
1448 /* FIXME! For now, we ignore const and volatile qualifiers. */
1451 /* FIXME -- we should be doing smash_to_XXX types here. */
1452 case '@': /* Member (class & variable) type */
1454 struct type *domain = read_type (pp, objfile);
1455 struct type *memtype;
1458 /* Invalid member type data format. */
1459 return error_type (pp);
1462 memtype = read_type (pp, objfile);
1463 type = dbx_alloc_type (typenums, objfile);
1464 smash_to_member_type (type, domain, memtype);
1468 case '#': /* Method (class & fn) type */
1469 if ((*pp)[0] == '#')
1471 /* We'll get the parameter types from the name. */
1472 struct type *return_type;
1475 return_type = read_type (pp, objfile);
1476 if (*(*pp)++ != ';')
1477 complain (&invalid_member_complaint, symnum);
1478 type = allocate_stub_method (return_type);
1479 if (typenums[0] != -1)
1480 *dbx_lookup_type (typenums) = type;
1484 struct type *domain = read_type (pp, objfile);
1485 struct type *return_type;
1489 /* Invalid member type data format. */
1490 return error_type (pp);
1494 return_type = read_type (pp, objfile);
1495 args = read_args (pp, ';', objfile);
1496 type = dbx_alloc_type (typenums, objfile);
1497 smash_to_method_type (type, domain, return_type, args);
1501 case 'r': /* Range type */
1502 type = read_range_type (pp, typenums, objfile);
1503 if (typenums[0] != -1)
1504 *dbx_lookup_type (typenums) = type;
1507 case 'b': /* Sun ACC builtin int type */
1508 type = read_sun_builtin_type (pp, typenums, objfile);
1509 if (typenums[0] != -1)
1510 *dbx_lookup_type (typenums) = type;
1513 case 'R': /* Sun ACC builtin float type */
1514 type = read_sun_floating_type (pp, typenums, objfile);
1515 if (typenums[0] != -1)
1516 *dbx_lookup_type (typenums) = type;
1519 case 'e': /* Enumeration type */
1520 type = dbx_alloc_type (typenums, objfile);
1521 type = read_enum_type (pp, type, objfile);
1522 if (typenums[0] != -1)
1523 *dbx_lookup_type (typenums) = type;
1526 case 's': /* Struct type */
1527 case 'u': /* Union type */
1528 type = dbx_alloc_type (typenums, objfile);
1529 if (!TYPE_NAME (type))
1531 TYPE_NAME (type) = type_synonym_name;
1533 type_synonym_name = NULL;
1534 switch (type_descriptor)
1537 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1540 TYPE_CODE (type) = TYPE_CODE_UNION;
1543 type = read_struct_type (pp, type, objfile);
1546 case 'a': /* Array type */
1548 return error_type (pp);
1551 type = dbx_alloc_type (typenums, objfile);
1552 type = read_array_type (pp, type, objfile);
1556 --*pp; /* Go back to the symbol in error */
1557 /* Particularly important if it was \0! */
1558 return error_type (pp);
1563 warning ("GDB internal error, type is NULL in stabsread.c\n");
1564 return error_type (pp);
1570 /* RS/6000 xlc/dbx combination uses a set of builtin types, starting from -1.
1571 Return the proper type node for a given builtin type number. */
1573 static struct type *
1574 rs6000_builtin_type (typenum)
1577 /* We recognize types numbered from -NUMBER_RECOGNIZED to -1. */
1578 #define NUMBER_RECOGNIZED 30
1579 /* This includes an empty slot for type number -0. */
1580 static struct type *negative_types[NUMBER_RECOGNIZED + 1];
1581 struct type *rettype;
1583 if (typenum >= 0 || typenum < -NUMBER_RECOGNIZED)
1585 complain (&rs6000_builtin_complaint, typenum);
1586 return builtin_type_error;
1588 if (negative_types[-typenum] != NULL)
1589 return negative_types[-typenum];
1591 #if TARGET_CHAR_BIT != 8
1592 #error This code wrong for TARGET_CHAR_BIT not 8
1593 /* These definitions all assume that TARGET_CHAR_BIT is 8. I think
1594 that if that ever becomes not true, the correct fix will be to
1595 make the size in the struct type to be in bits, not in units of
1602 /* The size of this and all the other types are fixed, defined
1603 by the debugging format. If there is a type called "int" which
1604 is other than 32 bits, then it should use a new negative type
1605 number (or avoid negative type numbers for that case).
1606 See stabs.texinfo. */
1607 rettype = init_type (TYPE_CODE_INT, 4, 0, "int", NULL);
1610 rettype = init_type (TYPE_CODE_INT, 1, 0, "char", NULL);
1613 rettype = init_type (TYPE_CODE_INT, 2, 0, "short", NULL);
1616 rettype = init_type (TYPE_CODE_INT, 4, 0, "long", NULL);
1619 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
1620 "unsigned char", NULL);
1623 rettype = init_type (TYPE_CODE_INT, 1, 0, "signed char", NULL);
1626 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
1627 "unsigned short", NULL);
1630 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1631 "unsigned int", NULL);
1634 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1637 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1638 "unsigned long", NULL);
1641 rettype = init_type (TYPE_CODE_VOID, 0, 0, "void", NULL);
1644 /* IEEE single precision (32 bit). */
1645 rettype = init_type (TYPE_CODE_FLT, 4, 0, "float", NULL);
1648 /* IEEE double precision (64 bit). */
1649 rettype = init_type (TYPE_CODE_FLT, 8, 0, "double", NULL);
1652 /* This is an IEEE double on the RS/6000, and different machines with
1653 different sizes for "long double" should use different negative
1654 type numbers. See stabs.texinfo. */
1655 rettype = init_type (TYPE_CODE_FLT, 8, 0, "long double", NULL);
1658 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer", NULL);
1661 rettype = init_type (TYPE_CODE_BOOL, 4, 0, "boolean", NULL);
1664 rettype = init_type (TYPE_CODE_FLT, 4, 0, "short real", NULL);
1667 rettype = init_type (TYPE_CODE_FLT, 8, 0, "real", NULL);
1670 rettype = init_type (TYPE_CODE_ERROR, 0, 0, "stringptr", NULL);
1673 rettype = init_type (TYPE_CODE_CHAR, 1, TYPE_FLAG_UNSIGNED,
1677 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
1681 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
1685 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1689 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1693 /* Complex type consisting of two IEEE single precision values. */
1694 rettype = init_type (TYPE_CODE_ERROR, 8, 0, "complex", NULL);
1697 /* Complex type consisting of two IEEE double precision values. */
1698 rettype = init_type (TYPE_CODE_ERROR, 16, 0, "double complex", NULL);
1701 rettype = init_type (TYPE_CODE_INT, 1, 0, "integer*1", NULL);
1704 rettype = init_type (TYPE_CODE_INT, 2, 0, "integer*2", NULL);
1707 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer*4", NULL);
1710 rettype = init_type (TYPE_CODE_CHAR, 2, 0, "wchar", NULL);
1713 negative_types[-typenum] = rettype;
1717 /* This page contains subroutines of read_type. */
1719 #define VISIBILITY_PRIVATE '0' /* Stabs character for private field */
1720 #define VISIBILITY_PROTECTED '1' /* Stabs character for protected fld */
1721 #define VISIBILITY_PUBLIC '2' /* Stabs character for public field */
1723 /* Read member function stabs info for C++ classes. The form of each member
1726 NAME :: TYPENUM[=type definition] ARGS : PHYSNAME ;
1728 An example with two member functions is:
1730 afunc1::20=##15;:i;2A.;afunc2::20:i;2A.;
1732 For the case of overloaded operators, the format is op$::*.funcs, where
1733 $ is the CPLUS_MARKER (usually '$'), `*' holds the place for an operator
1734 name (such as `+=') and `.' marks the end of the operator name.
1736 Returns 1 for success, 0 for failure. */
1739 read_member_functions (fip, pp, type, objfile)
1740 struct field_info *fip;
1743 struct objfile *objfile;
1747 /* Total number of member functions defined in this class. If the class
1748 defines two `f' functions, and one `g' function, then this will have
1750 int total_length = 0;
1754 struct next_fnfield *next;
1755 struct fn_field fn_field;
1757 struct type *look_ahead_type;
1758 struct next_fnfieldlist *new_fnlist;
1759 struct next_fnfield *new_sublist;
1763 /* Process each list until we find something that is not a member function
1764 or find the end of the functions. */
1768 /* We should be positioned at the start of the function name.
1769 Scan forward to find the first ':' and if it is not the
1770 first of a "::" delimiter, then this is not a member function. */
1782 look_ahead_type = NULL;
1785 new_fnlist = (struct next_fnfieldlist *)
1786 xmalloc (sizeof (struct next_fnfieldlist));
1787 make_cleanup (free, new_fnlist);
1788 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
1790 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && (*pp)[2] == CPLUS_MARKER)
1792 /* This is a completely wierd case. In order to stuff in the
1793 names that might contain colons (the usual name delimiter),
1794 Mike Tiemann defined a different name format which is
1795 signalled if the identifier is "op$". In that case, the
1796 format is "op$::XXXX." where XXXX is the name. This is
1797 used for names like "+" or "=". YUUUUUUUK! FIXME! */
1798 /* This lets the user type "break operator+".
1799 We could just put in "+" as the name, but that wouldn't
1801 static char opname[32] = {'o', 'p', CPLUS_MARKER};
1802 char *o = opname + 3;
1804 /* Skip past '::'. */
1807 STABS_CONTINUE (pp);
1813 main_fn_name = savestring (opname, o - opname);
1819 main_fn_name = savestring (*pp, p - *pp);
1820 /* Skip past '::'. */
1823 new_fnlist -> fn_fieldlist.name = main_fn_name;
1828 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
1829 make_cleanup (free, new_sublist);
1830 memset (new_sublist, 0, sizeof (struct next_fnfield));
1832 /* Check for and handle cretinous dbx symbol name continuation! */
1833 if (look_ahead_type == NULL)
1836 STABS_CONTINUE (pp);
1838 new_sublist -> fn_field.type = read_type (pp, objfile);
1841 /* Invalid symtab info for member function. */
1847 /* g++ version 1 kludge */
1848 new_sublist -> fn_field.type = look_ahead_type;
1849 look_ahead_type = NULL;
1859 /* If this is just a stub, then we don't have the real name here. */
1861 if (TYPE_FLAGS (new_sublist -> fn_field.type) & TYPE_FLAG_STUB)
1863 if (!TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type))
1864 TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type) = type;
1865 new_sublist -> fn_field.is_stub = 1;
1867 new_sublist -> fn_field.physname = savestring (*pp, p - *pp);
1870 /* Set this member function's visibility fields. */
1873 case VISIBILITY_PRIVATE:
1874 new_sublist -> fn_field.is_private = 1;
1876 case VISIBILITY_PROTECTED:
1877 new_sublist -> fn_field.is_protected = 1;
1881 STABS_CONTINUE (pp);
1884 case 'A': /* Normal functions. */
1885 new_sublist -> fn_field.is_const = 0;
1886 new_sublist -> fn_field.is_volatile = 0;
1889 case 'B': /* `const' member functions. */
1890 new_sublist -> fn_field.is_const = 1;
1891 new_sublist -> fn_field.is_volatile = 0;
1894 case 'C': /* `volatile' member function. */
1895 new_sublist -> fn_field.is_const = 0;
1896 new_sublist -> fn_field.is_volatile = 1;
1899 case 'D': /* `const volatile' member function. */
1900 new_sublist -> fn_field.is_const = 1;
1901 new_sublist -> fn_field.is_volatile = 1;
1904 case '*': /* File compiled with g++ version 1 -- no info */
1909 complain (&const_vol_complaint, **pp);
1918 /* virtual member function, followed by index.
1919 The sign bit is set to distinguish pointers-to-methods
1920 from virtual function indicies. Since the array is
1921 in words, the quantity must be shifted left by 1
1922 on 16 bit machine, and by 2 on 32 bit machine, forcing
1923 the sign bit out, and usable as a valid index into
1924 the array. Remove the sign bit here. */
1925 new_sublist -> fn_field.voffset =
1926 (0x7fffffff & read_huge_number (pp, ';', &nbits)) + 2;
1930 STABS_CONTINUE (pp);
1931 if (**pp == ';' || **pp == '\0')
1933 /* Must be g++ version 1. */
1934 new_sublist -> fn_field.fcontext = 0;
1938 /* Figure out from whence this virtual function came.
1939 It may belong to virtual function table of
1940 one of its baseclasses. */
1941 look_ahead_type = read_type (pp, objfile);
1944 /* g++ version 1 overloaded methods. */
1948 new_sublist -> fn_field.fcontext = look_ahead_type;
1957 look_ahead_type = NULL;
1963 /* static member function. */
1964 new_sublist -> fn_field.voffset = VOFFSET_STATIC;
1965 if (strncmp (new_sublist -> fn_field.physname,
1966 main_fn_name, strlen (main_fn_name)))
1968 new_sublist -> fn_field.is_stub = 1;
1974 complain (&member_fn_complaint, (*pp)[-1]);
1975 /* Fall through into normal member function. */
1978 /* normal member function. */
1979 new_sublist -> fn_field.voffset = 0;
1980 new_sublist -> fn_field.fcontext = 0;
1984 new_sublist -> next = sublist;
1985 sublist = new_sublist;
1987 STABS_CONTINUE (pp);
1989 while (**pp != ';' && **pp != '\0');
1993 new_fnlist -> fn_fieldlist.fn_fields = (struct fn_field *)
1994 obstack_alloc (&objfile -> type_obstack,
1995 sizeof (struct fn_field) * length);
1996 memset (new_fnlist -> fn_fieldlist.fn_fields, 0,
1997 sizeof (struct fn_field) * length);
1998 for (i = length; (i--, sublist); sublist = sublist -> next)
2000 new_fnlist -> fn_fieldlist.fn_fields[i] = sublist -> fn_field;
2003 new_fnlist -> fn_fieldlist.length = length;
2004 new_fnlist -> next = fip -> fnlist;
2005 fip -> fnlist = new_fnlist;
2007 total_length += length;
2008 STABS_CONTINUE (pp);
2013 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2014 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
2015 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
2016 memset (TYPE_FN_FIELDLISTS (type), 0,
2017 sizeof (struct fn_fieldlist) * nfn_fields);
2018 TYPE_NFN_FIELDS (type) = nfn_fields;
2019 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2025 /* Special GNU C++ name.
2027 Returns 1 for success, 0 for failure. "failure" means that we can't
2028 keep parsing and it's time for error_type(). */
2031 read_cpp_abbrev (fip, pp, type, objfile)
2032 struct field_info *fip;
2035 struct objfile *objfile;
2041 struct type *context;
2051 /* At this point, *pp points to something like "22:23=*22...",
2052 where the type number before the ':' is the "context" and
2053 everything after is a regular type definition. Lookup the
2054 type, find it's name, and construct the field name. */
2056 context = read_type (pp, objfile);
2060 case 'f': /* $vf -- a virtual function table pointer */
2061 fip->list->field.name =
2062 obconcat (&objfile->type_obstack, vptr_name, "", "");
2065 case 'b': /* $vb -- a virtual bsomethingorother */
2066 name = type_name_no_tag (context);
2069 complain (&invalid_cpp_type_complaint, symnum);
2072 fip->list->field.name =
2073 obconcat (&objfile->type_obstack, vb_name, name, "");
2077 complain (&invalid_cpp_abbrev_complaint, *pp);
2078 fip->list->field.name =
2079 obconcat (&objfile->type_obstack,
2080 "INVALID_CPLUSPLUS_ABBREV", "", "");
2084 /* At this point, *pp points to the ':'. Skip it and read the
2090 complain (&invalid_cpp_abbrev_complaint, *pp);
2093 fip->list->field.type = read_type (pp, objfile);
2095 (*pp)++; /* Skip the comma. */
2101 fip->list->field.bitpos = read_huge_number (pp, ';', &nbits);
2105 /* This field is unpacked. */
2106 fip->list->field.bitsize = 0;
2107 fip->list->visibility = VISIBILITY_PRIVATE;
2111 complain (&invalid_cpp_abbrev_complaint, *pp);
2112 /* We have no idea what syntax an unrecognized abbrev would have, so
2113 better return 0. If we returned 1, we would need to at least advance
2114 *pp to avoid an infinite loop. */
2121 read_one_struct_field (fip, pp, p, type, objfile)
2122 struct field_info *fip;
2126 struct objfile *objfile;
2128 fip -> list -> field.name =
2129 obsavestring (*pp, p - *pp, &objfile -> type_obstack);
2132 /* This means we have a visibility for a field coming. */
2136 fip -> list -> visibility = *(*pp)++;
2137 switch (fip -> list -> visibility)
2139 case VISIBILITY_PRIVATE:
2140 case VISIBILITY_PROTECTED:
2143 case VISIBILITY_PUBLIC:
2148 /* Unknown visibility specifier. */
2149 complain (&stabs_general_complaint,
2150 "unknown visibility specifier");
2157 /* normal dbx-style format, no explicit visibility */
2158 fip -> list -> visibility = VISIBILITY_PUBLIC;
2161 fip -> list -> field.type = read_type (pp, objfile);
2166 /* Possible future hook for nested types. */
2169 fip -> list -> field.bitpos = (long)-2; /* nested type */
2175 /* Static class member. */
2176 fip -> list -> field.bitpos = (long) -1;
2182 fip -> list -> field.bitsize = (long) savestring (*pp, p - *pp);
2186 else if (**pp != ',')
2188 /* Bad structure-type format. */
2189 complain (&stabs_general_complaint, "bad structure-type format");
2193 (*pp)++; /* Skip the comma. */
2197 fip -> list -> field.bitpos = read_huge_number (pp, ',', &nbits);
2200 complain (&stabs_general_complaint, "bad structure-type format");
2203 fip -> list -> field.bitsize = read_huge_number (pp, ';', &nbits);
2206 complain (&stabs_general_complaint, "bad structure-type format");
2211 /* FIXME-tiemann: Can't the compiler put out something which
2212 lets us distinguish these? (or maybe just not put out anything
2213 for the field). What is the story here? What does the compiler
2214 really do? Also, patch gdb.texinfo for this case; I document
2215 it as a possible problem there. Search for "DBX-style". */
2217 /* This is wrong because this is identical to the symbols
2218 produced for GCC 0-size arrays. For example:
2223 The code which dumped core in such circumstances should be
2224 fixed not to dump core. */
2226 /* g++ -g0 can put out bitpos & bitsize zero for a static
2227 field. This does not give us any way of getting its
2228 class, so we can't know its name. But we can just
2229 ignore the field so we don't dump core and other nasty
2231 if (fip -> list -> field.bitpos == 0 && fip -> list -> field.bitsize == 0)
2233 complain (&dbx_class_complaint);
2234 /* Ignore this field. */
2235 fip -> list = fip -> list -> next;
2240 /* Detect an unpacked field and mark it as such.
2241 dbx gives a bit size for all fields.
2242 Note that forward refs cannot be packed,
2243 and treat enums as if they had the width of ints. */
2245 if (TYPE_CODE (fip -> list -> field.type) != TYPE_CODE_INT
2246 && TYPE_CODE (fip -> list -> field.type) != TYPE_CODE_ENUM)
2248 fip -> list -> field.bitsize = 0;
2250 if ((fip -> list -> field.bitsize
2251 == TARGET_CHAR_BIT * TYPE_LENGTH (fip -> list -> field.type)
2252 || (TYPE_CODE (fip -> list -> field.type) == TYPE_CODE_ENUM
2253 && (fip -> list -> field.bitsize
2258 fip -> list -> field.bitpos % 8 == 0)
2260 fip -> list -> field.bitsize = 0;
2266 /* Read struct or class data fields. They have the form:
2268 NAME : [VISIBILITY] TYPENUM , BITPOS , BITSIZE ;
2270 At the end, we see a semicolon instead of a field.
2272 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
2275 The optional VISIBILITY is one of:
2277 '/0' (VISIBILITY_PRIVATE)
2278 '/1' (VISIBILITY_PROTECTED)
2279 '/2' (VISIBILITY_PUBLIC)
2281 or nothing, for C style fields with public visibility.
2283 Returns 1 for success, 0 for failure. */
2286 read_struct_fields (fip, pp, type, objfile)
2287 struct field_info *fip;
2290 struct objfile *objfile;
2293 struct nextfield *new;
2295 /* We better set p right now, in case there are no fields at all... */
2299 /* Read each data member type until we find the terminating ';' at the end of
2300 the data member list, or break for some other reason such as finding the
2301 start of the member function list. */
2305 STABS_CONTINUE (pp);
2306 /* Get space to record the next field's data. */
2307 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
2308 make_cleanup (free, new);
2309 memset (new, 0, sizeof (struct nextfield));
2310 new -> next = fip -> list;
2313 /* Get the field name. */
2315 /* If is starts with CPLUS_MARKER it is a special abbreviation, unless
2316 the CPLUS_MARKER is followed by an underscore, in which case it is
2317 just the name of an anonymous type, which we should handle like any
2319 if (*p == CPLUS_MARKER && p[1] != '_')
2321 if (!read_cpp_abbrev (fip, pp, type, objfile))
2326 /* Look for the ':' that separates the field name from the field
2327 values. Data members are delimited by a single ':', while member
2328 functions are delimited by a pair of ':'s. When we hit the member
2329 functions (if any), terminate scan loop and return. */
2331 while (*p != ':' && *p != '\0')
2338 /* Check to see if we have hit the member functions yet. */
2343 read_one_struct_field (fip, pp, p, type, objfile);
2347 /* chill the list of fields: the last entry (at the head) is a
2348 partially constructed entry which we now scrub. */
2349 fip -> list = fip -> list -> next;
2354 /* The stabs for C++ derived classes contain baseclass information which
2355 is marked by a '!' character after the total size. This function is
2356 called when we encounter the baseclass marker, and slurps up all the
2357 baseclass information.
2359 Immediately following the '!' marker is the number of base classes that
2360 the class is derived from, followed by information for each base class.
2361 For each base class, there are two visibility specifiers, a bit offset
2362 to the base class information within the derived class, a reference to
2363 the type for the base class, and a terminating semicolon.
2365 A typical example, with two base classes, would be "!2,020,19;0264,21;".
2367 Baseclass information marker __________________|| | | | | | |
2368 Number of baseclasses __________________________| | | | | | |
2369 Visibility specifiers (2) ________________________| | | | | |
2370 Offset in bits from start of class _________________| | | | |
2371 Type number for base class ___________________________| | | |
2372 Visibility specifiers (2) _______________________________| | |
2373 Offset in bits from start of class ________________________| |
2374 Type number of base class ____________________________________|
2376 Return 1 for success, 0 for (error-type-inducing) failure. */
2379 read_baseclasses (fip, pp, type, objfile)
2380 struct field_info *fip;
2383 struct objfile *objfile;
2386 struct nextfield *new;
2394 /* Skip the '!' baseclass information marker. */
2398 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2401 TYPE_N_BASECLASSES (type) = read_huge_number (pp, ',', &nbits);
2407 /* Some stupid compilers have trouble with the following, so break
2408 it up into simpler expressions. */
2409 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *)
2410 TYPE_ALLOC (type, B_BYTES (TYPE_N_BASECLASSES (type)));
2413 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
2416 pointer = (char *) TYPE_ALLOC (type, num_bytes);
2417 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
2421 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
2423 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
2425 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
2426 make_cleanup (free, new);
2427 memset (new, 0, sizeof (struct nextfield));
2428 new -> next = fip -> list;
2430 new -> field.bitsize = 0; /* this should be an unpacked field! */
2432 STABS_CONTINUE (pp);
2436 /* Nothing to do. */
2439 SET_TYPE_FIELD_VIRTUAL (type, i);
2442 /* Bad visibility format. */
2446 new -> visibility = *(*pp)++;
2447 switch (new -> visibility)
2449 case VISIBILITY_PRIVATE:
2450 case VISIBILITY_PROTECTED:
2451 case VISIBILITY_PUBLIC:
2454 /* Bad visibility format. */
2461 /* The remaining value is the bit offset of the portion of the object
2462 corresponding to this baseclass. Always zero in the absence of
2463 multiple inheritance. */
2465 new -> field.bitpos = read_huge_number (pp, ',', &nbits);
2470 /* The last piece of baseclass information is the type of the
2471 base class. Read it, and remember it's type name as this
2474 new -> field.type = read_type (pp, objfile);
2475 new -> field.name = type_name_no_tag (new -> field.type);
2477 /* skip trailing ';' and bump count of number of fields seen */
2486 /* The tail end of stabs for C++ classes that contain a virtual function
2487 pointer contains a tilde, a %, and a type number.
2488 The type number refers to the base class (possibly this class itself) which
2489 contains the vtable pointer for the current class.
2491 This function is called when we have parsed all the method declarations,
2492 so we can look for the vptr base class info. */
2495 read_tilde_fields (fip, pp, type, objfile)
2496 struct field_info *fip;
2499 struct objfile *objfile;
2503 STABS_CONTINUE (pp);
2505 /* If we are positioned at a ';', then skip it. */
2515 if (**pp == '=' || **pp == '+' || **pp == '-')
2517 /* Obsolete flags that used to indicate the presence
2518 of constructors and/or destructors. */
2522 /* Read either a '%' or the final ';'. */
2523 if (*(*pp)++ == '%')
2525 /* The next number is the type number of the base class
2526 (possibly our own class) which supplies the vtable for
2527 this class. Parse it out, and search that class to find
2528 its vtable pointer, and install those into TYPE_VPTR_BASETYPE
2529 and TYPE_VPTR_FIELDNO. */
2534 t = read_type (pp, objfile);
2536 while (*p != '\0' && *p != ';')
2542 /* Premature end of symbol. */
2546 TYPE_VPTR_BASETYPE (type) = t;
2547 if (type == t) /* Our own class provides vtbl ptr */
2549 for (i = TYPE_NFIELDS (t) - 1;
2550 i >= TYPE_N_BASECLASSES (t);
2553 if (! strncmp (TYPE_FIELD_NAME (t, i), vptr_name,
2554 sizeof (vptr_name) - 1))
2556 TYPE_VPTR_FIELDNO (type) = i;
2560 /* Virtual function table field not found. */
2561 complain (&vtbl_notfound_complaint, TYPE_NAME (type));
2566 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
2577 attach_fn_fields_to_type (fip, type)
2578 struct field_info *fip;
2579 register struct type *type;
2583 for (n = 0; n < TYPE_N_BASECLASSES (type); n++)
2585 if (TYPE_CODE (TYPE_BASECLASS (type, n)) == TYPE_CODE_UNDEF)
2587 /* @@ Memory leak on objfile -> type_obstack? */
2590 TYPE_NFN_FIELDS_TOTAL (type) +=
2591 TYPE_NFN_FIELDS_TOTAL (TYPE_BASECLASS (type, n));
2594 for (n = TYPE_NFN_FIELDS (type);
2595 fip -> fnlist != NULL;
2596 fip -> fnlist = fip -> fnlist -> next)
2598 --n; /* Circumvent Sun3 compiler bug */
2599 TYPE_FN_FIELDLISTS (type)[n] = fip -> fnlist -> fn_fieldlist;
2604 /* Create the vector of fields, and record how big it is.
2605 We need this info to record proper virtual function table information
2606 for this class's virtual functions. */
2609 attach_fields_to_type (fip, type, objfile)
2610 struct field_info *fip;
2611 register struct type *type;
2612 struct objfile *objfile;
2614 register int nfields = 0;
2615 register int non_public_fields = 0;
2616 register struct nextfield *scan;
2618 /* Count up the number of fields that we have, as well as taking note of
2619 whether or not there are any non-public fields, which requires us to
2620 allocate and build the private_field_bits and protected_field_bits
2623 for (scan = fip -> list; scan != NULL; scan = scan -> next)
2626 if (scan -> visibility != VISIBILITY_PUBLIC)
2628 non_public_fields++;
2632 /* Now we know how many fields there are, and whether or not there are any
2633 non-public fields. Record the field count, allocate space for the
2634 array of fields, and create blank visibility bitfields if necessary. */
2636 TYPE_NFIELDS (type) = nfields;
2637 TYPE_FIELDS (type) = (struct field *)
2638 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2639 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
2641 if (non_public_fields)
2643 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2645 TYPE_FIELD_PRIVATE_BITS (type) =
2646 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2647 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
2649 TYPE_FIELD_PROTECTED_BITS (type) =
2650 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2651 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
2654 /* Copy the saved-up fields into the field vector. Start from the head
2655 of the list, adding to the tail of the field array, so that they end
2656 up in the same order in the array in which they were added to the list. */
2658 while (nfields-- > 0)
2660 TYPE_FIELD (type, nfields) = fip -> list -> field;
2661 switch (fip -> list -> visibility)
2663 case VISIBILITY_PRIVATE:
2664 SET_TYPE_FIELD_PRIVATE (type, nfields);
2667 case VISIBILITY_PROTECTED:
2668 SET_TYPE_FIELD_PROTECTED (type, nfields);
2671 case VISIBILITY_PUBLIC:
2675 /* Should warn about this unknown visibility? */
2678 fip -> list = fip -> list -> next;
2683 /* Read the description of a structure (or union type) and return an object
2684 describing the type.
2686 PP points to a character pointer that points to the next unconsumed token
2687 in the the stabs string. For example, given stabs "A:T4=s4a:1,0,32;;",
2688 *PP will point to "4a:1,0,32;;".
2690 TYPE points to an incomplete type that needs to be filled in.
2692 OBJFILE points to the current objfile from which the stabs information is
2693 being read. (Note that it is redundant in that TYPE also contains a pointer
2694 to this same objfile, so it might be a good idea to eliminate it. FIXME).
2697 static struct type *
2698 read_struct_type (pp, type, objfile)
2701 struct objfile *objfile;
2703 struct cleanup *back_to;
2704 struct field_info fi;
2709 back_to = make_cleanup (null_cleanup, 0);
2711 INIT_CPLUS_SPECIFIC (type);
2712 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
2714 /* First comes the total size in bytes. */
2718 TYPE_LENGTH (type) = read_huge_number (pp, 0, &nbits);
2720 return error_type (pp);
2723 /* Now read the baseclasses, if any, read the regular C struct or C++
2724 class member fields, attach the fields to the type, read the C++
2725 member functions, attach them to the type, and then read any tilde
2726 field (baseclass specifier for the class holding the main vtable). */
2728 if (!read_baseclasses (&fi, pp, type, objfile)
2729 || !read_struct_fields (&fi, pp, type, objfile)
2730 || !attach_fields_to_type (&fi, type, objfile)
2731 || !read_member_functions (&fi, pp, type, objfile)
2732 || !attach_fn_fields_to_type (&fi, type)
2733 || !read_tilde_fields (&fi, pp, type, objfile))
2735 do_cleanups (back_to);
2736 return (error_type (pp));
2739 do_cleanups (back_to);
2743 /* Read a definition of an array type,
2744 and create and return a suitable type object.
2745 Also creates a range type which represents the bounds of that
2748 static struct type *
2749 read_array_type (pp, type, objfile)
2751 register struct type *type;
2752 struct objfile *objfile;
2754 struct type *index_type, *element_type, *range_type;
2759 /* Format of an array type:
2760 "ar<index type>;lower;upper;<array_contents_type>". Put code in
2763 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
2764 for these, produce a type like float[][]. */
2766 index_type = read_type (pp, objfile);
2768 /* Improper format of array type decl. */
2769 return error_type (pp);
2772 if (!(**pp >= '0' && **pp <= '9'))
2777 lower = read_huge_number (pp, ';', &nbits);
2779 return error_type (pp);
2781 if (!(**pp >= '0' && **pp <= '9'))
2786 upper = read_huge_number (pp, ';', &nbits);
2788 return error_type (pp);
2790 element_type = read_type (pp, objfile);
2799 create_range_type ((struct type *) NULL, index_type, lower, upper);
2800 type = create_array_type (type, element_type, range_type);
2802 /* If we have an array whose element type is not yet known, but whose
2803 bounds *are* known, record it to be adjusted at the end of the file. */
2805 if (TYPE_LENGTH (element_type) == 0 && !adjustable)
2807 add_undefined_type (type);
2814 /* Read a definition of an enumeration type,
2815 and create and return a suitable type object.
2816 Also defines the symbols that represent the values of the type. */
2818 static struct type *
2819 read_enum_type (pp, type, objfile)
2821 register struct type *type;
2822 struct objfile *objfile;
2827 register struct symbol *sym;
2829 struct pending **symlist;
2830 struct pending *osyms, *syms;
2834 /* FIXME! The stabs produced by Sun CC merrily define things that ought
2835 to be file-scope, between N_FN entries, using N_LSYM. What's a mother
2836 to do? For now, force all enum values to file scope. */
2837 if (within_function)
2838 symlist = &local_symbols;
2841 symlist = &file_symbols;
2843 o_nsyms = osyms ? osyms->nsyms : 0;
2845 /* Read the value-names and their values.
2846 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
2847 A semicolon or comma instead of a NAME means the end. */
2848 while (**pp && **pp != ';' && **pp != ',')
2851 STABS_CONTINUE (pp);
2853 while (*p != ':') p++;
2854 name = obsavestring (*pp, p - *pp, &objfile -> symbol_obstack);
2856 n = read_huge_number (pp, ',', &nbits);
2858 return error_type (pp);
2860 sym = (struct symbol *)
2861 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
2862 memset (sym, 0, sizeof (struct symbol));
2863 SYMBOL_NAME (sym) = name;
2864 SYMBOL_LANGUAGE (sym) = current_subfile -> language;
2865 SYMBOL_CLASS (sym) = LOC_CONST;
2866 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2867 SYMBOL_VALUE (sym) = n;
2868 add_symbol_to_list (sym, symlist);
2873 (*pp)++; /* Skip the semicolon. */
2875 /* Now fill in the fields of the type-structure. */
2877 TYPE_LENGTH (type) = sizeof (int);
2878 TYPE_CODE (type) = TYPE_CODE_ENUM;
2879 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
2880 TYPE_NFIELDS (type) = nsyms;
2881 TYPE_FIELDS (type) = (struct field *)
2882 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2883 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nsyms);
2885 /* Find the symbols for the values and put them into the type.
2886 The symbols can be found in the symlist that we put them on
2887 to cause them to be defined. osyms contains the old value
2888 of that symlist; everything up to there was defined by us. */
2889 /* Note that we preserve the order of the enum constants, so
2890 that in something like "enum {FOO, LAST_THING=FOO}" we print
2891 FOO, not LAST_THING. */
2893 for (syms = *symlist, n = 0; syms; syms = syms->next)
2898 for (; j < syms->nsyms; j++,n++)
2900 struct symbol *xsym = syms->symbol[j];
2901 SYMBOL_TYPE (xsym) = type;
2902 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
2903 TYPE_FIELD_VALUE (type, n) = 0;
2904 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
2905 TYPE_FIELD_BITSIZE (type, n) = 0;
2912 /* This screws up perfectly good C programs with enums. FIXME. */
2913 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2914 if(TYPE_NFIELDS(type) == 2 &&
2915 ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
2916 STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2917 (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
2918 STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
2919 TYPE_CODE(type) = TYPE_CODE_BOOL;
2925 /* Sun's ACC uses a somewhat saner method for specifying the builtin
2926 typedefs in every file (for int, long, etc):
2928 type = b <signed> <width>; <offset>; <nbits>
2929 signed = u or s. Possible c in addition to u or s (for char?).
2930 offset = offset from high order bit to start bit of type.
2931 width is # bytes in object of this type, nbits is # bits in type.
2933 The width/offset stuff appears to be for small objects stored in
2934 larger ones (e.g. `shorts' in `int' registers). We ignore it for now,
2937 static struct type *
2938 read_sun_builtin_type (pp, typenums, objfile)
2941 struct objfile *objfile;
2956 return error_type (pp);
2960 /* For some odd reason, all forms of char put a c here. This is strange
2961 because no other type has this honor. We can safely ignore this because
2962 we actually determine 'char'acterness by the number of bits specified in
2968 /* The first number appears to be the number of bytes occupied
2969 by this type, except that unsigned short is 4 instead of 2.
2970 Since this information is redundant with the third number,
2971 we will ignore it. */
2972 read_huge_number (pp, ';', &nbits);
2974 return error_type (pp);
2976 /* The second number is always 0, so ignore it too. */
2977 read_huge_number (pp, ';', &nbits);
2979 return error_type (pp);
2981 /* The third number is the number of bits for this type. */
2982 type_bits = read_huge_number (pp, 0, &nbits);
2984 return error_type (pp);
2987 /* FIXME. Here we should just be able to make a type of the right
2988 number of bits and signedness. FIXME. */
2990 if (type_bits == TARGET_LONG_LONG_BIT)
2991 return (lookup_fundamental_type (objfile,
2992 signed_type? FT_LONG_LONG: FT_UNSIGNED_LONG_LONG));
2994 if (type_bits == TARGET_INT_BIT)
2996 /* FIXME -- the only way to distinguish `int' from `long'
2997 is to look at its name! */
3000 if (long_kludge_name && long_kludge_name[0] == 'l' /* long */)
3001 return lookup_fundamental_type (objfile, FT_LONG);
3003 return lookup_fundamental_type (objfile, FT_INTEGER);
3007 if (long_kludge_name
3008 && ((long_kludge_name[0] == 'u' /* unsigned */ &&
3009 long_kludge_name[9] == 'l' /* long */)
3010 || (long_kludge_name[0] == 'l' /* long unsigned */)))
3011 return lookup_fundamental_type (objfile, FT_UNSIGNED_LONG);
3013 return lookup_fundamental_type (objfile, FT_UNSIGNED_INTEGER);
3017 if (type_bits == TARGET_SHORT_BIT)
3018 return (lookup_fundamental_type (objfile,
3019 signed_type? FT_SHORT: FT_UNSIGNED_SHORT));
3021 if (type_bits == TARGET_CHAR_BIT)
3022 return (lookup_fundamental_type (objfile,
3023 signed_type? FT_CHAR: FT_UNSIGNED_CHAR));
3026 return lookup_fundamental_type (objfile, FT_VOID);
3028 return error_type (pp);
3030 return init_type (type_bits == 0 ? TYPE_CODE_VOID : TYPE_CODE_INT,
3031 type_bits / TARGET_CHAR_BIT,
3032 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *)NULL,
3037 static struct type *
3038 read_sun_floating_type (pp, typenums, objfile)
3041 struct objfile *objfile;
3047 /* The first number has more details about the type, for example
3049 details = read_huge_number (pp, ';', &nbits);
3051 return error_type (pp);
3053 /* The second number is the number of bytes occupied by this type */
3054 nbytes = read_huge_number (pp, ';', &nbits);
3056 return error_type (pp);
3058 if (details == NF_COMPLEX || details == NF_COMPLEX16
3059 || details == NF_COMPLEX32)
3060 /* This is a type we can't handle, but we do know the size.
3061 We also will be able to give it a name. */
3062 return init_type (TYPE_CODE_ERROR, nbytes, 0, NULL, objfile);
3064 return init_type (TYPE_CODE_FLT, nbytes, 0, NULL, objfile);
3067 /* Read a number from the string pointed to by *PP.
3068 The value of *PP is advanced over the number.
3069 If END is nonzero, the character that ends the
3070 number must match END, or an error happens;
3071 and that character is skipped if it does match.
3072 If END is zero, *PP is left pointing to that character.
3074 If the number fits in a long, set *BITS to 0 and return the value.
3075 If not, set *BITS to be the number of bits in the number and return 0.
3077 If encounter garbage, set *BITS to -1 and return 0. */
3080 read_huge_number (pp, end, bits)
3100 /* Leading zero means octal. GCC uses this to output values larger
3101 than an int (because that would be hard in decimal). */
3108 upper_limit = LONG_MAX / radix;
3109 while ((c = *p++) >= '0' && c < ('0' + radix))
3111 if (n <= upper_limit)
3114 n += c - '0'; /* FIXME this overflows anyway */
3119 /* This depends on large values being output in octal, which is
3126 /* Ignore leading zeroes. */
3130 else if (c == '2' || c == '3')
3156 /* Large decimal constants are an error (because it is hard to
3157 count how many bits are in them). */
3163 /* -0x7f is the same as 0x80. So deal with it by adding one to
3164 the number of bits. */
3176 /* It's *BITS which has the interesting information. */
3180 static struct type *
3181 read_range_type (pp, typenums, objfile)
3184 struct objfile *objfile;
3190 struct type *result_type;
3191 struct type *index_type;
3193 /* First comes a type we are a subrange of.
3194 In C it is usually 0, 1 or the type being defined. */
3195 /* FIXME: according to stabs.texinfo and AIX doc, this can be a type-id
3196 not just a type number. */
3197 if (read_type_number (pp, rangenums) != 0)
3198 return error_type (pp);
3199 self_subrange = (rangenums[0] == typenums[0] &&
3200 rangenums[1] == typenums[1]);
3202 /* A semicolon should now follow; skip it. */
3206 /* The remaining two operands are usually lower and upper bounds
3207 of the range. But in some special cases they mean something else. */
3208 n2 = read_huge_number (pp, ';', &n2bits);
3209 n3 = read_huge_number (pp, ';', &n3bits);
3211 if (n2bits == -1 || n3bits == -1)
3212 return error_type (pp);
3214 /* If limits are huge, must be large integral type. */
3215 if (n2bits != 0 || n3bits != 0)
3217 char got_signed = 0;
3218 char got_unsigned = 0;
3219 /* Number of bits in the type. */
3222 /* Range from 0 to <large number> is an unsigned large integral type. */
3223 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
3228 /* Range from <large number> to <large number>-1 is a large signed
3230 else if (n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
3236 if (got_signed || got_unsigned)
3238 return init_type (TYPE_CODE_INT, nbits / TARGET_CHAR_BIT,
3239 got_unsigned ? TYPE_FLAG_UNSIGNED : 0, NULL,
3243 return error_type (pp);
3246 /* A type defined as a subrange of itself, with bounds both 0, is void. */
3247 if (self_subrange && n2 == 0 && n3 == 0)
3248 return init_type (TYPE_CODE_VOID, 0, 0, NULL, objfile);
3250 /* If n3 is zero and n2 is not, we want a floating type,
3251 and n2 is the width in bytes.
3253 Fortran programs appear to use this for complex types also,
3254 and they give no way to distinguish between double and single-complex!
3256 GDB does not have complex types.
3258 Just return the complex as a float of that size. It won't work right
3259 for the complex values, but at least it makes the file loadable.
3261 FIXME, we may be able to distinguish these by their names. FIXME. */
3263 if (n3 == 0 && n2 > 0)
3265 return init_type (TYPE_CODE_FLT, n2, 0, NULL, objfile);
3268 /* If the upper bound is -1, it must really be an unsigned int. */
3270 else if (n2 == 0 && n3 == -1)
3272 /* It is unsigned int or unsigned long. */
3273 /* GCC sometimes uses this for long long too. We could
3274 distinguish it by the name, but we don't. */
3275 return init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3276 TYPE_FLAG_UNSIGNED, NULL, objfile);
3279 /* Special case: char is defined (Who knows why) as a subrange of
3280 itself with range 0-127. */
3281 else if (self_subrange && n2 == 0 && n3 == 127)
3282 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
3284 /* We used to do this only for subrange of self or subrange of int. */
3288 /* n3 actually gives the size. */
3289 return init_type (TYPE_CODE_INT, - n3, TYPE_FLAG_UNSIGNED,
3292 return init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED, NULL, objfile);
3294 return init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED, NULL, objfile);
3296 /* -1 is used for the upper bound of (4 byte) "unsigned int" and
3297 "unsigned long", and we already checked for that,
3298 so don't need to test for it here. */
3300 /* I think this is for Convex "long long". Since I don't know whether
3301 Convex sets self_subrange, I also accept that particular size regardless
3302 of self_subrange. */
3303 else if (n3 == 0 && n2 < 0
3305 || n2 == - TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT))
3306 return init_type (TYPE_CODE_INT, - n2, 0, NULL, objfile);
3307 else if (n2 == -n3 -1)
3310 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
3312 return init_type (TYPE_CODE_INT, 2, 0, NULL, objfile);
3313 if (n3 == 0x7fffffff)
3314 return init_type (TYPE_CODE_INT, 4, 0, NULL, objfile);
3317 /* We have a real range type on our hands. Allocate space and
3318 return a real pointer. */
3320 /* At this point I don't have the faintest idea how to deal with
3321 a self_subrange type; I'm going to assume that this is used
3322 as an idiom, and that all of them are special cases. So . . . */
3324 return error_type (pp);
3326 index_type = *dbx_lookup_type (rangenums);
3327 if (index_type == NULL)
3329 /* Does this actually ever happen? Is that why we are worrying
3330 about dealing with it rather than just calling error_type? */
3332 static struct type *range_type_index;
3334 complain (&range_type_base_complaint, rangenums[1]);
3335 if (range_type_index == NULL)
3337 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3338 0, "range type index type", NULL);
3339 index_type = range_type_index;
3342 result_type = create_range_type ((struct type *) NULL, index_type, n2, n3);
3343 return (result_type);
3346 /* Read in an argument list. This is a list of types, separated by commas
3347 and terminated with END. Return the list of types read in, or (struct type
3348 **)-1 if there is an error. */
3350 static struct type **
3351 read_args (pp, end, objfile)
3354 struct objfile *objfile;
3356 /* FIXME! Remove this arbitrary limit! */
3357 struct type *types[1024], **rval; /* allow for fns of 1023 parameters */
3363 /* Invalid argument list: no ','. */
3364 return (struct type **)-1;
3366 STABS_CONTINUE (pp);
3367 types[n++] = read_type (pp, objfile);
3369 (*pp)++; /* get past `end' (the ':' character) */
3373 rval = (struct type **) xmalloc (2 * sizeof (struct type *));
3375 else if (TYPE_CODE (types[n-1]) != TYPE_CODE_VOID)
3377 rval = (struct type **) xmalloc ((n + 1) * sizeof (struct type *));
3378 memset (rval + n, 0, sizeof (struct type *));
3382 rval = (struct type **) xmalloc (n * sizeof (struct type *));
3384 memcpy (rval, types, n * sizeof (struct type *));
3388 /* Add a common block's start address to the offset of each symbol
3389 declared to be in it (by being between a BCOMM/ECOMM pair that uses
3390 the common block name). */
3393 fix_common_block (sym, valu)
3397 struct pending *next = (struct pending *) SYMBOL_NAMESPACE (sym);
3398 for ( ; next; next = next->next)
3401 for (j = next->nsyms - 1; j >= 0; j--)
3402 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
3408 /* What about types defined as forward references inside of a small lexical
3410 /* Add a type to the list of undefined types to be checked through
3411 once this file has been read in. */
3414 add_undefined_type (type)
3417 if (undef_types_length == undef_types_allocated)
3419 undef_types_allocated *= 2;
3420 undef_types = (struct type **)
3421 xrealloc ((char *) undef_types,
3422 undef_types_allocated * sizeof (struct type *));
3424 undef_types[undef_types_length++] = type;
3427 /* Go through each undefined type, see if it's still undefined, and fix it
3428 up if possible. We have two kinds of undefined types:
3430 TYPE_CODE_ARRAY: Array whose target type wasn't defined yet.
3431 Fix: update array length using the element bounds
3432 and the target type's length.
3433 TYPE_CODE_STRUCT, TYPE_CODE_UNION: Structure whose fields were not
3434 yet defined at the time a pointer to it was made.
3435 Fix: Do a full lookup on the struct/union tag. */
3437 cleanup_undefined_types ()
3441 for (type = undef_types; type < undef_types + undef_types_length; type++)
3443 switch (TYPE_CODE (*type))
3446 case TYPE_CODE_STRUCT:
3447 case TYPE_CODE_UNION:
3448 case TYPE_CODE_ENUM:
3450 /* Check if it has been defined since. */
3451 if (TYPE_FLAGS (*type) & TYPE_FLAG_STUB)
3453 struct pending *ppt;
3455 /* Name of the type, without "struct" or "union" */
3456 char *typename = TYPE_TAG_NAME (*type);
3458 if (typename == NULL)
3460 static struct complaint msg = {"need a type name", 0, 0};
3464 for (ppt = file_symbols; ppt; ppt = ppt->next)
3466 for (i = 0; i < ppt->nsyms; i++)
3468 struct symbol *sym = ppt->symbol[i];
3470 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3471 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
3472 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
3474 && STREQ (SYMBOL_NAME (sym), typename))
3476 memcpy (*type, SYMBOL_TYPE (sym),
3477 sizeof (struct type));
3485 case TYPE_CODE_ARRAY:
3487 struct type *range_type;
3490 if (TYPE_LENGTH (*type) != 0) /* Better be unknown */
3492 if (TYPE_NFIELDS (*type) != 1)
3494 range_type = TYPE_FIELD_TYPE (*type, 0);
3495 if (TYPE_CODE (range_type) != TYPE_CODE_RANGE)
3498 /* Now recompute the length of the array type, based on its
3499 number of elements and the target type's length. */
3500 lower = TYPE_FIELD_BITPOS (range_type, 0);
3501 upper = TYPE_FIELD_BITPOS (range_type, 1);
3502 TYPE_LENGTH (*type) = (upper - lower + 1)
3503 * TYPE_LENGTH (TYPE_TARGET_TYPE (*type));
3510 static struct complaint msg = {"\
3511 GDB internal error. cleanup_undefined_types with bad type %d.", 0, 0};
3512 complain (&msg, TYPE_CODE (*type));
3517 undef_types_length = 0;
3520 /* Scan through all of the global symbols defined in the object file,
3521 assigning values to the debugging symbols that need to be assigned
3522 to. Get these symbols from the minimal symbol table. */
3525 scan_file_globals (objfile)
3526 struct objfile *objfile;
3529 struct minimal_symbol *msymbol;
3530 struct symbol *sym, *prev;
3532 if (objfile->msymbols == 0) /* Beware the null file. */
3535 for (msymbol = objfile -> msymbols; SYMBOL_NAME (msymbol) != NULL; msymbol++)
3541 /* Get the hash index and check all the symbols
3542 under that hash index. */
3544 hash = hashname (SYMBOL_NAME (msymbol));
3546 for (sym = global_sym_chain[hash]; sym;)
3548 if (SYMBOL_NAME (msymbol)[0] == SYMBOL_NAME (sym)[0] &&
3549 STREQ(SYMBOL_NAME (msymbol) + 1, SYMBOL_NAME (sym) + 1))
3551 /* Splice this symbol out of the hash chain and
3552 assign the value we have to it. */
3555 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
3559 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
3562 /* Check to see whether we need to fix up a common block. */
3563 /* Note: this code might be executed several times for
3564 the same symbol if there are multiple references. */
3566 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
3568 fix_common_block (sym, SYMBOL_VALUE_ADDRESS (msymbol));
3572 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msymbol);
3577 sym = SYMBOL_VALUE_CHAIN (prev);
3581 sym = global_sym_chain[hash];
3587 sym = SYMBOL_VALUE_CHAIN (sym);
3593 /* Initialize anything that needs initializing when starting to read
3594 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
3602 /* Initialize anything that needs initializing when a completely new
3603 symbol file is specified (not just adding some symbols from another
3604 file, e.g. a shared library). */
3607 stabsread_new_init ()
3609 /* Empty the hash table of global syms looking for values. */
3610 memset (global_sym_chain, 0, sizeof (global_sym_chain));
3613 /* Initialize anything that needs initializing at the same time as
3614 start_symtab() is called. */
3618 global_stabs = NULL; /* AIX COFF */
3619 /* Leave FILENUM of 0 free for builtin types and this file's types. */
3620 n_this_object_header_files = 1;
3621 type_vector_length = 0;
3622 type_vector = (struct type **) 0;
3625 /* Call after end_symtab() */
3631 free ((char *) type_vector);
3634 type_vector_length = 0;
3635 previous_stab_code = 0;
3639 finish_global_stabs (objfile)
3640 struct objfile *objfile;
3644 patch_block_stabs (global_symbols, global_stabs, objfile);
3645 free ((PTR) global_stabs);
3646 global_stabs = NULL;
3650 /* Initializer for this module */
3653 _initialize_stabsread ()
3655 undef_types_allocated = 20;
3656 undef_types_length = 0;
3657 undef_types = (struct type **)
3658 xmalloc (undef_types_allocated * sizeof (struct type *));