1 /* Support routines for decoding "stabs" debugging information format.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* Support routines for reading and decoding debugging information in
24 the "stabs" format. This format is used with many systems that use
25 the a.out object file format, as well as some systems that use
26 COFF or ELF where the stabs data is placed in a special section.
27 Avoid placing any object file format specific code in this file. */
30 #include "gdb_string.h"
35 #include "expression.h"
38 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
40 #include "aout/aout64.h"
41 #include "gdb-stabs.h"
43 #include "complaints.h"
50 /* Ask stabsread.h to define the vars it normally declares `extern'. */
53 #include "stabsread.h" /* Our own declarations */
56 extern void _initialize_stabsread (void);
58 /* The routines that read and process a complete stabs for a C struct or
59 C++ class pass lists of data member fields and lists of member function
60 fields in an instance of a field_info structure, as defined below.
61 This is part of some reorganization of low level C++ support and is
62 expected to eventually go away... (FIXME) */
68 struct nextfield *next;
70 /* This is the raw visibility from the stab. It is not checked
71 for being one of the visibilities we recognize, so code which
72 examines this field better be able to deal. */
78 struct next_fnfieldlist
80 struct next_fnfieldlist *next;
81 struct fn_fieldlist fn_fieldlist;
87 read_one_struct_field (struct field_info *, char **, char *,
88 struct type *, struct objfile *);
90 static char *get_substring (char **, int);
92 static struct type *dbx_alloc_type (int[2], struct objfile *);
94 static long read_huge_number (char **, int, int *);
96 static struct type *error_type (char **, struct objfile *);
99 patch_block_stabs (struct pending *, struct pending_stabs *,
102 static void fix_common_block (struct symbol *, int);
104 static int read_type_number (char **, int *);
106 static struct type *read_range_type (char **, int[2], struct objfile *);
108 static struct type *read_sun_builtin_type (char **, int[2], struct objfile *);
110 static struct type *read_sun_floating_type (char **, int[2],
113 static struct type *read_enum_type (char **, struct type *, struct objfile *);
115 static struct type *rs6000_builtin_type (int);
118 read_member_functions (struct field_info *, char **, struct type *,
122 read_struct_fields (struct field_info *, char **, struct type *,
126 read_baseclasses (struct field_info *, char **, struct type *,
130 read_tilde_fields (struct field_info *, char **, struct type *,
133 static int attach_fn_fields_to_type (struct field_info *, struct type *);
136 attach_fields_to_type (struct field_info *, struct type *, struct objfile *);
138 static struct type *read_struct_type (char **, struct type *,
141 static struct type *read_array_type (char **, struct type *,
144 static struct type **read_args (char **, int, struct objfile *);
147 read_cpp_abbrev (struct field_info *, char **, struct type *,
150 /* new functions added for cfront support */
153 copy_cfront_struct_fields (struct field_info *, struct type *,
156 static char *get_cfront_method_physname (char *);
159 read_cfront_baseclasses (struct field_info *, char **,
160 struct type *, struct objfile *);
163 read_cfront_static_fields (struct field_info *, char **,
164 struct type *, struct objfile *);
166 read_cfront_member_functions (struct field_info *, char **,
167 struct type *, struct objfile *);
169 /* end new functions added for cfront support */
172 add_live_range (struct objfile *, struct symbol *, CORE_ADDR, CORE_ADDR);
174 static int resolve_live_range (struct objfile *, struct symbol *, char *);
176 static int process_reference (char **string);
178 static CORE_ADDR ref_search_value (int refnum);
181 resolve_symbol_reference (struct objfile *, struct symbol *, char *);
183 void stabsread_clear_cache (void);
185 static const char vptr_name[] =
186 {'_', 'v', 'p', 't', 'r', CPLUS_MARKER, '\0'};
187 static const char vb_name[] =
188 {'_', 'v', 'b', CPLUS_MARKER, '\0'};
190 /* Define this as 1 if a pcc declaration of a char or short argument
191 gives the correct address. Otherwise assume pcc gives the
192 address of the corresponding int, which is not the same on a
193 big-endian machine. */
195 #if !defined (BELIEVE_PCC_PROMOTION)
196 #define BELIEVE_PCC_PROMOTION 0
198 #if !defined (BELIEVE_PCC_PROMOTION_TYPE)
199 #define BELIEVE_PCC_PROMOTION_TYPE 0
202 static struct complaint invalid_cpp_abbrev_complaint =
203 {"invalid C++ abbreviation `%s'", 0, 0};
205 static struct complaint invalid_cpp_type_complaint =
206 {"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
208 static struct complaint member_fn_complaint =
209 {"member function type missing, got '%c'", 0, 0};
211 static struct complaint const_vol_complaint =
212 {"const/volatile indicator missing, got '%c'", 0, 0};
214 static struct complaint error_type_complaint =
215 {"debug info mismatch between compiler and debugger", 0, 0};
217 static struct complaint invalid_member_complaint =
218 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
220 static struct complaint range_type_base_complaint =
221 {"base type %d of range type is not defined", 0, 0};
223 static struct complaint reg_value_complaint =
224 {"register number %d too large (max %d) in symbol %s", 0, 0};
226 static struct complaint vtbl_notfound_complaint =
227 {"virtual function table pointer not found when defining class `%s'", 0, 0};
229 static struct complaint unrecognized_cplus_name_complaint =
230 {"Unknown C++ symbol name `%s'", 0, 0};
232 static struct complaint rs6000_builtin_complaint =
233 {"Unknown builtin type %d", 0, 0};
235 static struct complaint unresolved_sym_chain_complaint =
236 {"%s: common block `%s' from global_sym_chain unresolved", 0, 0};
238 static struct complaint stabs_general_complaint =
241 static struct complaint lrs_general_complaint =
244 /* Make a list of forward references which haven't been defined. */
246 static struct type **undef_types;
247 static int undef_types_allocated;
248 static int undef_types_length;
249 static struct symbol *current_symbol = NULL;
251 /* Check for and handle cretinous stabs symbol name continuation! */
252 #define STABS_CONTINUE(pp,objfile) \
254 if (**(pp) == '\\' || (**(pp) == '?' && (*(pp))[1] == '\0')) \
255 *(pp) = next_symbol_text (objfile); \
258 /* FIXME: These probably should be our own types (like rs6000_builtin_type
259 has its own types) rather than builtin_type_*. */
260 static struct type **os9k_type_vector[] =
267 &builtin_type_unsigned_char,
268 &builtin_type_unsigned_short,
269 &builtin_type_unsigned_long,
270 &builtin_type_unsigned_int,
272 &builtin_type_double,
274 &builtin_type_long_double
277 static void os9k_init_type_vector (struct type **);
280 os9k_init_type_vector (struct type **tv)
283 for (i = 0; i < sizeof (os9k_type_vector) / sizeof (struct type **); i++)
284 tv[i] = (os9k_type_vector[i] == 0 ? 0 : *(os9k_type_vector[i]));
287 /* Look up a dbx type-number pair. Return the address of the slot
288 where the type for that number-pair is stored.
289 The number-pair is in TYPENUMS.
291 This can be used for finding the type associated with that pair
292 or for associating a new type with the pair. */
295 dbx_lookup_type (int typenums[2])
297 register int filenum = typenums[0];
298 register int index = typenums[1];
300 register int real_filenum;
301 register struct header_file *f;
304 if (filenum == -1) /* -1,-1 is for temporary types. */
307 if (filenum < 0 || filenum >= n_this_object_header_files)
309 static struct complaint msg =
311 Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
313 complain (&msg, filenum, index, symnum);
321 /* Caller wants address of address of type. We think
322 that negative (rs6k builtin) types will never appear as
323 "lvalues", (nor should they), so we stuff the real type
324 pointer into a temp, and return its address. If referenced,
325 this will do the right thing. */
326 static struct type *temp_type;
328 temp_type = rs6000_builtin_type (index);
332 /* Type is defined outside of header files.
333 Find it in this object file's type vector. */
334 if (index >= type_vector_length)
336 old_len = type_vector_length;
339 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
340 type_vector = (struct type **)
341 xmalloc (type_vector_length * sizeof (struct type *));
343 while (index >= type_vector_length)
345 type_vector_length *= 2;
347 type_vector = (struct type **)
348 xrealloc ((char *) type_vector,
349 (type_vector_length * sizeof (struct type *)));
350 memset (&type_vector[old_len], 0,
351 (type_vector_length - old_len) * sizeof (struct type *));
354 /* Deal with OS9000 fundamental types. */
355 os9k_init_type_vector (type_vector);
357 return (&type_vector[index]);
361 real_filenum = this_object_header_files[filenum];
363 if (real_filenum >= N_HEADER_FILES (current_objfile))
365 struct type *temp_type;
366 struct type **temp_type_p;
368 warning ("GDB internal error: bad real_filenum");
371 temp_type = init_type (TYPE_CODE_ERROR, 0, 0, NULL, NULL);
372 temp_type_p = (struct type **) xmalloc (sizeof (struct type *));
373 *temp_type_p = temp_type;
377 f = HEADER_FILES (current_objfile) + real_filenum;
379 f_orig_length = f->length;
380 if (index >= f_orig_length)
382 while (index >= f->length)
386 f->vector = (struct type **)
387 xrealloc ((char *) f->vector, f->length * sizeof (struct type *));
388 memset (&f->vector[f_orig_length], 0,
389 (f->length - f_orig_length) * sizeof (struct type *));
391 return (&f->vector[index]);
395 /* Make sure there is a type allocated for type numbers TYPENUMS
396 and return the type object.
397 This can create an empty (zeroed) type object.
398 TYPENUMS may be (-1, -1) to return a new type object that is not
399 put into the type vector, and so may not be referred to by number. */
402 dbx_alloc_type (int typenums[2], struct objfile *objfile)
404 register struct type **type_addr;
406 if (typenums[0] == -1)
408 return (alloc_type (objfile));
411 type_addr = dbx_lookup_type (typenums);
413 /* If we are referring to a type not known at all yet,
414 allocate an empty type for it.
415 We will fill it in later if we find out how. */
418 *type_addr = alloc_type (objfile);
424 /* for all the stabs in a given stab vector, build appropriate types
425 and fix their symbols in given symbol vector. */
428 patch_block_stabs (struct pending *symbols, struct pending_stabs *stabs,
429 struct objfile *objfile)
439 /* for all the stab entries, find their corresponding symbols and
440 patch their types! */
442 for (ii = 0; ii < stabs->count; ++ii)
444 name = stabs->stab[ii];
445 pp = (char *) strchr (name, ':');
449 pp = (char *) strchr (pp, ':');
451 sym = find_symbol_in_list (symbols, name, pp - name);
454 /* FIXME-maybe: it would be nice if we noticed whether
455 the variable was defined *anywhere*, not just whether
456 it is defined in this compilation unit. But neither
457 xlc or GCC seem to need such a definition, and until
458 we do psymtabs (so that the minimal symbols from all
459 compilation units are available now), I'm not sure
460 how to get the information. */
462 /* On xcoff, if a global is defined and never referenced,
463 ld will remove it from the executable. There is then
464 a N_GSYM stab for it, but no regular (C_EXT) symbol. */
465 sym = (struct symbol *)
466 obstack_alloc (&objfile->symbol_obstack,
467 sizeof (struct symbol));
469 memset (sym, 0, sizeof (struct symbol));
470 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
471 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
473 obsavestring (name, pp - name, &objfile->symbol_obstack);
475 if (*(pp - 1) == 'F' || *(pp - 1) == 'f')
477 /* I don't think the linker does this with functions,
478 so as far as I know this is never executed.
479 But it doesn't hurt to check. */
481 lookup_function_type (read_type (&pp, objfile));
485 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
487 add_symbol_to_list (sym, &global_symbols);
492 if (*(pp - 1) == 'F' || *(pp - 1) == 'f')
495 lookup_function_type (read_type (&pp, objfile));
499 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
507 /* Read a number by which a type is referred to in dbx data,
508 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
509 Just a single number N is equivalent to (0,N).
510 Return the two numbers by storing them in the vector TYPENUMS.
511 TYPENUMS will then be used as an argument to dbx_lookup_type.
513 Returns 0 for success, -1 for error. */
516 read_type_number (register char **pp, register int *typenums)
522 typenums[0] = read_huge_number (pp, ',', &nbits);
525 typenums[1] = read_huge_number (pp, ')', &nbits);
532 typenums[1] = read_huge_number (pp, 0, &nbits);
540 #define VISIBILITY_PRIVATE '0' /* Stabs character for private field */
541 #define VISIBILITY_PROTECTED '1' /* Stabs character for protected fld */
542 #define VISIBILITY_PUBLIC '2' /* Stabs character for public field */
543 #define VISIBILITY_IGNORE '9' /* Optimized out or zero length */
545 #define CFRONT_VISIBILITY_PRIVATE '2' /* Stabs character for private field */
546 #define CFRONT_VISIBILITY_PUBLIC '1' /* Stabs character for public field */
548 /* This code added to support parsing of ARM/Cfront stabs strings */
550 /* Get substring from string up to char c, advance string pointer past
554 get_substring (char **p, int c)
569 /* Physname gets strcat'd onto sname in order to recreate the mangled
570 name (see funtion gdb_mangle_name in gdbtypes.c). For cfront, make
571 the physname look like that of g++ - take out the initial mangling
572 eg: for sname="a" and fname="foo__1aFPFs_i" return "FPFs_i" */
575 get_cfront_method_physname (char *fname)
578 /* FIXME would like to make this generic for g++ too, but
579 that is already handled in read_member_funcctions */
582 /* search ahead to find the start of the mangled suffix */
583 if (*p == '_' && *(p + 1) == '_') /* compiler generated; probably a ctor/dtor */
585 while (p && (unsigned) ((p + 1) - fname) < strlen (fname) && *(p + 1) != '_')
587 if (!(p && *p == '_' && *(p + 1) == '_'))
588 error ("Invalid mangled function name %s", fname);
589 p += 2; /* advance past '__' */
591 /* struct name length and name of type should come next; advance past it */
594 len = len * 10 + (*p - '0');
602 /* Read base classes within cfront class definition.
603 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
606 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
611 read_cfront_baseclasses (struct field_info *fip, char **pp, struct type *type,
612 struct objfile *objfile)
614 static struct complaint msg_unknown =
616 Unsupported token in stabs string %s.\n",
618 static struct complaint msg_notfound =
620 Unable to find base type for %s.\n",
625 struct nextfield *new;
627 if (**pp == ';') /* no base classes; return */
633 /* first count base classes so we can allocate space before parsing */
634 for (p = *pp; p && *p && *p != ';'; p++)
639 bnum++; /* add one more for last one */
641 /* now parse the base classes until we get to the start of the methods
642 (code extracted and munged from read_baseclasses) */
643 ALLOCATE_CPLUS_STRUCT_TYPE (type);
644 TYPE_N_BASECLASSES (type) = bnum;
648 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
651 pointer = (char *) TYPE_ALLOC (type, num_bytes);
652 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
654 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
656 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
658 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
659 make_cleanup (xfree, new);
660 memset (new, 0, sizeof (struct nextfield));
661 new->next = fip->list;
663 FIELD_BITSIZE (new->field) = 0; /* this should be an unpacked field! */
665 STABS_CONTINUE (pp, objfile);
667 /* virtual? eg: v2@Bvir */
670 SET_TYPE_FIELD_VIRTUAL (type, i);
674 /* access? eg: 2@Bvir */
675 /* Note: protected inheritance not supported in cfront */
678 case CFRONT_VISIBILITY_PRIVATE:
679 new->visibility = VISIBILITY_PRIVATE;
681 case CFRONT_VISIBILITY_PUBLIC:
682 new->visibility = VISIBILITY_PUBLIC;
685 /* Bad visibility format. Complain and treat it as
688 static struct complaint msg =
690 "Unknown visibility `%c' for baseclass", 0, 0};
691 complain (&msg, new->visibility);
692 new->visibility = VISIBILITY_PUBLIC;
696 /* "@" comes next - eg: @Bvir */
699 complain (&msg_unknown, *pp);
705 /* Set the bit offset of the portion of the object corresponding
706 to this baseclass. Always zero in the absence of
707 multiple inheritance. */
708 /* Unable to read bit position from stabs;
709 Assuming no multiple inheritance for now FIXME! */
710 /* We may have read this in the structure definition;
711 now we should fixup the members to be the actual base classes */
712 FIELD_BITPOS (new->field) = 0;
714 /* Get the base class name and type */
716 char *bname; /* base class name */
717 struct symbol *bsym; /* base class */
719 p1 = strchr (*pp, ' ');
720 p2 = strchr (*pp, ';');
722 bname = get_substring (pp, ' ');
724 bname = get_substring (pp, ';');
725 if (!bname || !*bname)
727 complain (&msg_unknown, *pp);
730 /* FIXME! attach base info to type */
731 bsym = lookup_symbol (bname, 0, STRUCT_NAMESPACE, 0, 0); /*demangled_name */
734 new->field.type = SYMBOL_TYPE (bsym);
735 new->field.name = type_name_no_tag (new->field.type);
739 complain (&msg_notfound, *pp);
744 /* If more base classes to parse, loop again.
745 We ate the last ' ' or ';' in get_substring,
746 so on exit we will have skipped the trailing ';' */
747 /* if invalid, return 0; add code to detect - FIXME! */
752 /* read cfront member functions.
753 pp points to string starting with list of functions
754 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
755 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
756 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
757 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
761 read_cfront_member_functions (struct field_info *fip, char **pp,
762 struct type *type, struct objfile *objfile)
764 /* This code extracted from read_member_functions
765 so as to do the similar thing for our funcs */
769 /* Total number of member functions defined in this class. If the class
770 defines two `f' functions, and one `g' function, then this will have
772 int total_length = 0;
776 struct next_fnfield *next;
777 struct fn_field fn_field;
780 struct type *look_ahead_type;
781 struct next_fnfieldlist *new_fnlist;
782 struct next_fnfield *new_sublist;
785 struct symbol *ref_func = 0;
787 /* Process each list until we find the end of the member functions.
788 eg: p = "__ct__1AFv foo__1AFv ;;;" */
790 STABS_CONTINUE (pp, objfile); /* handle \\ */
792 while (**pp != ';' && (fname = get_substring (pp, ' '), fname))
795 int sublist_count = 0;
797 if (fname[0] == '*') /* static member */
803 ref_func = lookup_symbol (fname, 0, VAR_NAMESPACE, 0, 0); /* demangled name */
806 static struct complaint msg =
808 Unable to find function symbol for %s\n",
810 complain (&msg, fname);
814 look_ahead_type = NULL;
817 new_fnlist = (struct next_fnfieldlist *)
818 xmalloc (sizeof (struct next_fnfieldlist));
819 make_cleanup (xfree, new_fnlist);
820 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
822 /* The following is code to work around cfront generated stabs.
823 The stabs contains full mangled name for each field.
824 We try to demangle the name and extract the field name out of it. */
826 char *dem, *dem_p, *dem_args;
828 dem = cplus_demangle (fname, DMGL_ANSI | DMGL_PARAMS);
831 dem_p = strrchr (dem, ':');
832 if (dem_p != 0 && *(dem_p - 1) == ':')
834 /* get rid of args */
835 dem_args = strchr (dem_p, '(');
836 if (dem_args == NULL)
837 dem_len = strlen (dem_p);
839 dem_len = dem_args - dem_p;
841 obsavestring (dem_p, dem_len, &objfile->type_obstack);
846 obsavestring (fname, strlen (fname), &objfile->type_obstack);
848 } /* end of code for cfront work around */
850 new_fnlist->fn_fieldlist.name = main_fn_name;
852 /*-------------------------------------------------*/
853 /* Set up the sublists
854 Sublists are stuff like args, static, visibility, etc.
855 so in ARM, we have to set that info some other way.
856 Multiple sublists happen if overloading
857 eg: foo::26=##1;:;2A.;
858 In g++, we'd loop here thru all the sublists... */
861 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
862 make_cleanup (xfree, new_sublist);
863 memset (new_sublist, 0, sizeof (struct next_fnfield));
865 /* eat 1; from :;2A.; */
866 new_sublist->fn_field.type = SYMBOL_TYPE (ref_func); /* normally takes a read_type */
867 /* Make this type look like a method stub for gdb */
868 TYPE_FLAGS (new_sublist->fn_field.type) |= TYPE_FLAG_STUB;
869 TYPE_CODE (new_sublist->fn_field.type) = TYPE_CODE_METHOD;
871 /* If this is just a stub, then we don't have the real name here. */
872 if (TYPE_STUB (new_sublist->fn_field.type))
874 if (!TYPE_DOMAIN_TYPE (new_sublist->fn_field.type))
875 TYPE_DOMAIN_TYPE (new_sublist->fn_field.type) = type;
876 new_sublist->fn_field.is_stub = 1;
879 /* physname used later in mangling; eg PFs_i,5 for foo__1aFPFs_i
880 physname gets strcat'd in order to recreate the onto mangled name */
881 pname = get_cfront_method_physname (fname);
882 new_sublist->fn_field.physname = savestring (pname, strlen (pname));
885 /* Set this member function's visibility fields.
886 Unable to distinguish access from stabs definition!
887 Assuming public for now. FIXME!
888 (for private, set new_sublist->fn_field.is_private = 1,
889 for public, set new_sublist->fn_field.is_protected = 1) */
891 /* Unable to distinguish const/volatile from stabs definition!
892 Assuming normal for now. FIXME! */
894 new_sublist->fn_field.is_const = 0;
895 new_sublist->fn_field.is_volatile = 0; /* volatile not implemented in cfront */
897 /* Set virtual/static function info
898 How to get vtable offsets ?
899 Assuming normal for now FIXME!!
900 For vtables, figure out from whence this virtual function came.
901 It may belong to virtual function table of
902 one of its baseclasses.
904 new_sublist -> fn_field.voffset = vtable offset,
905 new_sublist -> fn_field.fcontext = look_ahead_type;
906 where look_ahead_type is type of baseclass */
908 new_sublist->fn_field.voffset = VOFFSET_STATIC;
909 else /* normal member function. */
910 new_sublist->fn_field.voffset = 0;
911 new_sublist->fn_field.fcontext = 0;
914 /* Prepare new sublist */
915 new_sublist->next = sublist;
916 sublist = new_sublist;
919 /* In g++, we loop thu sublists - now we set from functions. */
920 new_fnlist->fn_fieldlist.fn_fields = (struct fn_field *)
921 obstack_alloc (&objfile->type_obstack,
922 sizeof (struct fn_field) * length);
923 memset (new_fnlist->fn_fieldlist.fn_fields, 0,
924 sizeof (struct fn_field) * length);
925 for (i = length; (i--, sublist); sublist = sublist->next)
927 new_fnlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
930 new_fnlist->fn_fieldlist.length = length;
931 new_fnlist->next = fip->fnlist;
932 fip->fnlist = new_fnlist;
934 total_length += length;
935 STABS_CONTINUE (pp, objfile); /* handle \\ */
940 /* type should already have space */
941 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
942 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
943 memset (TYPE_FN_FIELDLISTS (type), 0,
944 sizeof (struct fn_fieldlist) * nfn_fields);
945 TYPE_NFN_FIELDS (type) = nfn_fields;
946 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
949 /* end of scope for reading member func */
953 /* Skip trailing ';' and bump count of number of fields seen */
961 /* This routine fixes up partial cfront types that were created
962 while parsing the stabs. The main need for this function is
963 to add information such as methods to classes.
964 Examples of "p": "sA;;__ct__1AFv foo__1AFv ;;;" */
966 resolve_cfront_continuation (struct objfile *objfile, struct symbol *sym,
969 struct symbol *ref_sym = 0;
971 /* snarfed from read_struct_type */
972 struct field_info fi;
974 struct cleanup *back_to;
976 /* Need to make sure that fi isn't gunna conflict with struct
977 in case struct already had some fnfs */
980 back_to = make_cleanup (null_cleanup, 0);
982 /* We only accept structs, classes and unions at the moment.
983 Other continuation types include t (typedef), r (long dbl), ...
984 We may want to add support for them as well;
985 right now they are handled by duplicating the symbol information
986 into the type information (see define_symbol) */
987 if (*p != 's' /* structs */
988 && *p != 'c' /* class */
989 && *p != 'u') /* union */
990 return 0; /* only handle C++ types */
993 /* Get symbol typs name and validate
994 eg: p = "A;;__ct__1AFv foo__1AFv ;;;" */
995 sname = get_substring (&p, ';');
996 if (!sname || strcmp (sname, SYMBOL_NAME (sym)))
997 error ("Internal error: base symbol type name does not match\n");
999 /* Find symbol's internal gdb reference using demangled_name.
1000 This is the real sym that we want;
1001 sym was a temp hack to make debugger happy */
1002 ref_sym = lookup_symbol (SYMBOL_NAME (sym), 0, STRUCT_NAMESPACE, 0, 0);
1003 type = SYMBOL_TYPE (ref_sym);
1006 /* Now read the baseclasses, if any, read the regular C struct or C++
1007 class member fields, attach the fields to the type, read the C++
1008 member functions, attach them to the type, and then read any tilde
1009 field (baseclass specifier for the class holding the main vtable). */
1011 if (!read_cfront_baseclasses (&fi, &p, type, objfile)
1012 /* g++ does this next, but cfront already did this:
1013 || !read_struct_fields (&fi, &p, type, objfile) */
1014 || !copy_cfront_struct_fields (&fi, type, objfile)
1015 || !read_cfront_member_functions (&fi, &p, type, objfile)
1016 || !read_cfront_static_fields (&fi, &p, type, objfile)
1017 || !attach_fields_to_type (&fi, type, objfile)
1018 || !attach_fn_fields_to_type (&fi, type)
1019 /* g++ does this next, but cfront doesn't seem to have this:
1020 || !read_tilde_fields (&fi, &p, type, objfile) */
1023 type = error_type (&p, objfile);
1026 do_cleanups (back_to);
1029 /* End of code added to support parsing of ARM/Cfront stabs strings */
1032 /* This routine fixes up symbol references/aliases to point to the original
1033 symbol definition. Returns 0 on failure, non-zero on success. */
1036 resolve_symbol_reference (struct objfile *objfile, struct symbol *sym, char *p)
1039 struct symbol *ref_sym = 0;
1040 struct alias_list *alias;
1042 /* If this is not a symbol reference return now. */
1046 /* Use "#<num>" as the name; we'll fix the name later.
1047 We stored the original symbol name as "#<id>=<name>"
1048 so we can now search for "#<id>" to resolving the reference.
1049 We'll fix the names later by removing the "#<id>" or "#<id>=" */
1051 /*---------------------------------------------------------*/
1052 /* Get the reference id number, and
1053 advance p past the names so we can parse the rest.
1054 eg: id=2 for p : "2=", "2=z:r(0,1)" "2:r(0,1);l(#5,#6),l(#7,#4)" */
1055 /*---------------------------------------------------------*/
1057 /* This gets reference name from string. sym may not have a name. */
1059 /* Get the reference number associated with the reference id in the
1060 gdb stab string. From that reference number, get the main/primary
1061 symbol for this alias. */
1062 refnum = process_reference (&p);
1063 ref_sym = ref_search (refnum);
1066 complain (&lrs_general_complaint, "symbol for reference not found");
1070 /* Parse the stab of the referencing symbol
1071 now that we have the referenced symbol.
1072 Add it as a new symbol and a link back to the referenced symbol.
1073 eg: p : "=", "=z:r(0,1)" ":r(0,1);l(#5,#6),l(#7,#4)" */
1076 /* If the stab symbol table and string contain:
1077 RSYM 0 5 00000000 868 #15=z:r(0,1)
1078 LBRAC 0 0 00000000 899 #5=
1079 SLINE 0 16 00000003 923 #6=
1080 Then the same symbols can be later referenced by:
1081 RSYM 0 5 00000000 927 #15:r(0,1);l(#5,#6)
1082 This is used in live range splitting to:
1083 1) specify that a symbol (#15) is actually just a new storage
1084 class for a symbol (#15=z) which was previously defined.
1085 2) specify that the beginning and ending ranges for a symbol
1086 (#15) are the values of the beginning (#5) and ending (#6)
1089 /* Read number as reference id.
1090 eg: p : "=", "=z:r(0,1)" ":r(0,1);l(#5,#6),l(#7,#4)" */
1091 /* FIXME! Might I want to use SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
1092 in case of "l(0,0)"? */
1094 /*--------------------------------------------------*/
1095 /* Add this symbol to the reference list. */
1096 /*--------------------------------------------------*/
1098 alias = (struct alias_list *) obstack_alloc (&objfile->type_obstack,
1099 sizeof (struct alias_list));
1102 complain (&lrs_general_complaint, "Unable to allocate alias list memory");
1109 if (!SYMBOL_ALIASES (ref_sym))
1111 SYMBOL_ALIASES (ref_sym) = alias;
1115 struct alias_list *temp;
1117 /* Get to the end of the list. */
1118 for (temp = SYMBOL_ALIASES (ref_sym);
1125 /* Want to fix up name so that other functions (eg. valops)
1126 will correctly print the name.
1127 Don't add_symbol_to_list so that lookup_symbol won't find it.
1128 nope... needed for fixups. */
1129 SYMBOL_NAME (sym) = SYMBOL_NAME (ref_sym);
1135 /* Structure for storing pointers to reference definitions for fast lookup
1136 during "process_later". */
1145 #define MAX_CHUNK_REFS 100
1146 #define REF_CHUNK_SIZE (MAX_CHUNK_REFS * sizeof (struct ref_map))
1147 #define REF_MAP_SIZE(ref_chunk) ((ref_chunk) * REF_CHUNK_SIZE)
1149 static struct ref_map *ref_map;
1151 /* Ptr to free cell in chunk's linked list. */
1152 static int ref_count = 0;
1154 /* Number of chunks malloced. */
1155 static int ref_chunk = 0;
1157 /* This file maintains a cache of stabs aliases found in the symbol
1158 table. If the symbol table changes, this cache must be cleared
1159 or we are left holding onto data in invalid obstacks. */
1161 stabsread_clear_cache (void)
1167 /* Create array of pointers mapping refids to symbols and stab strings.
1168 Add pointers to reference definition symbols and/or their values as we
1169 find them, using their reference numbers as our index.
1170 These will be used later when we resolve references. */
1172 ref_add (int refnum, struct symbol *sym, char *stabs, CORE_ADDR value)
1176 if (refnum >= ref_count)
1177 ref_count = refnum + 1;
1178 if (ref_count > ref_chunk * MAX_CHUNK_REFS)
1180 int new_slots = ref_count - ref_chunk * MAX_CHUNK_REFS;
1181 int new_chunks = new_slots / MAX_CHUNK_REFS + 1;
1182 ref_map = (struct ref_map *)
1183 xrealloc (ref_map, REF_MAP_SIZE (ref_chunk + new_chunks));
1184 memset (ref_map + ref_chunk * MAX_CHUNK_REFS, 0, new_chunks * REF_CHUNK_SIZE);
1185 ref_chunk += new_chunks;
1187 ref_map[refnum].stabs = stabs;
1188 ref_map[refnum].sym = sym;
1189 ref_map[refnum].value = value;
1192 /* Return defined sym for the reference REFNUM. */
1194 ref_search (int refnum)
1196 if (refnum < 0 || refnum > ref_count)
1198 return ref_map[refnum].sym;
1201 /* Return value for the reference REFNUM. */
1204 ref_search_value (int refnum)
1206 if (refnum < 0 || refnum > ref_count)
1208 return ref_map[refnum].value;
1211 /* Parse a reference id in STRING and return the resulting
1212 reference number. Move STRING beyond the reference id. */
1215 process_reference (char **string)
1220 if (**string != '#')
1223 /* Advance beyond the initial '#'. */
1226 /* Read number as reference id. */
1227 while (*p && isdigit (*p))
1229 refnum = refnum * 10 + *p - '0';
1236 /* If STRING defines a reference, store away a pointer to the reference
1237 definition for later use. Return the reference number. */
1240 symbol_reference_defined (char **string)
1245 refnum = process_reference (&p);
1247 /* Defining symbols end in '=' */
1250 /* Symbol is being defined here. */
1256 /* Must be a reference. Either the symbol has already been defined,
1257 or this is a forward reference to it. */
1265 define_symbol (CORE_ADDR valu, char *string, int desc, int type,
1266 struct objfile *objfile)
1268 register struct symbol *sym;
1269 char *p = (char *) strchr (string, ':');
1274 /* We would like to eliminate nameless symbols, but keep their types.
1275 E.g. stab entry ":t10=*2" should produce a type 10, which is a pointer
1276 to type 2, but, should not create a symbol to address that type. Since
1277 the symbol will be nameless, there is no way any user can refer to it. */
1281 /* Ignore syms with empty names. */
1285 /* Ignore old-style symbols from cc -go */
1292 p = strchr (p, ':');
1295 /* If a nameless stab entry, all we need is the type, not the symbol.
1296 e.g. ":t10=*2" or a nameless enum like " :T16=ered:0,green:1,blue:2,;" */
1297 nameless = (p == string || ((string[0] == ' ') && (string[1] == ':')));
1299 current_symbol = sym = (struct symbol *)
1300 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
1301 memset (sym, 0, sizeof (struct symbol));
1303 switch (type & N_TYPE)
1306 SYMBOL_SECTION (sym) = SECT_OFF_TEXT (objfile);
1309 SYMBOL_SECTION (sym) = SECT_OFF_DATA (objfile);
1312 SYMBOL_SECTION (sym) = SECT_OFF_BSS (objfile);
1316 if (processing_gcc_compilation)
1318 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
1319 number of bytes occupied by a type or object, which we ignore. */
1320 SYMBOL_LINE (sym) = desc;
1324 SYMBOL_LINE (sym) = 0; /* unknown */
1327 if (is_cplus_marker (string[0]))
1329 /* Special GNU C++ names. */
1333 SYMBOL_NAME (sym) = obsavestring ("this", strlen ("this"),
1334 &objfile->symbol_obstack);
1337 case 'v': /* $vtbl_ptr_type */
1338 /* Was: SYMBOL_NAME (sym) = "vptr"; */
1342 SYMBOL_NAME (sym) = obsavestring ("eh_throw", strlen ("eh_throw"),
1343 &objfile->symbol_obstack);
1347 /* This was an anonymous type that was never fixed up. */
1350 #ifdef STATIC_TRANSFORM_NAME
1352 /* SunPRO (3.0 at least) static variable encoding. */
1357 complain (&unrecognized_cplus_name_complaint, string);
1358 goto normal; /* Do *something* with it */
1361 else if (string[0] == '#')
1363 /* Special GNU C extension for referencing symbols. */
1367 /* If STRING defines a new reference id, then add it to the
1368 reference map. Else it must be referring to a previously
1369 defined symbol, so add it to the alias list of the previously
1372 refnum = symbol_reference_defined (&s);
1374 ref_add (refnum, sym, string, SYMBOL_VALUE (sym));
1375 else if (!resolve_symbol_reference (objfile, sym, string))
1378 /* S..P contains the name of the symbol. We need to store
1379 the correct name into SYMBOL_NAME. */
1385 SYMBOL_NAME (sym) = (char *)
1386 obstack_alloc (&objfile->symbol_obstack, nlen);
1387 strncpy (SYMBOL_NAME (sym), s, nlen);
1388 SYMBOL_NAME (sym)[nlen] = '\0';
1389 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1392 /* FIXME! Want SYMBOL_NAME (sym) = 0;
1393 Get error if leave name 0. So give it something. */
1396 SYMBOL_NAME (sym) = (char *)
1397 obstack_alloc (&objfile->symbol_obstack, nlen);
1398 strncpy (SYMBOL_NAME (sym), string, nlen);
1399 SYMBOL_NAME (sym)[nlen] = '\0';
1400 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1403 /* Advance STRING beyond the reference id. */
1409 SYMBOL_LANGUAGE (sym) = current_subfile->language;
1410 SYMBOL_NAME (sym) = (char *)
1411 obstack_alloc (&objfile->symbol_obstack, ((p - string) + 1));
1412 /* Open-coded memcpy--saves function call time. */
1413 /* FIXME: Does it really? Try replacing with simple strcpy and
1414 try it on an executable with a large symbol table. */
1415 /* FIXME: considering that gcc can open code memcpy anyway, I
1416 doubt it. xoxorich. */
1418 register char *p1 = string;
1419 register char *p2 = SYMBOL_NAME (sym);
1427 /* If this symbol is from a C++ compilation, then attempt to cache the
1428 demangled form for future reference. This is a typical time versus
1429 space tradeoff, that was decided in favor of time because it sped up
1430 C++ symbol lookups by a factor of about 20. */
1432 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1436 /* Determine the type of name being defined. */
1438 /* Getting GDB to correctly skip the symbol on an undefined symbol
1439 descriptor and not ever dump core is a very dodgy proposition if
1440 we do things this way. I say the acorn RISC machine can just
1441 fix their compiler. */
1442 /* The Acorn RISC machine's compiler can put out locals that don't
1443 start with "234=" or "(3,4)=", so assume anything other than the
1444 deftypes we know how to handle is a local. */
1445 if (!strchr ("cfFGpPrStTvVXCR", *p))
1447 if (isdigit (*p) || *p == '(' || *p == '-')
1456 /* c is a special case, not followed by a type-number.
1457 SYMBOL:c=iVALUE for an integer constant symbol.
1458 SYMBOL:c=rVALUE for a floating constant symbol.
1459 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
1460 e.g. "b:c=e6,0" for "const b = blob1"
1461 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1464 SYMBOL_CLASS (sym) = LOC_CONST;
1465 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1466 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1467 add_symbol_to_list (sym, &file_symbols);
1475 double d = atof (p);
1478 /* FIXME-if-picky-about-floating-accuracy: Should be using
1479 target arithmetic to get the value. real.c in GCC
1480 probably has the necessary code. */
1482 /* FIXME: lookup_fundamental_type is a hack. We should be
1483 creating a type especially for the type of float constants.
1484 Problem is, what type should it be?
1486 Also, what should the name of this type be? Should we
1487 be using 'S' constants (see stabs.texinfo) instead? */
1489 SYMBOL_TYPE (sym) = lookup_fundamental_type (objfile,
1492 obstack_alloc (&objfile->symbol_obstack,
1493 TYPE_LENGTH (SYMBOL_TYPE (sym)));
1494 store_typed_floating (dbl_valu, SYMBOL_TYPE (sym), d);
1495 SYMBOL_VALUE_BYTES (sym) = dbl_valu;
1496 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
1501 /* Defining integer constants this way is kind of silly,
1502 since 'e' constants allows the compiler to give not
1503 only the value, but the type as well. C has at least
1504 int, long, unsigned int, and long long as constant
1505 types; other languages probably should have at least
1506 unsigned as well as signed constants. */
1508 /* We just need one int constant type for all objfiles.
1509 It doesn't depend on languages or anything (arguably its
1510 name should be a language-specific name for a type of
1511 that size, but I'm inclined to say that if the compiler
1512 wants a nice name for the type, it can use 'e'). */
1513 static struct type *int_const_type;
1515 /* Yes, this is as long as a *host* int. That is because we
1517 if (int_const_type == NULL)
1519 init_type (TYPE_CODE_INT,
1520 sizeof (int) * HOST_CHAR_BIT / TARGET_CHAR_BIT, 0,
1522 (struct objfile *) NULL);
1523 SYMBOL_TYPE (sym) = int_const_type;
1524 SYMBOL_VALUE (sym) = atoi (p);
1525 SYMBOL_CLASS (sym) = LOC_CONST;
1529 /* SYMBOL:c=eTYPE,INTVALUE for a constant symbol whose value
1530 can be represented as integral.
1531 e.g. "b:c=e6,0" for "const b = blob1"
1532 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1534 SYMBOL_CLASS (sym) = LOC_CONST;
1535 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1539 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1544 /* If the value is too big to fit in an int (perhaps because
1545 it is unsigned), or something like that, we silently get
1546 a bogus value. The type and everything else about it is
1547 correct. Ideally, we should be using whatever we have
1548 available for parsing unsigned and long long values,
1550 SYMBOL_VALUE (sym) = atoi (p);
1555 SYMBOL_CLASS (sym) = LOC_CONST;
1556 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1559 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1560 add_symbol_to_list (sym, &file_symbols);
1564 /* The name of a caught exception. */
1565 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1566 SYMBOL_CLASS (sym) = LOC_LABEL;
1567 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1568 SYMBOL_VALUE_ADDRESS (sym) = valu;
1569 add_symbol_to_list (sym, &local_symbols);
1573 /* A static function definition. */
1574 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1575 SYMBOL_CLASS (sym) = LOC_BLOCK;
1576 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1577 add_symbol_to_list (sym, &file_symbols);
1578 /* fall into process_function_types. */
1580 process_function_types:
1581 /* Function result types are described as the result type in stabs.
1582 We need to convert this to the function-returning-type-X type
1583 in GDB. E.g. "int" is converted to "function returning int". */
1584 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_FUNC)
1585 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
1587 /* All functions in C++ have prototypes. */
1588 if (SYMBOL_LANGUAGE (sym) == language_cplus)
1589 TYPE_FLAGS (SYMBOL_TYPE (sym)) |= TYPE_FLAG_PROTOTYPED;
1591 /* fall into process_prototype_types */
1593 process_prototype_types:
1594 /* Sun acc puts declared types of arguments here. */
1597 struct type *ftype = SYMBOL_TYPE (sym);
1602 /* Obtain a worst case guess for the number of arguments
1603 by counting the semicolons. */
1610 /* Allocate parameter information fields and fill them in. */
1611 TYPE_FIELDS (ftype) = (struct field *)
1612 TYPE_ALLOC (ftype, nsemi * sizeof (struct field));
1617 /* A type number of zero indicates the start of varargs.
1618 FIXME: GDB currently ignores vararg functions. */
1619 if (p[0] == '0' && p[1] == '\0')
1621 ptype = read_type (&p, objfile);
1623 /* The Sun compilers mark integer arguments, which should
1624 be promoted to the width of the calling conventions, with
1625 a type which references itself. This type is turned into
1626 a TYPE_CODE_VOID type by read_type, and we have to turn
1627 it back into builtin_type_int here.
1628 FIXME: Do we need a new builtin_type_promoted_int_arg ? */
1629 if (TYPE_CODE (ptype) == TYPE_CODE_VOID)
1630 ptype = builtin_type_int;
1631 TYPE_FIELD_TYPE (ftype, nparams++) = ptype;
1633 TYPE_NFIELDS (ftype) = nparams;
1634 TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
1639 /* A global function definition. */
1640 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1641 SYMBOL_CLASS (sym) = LOC_BLOCK;
1642 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1643 add_symbol_to_list (sym, &global_symbols);
1644 goto process_function_types;
1647 /* For a class G (global) symbol, it appears that the
1648 value is not correct. It is necessary to search for the
1649 corresponding linker definition to find the value.
1650 These definitions appear at the end of the namelist. */
1651 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1652 SYMBOL_CLASS (sym) = LOC_STATIC;
1653 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1654 /* Don't add symbol references to global_sym_chain.
1655 Symbol references don't have valid names and wont't match up with
1656 minimal symbols when the global_sym_chain is relocated.
1657 We'll fixup symbol references when we fixup the defining symbol. */
1658 if (SYMBOL_NAME (sym) && SYMBOL_NAME (sym)[0] != '#')
1660 i = hashname (SYMBOL_NAME (sym));
1661 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
1662 global_sym_chain[i] = sym;
1664 add_symbol_to_list (sym, &global_symbols);
1667 /* This case is faked by a conditional above,
1668 when there is no code letter in the dbx data.
1669 Dbx data never actually contains 'l'. */
1672 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1673 SYMBOL_CLASS (sym) = LOC_LOCAL;
1674 SYMBOL_VALUE (sym) = valu;
1675 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1676 add_symbol_to_list (sym, &local_symbols);
1681 /* pF is a two-letter code that means a function parameter in Fortran.
1682 The type-number specifies the type of the return value.
1683 Translate it into a pointer-to-function type. */
1687 = lookup_pointer_type
1688 (lookup_function_type (read_type (&p, objfile)));
1691 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1693 /* Normally this is a parameter, a LOC_ARG. On the i960, it
1694 can also be a LOC_LOCAL_ARG depending on symbol type. */
1695 #ifndef DBX_PARM_SYMBOL_CLASS
1696 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
1699 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
1700 SYMBOL_VALUE (sym) = valu;
1701 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1702 add_symbol_to_list (sym, &local_symbols);
1704 if (TARGET_BYTE_ORDER != BIG_ENDIAN)
1706 /* On little-endian machines, this crud is never necessary,
1707 and, if the extra bytes contain garbage, is harmful. */
1711 /* If it's gcc-compiled, if it says `short', believe it. */
1712 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
1715 if (!BELIEVE_PCC_PROMOTION)
1717 /* This is the signed type which arguments get promoted to. */
1718 static struct type *pcc_promotion_type;
1719 /* This is the unsigned type which arguments get promoted to. */
1720 static struct type *pcc_unsigned_promotion_type;
1722 /* Call it "int" because this is mainly C lossage. */
1723 if (pcc_promotion_type == NULL)
1724 pcc_promotion_type =
1725 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1728 if (pcc_unsigned_promotion_type == NULL)
1729 pcc_unsigned_promotion_type =
1730 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1731 TYPE_FLAG_UNSIGNED, "unsigned int", NULL);
1733 if (BELIEVE_PCC_PROMOTION_TYPE)
1735 /* This is defined on machines (e.g. sparc) where we
1736 should believe the type of a PCC 'short' argument,
1737 but shouldn't believe the address (the address is the
1738 address of the corresponding int).
1740 My guess is that this correction, as opposed to
1741 changing the parameter to an 'int' (as done below,
1742 for PCC on most machines), is the right thing to do
1743 on all machines, but I don't want to risk breaking
1744 something that already works. On most PCC machines,
1745 the sparc problem doesn't come up because the calling
1746 function has to zero the top bytes (not knowing
1747 whether the called function wants an int or a short),
1748 so there is little practical difference between an
1749 int and a short (except perhaps what happens when the
1750 GDB user types "print short_arg = 0x10000;").
1753 compiler actually produces the correct address (we
1754 don't need to fix it up). I made this code adapt so
1755 that it will offset the symbol if it was pointing at
1756 an int-aligned location and not otherwise. This way
1757 you can use the same gdb for 4.0.x and 4.1 systems.
1759 If the parameter is shorter than an int, and is
1760 integral (e.g. char, short, or unsigned equivalent),
1761 and is claimed to be passed on an integer boundary,
1762 don't believe it! Offset the parameter's address to
1763 the tail-end of that integer. */
1765 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
1766 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1767 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (pcc_promotion_type))
1769 SYMBOL_VALUE (sym) += TYPE_LENGTH (pcc_promotion_type)
1770 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1776 /* If PCC says a parameter is a short or a char,
1777 it is really an int. */
1778 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
1779 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
1782 TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1783 ? pcc_unsigned_promotion_type
1784 : pcc_promotion_type;
1791 /* acc seems to use P to declare the prototypes of functions that
1792 are referenced by this file. gdb is not prepared to deal
1793 with this extra information. FIXME, it ought to. */
1796 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1797 goto process_prototype_types;
1802 /* Parameter which is in a register. */
1803 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1804 SYMBOL_CLASS (sym) = LOC_REGPARM;
1805 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1806 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
1808 complain (®_value_complaint, SYMBOL_VALUE (sym),
1809 NUM_REGS + NUM_PSEUDO_REGS,
1810 SYMBOL_SOURCE_NAME (sym));
1811 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
1813 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1814 add_symbol_to_list (sym, &local_symbols);
1818 /* Register variable (either global or local). */
1819 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1820 SYMBOL_CLASS (sym) = LOC_REGISTER;
1821 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1822 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
1824 complain (®_value_complaint, SYMBOL_VALUE (sym),
1825 NUM_REGS + NUM_PSEUDO_REGS,
1826 SYMBOL_SOURCE_NAME (sym));
1827 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
1829 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1830 if (within_function)
1832 /* Sun cc uses a pair of symbols, one 'p' and one 'r' with the same
1833 name to represent an argument passed in a register.
1834 GCC uses 'P' for the same case. So if we find such a symbol pair
1835 we combine it into one 'P' symbol. For Sun cc we need to do this
1836 regardless of REG_STRUCT_HAS_ADDR, because the compiler puts out
1837 the 'p' symbol even if it never saves the argument onto the stack.
1839 On most machines, we want to preserve both symbols, so that
1840 we can still get information about what is going on with the
1841 stack (VAX for computing args_printed, using stack slots instead
1842 of saved registers in backtraces, etc.).
1844 Note that this code illegally combines
1845 main(argc) struct foo argc; { register struct foo argc; }
1846 but this case is considered pathological and causes a warning
1847 from a decent compiler. */
1850 && local_symbols->nsyms > 0
1851 #ifndef USE_REGISTER_NOT_ARG
1852 && REG_STRUCT_HAS_ADDR_P ()
1853 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation,
1855 && (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1856 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION
1857 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_SET
1858 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_BITSTRING)
1862 struct symbol *prev_sym;
1863 prev_sym = local_symbols->symbol[local_symbols->nsyms - 1];
1864 if ((SYMBOL_CLASS (prev_sym) == LOC_REF_ARG
1865 || SYMBOL_CLASS (prev_sym) == LOC_ARG)
1866 && STREQ (SYMBOL_NAME (prev_sym), SYMBOL_NAME (sym)))
1868 SYMBOL_CLASS (prev_sym) = LOC_REGPARM;
1869 /* Use the type from the LOC_REGISTER; that is the type
1870 that is actually in that register. */
1871 SYMBOL_TYPE (prev_sym) = SYMBOL_TYPE (sym);
1872 SYMBOL_VALUE (prev_sym) = SYMBOL_VALUE (sym);
1877 add_symbol_to_list (sym, &local_symbols);
1880 add_symbol_to_list (sym, &file_symbols);
1884 /* Static symbol at top level of file */
1885 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1886 SYMBOL_CLASS (sym) = LOC_STATIC;
1887 SYMBOL_VALUE_ADDRESS (sym) = valu;
1888 #ifdef STATIC_TRANSFORM_NAME
1889 if (IS_STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym)))
1891 struct minimal_symbol *msym;
1892 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, objfile);
1895 SYMBOL_NAME (sym) = STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym));
1896 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msym);
1900 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1901 add_symbol_to_list (sym, &file_symbols);
1905 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1907 /* For a nameless type, we don't want a create a symbol, thus we
1908 did not use `sym'. Return without further processing. */
1912 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1913 SYMBOL_VALUE (sym) = valu;
1914 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1915 /* C++ vagaries: we may have a type which is derived from
1916 a base type which did not have its name defined when the
1917 derived class was output. We fill in the derived class's
1918 base part member's name here in that case. */
1919 if (TYPE_NAME (SYMBOL_TYPE (sym)) != NULL)
1920 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1921 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
1922 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
1925 for (j = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; j >= 0; j--)
1926 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) == 0)
1927 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) =
1928 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), j));
1931 if (TYPE_NAME (SYMBOL_TYPE (sym)) == NULL)
1933 /* gcc-2.6 or later (when using -fvtable-thunks)
1934 emits a unique named type for a vtable entry.
1935 Some gdb code depends on that specific name. */
1936 extern const char vtbl_ptr_name[];
1938 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1939 && strcmp (SYMBOL_NAME (sym), vtbl_ptr_name))
1940 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1942 /* If we are giving a name to a type such as "pointer to
1943 foo" or "function returning foo", we better not set
1944 the TYPE_NAME. If the program contains "typedef char
1945 *caddr_t;", we don't want all variables of type char
1946 * to print as caddr_t. This is not just a
1947 consequence of GDB's type management; PCC and GCC (at
1948 least through version 2.4) both output variables of
1949 either type char * or caddr_t with the type number
1950 defined in the 't' symbol for caddr_t. If a future
1951 compiler cleans this up it GDB is not ready for it
1952 yet, but if it becomes ready we somehow need to
1953 disable this check (without breaking the PCC/GCC2.4
1958 Fortunately, this check seems not to be necessary
1959 for anything except pointers or functions. */
1960 /* ezannoni: 2000-10-26. This seems to apply for
1961 versions of gcc older than 2.8. This was the original
1962 problem: with the following code gdb would tell that
1963 the type for name1 is caddr_t, and func is char()
1964 typedef char *caddr_t;
1976 /* Pascal accepts names for pointer types. */
1977 if (current_subfile->language == language_pascal)
1979 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1983 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1986 add_symbol_to_list (sym, &file_symbols);
1990 /* Struct, union, or enum tag. For GNU C++, this can be be followed
1991 by 't' which means we are typedef'ing it as well. */
1992 synonym = *p == 't';
1996 /* The semantics of C++ state that "struct foo { ... }" also defines
1997 a typedef for "foo". Unfortunately, cfront never makes the typedef
1998 when translating C++ into C. We make the typedef here so that
1999 "ptype foo" works as expected for cfront translated code. */
2000 else if (current_subfile->language == language_cplus)
2003 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2005 /* For a nameless type, we don't want a create a symbol, thus we
2006 did not use `sym'. Return without further processing. */
2010 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2011 SYMBOL_VALUE (sym) = valu;
2012 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
2013 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
2014 TYPE_TAG_NAME (SYMBOL_TYPE (sym))
2015 = obconcat (&objfile->type_obstack, "", "", SYMBOL_NAME (sym));
2016 add_symbol_to_list (sym, &file_symbols);
2020 /* Clone the sym and then modify it. */
2021 register struct symbol *typedef_sym = (struct symbol *)
2022 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
2023 *typedef_sym = *sym;
2024 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
2025 SYMBOL_VALUE (typedef_sym) = valu;
2026 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
2027 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
2028 TYPE_NAME (SYMBOL_TYPE (sym))
2029 = obconcat (&objfile->type_obstack, "", "", SYMBOL_NAME (sym));
2030 add_symbol_to_list (typedef_sym, &file_symbols);
2035 /* Static symbol of local scope */
2036 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2037 SYMBOL_CLASS (sym) = LOC_STATIC;
2038 SYMBOL_VALUE_ADDRESS (sym) = valu;
2039 #ifdef STATIC_TRANSFORM_NAME
2040 if (IS_STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym)))
2042 struct minimal_symbol *msym;
2043 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, objfile);
2046 SYMBOL_NAME (sym) = STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym));
2047 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msym);
2051 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2053 add_symbol_to_list (sym, &global_symbols);
2055 add_symbol_to_list (sym, &local_symbols);
2059 /* Reference parameter */
2060 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2061 SYMBOL_CLASS (sym) = LOC_REF_ARG;
2062 SYMBOL_VALUE (sym) = valu;
2063 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2064 add_symbol_to_list (sym, &local_symbols);
2068 /* Reference parameter which is in a register. */
2069 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2070 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
2071 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
2072 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
2074 complain (®_value_complaint, SYMBOL_VALUE (sym),
2075 NUM_REGS + NUM_PSEUDO_REGS,
2076 SYMBOL_SOURCE_NAME (sym));
2077 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
2079 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2080 add_symbol_to_list (sym, &local_symbols);
2084 /* This is used by Sun FORTRAN for "function result value".
2085 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
2086 that Pascal uses it too, but when I tried it Pascal used
2087 "x:3" (local symbol) instead. */
2088 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2089 SYMBOL_CLASS (sym) = LOC_LOCAL;
2090 SYMBOL_VALUE (sym) = valu;
2091 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2092 add_symbol_to_list (sym, &local_symbols);
2095 /* New code added to support cfront stabs strings.
2096 Note: case 'P' already handled above */
2098 /* Cfront type continuation coming up!
2099 Find the original definition and add to it.
2100 We'll have to do this for the typedef too,
2101 since we cloned the symbol to define a type in read_type.
2102 Stabs info examples:
2104 foo__1CFv :ZtF (first def foo__1CFv:F(0,3);(0,24))
2105 C:ZsC;;__ct__1CFv func1__1CFv func2__1CFv ... ;;;
2106 where C is the name of the class.
2107 Unfortunately, we can't lookup the original symbol yet 'cuz
2108 we haven't finished reading all the symbols.
2109 Instead, we save it for processing later */
2110 process_later (sym, p, resolve_cfront_continuation);
2111 SYMBOL_TYPE (sym) = error_type (&p, objfile); /* FIXME! change later */
2112 SYMBOL_CLASS (sym) = LOC_CONST;
2113 SYMBOL_VALUE (sym) = 0;
2114 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2115 /* Don't add to list - we'll delete it later when
2116 we add the continuation to the real sym */
2118 /* End of new code added to support cfront stabs strings */
2121 SYMBOL_TYPE (sym) = error_type (&p, objfile);
2122 SYMBOL_CLASS (sym) = LOC_CONST;
2123 SYMBOL_VALUE (sym) = 0;
2124 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2125 add_symbol_to_list (sym, &file_symbols);
2129 /* When passing structures to a function, some systems sometimes pass
2130 the address in a register, not the structure itself. */
2132 if (REG_STRUCT_HAS_ADDR_P ()
2133 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation, SYMBOL_TYPE (sym))
2134 && (SYMBOL_CLASS (sym) == LOC_REGPARM || SYMBOL_CLASS (sym) == LOC_ARG))
2136 struct type *symbol_type = check_typedef (SYMBOL_TYPE (sym));
2138 if ((TYPE_CODE (symbol_type) == TYPE_CODE_STRUCT)
2139 || (TYPE_CODE (symbol_type) == TYPE_CODE_UNION)
2140 || (TYPE_CODE (symbol_type) == TYPE_CODE_BITSTRING)
2141 || (TYPE_CODE (symbol_type) == TYPE_CODE_SET))
2143 /* If REG_STRUCT_HAS_ADDR yields non-zero we have to convert
2144 LOC_REGPARM to LOC_REGPARM_ADDR for structures and unions. */
2145 if (SYMBOL_CLASS (sym) == LOC_REGPARM)
2146 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
2147 /* Likewise for converting LOC_ARG to LOC_REF_ARG (for the 7th
2148 and subsequent arguments on the sparc, for example). */
2149 else if (SYMBOL_CLASS (sym) == LOC_ARG)
2150 SYMBOL_CLASS (sym) = LOC_REF_ARG;
2154 /* Is there more to parse? For example LRS/alias information? */
2155 while (*p && *p == ';')
2158 if (*p && p[0] == 'l' && p[1] == '(')
2160 /* GNU extensions for live range splitting may be appended to
2161 the end of the stab string. eg. "l(#1,#2);l(#3,#5)" */
2163 /* Resolve the live range and add it to SYM's live range list. */
2164 if (!resolve_live_range (objfile, sym, p))
2167 /* Find end of live range info. */
2168 p = strchr (p, ')');
2169 if (!*p || *p != ')')
2171 complain (&lrs_general_complaint, "live range format not recognized");
2180 /* Add the live range found in P to the symbol SYM in objfile OBJFILE. Returns
2181 non-zero on success, zero otherwise. */
2184 resolve_live_range (struct objfile *objfile, struct symbol *sym, char *p)
2187 CORE_ADDR start, end;
2189 /* Sanity check the beginning of the stabs string. */
2190 if (!*p || *p != 'l')
2192 complain (&lrs_general_complaint, "live range string 1");
2197 if (!*p || *p != '(')
2199 complain (&lrs_general_complaint, "live range string 2");
2204 /* Get starting value of range and advance P past the reference id.
2206 ?!? In theory, the process_reference should never fail, but we should
2207 catch that case just in case the compiler scrogged the stabs. */
2208 refnum = process_reference (&p);
2209 start = ref_search_value (refnum);
2212 complain (&lrs_general_complaint, "Live range symbol not found 1");
2216 if (!*p || *p != ',')
2218 complain (&lrs_general_complaint, "live range string 3");
2223 /* Get ending value of range and advance P past the reference id.
2225 ?!? In theory, the process_reference should never fail, but we should
2226 catch that case just in case the compiler scrogged the stabs. */
2227 refnum = process_reference (&p);
2228 end = ref_search_value (refnum);
2231 complain (&lrs_general_complaint, "Live range symbol not found 2");
2235 if (!*p || *p != ')')
2237 complain (&lrs_general_complaint, "live range string 4");
2241 /* Now that we know the bounds of the range, add it to the
2243 add_live_range (objfile, sym, start, end);
2248 /* Add a new live range defined by START and END to the symbol SYM
2249 in objfile OBJFILE. */
2252 add_live_range (struct objfile *objfile, struct symbol *sym, CORE_ADDR start,
2255 struct range_list *r, *rs;
2259 complain (&lrs_general_complaint, "end of live range follows start");
2263 /* Alloc new live range structure. */
2264 r = (struct range_list *)
2265 obstack_alloc (&objfile->type_obstack,
2266 sizeof (struct range_list));
2271 /* Append this range to the symbol's range list. */
2272 if (!SYMBOL_RANGES (sym))
2273 SYMBOL_RANGES (sym) = r;
2276 /* Get the last range for the symbol. */
2277 for (rs = SYMBOL_RANGES (sym); rs->next; rs = rs->next)
2284 /* Skip rest of this symbol and return an error type.
2286 General notes on error recovery: error_type always skips to the
2287 end of the symbol (modulo cretinous dbx symbol name continuation).
2288 Thus code like this:
2290 if (*(*pp)++ != ';')
2291 return error_type (pp, objfile);
2293 is wrong because if *pp starts out pointing at '\0' (typically as the
2294 result of an earlier error), it will be incremented to point to the
2295 start of the next symbol, which might produce strange results, at least
2296 if you run off the end of the string table. Instead use
2299 return error_type (pp, objfile);
2305 foo = error_type (pp, objfile);
2309 And in case it isn't obvious, the point of all this hair is so the compiler
2310 can define new types and new syntaxes, and old versions of the
2311 debugger will be able to read the new symbol tables. */
2313 static struct type *
2314 error_type (char **pp, struct objfile *objfile)
2316 complain (&error_type_complaint);
2319 /* Skip to end of symbol. */
2320 while (**pp != '\0')
2325 /* Check for and handle cretinous dbx symbol name continuation! */
2326 if ((*pp)[-1] == '\\' || (*pp)[-1] == '?')
2328 *pp = next_symbol_text (objfile);
2335 return (builtin_type_error);
2339 /* Read type information or a type definition; return the type. Even
2340 though this routine accepts either type information or a type
2341 definition, the distinction is relevant--some parts of stabsread.c
2342 assume that type information starts with a digit, '-', or '(' in
2343 deciding whether to call read_type. */
2346 read_type (register char **pp, struct objfile *objfile)
2348 register struct type *type = 0;
2351 char type_descriptor;
2353 /* Size in bits of type if specified by a type attribute, or -1 if
2354 there is no size attribute. */
2357 /* Used to distinguish string and bitstring from char-array and set. */
2360 /* Read type number if present. The type number may be omitted.
2361 for instance in a two-dimensional array declared with type
2362 "ar1;1;10;ar1;1;10;4". */
2363 if ((**pp >= '0' && **pp <= '9')
2367 if (read_type_number (pp, typenums) != 0)
2368 return error_type (pp, objfile);
2370 /* Type is not being defined here. Either it already exists,
2371 or this is a forward reference to it. dbx_alloc_type handles
2374 return dbx_alloc_type (typenums, objfile);
2376 /* Type is being defined here. */
2378 Also skip the type descriptor - we get it below with (*pp)[-1]. */
2383 /* 'typenums=' not present, type is anonymous. Read and return
2384 the definition, but don't put it in the type vector. */
2385 typenums[0] = typenums[1] = -1;
2390 type_descriptor = (*pp)[-1];
2391 switch (type_descriptor)
2395 enum type_code code;
2397 /* Used to index through file_symbols. */
2398 struct pending *ppt;
2401 /* Name including "struct", etc. */
2405 char *from, *to, *p, *q1, *q2;
2407 /* Set the type code according to the following letter. */
2411 code = TYPE_CODE_STRUCT;
2414 code = TYPE_CODE_UNION;
2417 code = TYPE_CODE_ENUM;
2421 /* Complain and keep going, so compilers can invent new
2422 cross-reference types. */
2423 static struct complaint msg =
2424 {"Unrecognized cross-reference type `%c'", 0, 0};
2425 complain (&msg, (*pp)[0]);
2426 code = TYPE_CODE_STRUCT;
2431 q1 = strchr (*pp, '<');
2432 p = strchr (*pp, ':');
2434 return error_type (pp, objfile);
2435 if (q1 && p > q1 && p[1] == ':')
2437 int nesting_level = 0;
2438 for (q2 = q1; *q2; q2++)
2442 else if (*q2 == '>')
2444 else if (*q2 == ':' && nesting_level == 0)
2449 return error_type (pp, objfile);
2452 (char *) obstack_alloc (&objfile->type_obstack, p - *pp + 1);
2454 /* Copy the name. */
2460 /* Set the pointer ahead of the name which we just read, and
2465 /* Now check to see whether the type has already been
2466 declared. This was written for arrays of cross-referenced
2467 types before we had TYPE_CODE_TARGET_STUBBED, so I'm pretty
2468 sure it is not necessary anymore. But it might be a good
2469 idea, to save a little memory. */
2471 for (ppt = file_symbols; ppt; ppt = ppt->next)
2472 for (i = 0; i < ppt->nsyms; i++)
2474 struct symbol *sym = ppt->symbol[i];
2476 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2477 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
2478 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
2479 && STREQ (SYMBOL_NAME (sym), type_name))
2481 obstack_free (&objfile->type_obstack, type_name);
2482 type = SYMBOL_TYPE (sym);
2487 /* Didn't find the type to which this refers, so we must
2488 be dealing with a forward reference. Allocate a type
2489 structure for it, and keep track of it so we can
2490 fill in the rest of the fields when we get the full
2492 type = dbx_alloc_type (typenums, objfile);
2493 TYPE_CODE (type) = code;
2494 TYPE_TAG_NAME (type) = type_name;
2495 INIT_CPLUS_SPECIFIC (type);
2496 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
2498 add_undefined_type (type);
2502 case '-': /* RS/6000 built-in type */
2516 /* We deal with something like t(1,2)=(3,4)=... which
2517 the Lucid compiler and recent gcc versions (post 2.7.3) use. */
2519 /* Allocate and enter the typedef type first.
2520 This handles recursive types. */
2521 type = dbx_alloc_type (typenums, objfile);
2522 TYPE_CODE (type) = TYPE_CODE_TYPEDEF;
2524 struct type *xtype = read_type (pp, objfile);
2527 /* It's being defined as itself. That means it is "void". */
2528 TYPE_CODE (type) = TYPE_CODE_VOID;
2529 TYPE_LENGTH (type) = 1;
2531 else if (type_size >= 0 || is_string)
2534 TYPE_NAME (type) = NULL;
2535 TYPE_TAG_NAME (type) = NULL;
2539 TYPE_FLAGS (type) |= TYPE_FLAG_TARGET_STUB;
2540 TYPE_TARGET_TYPE (type) = xtype;
2545 /* In the following types, we must be sure to overwrite any existing
2546 type that the typenums refer to, rather than allocating a new one
2547 and making the typenums point to the new one. This is because there
2548 may already be pointers to the existing type (if it had been
2549 forward-referenced), and we must change it to a pointer, function,
2550 reference, or whatever, *in-place*. */
2553 type1 = read_type (pp, objfile);
2554 type = make_pointer_type (type1, dbx_lookup_type (typenums));
2557 case '&': /* Reference to another type */
2558 type1 = read_type (pp, objfile);
2559 type = make_reference_type (type1, dbx_lookup_type (typenums));
2562 case 'f': /* Function returning another type */
2563 if (os9k_stabs && **pp == '(')
2565 /* Function prototype; parse it.
2566 We must conditionalize this on os9k_stabs because otherwise
2567 it could be confused with a Sun-style (1,3) typenumber
2573 t = read_type (pp, objfile);
2578 type1 = read_type (pp, objfile);
2579 type = make_function_type (type1, dbx_lookup_type (typenums));
2582 case 'k': /* Const qualifier on some type (Sun) */
2583 case 'c': /* Const qualifier on some type (OS9000) */
2584 /* Because 'c' means other things to AIX and 'k' is perfectly good,
2585 only accept 'c' in the os9k_stabs case. */
2586 if (type_descriptor == 'c' && !os9k_stabs)
2587 return error_type (pp, objfile);
2588 type = read_type (pp, objfile);
2589 type = make_cv_type (1, TYPE_VOLATILE (type), type, 0);
2592 case 'B': /* Volatile qual on some type (Sun) */
2593 case 'i': /* Volatile qual on some type (OS9000) */
2594 /* Because 'i' means other things to AIX and 'B' is perfectly good,
2595 only accept 'i' in the os9k_stabs case. */
2596 if (type_descriptor == 'i' && !os9k_stabs)
2597 return error_type (pp, objfile);
2598 type = read_type (pp, objfile);
2599 type = make_cv_type (TYPE_CONST (type), 1, type, 0);
2603 if (isdigit (**pp) || **pp == '(' || **pp == '-')
2604 { /* Member (class & variable) type */
2605 /* FIXME -- we should be doing smash_to_XXX types here. */
2607 struct type *domain = read_type (pp, objfile);
2608 struct type *memtype;
2611 /* Invalid member type data format. */
2612 return error_type (pp, objfile);
2615 memtype = read_type (pp, objfile);
2616 type = dbx_alloc_type (typenums, objfile);
2617 smash_to_member_type (type, domain, memtype);
2620 /* type attribute */
2623 /* Skip to the semicolon. */
2624 while (**pp != ';' && **pp != '\0')
2627 return error_type (pp, objfile);
2629 ++ * pp; /* Skip the semicolon. */
2634 type_size = atoi (attr + 1);
2644 /* Ignore unrecognized type attributes, so future compilers
2645 can invent new ones. */
2653 case '#': /* Method (class & fn) type */
2654 if ((*pp)[0] == '#')
2656 /* We'll get the parameter types from the name. */
2657 struct type *return_type;
2660 return_type = read_type (pp, objfile);
2661 if (*(*pp)++ != ';')
2662 complain (&invalid_member_complaint, symnum);
2663 type = allocate_stub_method (return_type);
2664 if (typenums[0] != -1)
2665 *dbx_lookup_type (typenums) = type;
2669 struct type *domain = read_type (pp, objfile);
2670 struct type *return_type;
2674 /* Invalid member type data format. */
2675 return error_type (pp, objfile);
2679 return_type = read_type (pp, objfile);
2680 args = read_args (pp, ';', objfile);
2681 type = dbx_alloc_type (typenums, objfile);
2682 smash_to_method_type (type, domain, return_type, args);
2686 case 'r': /* Range type */
2687 type = read_range_type (pp, typenums, objfile);
2688 if (typenums[0] != -1)
2689 *dbx_lookup_type (typenums) = type;
2694 /* Const and volatile qualified type. */
2695 type = read_type (pp, objfile);
2698 /* Sun ACC builtin int type */
2699 type = read_sun_builtin_type (pp, typenums, objfile);
2700 if (typenums[0] != -1)
2701 *dbx_lookup_type (typenums) = type;
2705 case 'R': /* Sun ACC builtin float type */
2706 type = read_sun_floating_type (pp, typenums, objfile);
2707 if (typenums[0] != -1)
2708 *dbx_lookup_type (typenums) = type;
2711 case 'e': /* Enumeration type */
2712 type = dbx_alloc_type (typenums, objfile);
2713 type = read_enum_type (pp, type, objfile);
2714 if (typenums[0] != -1)
2715 *dbx_lookup_type (typenums) = type;
2718 case 's': /* Struct type */
2719 case 'u': /* Union type */
2720 type = dbx_alloc_type (typenums, objfile);
2721 switch (type_descriptor)
2724 TYPE_CODE (type) = TYPE_CODE_STRUCT;
2727 TYPE_CODE (type) = TYPE_CODE_UNION;
2730 type = read_struct_type (pp, type, objfile);
2733 case 'a': /* Array type */
2735 return error_type (pp, objfile);
2738 type = dbx_alloc_type (typenums, objfile);
2739 type = read_array_type (pp, type, objfile);
2741 TYPE_CODE (type) = TYPE_CODE_STRING;
2745 type1 = read_type (pp, objfile);
2746 type = create_set_type ((struct type *) NULL, type1);
2748 TYPE_CODE (type) = TYPE_CODE_BITSTRING;
2749 if (typenums[0] != -1)
2750 *dbx_lookup_type (typenums) = type;
2754 --*pp; /* Go back to the symbol in error */
2755 /* Particularly important if it was \0! */
2756 return error_type (pp, objfile);
2761 warning ("GDB internal error, type is NULL in stabsread.c\n");
2762 return error_type (pp, objfile);
2765 /* Size specified in a type attribute overrides any other size. */
2766 if (type_size != -1)
2767 TYPE_LENGTH (type) = (type_size + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
2772 /* RS/6000 xlc/dbx combination uses a set of builtin types, starting from -1.
2773 Return the proper type node for a given builtin type number. */
2775 static struct type *
2776 rs6000_builtin_type (int typenum)
2778 /* We recognize types numbered from -NUMBER_RECOGNIZED to -1. */
2779 #define NUMBER_RECOGNIZED 34
2780 /* This includes an empty slot for type number -0. */
2781 static struct type *negative_types[NUMBER_RECOGNIZED + 1];
2782 struct type *rettype = NULL;
2784 if (typenum >= 0 || typenum < -NUMBER_RECOGNIZED)
2786 complain (&rs6000_builtin_complaint, typenum);
2787 return builtin_type_error;
2789 if (negative_types[-typenum] != NULL)
2790 return negative_types[-typenum];
2792 #if TARGET_CHAR_BIT != 8
2793 #error This code wrong for TARGET_CHAR_BIT not 8
2794 /* These definitions all assume that TARGET_CHAR_BIT is 8. I think
2795 that if that ever becomes not true, the correct fix will be to
2796 make the size in the struct type to be in bits, not in units of
2803 /* The size of this and all the other types are fixed, defined
2804 by the debugging format. If there is a type called "int" which
2805 is other than 32 bits, then it should use a new negative type
2806 number (or avoid negative type numbers for that case).
2807 See stabs.texinfo. */
2808 rettype = init_type (TYPE_CODE_INT, 4, 0, "int", NULL);
2811 rettype = init_type (TYPE_CODE_INT, 1, 0, "char", NULL);
2814 rettype = init_type (TYPE_CODE_INT, 2, 0, "short", NULL);
2817 rettype = init_type (TYPE_CODE_INT, 4, 0, "long", NULL);
2820 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
2821 "unsigned char", NULL);
2824 rettype = init_type (TYPE_CODE_INT, 1, 0, "signed char", NULL);
2827 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
2828 "unsigned short", NULL);
2831 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2832 "unsigned int", NULL);
2835 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2838 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2839 "unsigned long", NULL);
2842 rettype = init_type (TYPE_CODE_VOID, 1, 0, "void", NULL);
2845 /* IEEE single precision (32 bit). */
2846 rettype = init_type (TYPE_CODE_FLT, 4, 0, "float", NULL);
2849 /* IEEE double precision (64 bit). */
2850 rettype = init_type (TYPE_CODE_FLT, 8, 0, "double", NULL);
2853 /* This is an IEEE double on the RS/6000, and different machines with
2854 different sizes for "long double" should use different negative
2855 type numbers. See stabs.texinfo. */
2856 rettype = init_type (TYPE_CODE_FLT, 8, 0, "long double", NULL);
2859 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer", NULL);
2862 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
2866 rettype = init_type (TYPE_CODE_FLT, 4, 0, "short real", NULL);
2869 rettype = init_type (TYPE_CODE_FLT, 8, 0, "real", NULL);
2872 rettype = init_type (TYPE_CODE_ERROR, 0, 0, "stringptr", NULL);
2875 rettype = init_type (TYPE_CODE_CHAR, 1, TYPE_FLAG_UNSIGNED,
2879 rettype = init_type (TYPE_CODE_BOOL, 1, TYPE_FLAG_UNSIGNED,
2883 rettype = init_type (TYPE_CODE_BOOL, 2, TYPE_FLAG_UNSIGNED,
2887 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
2891 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
2895 /* Complex type consisting of two IEEE single precision values. */
2896 rettype = init_type (TYPE_CODE_COMPLEX, 8, 0, "complex", NULL);
2899 /* Complex type consisting of two IEEE double precision values. */
2900 rettype = init_type (TYPE_CODE_COMPLEX, 16, 0, "double complex", NULL);
2903 rettype = init_type (TYPE_CODE_INT, 1, 0, "integer*1", NULL);
2906 rettype = init_type (TYPE_CODE_INT, 2, 0, "integer*2", NULL);
2909 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer*4", NULL);
2912 rettype = init_type (TYPE_CODE_CHAR, 2, 0, "wchar", NULL);
2915 rettype = init_type (TYPE_CODE_INT, 8, 0, "long long", NULL);
2918 rettype = init_type (TYPE_CODE_INT, 8, TYPE_FLAG_UNSIGNED,
2919 "unsigned long long", NULL);
2922 rettype = init_type (TYPE_CODE_INT, 8, TYPE_FLAG_UNSIGNED,
2926 rettype = init_type (TYPE_CODE_INT, 8, 0, "integer*8", NULL);
2929 negative_types[-typenum] = rettype;
2933 /* This page contains subroutines of read_type. */
2935 /* Read member function stabs info for C++ classes. The form of each member
2938 NAME :: TYPENUM[=type definition] ARGS : PHYSNAME ;
2940 An example with two member functions is:
2942 afunc1::20=##15;:i;2A.;afunc2::20:i;2A.;
2944 For the case of overloaded operators, the format is op$::*.funcs, where
2945 $ is the CPLUS_MARKER (usually '$'), `*' holds the place for an operator
2946 name (such as `+=') and `.' marks the end of the operator name.
2948 Returns 1 for success, 0 for failure. */
2951 read_member_functions (struct field_info *fip, char **pp, struct type *type,
2952 struct objfile *objfile)
2957 /* Total number of member functions defined in this class. If the class
2958 defines two `f' functions, and one `g' function, then this will have
2960 int total_length = 0;
2964 struct next_fnfield *next;
2965 struct fn_field fn_field;
2968 struct type *look_ahead_type;
2969 struct next_fnfieldlist *new_fnlist;
2970 struct next_fnfield *new_sublist;
2974 /* Process each list until we find something that is not a member function
2975 or find the end of the functions. */
2979 /* We should be positioned at the start of the function name.
2980 Scan forward to find the first ':' and if it is not the
2981 first of a "::" delimiter, then this is not a member function. */
2993 look_ahead_type = NULL;
2997 if (p - *pp == strlen ("__base_ctor")
2998 && strncmp (*pp, "__base_ctor", strlen ("__base_ctor")) == 0)
3000 else if (p - *pp == strlen ("__base_dtor")
3001 && strncmp (*pp, "__base_dtor", strlen ("__base_dtor")) == 0)
3003 else if (p - *pp == strlen ("__deleting_dtor")
3004 && strncmp (*pp, "__deleting_dtor",
3005 strlen ("__deleting_dtor")) == 0)
3010 /* Skip past '::'. */
3012 /* Read the type. */
3013 read_type (pp, objfile);
3014 /* Skip past the colon, mangled name, semicolon, flags, and final
3026 new_fnlist = (struct next_fnfieldlist *)
3027 xmalloc (sizeof (struct next_fnfieldlist));
3028 make_cleanup (xfree, new_fnlist);
3029 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
3031 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && is_cplus_marker ((*pp)[2]))
3033 /* This is a completely wierd case. In order to stuff in the
3034 names that might contain colons (the usual name delimiter),
3035 Mike Tiemann defined a different name format which is
3036 signalled if the identifier is "op$". In that case, the
3037 format is "op$::XXXX." where XXXX is the name. This is
3038 used for names like "+" or "=". YUUUUUUUK! FIXME! */
3039 /* This lets the user type "break operator+".
3040 We could just put in "+" as the name, but that wouldn't
3042 static char opname[32] =
3043 {'o', 'p', CPLUS_MARKER};
3044 char *o = opname + 3;
3046 /* Skip past '::'. */
3049 STABS_CONTINUE (pp, objfile);
3055 main_fn_name = savestring (opname, o - opname);
3061 main_fn_name = savestring (*pp, p - *pp);
3062 /* Skip past '::'. */
3065 new_fnlist->fn_fieldlist.name = main_fn_name;
3070 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
3071 make_cleanup (xfree, new_sublist);
3072 memset (new_sublist, 0, sizeof (struct next_fnfield));
3074 /* Check for and handle cretinous dbx symbol name continuation! */
3075 if (look_ahead_type == NULL)
3078 STABS_CONTINUE (pp, objfile);
3080 new_sublist->fn_field.type = read_type (pp, objfile);
3083 /* Invalid symtab info for member function. */
3089 /* g++ version 1 kludge */
3090 new_sublist->fn_field.type = look_ahead_type;
3091 look_ahead_type = NULL;
3101 /* If this is just a stub, then we don't have the real name here. */
3103 if (TYPE_STUB (new_sublist->fn_field.type))
3105 if (!TYPE_DOMAIN_TYPE (new_sublist->fn_field.type))
3106 TYPE_DOMAIN_TYPE (new_sublist->fn_field.type) = type;
3107 new_sublist->fn_field.is_stub = 1;
3109 new_sublist->fn_field.physname = savestring (*pp, p - *pp);
3112 /* Set this member function's visibility fields. */
3115 case VISIBILITY_PRIVATE:
3116 new_sublist->fn_field.is_private = 1;
3118 case VISIBILITY_PROTECTED:
3119 new_sublist->fn_field.is_protected = 1;
3123 STABS_CONTINUE (pp, objfile);
3126 case 'A': /* Normal functions. */
3127 new_sublist->fn_field.is_const = 0;
3128 new_sublist->fn_field.is_volatile = 0;
3131 case 'B': /* `const' member functions. */
3132 new_sublist->fn_field.is_const = 1;
3133 new_sublist->fn_field.is_volatile = 0;
3136 case 'C': /* `volatile' member function. */
3137 new_sublist->fn_field.is_const = 0;
3138 new_sublist->fn_field.is_volatile = 1;
3141 case 'D': /* `const volatile' member function. */
3142 new_sublist->fn_field.is_const = 1;
3143 new_sublist->fn_field.is_volatile = 1;
3146 case '*': /* File compiled with g++ version 1 -- no info */
3151 complain (&const_vol_complaint, **pp);
3160 /* virtual member function, followed by index.
3161 The sign bit is set to distinguish pointers-to-methods
3162 from virtual function indicies. Since the array is
3163 in words, the quantity must be shifted left by 1
3164 on 16 bit machine, and by 2 on 32 bit machine, forcing
3165 the sign bit out, and usable as a valid index into
3166 the array. Remove the sign bit here. */
3167 new_sublist->fn_field.voffset =
3168 (0x7fffffff & read_huge_number (pp, ';', &nbits)) + 2;
3172 STABS_CONTINUE (pp, objfile);
3173 if (**pp == ';' || **pp == '\0')
3175 /* Must be g++ version 1. */
3176 new_sublist->fn_field.fcontext = 0;
3180 /* Figure out from whence this virtual function came.
3181 It may belong to virtual function table of
3182 one of its baseclasses. */
3183 look_ahead_type = read_type (pp, objfile);
3186 /* g++ version 1 overloaded methods. */
3190 new_sublist->fn_field.fcontext = look_ahead_type;
3199 look_ahead_type = NULL;
3205 /* static member function. */
3206 new_sublist->fn_field.voffset = VOFFSET_STATIC;
3207 if (strncmp (new_sublist->fn_field.physname,
3208 main_fn_name, strlen (main_fn_name)))
3210 new_sublist->fn_field.is_stub = 1;
3216 complain (&member_fn_complaint, (*pp)[-1]);
3217 /* Fall through into normal member function. */
3220 /* normal member function. */
3221 new_sublist->fn_field.voffset = 0;
3222 new_sublist->fn_field.fcontext = 0;
3226 new_sublist->next = sublist;
3227 sublist = new_sublist;
3229 STABS_CONTINUE (pp, objfile);
3231 while (**pp != ';' && **pp != '\0');
3235 new_fnlist->fn_fieldlist.fn_fields = (struct fn_field *)
3236 obstack_alloc (&objfile->type_obstack,
3237 sizeof (struct fn_field) * length);
3238 memset (new_fnlist->fn_fieldlist.fn_fields, 0,
3239 sizeof (struct fn_field) * length);
3240 for (i = length; (i--, sublist); sublist = sublist->next)
3242 new_fnlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
3245 new_fnlist->fn_fieldlist.length = length;
3246 new_fnlist->next = fip->fnlist;
3247 fip->fnlist = new_fnlist;
3249 total_length += length;
3250 STABS_CONTINUE (pp, objfile);
3255 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3256 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
3257 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
3258 memset (TYPE_FN_FIELDLISTS (type), 0,
3259 sizeof (struct fn_fieldlist) * nfn_fields);
3260 TYPE_NFN_FIELDS (type) = nfn_fields;
3261 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
3267 /* Special GNU C++ name.
3269 Returns 1 for success, 0 for failure. "failure" means that we can't
3270 keep parsing and it's time for error_type(). */
3273 read_cpp_abbrev (struct field_info *fip, char **pp, struct type *type,
3274 struct objfile *objfile)
3279 struct type *context;
3289 /* At this point, *pp points to something like "22:23=*22...",
3290 where the type number before the ':' is the "context" and
3291 everything after is a regular type definition. Lookup the
3292 type, find it's name, and construct the field name. */
3294 context = read_type (pp, objfile);
3298 case 'f': /* $vf -- a virtual function table pointer */
3299 name = type_name_no_tag (context);
3304 fip->list->field.name =
3305 obconcat (&objfile->type_obstack, vptr_name, name, "");
3308 case 'b': /* $vb -- a virtual bsomethingorother */
3309 name = type_name_no_tag (context);
3312 complain (&invalid_cpp_type_complaint, symnum);
3315 fip->list->field.name =
3316 obconcat (&objfile->type_obstack, vb_name, name, "");
3320 complain (&invalid_cpp_abbrev_complaint, *pp);
3321 fip->list->field.name =
3322 obconcat (&objfile->type_obstack,
3323 "INVALID_CPLUSPLUS_ABBREV", "", "");
3327 /* At this point, *pp points to the ':'. Skip it and read the
3333 complain (&invalid_cpp_abbrev_complaint, *pp);
3336 fip->list->field.type = read_type (pp, objfile);
3338 (*pp)++; /* Skip the comma. */
3344 FIELD_BITPOS (fip->list->field) = read_huge_number (pp, ';', &nbits);
3348 /* This field is unpacked. */
3349 FIELD_BITSIZE (fip->list->field) = 0;
3350 fip->list->visibility = VISIBILITY_PRIVATE;
3354 complain (&invalid_cpp_abbrev_complaint, *pp);
3355 /* We have no idea what syntax an unrecognized abbrev would have, so
3356 better return 0. If we returned 1, we would need to at least advance
3357 *pp to avoid an infinite loop. */
3364 read_one_struct_field (struct field_info *fip, char **pp, char *p,
3365 struct type *type, struct objfile *objfile)
3367 /* The following is code to work around cfront generated stabs.
3368 The stabs contains full mangled name for each field.
3369 We try to demangle the name and extract the field name out of it.
3371 if (ARM_DEMANGLING && current_subfile->language == language_cplus)
3377 dem = cplus_demangle (*pp, DMGL_ANSI | DMGL_PARAMS);
3380 dem_p = strrchr (dem, ':');
3381 if (dem_p != 0 && *(dem_p - 1) == ':')
3383 FIELD_NAME (fip->list->field) =
3384 obsavestring (dem_p, strlen (dem_p), &objfile->type_obstack);
3388 FIELD_NAME (fip->list->field) =
3389 obsavestring (*pp, p - *pp, &objfile->type_obstack);
3393 /* end of code for cfront work around */
3396 fip->list->field.name =
3397 obsavestring (*pp, p - *pp, &objfile->type_obstack);
3400 /* This means we have a visibility for a field coming. */
3404 fip->list->visibility = *(*pp)++;
3408 /* normal dbx-style format, no explicit visibility */
3409 fip->list->visibility = VISIBILITY_PUBLIC;
3412 fip->list->field.type = read_type (pp, objfile);
3417 /* Possible future hook for nested types. */
3420 fip->list->field.bitpos = (long) -2; /* nested type */
3430 /* Static class member. */
3431 SET_FIELD_PHYSNAME (fip->list->field, savestring (*pp, p - *pp));
3435 else if (**pp != ',')
3437 /* Bad structure-type format. */
3438 complain (&stabs_general_complaint, "bad structure-type format");
3442 (*pp)++; /* Skip the comma. */
3446 FIELD_BITPOS (fip->list->field) = read_huge_number (pp, ',', &nbits);
3449 complain (&stabs_general_complaint, "bad structure-type format");
3452 FIELD_BITSIZE (fip->list->field) = read_huge_number (pp, ';', &nbits);
3455 complain (&stabs_general_complaint, "bad structure-type format");
3460 if (FIELD_BITPOS (fip->list->field) == 0
3461 && FIELD_BITSIZE (fip->list->field) == 0)
3463 /* This can happen in two cases: (1) at least for gcc 2.4.5 or so,
3464 it is a field which has been optimized out. The correct stab for
3465 this case is to use VISIBILITY_IGNORE, but that is a recent
3466 invention. (2) It is a 0-size array. For example
3467 union { int num; char str[0]; } foo. Printing "<no value>" for
3468 str in "p foo" is OK, since foo.str (and thus foo.str[3])
3469 will continue to work, and a 0-size array as a whole doesn't
3470 have any contents to print.
3472 I suspect this probably could also happen with gcc -gstabs (not
3473 -gstabs+) for static fields, and perhaps other C++ extensions.
3474 Hopefully few people use -gstabs with gdb, since it is intended
3475 for dbx compatibility. */
3477 /* Ignore this field. */
3478 fip->list->visibility = VISIBILITY_IGNORE;
3482 /* Detect an unpacked field and mark it as such.
3483 dbx gives a bit size for all fields.
3484 Note that forward refs cannot be packed,
3485 and treat enums as if they had the width of ints. */
3487 struct type *field_type = check_typedef (FIELD_TYPE (fip->list->field));
3489 if (TYPE_CODE (field_type) != TYPE_CODE_INT
3490 && TYPE_CODE (field_type) != TYPE_CODE_RANGE
3491 && TYPE_CODE (field_type) != TYPE_CODE_BOOL
3492 && TYPE_CODE (field_type) != TYPE_CODE_ENUM)
3494 FIELD_BITSIZE (fip->list->field) = 0;
3496 if ((FIELD_BITSIZE (fip->list->field)
3497 == TARGET_CHAR_BIT * TYPE_LENGTH (field_type)
3498 || (TYPE_CODE (field_type) == TYPE_CODE_ENUM
3499 && FIELD_BITSIZE (fip->list->field) == TARGET_INT_BIT)
3502 FIELD_BITPOS (fip->list->field) % 8 == 0)
3504 FIELD_BITSIZE (fip->list->field) = 0;
3510 /* Read struct or class data fields. They have the form:
3512 NAME : [VISIBILITY] TYPENUM , BITPOS , BITSIZE ;
3514 At the end, we see a semicolon instead of a field.
3516 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
3519 The optional VISIBILITY is one of:
3521 '/0' (VISIBILITY_PRIVATE)
3522 '/1' (VISIBILITY_PROTECTED)
3523 '/2' (VISIBILITY_PUBLIC)
3524 '/9' (VISIBILITY_IGNORE)
3526 or nothing, for C style fields with public visibility.
3528 Returns 1 for success, 0 for failure. */
3531 read_struct_fields (struct field_info *fip, char **pp, struct type *type,
3532 struct objfile *objfile)
3535 struct nextfield *new;
3537 /* We better set p right now, in case there are no fields at all... */
3541 /* Read each data member type until we find the terminating ';' at the end of
3542 the data member list, or break for some other reason such as finding the
3543 start of the member function list. */
3544 /* Stab string for structure/union does not end with two ';' in
3545 SUN C compiler 5.3 i.e. F6U2, hence check for end of string. */
3547 while (**pp != ';' && **pp != '\0')
3549 if (os9k_stabs && **pp == ',')
3551 STABS_CONTINUE (pp, objfile);
3552 /* Get space to record the next field's data. */
3553 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3554 make_cleanup (xfree, new);
3555 memset (new, 0, sizeof (struct nextfield));
3556 new->next = fip->list;
3559 /* Get the field name. */
3562 /* If is starts with CPLUS_MARKER it is a special abbreviation,
3563 unless the CPLUS_MARKER is followed by an underscore, in
3564 which case it is just the name of an anonymous type, which we
3565 should handle like any other type name. */
3567 if (is_cplus_marker (p[0]) && p[1] != '_')
3569 if (!read_cpp_abbrev (fip, pp, type, objfile))
3574 /* Look for the ':' that separates the field name from the field
3575 values. Data members are delimited by a single ':', while member
3576 functions are delimited by a pair of ':'s. When we hit the member
3577 functions (if any), terminate scan loop and return. */
3579 while (*p != ':' && *p != '\0')
3586 /* Check to see if we have hit the member functions yet. */
3591 read_one_struct_field (fip, pp, p, type, objfile);
3593 if (p[0] == ':' && p[1] == ':')
3595 /* chill the list of fields: the last entry (at the head) is a
3596 partially constructed entry which we now scrub. */
3597 fip->list = fip->list->next;
3602 /* The stabs for C++ derived classes contain baseclass information which
3603 is marked by a '!' character after the total size. This function is
3604 called when we encounter the baseclass marker, and slurps up all the
3605 baseclass information.
3607 Immediately following the '!' marker is the number of base classes that
3608 the class is derived from, followed by information for each base class.
3609 For each base class, there are two visibility specifiers, a bit offset
3610 to the base class information within the derived class, a reference to
3611 the type for the base class, and a terminating semicolon.
3613 A typical example, with two base classes, would be "!2,020,19;0264,21;".
3615 Baseclass information marker __________________|| | | | | | |
3616 Number of baseclasses __________________________| | | | | | |
3617 Visibility specifiers (2) ________________________| | | | | |
3618 Offset in bits from start of class _________________| | | | |
3619 Type number for base class ___________________________| | | |
3620 Visibility specifiers (2) _______________________________| | |
3621 Offset in bits from start of class ________________________| |
3622 Type number of base class ____________________________________|
3624 Return 1 for success, 0 for (error-type-inducing) failure. */
3630 read_baseclasses (struct field_info *fip, char **pp, struct type *type,
3631 struct objfile *objfile)
3634 struct nextfield *new;
3642 /* Skip the '!' baseclass information marker. */
3646 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3649 TYPE_N_BASECLASSES (type) = read_huge_number (pp, ',', &nbits);
3655 /* Some stupid compilers have trouble with the following, so break
3656 it up into simpler expressions. */
3657 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *)
3658 TYPE_ALLOC (type, B_BYTES (TYPE_N_BASECLASSES (type)));
3661 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
3664 pointer = (char *) TYPE_ALLOC (type, num_bytes);
3665 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
3669 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
3671 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
3673 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3674 make_cleanup (xfree, new);
3675 memset (new, 0, sizeof (struct nextfield));
3676 new->next = fip->list;
3678 FIELD_BITSIZE (new->field) = 0; /* this should be an unpacked field! */
3680 STABS_CONTINUE (pp, objfile);
3684 /* Nothing to do. */
3687 SET_TYPE_FIELD_VIRTUAL (type, i);
3690 /* Unknown character. Complain and treat it as non-virtual. */
3692 static struct complaint msg =
3694 "Unknown virtual character `%c' for baseclass", 0, 0};
3695 complain (&msg, **pp);
3700 new->visibility = *(*pp)++;
3701 switch (new->visibility)
3703 case VISIBILITY_PRIVATE:
3704 case VISIBILITY_PROTECTED:
3705 case VISIBILITY_PUBLIC:
3708 /* Bad visibility format. Complain and treat it as
3711 static struct complaint msg =
3713 "Unknown visibility `%c' for baseclass", 0, 0
3715 complain (&msg, new->visibility);
3716 new->visibility = VISIBILITY_PUBLIC;
3723 /* The remaining value is the bit offset of the portion of the object
3724 corresponding to this baseclass. Always zero in the absence of
3725 multiple inheritance. */
3727 FIELD_BITPOS (new->field) = read_huge_number (pp, ',', &nbits);
3732 /* The last piece of baseclass information is the type of the
3733 base class. Read it, and remember it's type name as this
3736 new->field.type = read_type (pp, objfile);
3737 new->field.name = type_name_no_tag (new->field.type);
3739 /* skip trailing ';' and bump count of number of fields seen */
3748 /* The tail end of stabs for C++ classes that contain a virtual function
3749 pointer contains a tilde, a %, and a type number.
3750 The type number refers to the base class (possibly this class itself) which
3751 contains the vtable pointer for the current class.
3753 This function is called when we have parsed all the method declarations,
3754 so we can look for the vptr base class info. */
3757 read_tilde_fields (struct field_info *fip, char **pp, struct type *type,
3758 struct objfile *objfile)
3762 STABS_CONTINUE (pp, objfile);
3764 /* If we are positioned at a ';', then skip it. */
3774 if (**pp == '=' || **pp == '+' || **pp == '-')
3776 /* Obsolete flags that used to indicate the presence
3777 of constructors and/or destructors. */
3781 /* Read either a '%' or the final ';'. */
3782 if (*(*pp)++ == '%')
3784 /* The next number is the type number of the base class
3785 (possibly our own class) which supplies the vtable for
3786 this class. Parse it out, and search that class to find
3787 its vtable pointer, and install those into TYPE_VPTR_BASETYPE
3788 and TYPE_VPTR_FIELDNO. */
3793 t = read_type (pp, objfile);
3795 while (*p != '\0' && *p != ';')
3801 /* Premature end of symbol. */
3805 TYPE_VPTR_BASETYPE (type) = t;
3806 if (type == t) /* Our own class provides vtbl ptr */
3808 for (i = TYPE_NFIELDS (t) - 1;
3809 i >= TYPE_N_BASECLASSES (t);
3812 if (!strncmp (TYPE_FIELD_NAME (t, i), vptr_name,
3813 sizeof (vptr_name) - 1))
3815 TYPE_VPTR_FIELDNO (type) = i;
3819 /* Virtual function table field not found. */
3820 complain (&vtbl_notfound_complaint, TYPE_NAME (type));
3825 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
3836 attach_fn_fields_to_type (struct field_info *fip, register struct type *type)
3840 for (n = TYPE_NFN_FIELDS (type);
3841 fip->fnlist != NULL;
3842 fip->fnlist = fip->fnlist->next)
3844 --n; /* Circumvent Sun3 compiler bug */
3845 TYPE_FN_FIELDLISTS (type)[n] = fip->fnlist->fn_fieldlist;
3850 /* read cfront class static data.
3851 pp points to string starting with the list of static data
3852 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
3855 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
3860 read_cfront_static_fields (struct field_info *fip, char **pp, struct type *type,
3861 struct objfile *objfile)
3863 struct nextfield *new;
3866 struct symbol *ref_static = 0;
3868 if (**pp == ';') /* no static data; return */
3874 /* Process each field in the list until we find the terminating ";" */
3876 /* eg: p = "as__1A ;;;" */
3877 STABS_CONTINUE (pp, objfile); /* handle \\ */
3878 while (**pp != ';' && (sname = get_substring (pp, ' '), sname))
3880 ref_static = lookup_symbol (sname, 0, VAR_NAMESPACE, 0, 0); /*demangled_name */
3883 static struct complaint msg =
3885 Unable to find symbol for static data field %s\n",
3887 complain (&msg, sname);
3890 stype = SYMBOL_TYPE (ref_static);
3892 /* allocate a new fip */
3893 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3894 make_cleanup (xfree, new);
3895 memset (new, 0, sizeof (struct nextfield));
3896 new->next = fip->list;
3899 /* set visibility */
3900 /* FIXME! no way to tell visibility from stabs??? */
3901 new->visibility = VISIBILITY_PUBLIC;
3903 /* set field info into fip */
3904 fip->list->field.type = stype;
3906 /* set bitpos & bitsize */
3907 SET_FIELD_PHYSNAME (fip->list->field, savestring (sname, strlen (sname)));
3909 /* set name field */
3910 /* The following is code to work around cfront generated stabs.
3911 The stabs contains full mangled name for each field.
3912 We try to demangle the name and extract the field name out of it.
3917 dem = cplus_demangle (sname, DMGL_ANSI | DMGL_PARAMS);
3920 dem_p = strrchr (dem, ':');
3921 if (dem_p != 0 && *(dem_p - 1) == ':')
3923 fip->list->field.name =
3924 obsavestring (dem_p, strlen (dem_p), &objfile->type_obstack);
3928 fip->list->field.name =
3929 obsavestring (sname, strlen (sname), &objfile->type_obstack);
3931 } /* end of code for cfront work around */
3932 } /* loop again for next static field */
3936 /* Copy structure fields to fip so attach_fields_to_type will work.
3937 type has already been created with the initial instance data fields.
3938 Now we want to be able to add the other members to the class,
3939 so we want to add them back to the fip and reattach them again
3940 once we have collected all the class members. */
3943 copy_cfront_struct_fields (struct field_info *fip, struct type *type,
3944 struct objfile *objfile)
3946 int nfields = TYPE_NFIELDS (type);
3948 struct nextfield *new;
3950 /* Copy the fields into the list of fips and reset the types
3951 to remove the old fields */
3953 for (i = 0; i < nfields; i++)
3955 /* allocate a new fip */
3956 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3957 make_cleanup (xfree, new);
3958 memset (new, 0, sizeof (struct nextfield));
3959 new->next = fip->list;
3962 /* copy field info into fip */
3963 new->field = TYPE_FIELD (type, i);
3964 /* set visibility */
3965 if (TYPE_FIELD_PROTECTED (type, i))
3966 new->visibility = VISIBILITY_PROTECTED;
3967 else if (TYPE_FIELD_PRIVATE (type, i))
3968 new->visibility = VISIBILITY_PRIVATE;
3970 new->visibility = VISIBILITY_PUBLIC;
3972 /* Now delete the fields from the type since we will be
3973 allocing new space once we get the rest of the fields
3974 in attach_fields_to_type.
3975 The pointer TYPE_FIELDS(type) is left dangling but should
3976 be freed later by objstack_free */
3977 TYPE_FIELDS (type) = 0;
3978 TYPE_NFIELDS (type) = 0;
3983 /* Create the vector of fields, and record how big it is.
3984 We need this info to record proper virtual function table information
3985 for this class's virtual functions. */
3988 attach_fields_to_type (struct field_info *fip, register struct type *type,
3989 struct objfile *objfile)
3991 register int nfields = 0;
3992 register int non_public_fields = 0;
3993 register struct nextfield *scan;
3995 /* Count up the number of fields that we have, as well as taking note of
3996 whether or not there are any non-public fields, which requires us to
3997 allocate and build the private_field_bits and protected_field_bits
4000 for (scan = fip->list; scan != NULL; scan = scan->next)
4003 if (scan->visibility != VISIBILITY_PUBLIC)
4005 non_public_fields++;
4009 /* Now we know how many fields there are, and whether or not there are any
4010 non-public fields. Record the field count, allocate space for the
4011 array of fields, and create blank visibility bitfields if necessary. */
4013 TYPE_NFIELDS (type) = nfields;
4014 TYPE_FIELDS (type) = (struct field *)
4015 TYPE_ALLOC (type, sizeof (struct field) * nfields);
4016 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
4018 if (non_public_fields)
4020 ALLOCATE_CPLUS_STRUCT_TYPE (type);
4022 TYPE_FIELD_PRIVATE_BITS (type) =
4023 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4024 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
4026 TYPE_FIELD_PROTECTED_BITS (type) =
4027 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4028 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
4030 TYPE_FIELD_IGNORE_BITS (type) =
4031 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4032 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
4035 /* Copy the saved-up fields into the field vector. Start from the head
4036 of the list, adding to the tail of the field array, so that they end
4037 up in the same order in the array in which they were added to the list. */
4039 while (nfields-- > 0)
4041 TYPE_FIELD (type, nfields) = fip->list->field;
4042 switch (fip->list->visibility)
4044 case VISIBILITY_PRIVATE:
4045 SET_TYPE_FIELD_PRIVATE (type, nfields);
4048 case VISIBILITY_PROTECTED:
4049 SET_TYPE_FIELD_PROTECTED (type, nfields);
4052 case VISIBILITY_IGNORE:
4053 SET_TYPE_FIELD_IGNORE (type, nfields);
4056 case VISIBILITY_PUBLIC:
4060 /* Unknown visibility. Complain and treat it as public. */
4062 static struct complaint msg =
4064 "Unknown visibility `%c' for field", 0, 0};
4065 complain (&msg, fip->list->visibility);
4069 fip->list = fip->list->next;
4074 /* Read the description of a structure (or union type) and return an object
4075 describing the type.
4077 PP points to a character pointer that points to the next unconsumed token
4078 in the the stabs string. For example, given stabs "A:T4=s4a:1,0,32;;",
4079 *PP will point to "4a:1,0,32;;".
4081 TYPE points to an incomplete type that needs to be filled in.
4083 OBJFILE points to the current objfile from which the stabs information is
4084 being read. (Note that it is redundant in that TYPE also contains a pointer
4085 to this same objfile, so it might be a good idea to eliminate it. FIXME).
4088 static struct type *
4089 read_struct_type (char **pp, struct type *type, struct objfile *objfile)
4091 struct cleanup *back_to;
4092 struct field_info fi;
4097 back_to = make_cleanup (null_cleanup, 0);
4099 INIT_CPLUS_SPECIFIC (type);
4100 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
4102 /* First comes the total size in bytes. */
4106 TYPE_LENGTH (type) = read_huge_number (pp, 0, &nbits);
4108 return error_type (pp, objfile);
4111 /* Now read the baseclasses, if any, read the regular C struct or C++
4112 class member fields, attach the fields to the type, read the C++
4113 member functions, attach them to the type, and then read any tilde
4114 field (baseclass specifier for the class holding the main vtable). */
4116 if (!read_baseclasses (&fi, pp, type, objfile)
4117 || !read_struct_fields (&fi, pp, type, objfile)
4118 || !attach_fields_to_type (&fi, type, objfile)
4119 || !read_member_functions (&fi, pp, type, objfile)
4120 || !attach_fn_fields_to_type (&fi, type)
4121 || !read_tilde_fields (&fi, pp, type, objfile))
4123 type = error_type (pp, objfile);
4126 /* Fix up any cv-qualified versions of this type. */
4127 finish_cv_type (type);
4128 do_cleanups (back_to);
4132 /* Read a definition of an array type,
4133 and create and return a suitable type object.
4134 Also creates a range type which represents the bounds of that
4137 static struct type *
4138 read_array_type (register char **pp, register struct type *type,
4139 struct objfile *objfile)
4141 struct type *index_type, *element_type, *range_type;
4146 /* Format of an array type:
4147 "ar<index type>;lower;upper;<array_contents_type>".
4148 OS9000: "arlower,upper;<array_contents_type>".
4150 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
4151 for these, produce a type like float[][]. */
4154 index_type = builtin_type_int;
4157 index_type = read_type (pp, objfile);
4159 /* Improper format of array type decl. */
4160 return error_type (pp, objfile);
4164 if (!(**pp >= '0' && **pp <= '9') && **pp != '-')
4169 lower = read_huge_number (pp, os9k_stabs ? ',' : ';', &nbits);
4171 return error_type (pp, objfile);
4173 if (!(**pp >= '0' && **pp <= '9') && **pp != '-')
4178 upper = read_huge_number (pp, ';', &nbits);
4180 return error_type (pp, objfile);
4182 element_type = read_type (pp, objfile);
4191 create_range_type ((struct type *) NULL, index_type, lower, upper);
4192 type = create_array_type (type, element_type, range_type);
4198 /* Read a definition of an enumeration type,
4199 and create and return a suitable type object.
4200 Also defines the symbols that represent the values of the type. */
4202 static struct type *
4203 read_enum_type (register char **pp, register struct type *type,
4204 struct objfile *objfile)
4209 register struct symbol *sym;
4211 struct pending **symlist;
4212 struct pending *osyms, *syms;
4215 int unsigned_enum = 1;
4218 /* FIXME! The stabs produced by Sun CC merrily define things that ought
4219 to be file-scope, between N_FN entries, using N_LSYM. What's a mother
4220 to do? For now, force all enum values to file scope. */
4221 if (within_function)
4222 symlist = &local_symbols;
4225 symlist = &file_symbols;
4227 o_nsyms = osyms ? osyms->nsyms : 0;
4231 /* Size. Perhaps this does not have to be conditionalized on
4232 os9k_stabs (assuming the name of an enum constant can't start
4234 read_huge_number (pp, 0, &nbits);
4236 return error_type (pp, objfile);
4239 /* The aix4 compiler emits an extra field before the enum members;
4240 my guess is it's a type of some sort. Just ignore it. */
4243 /* Skip over the type. */
4247 /* Skip over the colon. */
4251 /* Read the value-names and their values.
4252 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
4253 A semicolon or comma instead of a NAME means the end. */
4254 while (**pp && **pp != ';' && **pp != ',')
4256 STABS_CONTINUE (pp, objfile);
4260 name = obsavestring (*pp, p - *pp, &objfile->symbol_obstack);
4262 n = read_huge_number (pp, ',', &nbits);
4264 return error_type (pp, objfile);
4266 sym = (struct symbol *)
4267 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
4268 memset (sym, 0, sizeof (struct symbol));
4269 SYMBOL_NAME (sym) = name;
4270 SYMBOL_LANGUAGE (sym) = current_subfile->language;
4271 SYMBOL_CLASS (sym) = LOC_CONST;
4272 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
4273 SYMBOL_VALUE (sym) = n;
4276 add_symbol_to_list (sym, symlist);
4281 (*pp)++; /* Skip the semicolon. */
4283 /* Now fill in the fields of the type-structure. */
4285 TYPE_LENGTH (type) = TARGET_INT_BIT / HOST_CHAR_BIT;
4286 TYPE_CODE (type) = TYPE_CODE_ENUM;
4287 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
4289 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
4290 TYPE_NFIELDS (type) = nsyms;
4291 TYPE_FIELDS (type) = (struct field *)
4292 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
4293 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nsyms);
4295 /* Find the symbols for the values and put them into the type.
4296 The symbols can be found in the symlist that we put them on
4297 to cause them to be defined. osyms contains the old value
4298 of that symlist; everything up to there was defined by us. */
4299 /* Note that we preserve the order of the enum constants, so
4300 that in something like "enum {FOO, LAST_THING=FOO}" we print
4301 FOO, not LAST_THING. */
4303 for (syms = *symlist, n = nsyms - 1; syms; syms = syms->next)
4305 int last = syms == osyms ? o_nsyms : 0;
4306 int j = syms->nsyms;
4307 for (; --j >= last; --n)
4309 struct symbol *xsym = syms->symbol[j];
4310 SYMBOL_TYPE (xsym) = type;
4311 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
4312 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
4313 TYPE_FIELD_BITSIZE (type, n) = 0;
4322 /* Sun's ACC uses a somewhat saner method for specifying the builtin
4323 typedefs in every file (for int, long, etc):
4325 type = b <signed> <width> <format type>; <offset>; <nbits>
4327 optional format type = c or b for char or boolean.
4328 offset = offset from high order bit to start bit of type.
4329 width is # bytes in object of this type, nbits is # bits in type.
4331 The width/offset stuff appears to be for small objects stored in
4332 larger ones (e.g. `shorts' in `int' registers). We ignore it for now,
4335 static struct type *
4336 read_sun_builtin_type (char **pp, int typenums[2], struct objfile *objfile)
4341 enum type_code code = TYPE_CODE_INT;
4352 return error_type (pp, objfile);
4356 /* For some odd reason, all forms of char put a c here. This is strange
4357 because no other type has this honor. We can safely ignore this because
4358 we actually determine 'char'acterness by the number of bits specified in
4360 Boolean forms, e.g Fortran logical*X, put a b here. */
4364 else if (**pp == 'b')
4366 code = TYPE_CODE_BOOL;
4370 /* The first number appears to be the number of bytes occupied
4371 by this type, except that unsigned short is 4 instead of 2.
4372 Since this information is redundant with the third number,
4373 we will ignore it. */
4374 read_huge_number (pp, ';', &nbits);
4376 return error_type (pp, objfile);
4378 /* The second number is always 0, so ignore it too. */
4379 read_huge_number (pp, ';', &nbits);
4381 return error_type (pp, objfile);
4383 /* The third number is the number of bits for this type. */
4384 type_bits = read_huge_number (pp, 0, &nbits);
4386 return error_type (pp, objfile);
4387 /* The type *should* end with a semicolon. If it are embedded
4388 in a larger type the semicolon may be the only way to know where
4389 the type ends. If this type is at the end of the stabstring we
4390 can deal with the omitted semicolon (but we don't have to like
4391 it). Don't bother to complain(), Sun's compiler omits the semicolon
4397 return init_type (TYPE_CODE_VOID, 1,
4398 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *) NULL,
4401 return init_type (code,
4402 type_bits / TARGET_CHAR_BIT,
4403 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *) NULL,
4407 static struct type *
4408 read_sun_floating_type (char **pp, int typenums[2], struct objfile *objfile)
4414 /* The first number has more details about the type, for example
4416 details = read_huge_number (pp, ';', &nbits);
4418 return error_type (pp, objfile);
4420 /* The second number is the number of bytes occupied by this type */
4421 nbytes = read_huge_number (pp, ';', &nbits);
4423 return error_type (pp, objfile);
4425 if (details == NF_COMPLEX || details == NF_COMPLEX16
4426 || details == NF_COMPLEX32)
4427 /* This is a type we can't handle, but we do know the size.
4428 We also will be able to give it a name. */
4429 return init_type (TYPE_CODE_COMPLEX, nbytes, 0, NULL, objfile);
4431 return init_type (TYPE_CODE_FLT, nbytes, 0, NULL, objfile);
4434 /* Read a number from the string pointed to by *PP.
4435 The value of *PP is advanced over the number.
4436 If END is nonzero, the character that ends the
4437 number must match END, or an error happens;
4438 and that character is skipped if it does match.
4439 If END is zero, *PP is left pointing to that character.
4441 If the number fits in a long, set *BITS to 0 and return the value.
4442 If not, set *BITS to be the number of bits in the number and return 0.
4444 If encounter garbage, set *BITS to -1 and return 0. */
4447 read_huge_number (char **pp, int end, int *bits)
4464 /* Leading zero means octal. GCC uses this to output values larger
4465 than an int (because that would be hard in decimal). */
4473 upper_limit = ULONG_MAX / radix;
4475 upper_limit = LONG_MAX / radix;
4477 while ((c = *p++) >= '0' && c < ('0' + radix))
4479 if (n <= upper_limit)
4482 n += c - '0'; /* FIXME this overflows anyway */
4487 /* This depends on large values being output in octal, which is
4494 /* Ignore leading zeroes. */
4498 else if (c == '2' || c == '3')
4524 /* Large decimal constants are an error (because it is hard to
4525 count how many bits are in them). */
4531 /* -0x7f is the same as 0x80. So deal with it by adding one to
4532 the number of bits. */
4544 /* It's *BITS which has the interesting information. */
4548 static struct type *
4549 read_range_type (char **pp, int typenums[2], struct objfile *objfile)
4551 char *orig_pp = *pp;
4556 struct type *result_type;
4557 struct type *index_type = NULL;
4559 /* First comes a type we are a subrange of.
4560 In C it is usually 0, 1 or the type being defined. */
4561 if (read_type_number (pp, rangenums) != 0)
4562 return error_type (pp, objfile);
4563 self_subrange = (rangenums[0] == typenums[0] &&
4564 rangenums[1] == typenums[1]);
4569 index_type = read_type (pp, objfile);
4572 /* A semicolon should now follow; skip it. */
4576 /* The remaining two operands are usually lower and upper bounds
4577 of the range. But in some special cases they mean something else. */
4578 n2 = read_huge_number (pp, ';', &n2bits);
4579 n3 = read_huge_number (pp, ';', &n3bits);
4581 if (n2bits == -1 || n3bits == -1)
4582 return error_type (pp, objfile);
4585 goto handle_true_range;
4587 /* If limits are huge, must be large integral type. */
4588 if (n2bits != 0 || n3bits != 0)
4590 char got_signed = 0;
4591 char got_unsigned = 0;
4592 /* Number of bits in the type. */
4595 /* Range from 0 to <large number> is an unsigned large integral type. */
4596 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
4601 /* Range from <large number> to <large number>-1 is a large signed
4602 integral type. Take care of the case where <large number> doesn't
4603 fit in a long but <large number>-1 does. */
4604 else if ((n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
4605 || (n2bits != 0 && n3bits == 0
4606 && (n2bits == sizeof (long) * HOST_CHAR_BIT)
4613 if (got_signed || got_unsigned)
4615 return init_type (TYPE_CODE_INT, nbits / TARGET_CHAR_BIT,
4616 got_unsigned ? TYPE_FLAG_UNSIGNED : 0, NULL,
4620 return error_type (pp, objfile);
4623 /* A type defined as a subrange of itself, with bounds both 0, is void. */
4624 if (self_subrange && n2 == 0 && n3 == 0)
4625 return init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
4627 /* If n3 is zero and n2 is positive, we want a floating type, and n2
4628 is the width in bytes.
4630 Fortran programs appear to use this for complex types also. To
4631 distinguish between floats and complex, g77 (and others?) seem
4632 to use self-subranges for the complexes, and subranges of int for
4635 Also note that for complexes, g77 sets n2 to the size of one of
4636 the member floats, not the whole complex beast. My guess is that
4637 this was to work well with pre-COMPLEX versions of gdb. */
4639 if (n3 == 0 && n2 > 0)
4641 struct type *float_type
4642 = init_type (TYPE_CODE_FLT, n2, 0, NULL, objfile);
4646 struct type *complex_type =
4647 init_type (TYPE_CODE_COMPLEX, 2 * n2, 0, NULL, objfile);
4648 TYPE_TARGET_TYPE (complex_type) = float_type;
4649 return complex_type;
4655 /* If the upper bound is -1, it must really be an unsigned int. */
4657 else if (n2 == 0 && n3 == -1)
4659 /* It is unsigned int or unsigned long. */
4660 /* GCC 2.3.3 uses this for long long too, but that is just a GDB 3.5
4661 compatibility hack. */
4662 return init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
4663 TYPE_FLAG_UNSIGNED, NULL, objfile);
4666 /* Special case: char is defined (Who knows why) as a subrange of
4667 itself with range 0-127. */
4668 else if (self_subrange && n2 == 0 && n3 == 127)
4669 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
4671 else if (current_symbol && SYMBOL_LANGUAGE (current_symbol) == language_chill
4673 goto handle_true_range;
4675 /* We used to do this only for subrange of self or subrange of int. */
4678 /* -1 is used for the upper bound of (4 byte) "unsigned int" and
4679 "unsigned long", and we already checked for that,
4680 so don't need to test for it here. */
4683 /* n3 actually gives the size. */
4684 return init_type (TYPE_CODE_INT, -n3, TYPE_FLAG_UNSIGNED,
4687 /* Is n3 == 2**(8n)-1 for some integer n? Then it's an
4688 unsigned n-byte integer. But do require n to be a power of
4689 two; we don't want 3- and 5-byte integers flying around. */
4695 for (bytes = 0; (bits & 0xff) == 0xff; bytes++)
4698 && ((bytes - 1) & bytes) == 0) /* "bytes is a power of two" */
4699 return init_type (TYPE_CODE_INT, bytes, TYPE_FLAG_UNSIGNED, NULL,
4703 /* I think this is for Convex "long long". Since I don't know whether
4704 Convex sets self_subrange, I also accept that particular size regardless
4705 of self_subrange. */
4706 else if (n3 == 0 && n2 < 0
4708 || n2 == -TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT))
4709 return init_type (TYPE_CODE_INT, -n2, 0, NULL, objfile);
4710 else if (n2 == -n3 - 1)
4713 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
4715 return init_type (TYPE_CODE_INT, 2, 0, NULL, objfile);
4716 if (n3 == 0x7fffffff)
4717 return init_type (TYPE_CODE_INT, 4, 0, NULL, objfile);
4720 /* We have a real range type on our hands. Allocate space and
4721 return a real pointer. */
4725 index_type = builtin_type_int;
4727 index_type = *dbx_lookup_type (rangenums);
4728 if (index_type == NULL)
4730 /* Does this actually ever happen? Is that why we are worrying
4731 about dealing with it rather than just calling error_type? */
4733 static struct type *range_type_index;
4735 complain (&range_type_base_complaint, rangenums[1]);
4736 if (range_type_index == NULL)
4738 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
4739 0, "range type index type", NULL);
4740 index_type = range_type_index;
4743 result_type = create_range_type ((struct type *) NULL, index_type, n2, n3);
4744 return (result_type);
4747 /* Read in an argument list. This is a list of types, separated by commas
4748 and terminated with END. Return the list of types read in, or (struct type
4749 **)-1 if there is an error. */
4751 static struct type **
4752 read_args (char **pp, int end, struct objfile *objfile)
4754 /* FIXME! Remove this arbitrary limit! */
4755 struct type *types[1024], **rval; /* allow for fns of 1023 parameters */
4761 /* Invalid argument list: no ','. */
4762 return (struct type **) -1;
4764 STABS_CONTINUE (pp, objfile);
4765 types[n++] = read_type (pp, objfile);
4767 (*pp)++; /* get past `end' (the ':' character) */
4771 rval = (struct type **) xmalloc (2 * sizeof (struct type *));
4773 else if (TYPE_CODE (types[n - 1]) != TYPE_CODE_VOID)
4775 rval = (struct type **) xmalloc ((n + 1) * sizeof (struct type *));
4776 memset (rval + n, 0, sizeof (struct type *));
4780 rval = (struct type **) xmalloc (n * sizeof (struct type *));
4782 memcpy (rval, types, n * sizeof (struct type *));
4786 /* Common block handling. */
4788 /* List of symbols declared since the last BCOMM. This list is a tail
4789 of local_symbols. When ECOMM is seen, the symbols on the list
4790 are noted so their proper addresses can be filled in later,
4791 using the common block base address gotten from the assembler
4794 static struct pending *common_block;
4795 static int common_block_i;
4797 /* Name of the current common block. We get it from the BCOMM instead of the
4798 ECOMM to match IBM documentation (even though IBM puts the name both places
4799 like everyone else). */
4800 static char *common_block_name;
4802 /* Process a N_BCOMM symbol. The storage for NAME is not guaranteed
4803 to remain after this function returns. */
4806 common_block_start (char *name, struct objfile *objfile)
4808 if (common_block_name != NULL)
4810 static struct complaint msg =
4812 "Invalid symbol data: common block within common block",
4816 common_block = local_symbols;
4817 common_block_i = local_symbols ? local_symbols->nsyms : 0;
4818 common_block_name = obsavestring (name, strlen (name),
4819 &objfile->symbol_obstack);
4822 /* Process a N_ECOMM symbol. */
4825 common_block_end (struct objfile *objfile)
4827 /* Symbols declared since the BCOMM are to have the common block
4828 start address added in when we know it. common_block and
4829 common_block_i point to the first symbol after the BCOMM in
4830 the local_symbols list; copy the list and hang it off the
4831 symbol for the common block name for later fixup. */
4834 struct pending *new = 0;
4835 struct pending *next;
4838 if (common_block_name == NULL)
4840 static struct complaint msg =
4841 {"ECOMM symbol unmatched by BCOMM", 0, 0};
4846 sym = (struct symbol *)
4847 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
4848 memset (sym, 0, sizeof (struct symbol));
4849 /* Note: common_block_name already saved on symbol_obstack */
4850 SYMBOL_NAME (sym) = common_block_name;
4851 SYMBOL_CLASS (sym) = LOC_BLOCK;
4853 /* Now we copy all the symbols which have been defined since the BCOMM. */
4855 /* Copy all the struct pendings before common_block. */
4856 for (next = local_symbols;
4857 next != NULL && next != common_block;
4860 for (j = 0; j < next->nsyms; j++)
4861 add_symbol_to_list (next->symbol[j], &new);
4864 /* Copy however much of COMMON_BLOCK we need. If COMMON_BLOCK is
4865 NULL, it means copy all the local symbols (which we already did
4868 if (common_block != NULL)
4869 for (j = common_block_i; j < common_block->nsyms; j++)
4870 add_symbol_to_list (common_block->symbol[j], &new);
4872 SYMBOL_TYPE (sym) = (struct type *) new;
4874 /* Should we be putting local_symbols back to what it was?
4877 i = hashname (SYMBOL_NAME (sym));
4878 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
4879 global_sym_chain[i] = sym;
4880 common_block_name = NULL;
4883 /* Add a common block's start address to the offset of each symbol
4884 declared to be in it (by being between a BCOMM/ECOMM pair that uses
4885 the common block name). */
4888 fix_common_block (struct symbol *sym, int valu)
4890 struct pending *next = (struct pending *) SYMBOL_TYPE (sym);
4891 for (; next; next = next->next)
4894 for (j = next->nsyms - 1; j >= 0; j--)
4895 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
4901 /* What about types defined as forward references inside of a small lexical
4903 /* Add a type to the list of undefined types to be checked through
4904 once this file has been read in. */
4907 add_undefined_type (struct type *type)
4909 if (undef_types_length == undef_types_allocated)
4911 undef_types_allocated *= 2;
4912 undef_types = (struct type **)
4913 xrealloc ((char *) undef_types,
4914 undef_types_allocated * sizeof (struct type *));
4916 undef_types[undef_types_length++] = type;
4919 /* Go through each undefined type, see if it's still undefined, and fix it
4920 up if possible. We have two kinds of undefined types:
4922 TYPE_CODE_ARRAY: Array whose target type wasn't defined yet.
4923 Fix: update array length using the element bounds
4924 and the target type's length.
4925 TYPE_CODE_STRUCT, TYPE_CODE_UNION: Structure whose fields were not
4926 yet defined at the time a pointer to it was made.
4927 Fix: Do a full lookup on the struct/union tag. */
4929 cleanup_undefined_types (void)
4933 for (type = undef_types; type < undef_types + undef_types_length; type++)
4935 switch (TYPE_CODE (*type))
4938 case TYPE_CODE_STRUCT:
4939 case TYPE_CODE_UNION:
4940 case TYPE_CODE_ENUM:
4942 /* Check if it has been defined since. Need to do this here
4943 as well as in check_typedef to deal with the (legitimate in
4944 C though not C++) case of several types with the same name
4945 in different source files. */
4946 if (TYPE_STUB (*type))
4948 struct pending *ppt;
4950 /* Name of the type, without "struct" or "union" */
4951 char *typename = TYPE_TAG_NAME (*type);
4953 if (typename == NULL)
4955 static struct complaint msg =
4956 {"need a type name", 0, 0};
4960 for (ppt = file_symbols; ppt; ppt = ppt->next)
4962 for (i = 0; i < ppt->nsyms; i++)
4964 struct symbol *sym = ppt->symbol[i];
4966 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
4967 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
4968 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
4970 && STREQ (SYMBOL_NAME (sym), typename))
4972 memcpy (*type, SYMBOL_TYPE (sym),
4973 sizeof (struct type));
4983 static struct complaint msg =
4985 GDB internal error. cleanup_undefined_types with bad type %d.", 0, 0};
4986 complain (&msg, TYPE_CODE (*type));
4992 undef_types_length = 0;
4995 /* Scan through all of the global symbols defined in the object file,
4996 assigning values to the debugging symbols that need to be assigned
4997 to. Get these symbols from the minimal symbol table. */
5000 scan_file_globals (struct objfile *objfile)
5003 struct minimal_symbol *msymbol;
5004 struct symbol *sym, *prev, *rsym;
5005 struct objfile *resolve_objfile;
5007 /* SVR4 based linkers copy referenced global symbols from shared
5008 libraries to the main executable.
5009 If we are scanning the symbols for a shared library, try to resolve
5010 them from the minimal symbols of the main executable first. */
5012 if (symfile_objfile && objfile != symfile_objfile)
5013 resolve_objfile = symfile_objfile;
5015 resolve_objfile = objfile;
5019 /* Avoid expensive loop through all minimal symbols if there are
5020 no unresolved symbols. */
5021 for (hash = 0; hash < HASHSIZE; hash++)
5023 if (global_sym_chain[hash])
5026 if (hash >= HASHSIZE)
5029 for (msymbol = resolve_objfile->msymbols;
5030 msymbol && SYMBOL_NAME (msymbol) != NULL;
5035 /* Skip static symbols. */
5036 switch (MSYMBOL_TYPE (msymbol))
5048 /* Get the hash index and check all the symbols
5049 under that hash index. */
5051 hash = hashname (SYMBOL_NAME (msymbol));
5053 for (sym = global_sym_chain[hash]; sym;)
5055 if (SYMBOL_NAME (msymbol)[0] == SYMBOL_NAME (sym)[0] &&
5056 STREQ (SYMBOL_NAME (msymbol) + 1, SYMBOL_NAME (sym) + 1))
5059 struct alias_list *aliases;
5061 /* Splice this symbol out of the hash chain and
5062 assign the value we have to it. */
5065 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
5069 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
5072 /* Check to see whether we need to fix up a common block. */
5073 /* Note: this code might be executed several times for
5074 the same symbol if there are multiple references. */
5076 /* If symbol has aliases, do minimal symbol fixups for each.
5077 These live aliases/references weren't added to
5078 global_sym_chain hash but may also need to be fixed up. */
5079 /* FIXME: Maybe should have added aliases to the global chain, resolved symbol name, then treated aliases as normal
5080 symbols? Still, we wouldn't want to add_to_list. */
5081 /* Now do the same for each alias of this symbol */
5083 aliases = SYMBOL_ALIASES (sym);
5086 if (SYMBOL_CLASS (rsym) == LOC_BLOCK)
5088 fix_common_block (rsym,
5089 SYMBOL_VALUE_ADDRESS (msymbol));
5093 SYMBOL_VALUE_ADDRESS (rsym)
5094 = SYMBOL_VALUE_ADDRESS (msymbol);
5096 SYMBOL_SECTION (rsym) = SYMBOL_SECTION (msymbol);
5099 rsym = aliases->sym;
5100 aliases = aliases->next;
5109 sym = SYMBOL_VALUE_CHAIN (prev);
5113 sym = global_sym_chain[hash];
5119 sym = SYMBOL_VALUE_CHAIN (sym);
5123 if (resolve_objfile == objfile)
5125 resolve_objfile = objfile;
5128 /* Change the storage class of any remaining unresolved globals to
5129 LOC_UNRESOLVED and remove them from the chain. */
5130 for (hash = 0; hash < HASHSIZE; hash++)
5132 sym = global_sym_chain[hash];
5136 sym = SYMBOL_VALUE_CHAIN (sym);
5138 /* Change the symbol address from the misleading chain value
5140 SYMBOL_VALUE_ADDRESS (prev) = 0;
5142 /* Complain about unresolved common block symbols. */
5143 if (SYMBOL_CLASS (prev) == LOC_STATIC)
5144 SYMBOL_CLASS (prev) = LOC_UNRESOLVED;
5146 complain (&unresolved_sym_chain_complaint,
5147 objfile->name, SYMBOL_NAME (prev));
5150 memset (global_sym_chain, 0, sizeof (global_sym_chain));
5153 /* Initialize anything that needs initializing when starting to read
5154 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
5158 stabsread_init (void)
5162 /* Initialize anything that needs initializing when a completely new
5163 symbol file is specified (not just adding some symbols from another
5164 file, e.g. a shared library). */
5167 stabsread_new_init (void)
5169 /* Empty the hash table of global syms looking for values. */
5170 memset (global_sym_chain, 0, sizeof (global_sym_chain));
5173 /* Initialize anything that needs initializing at the same time as
5174 start_symtab() is called. */
5179 global_stabs = NULL; /* AIX COFF */
5180 /* Leave FILENUM of 0 free for builtin types and this file's types. */
5181 n_this_object_header_files = 1;
5182 type_vector_length = 0;
5183 type_vector = (struct type **) 0;
5185 /* FIXME: If common_block_name is not already NULL, we should complain(). */
5186 common_block_name = NULL;
5191 /* Call after end_symtab() */
5198 xfree (type_vector);
5201 type_vector_length = 0;
5202 previous_stab_code = 0;
5206 finish_global_stabs (struct objfile *objfile)
5210 patch_block_stabs (global_symbols, global_stabs, objfile);
5211 xfree (global_stabs);
5212 global_stabs = NULL;
5216 /* Initializer for this module */
5219 _initialize_stabsread (void)
5221 undef_types_allocated = 20;
5222 undef_types_length = 0;
5223 undef_types = (struct type **)
5224 xmalloc (undef_types_allocated * sizeof (struct type *));