Address class support.
[deliverable/binutils-gdb.git] / gdb / stabsread.c
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.
5
6 This file is part of GDB.
7
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.
12
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.
17
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. */
22
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. */
28
29 #include "defs.h"
30 #include "gdb_string.h"
31 #include "bfd.h"
32 #include "gdb_obstack.h"
33 #include "symtab.h"
34 #include "gdbtypes.h"
35 #include "expression.h"
36 #include "symfile.h"
37 #include "objfiles.h"
38 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
39 #include "libaout.h"
40 #include "aout/aout64.h"
41 #include "gdb-stabs.h"
42 #include "buildsym.h"
43 #include "complaints.h"
44 #include "demangle.h"
45 #include "language.h"
46 #include "doublest.h"
47 #include "cp-abi.h"
48 #include "cp-support.h"
49
50 #include <ctype.h>
51
52 /* Ask stabsread.h to define the vars it normally declares `extern'. */
53 #define EXTERN
54 /**/
55 #include "stabsread.h" /* Our own declarations */
56 #undef EXTERN
57
58 extern void _initialize_stabsread (void);
59
60 /* The routines that read and process a complete stabs for a C struct or
61 C++ class pass lists of data member fields and lists of member function
62 fields in an instance of a field_info structure, as defined below.
63 This is part of some reorganization of low level C++ support and is
64 expected to eventually go away... (FIXME) */
65
66 struct field_info
67 {
68 struct nextfield
69 {
70 struct nextfield *next;
71
72 /* This is the raw visibility from the stab. It is not checked
73 for being one of the visibilities we recognize, so code which
74 examines this field better be able to deal. */
75 int visibility;
76
77 struct field field;
78 }
79 *list;
80 struct next_fnfieldlist
81 {
82 struct next_fnfieldlist *next;
83 struct fn_fieldlist fn_fieldlist;
84 }
85 *fnlist;
86 };
87
88 static void
89 read_one_struct_field (struct field_info *, char **, char *,
90 struct type *, struct objfile *);
91
92 static char *get_substring (char **, int);
93
94 static struct type *dbx_alloc_type (int[2], struct objfile *);
95
96 static long read_huge_number (char **, int, int *);
97
98 static struct type *error_type (char **, struct objfile *);
99
100 static void
101 patch_block_stabs (struct pending *, struct pending_stabs *,
102 struct objfile *);
103
104 static void fix_common_block (struct symbol *, int);
105
106 static int read_type_number (char **, int *);
107
108 static struct type *read_range_type (char **, int[2], struct objfile *);
109
110 static struct type *read_sun_builtin_type (char **, int[2], struct objfile *);
111
112 static struct type *read_sun_floating_type (char **, int[2],
113 struct objfile *);
114
115 static struct type *read_enum_type (char **, struct type *, struct objfile *);
116
117 static struct type *rs6000_builtin_type (int);
118
119 static int
120 read_member_functions (struct field_info *, char **, struct type *,
121 struct objfile *);
122
123 static int
124 read_struct_fields (struct field_info *, char **, struct type *,
125 struct objfile *);
126
127 static int
128 read_baseclasses (struct field_info *, char **, struct type *,
129 struct objfile *);
130
131 static int
132 read_tilde_fields (struct field_info *, char **, struct type *,
133 struct objfile *);
134
135 static int attach_fn_fields_to_type (struct field_info *, struct type *);
136
137 static int
138 attach_fields_to_type (struct field_info *, struct type *, struct objfile *);
139
140 static struct type *read_struct_type (char **, struct type *,
141 enum type_code,
142 struct objfile *);
143
144 static struct type *read_array_type (char **, struct type *,
145 struct objfile *);
146
147 static struct field *read_args (char **, int, struct objfile *, int *, int *);
148
149 static int
150 read_cpp_abbrev (struct field_info *, char **, struct type *,
151 struct objfile *);
152
153 /* new functions added for cfront support */
154
155 static int
156 copy_cfront_struct_fields (struct field_info *, struct type *,
157 struct objfile *);
158
159 static char *get_cfront_method_physname (char *);
160
161 static int
162 read_cfront_baseclasses (struct field_info *, char **,
163 struct type *, struct objfile *);
164
165 static int
166 read_cfront_static_fields (struct field_info *, char **,
167 struct type *, struct objfile *);
168 static int
169 read_cfront_member_functions (struct field_info *, char **,
170 struct type *, struct objfile *);
171
172 /* end new functions added for cfront support */
173
174 static void
175 add_live_range (struct objfile *, struct symbol *, CORE_ADDR, CORE_ADDR);
176
177 static int resolve_live_range (struct objfile *, struct symbol *, char *);
178
179 static int process_reference (char **string);
180
181 static CORE_ADDR ref_search_value (int refnum);
182
183 static int
184 resolve_symbol_reference (struct objfile *, struct symbol *, char *);
185
186 void stabsread_clear_cache (void);
187
188 static const char vptr_name[] = "_vptr$";
189 static const char vb_name[] = "_vb$";
190
191 /* Define this as 1 if a pcc declaration of a char or short argument
192 gives the correct address. Otherwise assume pcc gives the
193 address of the corresponding int, which is not the same on a
194 big-endian machine. */
195
196 #if !defined (BELIEVE_PCC_PROMOTION)
197 #define BELIEVE_PCC_PROMOTION 0
198 #endif
199 #if !defined (BELIEVE_PCC_PROMOTION_TYPE)
200 #define BELIEVE_PCC_PROMOTION_TYPE 0
201 #endif
202
203 static struct complaint invalid_cpp_abbrev_complaint =
204 {"invalid C++ abbreviation `%s'", 0, 0};
205
206 static struct complaint invalid_cpp_type_complaint =
207 {"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
208
209 static struct complaint member_fn_complaint =
210 {"member function type missing, got '%c'", 0, 0};
211
212 static struct complaint const_vol_complaint =
213 {"const/volatile indicator missing, got '%c'", 0, 0};
214
215 static struct complaint error_type_complaint =
216 {"couldn't parse type; debugger out of date?", 0, 0};
217
218 static struct complaint invalid_member_complaint =
219 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
220
221 static struct complaint range_type_base_complaint =
222 {"base type %d of range type is not defined", 0, 0};
223
224 static struct complaint reg_value_complaint =
225 {"register number %d too large (max %d) in symbol %s", 0, 0};
226
227 static struct complaint vtbl_notfound_complaint =
228 {"virtual function table pointer not found when defining class `%s'", 0, 0};
229
230 static struct complaint unrecognized_cplus_name_complaint =
231 {"Unknown C++ symbol name `%s'", 0, 0};
232
233 static struct complaint rs6000_builtin_complaint =
234 {"Unknown builtin type %d", 0, 0};
235
236 static struct complaint unresolved_sym_chain_complaint =
237 {"%s: common block `%s' from global_sym_chain unresolved", 0, 0};
238
239 static struct complaint stabs_general_complaint =
240 {"%s", 0, 0};
241
242 static struct complaint lrs_general_complaint =
243 {"%s", 0, 0};
244
245 /* Make a list of forward references which haven't been defined. */
246
247 static struct type **undef_types;
248 static int undef_types_allocated;
249 static int undef_types_length;
250 static struct symbol *current_symbol = NULL;
251
252 /* Check for and handle cretinous stabs symbol name continuation! */
253 #define STABS_CONTINUE(pp,objfile) \
254 do { \
255 if (**(pp) == '\\' || (**(pp) == '?' && (*(pp))[1] == '\0')) \
256 *(pp) = next_symbol_text (objfile); \
257 } while (0)
258 \f
259 #if 0 /* OBSOLETE OS9K */
260 // OBSOLETE /* FIXME: These probably should be our own types (like rs6000_builtin_type
261 // OBSOLETE has its own types) rather than builtin_type_*. */
262 // OBSOLETE static struct type **os9k_type_vector[] =
263 // OBSOLETE {
264 // OBSOLETE 0,
265 // OBSOLETE &builtin_type_int,
266 // OBSOLETE &builtin_type_char,
267 // OBSOLETE &builtin_type_long,
268 // OBSOLETE &builtin_type_short,
269 // OBSOLETE &builtin_type_unsigned_char,
270 // OBSOLETE &builtin_type_unsigned_short,
271 // OBSOLETE &builtin_type_unsigned_long,
272 // OBSOLETE &builtin_type_unsigned_int,
273 // OBSOLETE &builtin_type_float,
274 // OBSOLETE &builtin_type_double,
275 // OBSOLETE &builtin_type_void,
276 // OBSOLETE &builtin_type_long_double
277 // OBSOLETE };
278 // OBSOLETE
279 // OBSOLETE static void os9k_init_type_vector (struct type **);
280 // OBSOLETE
281 // OBSOLETE static void
282 // OBSOLETE os9k_init_type_vector (struct type **tv)
283 // OBSOLETE {
284 // OBSOLETE unsigned int i;
285 // OBSOLETE for (i = 0; i < sizeof (os9k_type_vector) / sizeof (struct type **); i++)
286 // OBSOLETE tv[i] = (os9k_type_vector[i] == 0 ? 0 : *(os9k_type_vector[i]));
287 // OBSOLETE }
288 #endif /* OBSOLETE OS9K */
289
290 /* Look up a dbx type-number pair. Return the address of the slot
291 where the type for that number-pair is stored.
292 The number-pair is in TYPENUMS.
293
294 This can be used for finding the type associated with that pair
295 or for associating a new type with the pair. */
296
297 struct type **
298 dbx_lookup_type (int typenums[2])
299 {
300 register int filenum = typenums[0];
301 register int index = typenums[1];
302 unsigned old_len;
303 register int real_filenum;
304 register struct header_file *f;
305 int f_orig_length;
306
307 if (filenum == -1) /* -1,-1 is for temporary types. */
308 return 0;
309
310 if (filenum < 0 || filenum >= n_this_object_header_files)
311 {
312 static struct complaint msg =
313 {"\
314 Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
315 0, 0};
316 complain (&msg, filenum, index, symnum);
317 goto error_return;
318 }
319
320 if (filenum == 0)
321 {
322 if (index < 0)
323 {
324 /* Caller wants address of address of type. We think
325 that negative (rs6k builtin) types will never appear as
326 "lvalues", (nor should they), so we stuff the real type
327 pointer into a temp, and return its address. If referenced,
328 this will do the right thing. */
329 static struct type *temp_type;
330
331 temp_type = rs6000_builtin_type (index);
332 return &temp_type;
333 }
334
335 /* Type is defined outside of header files.
336 Find it in this object file's type vector. */
337 if (index >= type_vector_length)
338 {
339 old_len = type_vector_length;
340 if (old_len == 0)
341 {
342 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
343 type_vector = (struct type **)
344 xmalloc (type_vector_length * sizeof (struct type *));
345 }
346 while (index >= type_vector_length)
347 {
348 type_vector_length *= 2;
349 }
350 type_vector = (struct type **)
351 xrealloc ((char *) type_vector,
352 (type_vector_length * sizeof (struct type *)));
353 memset (&type_vector[old_len], 0,
354 (type_vector_length - old_len) * sizeof (struct type *));
355
356 #if 0 /* OBSOLETE OS9K */
357 // OBSOLETE if (os9k_stabs)
358 // OBSOLETE /* Deal with OS9000 fundamental types. */
359 // OBSOLETE os9k_init_type_vector (type_vector);
360 #endif /* OBSOLETE OS9K */
361 }
362 return (&type_vector[index]);
363 }
364 else
365 {
366 real_filenum = this_object_header_files[filenum];
367
368 if (real_filenum >= N_HEADER_FILES (current_objfile))
369 {
370 struct type *temp_type;
371 struct type **temp_type_p;
372
373 warning ("GDB internal error: bad real_filenum");
374
375 error_return:
376 temp_type = init_type (TYPE_CODE_ERROR, 0, 0, NULL, NULL);
377 temp_type_p = (struct type **) xmalloc (sizeof (struct type *));
378 *temp_type_p = temp_type;
379 return temp_type_p;
380 }
381
382 f = HEADER_FILES (current_objfile) + real_filenum;
383
384 f_orig_length = f->length;
385 if (index >= f_orig_length)
386 {
387 while (index >= f->length)
388 {
389 f->length *= 2;
390 }
391 f->vector = (struct type **)
392 xrealloc ((char *) f->vector, f->length * sizeof (struct type *));
393 memset (&f->vector[f_orig_length], 0,
394 (f->length - f_orig_length) * sizeof (struct type *));
395 }
396 return (&f->vector[index]);
397 }
398 }
399
400 /* Make sure there is a type allocated for type numbers TYPENUMS
401 and return the type object.
402 This can create an empty (zeroed) type object.
403 TYPENUMS may be (-1, -1) to return a new type object that is not
404 put into the type vector, and so may not be referred to by number. */
405
406 static struct type *
407 dbx_alloc_type (int typenums[2], struct objfile *objfile)
408 {
409 register struct type **type_addr;
410
411 if (typenums[0] == -1)
412 {
413 return (alloc_type (objfile));
414 }
415
416 type_addr = dbx_lookup_type (typenums);
417
418 /* If we are referring to a type not known at all yet,
419 allocate an empty type for it.
420 We will fill it in later if we find out how. */
421 if (*type_addr == 0)
422 {
423 *type_addr = alloc_type (objfile);
424 }
425
426 return (*type_addr);
427 }
428
429 /* for all the stabs in a given stab vector, build appropriate types
430 and fix their symbols in given symbol vector. */
431
432 static void
433 patch_block_stabs (struct pending *symbols, struct pending_stabs *stabs,
434 struct objfile *objfile)
435 {
436 int ii;
437 char *name;
438 char *pp;
439 struct symbol *sym;
440
441 if (stabs)
442 {
443
444 /* for all the stab entries, find their corresponding symbols and
445 patch their types! */
446
447 for (ii = 0; ii < stabs->count; ++ii)
448 {
449 name = stabs->stab[ii];
450 pp = (char *) strchr (name, ':');
451 while (pp[1] == ':')
452 {
453 pp += 2;
454 pp = (char *) strchr (pp, ':');
455 }
456 sym = find_symbol_in_list (symbols, name, pp - name);
457 if (!sym)
458 {
459 /* FIXME-maybe: it would be nice if we noticed whether
460 the variable was defined *anywhere*, not just whether
461 it is defined in this compilation unit. But neither
462 xlc or GCC seem to need such a definition, and until
463 we do psymtabs (so that the minimal symbols from all
464 compilation units are available now), I'm not sure
465 how to get the information. */
466
467 /* On xcoff, if a global is defined and never referenced,
468 ld will remove it from the executable. There is then
469 a N_GSYM stab for it, but no regular (C_EXT) symbol. */
470 sym = (struct symbol *)
471 obstack_alloc (&objfile->symbol_obstack,
472 sizeof (struct symbol));
473
474 memset (sym, 0, sizeof (struct symbol));
475 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
476 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
477 SYMBOL_NAME (sym) =
478 obsavestring (name, pp - name, &objfile->symbol_obstack);
479 pp += 2;
480 if (*(pp - 1) == 'F' || *(pp - 1) == 'f')
481 {
482 /* I don't think the linker does this with functions,
483 so as far as I know this is never executed.
484 But it doesn't hurt to check. */
485 SYMBOL_TYPE (sym) =
486 lookup_function_type (read_type (&pp, objfile));
487 }
488 else
489 {
490 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
491 }
492 add_symbol_to_list (sym, &global_symbols);
493 }
494 else
495 {
496 pp += 2;
497 if (*(pp - 1) == 'F' || *(pp - 1) == 'f')
498 {
499 SYMBOL_TYPE (sym) =
500 lookup_function_type (read_type (&pp, objfile));
501 }
502 else
503 {
504 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
505 }
506 }
507 }
508 }
509 }
510 \f
511
512 /* Read a number by which a type is referred to in dbx data,
513 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
514 Just a single number N is equivalent to (0,N).
515 Return the two numbers by storing them in the vector TYPENUMS.
516 TYPENUMS will then be used as an argument to dbx_lookup_type.
517
518 Returns 0 for success, -1 for error. */
519
520 static int
521 read_type_number (register char **pp, register int *typenums)
522 {
523 int nbits;
524 if (**pp == '(')
525 {
526 (*pp)++;
527 typenums[0] = read_huge_number (pp, ',', &nbits);
528 if (nbits != 0)
529 return -1;
530 typenums[1] = read_huge_number (pp, ')', &nbits);
531 if (nbits != 0)
532 return -1;
533 }
534 else
535 {
536 typenums[0] = 0;
537 typenums[1] = read_huge_number (pp, 0, &nbits);
538 if (nbits != 0)
539 return -1;
540 }
541 return 0;
542 }
543 \f
544
545 #define VISIBILITY_PRIVATE '0' /* Stabs character for private field */
546 #define VISIBILITY_PROTECTED '1' /* Stabs character for protected fld */
547 #define VISIBILITY_PUBLIC '2' /* Stabs character for public field */
548 #define VISIBILITY_IGNORE '9' /* Optimized out or zero length */
549
550 #define CFRONT_VISIBILITY_PRIVATE '2' /* Stabs character for private field */
551 #define CFRONT_VISIBILITY_PUBLIC '1' /* Stabs character for public field */
552
553 /* This code added to support parsing of ARM/Cfront stabs strings */
554
555 /* Get substring from string up to char c, advance string pointer past
556 suibstring. */
557
558 static char *
559 get_substring (char **p, int c)
560 {
561 char *str;
562 str = *p;
563 *p = strchr (*p, c);
564 if (*p)
565 {
566 **p = 0;
567 (*p)++;
568 }
569 else
570 str = 0;
571 return str;
572 }
573
574 /* Physname gets strcat'd onto sname in order to recreate the mangled
575 name (see funtion gdb_mangle_name in gdbtypes.c). For cfront, make
576 the physname look like that of g++ - take out the initial mangling
577 eg: for sname="a" and fname="foo__1aFPFs_i" return "FPFs_i" */
578
579 static char *
580 get_cfront_method_physname (char *fname)
581 {
582 int len = 0;
583 /* FIXME would like to make this generic for g++ too, but
584 that is already handled in read_member_funcctions */
585 char *p = fname;
586
587 /* search ahead to find the start of the mangled suffix */
588 if (*p == '_' && *(p + 1) == '_') /* compiler generated; probably a ctor/dtor */
589 p += 2;
590 while (p && (unsigned) ((p + 1) - fname) < strlen (fname) && *(p + 1) != '_')
591 p = strchr (p, '_');
592 if (!(p && *p == '_' && *(p + 1) == '_'))
593 error ("Invalid mangled function name %s", fname);
594 p += 2; /* advance past '__' */
595
596 /* struct name length and name of type should come next; advance past it */
597 while (isdigit (*p))
598 {
599 len = len * 10 + (*p - '0');
600 p++;
601 }
602 p += len;
603
604 return p;
605 }
606
607 /* Read base classes within cfront class definition.
608 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
609 ^^^^^^^^^^^^^^^^^^
610
611 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
612 ^
613 */
614
615 static int
616 read_cfront_baseclasses (struct field_info *fip, char **pp, struct type *type,
617 struct objfile *objfile)
618 {
619 static struct complaint msg_unknown =
620 {"\
621 Unsupported token in stabs string %s.\n",
622 0, 0};
623 static struct complaint msg_notfound =
624 {"\
625 Unable to find base type for %s.\n",
626 0, 0};
627 int bnum = 0;
628 char *p;
629 int i;
630 struct nextfield *new;
631
632 if (**pp == ';') /* no base classes; return */
633 {
634 ++(*pp);
635 return 1;
636 }
637
638 /* first count base classes so we can allocate space before parsing */
639 for (p = *pp; p && *p && *p != ';'; p++)
640 {
641 if (*p == ' ')
642 bnum++;
643 }
644 bnum++; /* add one more for last one */
645
646 /* now parse the base classes until we get to the start of the methods
647 (code extracted and munged from read_baseclasses) */
648 ALLOCATE_CPLUS_STRUCT_TYPE (type);
649 TYPE_N_BASECLASSES (type) = bnum;
650
651 /* allocate space */
652 {
653 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
654 char *pointer;
655
656 pointer = (char *) TYPE_ALLOC (type, num_bytes);
657 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
658 }
659 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
660
661 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
662 {
663 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
664 make_cleanup (xfree, new);
665 memset (new, 0, sizeof (struct nextfield));
666 new->next = fip->list;
667 fip->list = new;
668 FIELD_BITSIZE (new->field) = 0; /* this should be an unpacked field! */
669
670 STABS_CONTINUE (pp, objfile);
671
672 /* virtual? eg: v2@Bvir */
673 if (**pp == 'v')
674 {
675 SET_TYPE_FIELD_VIRTUAL (type, i);
676 ++(*pp);
677 }
678
679 /* access? eg: 2@Bvir */
680 /* Note: protected inheritance not supported in cfront */
681 switch (*(*pp)++)
682 {
683 case CFRONT_VISIBILITY_PRIVATE:
684 new->visibility = VISIBILITY_PRIVATE;
685 break;
686 case CFRONT_VISIBILITY_PUBLIC:
687 new->visibility = VISIBILITY_PUBLIC;
688 break;
689 default:
690 /* Bad visibility format. Complain and treat it as
691 public. */
692 {
693 static struct complaint msg =
694 {
695 "Unknown visibility `%c' for baseclass", 0, 0};
696 complain (&msg, new->visibility);
697 new->visibility = VISIBILITY_PUBLIC;
698 }
699 }
700
701 /* "@" comes next - eg: @Bvir */
702 if (**pp != '@')
703 {
704 complain (&msg_unknown, *pp);
705 return 1;
706 }
707 ++(*pp);
708
709
710 /* Set the bit offset of the portion of the object corresponding
711 to this baseclass. Always zero in the absence of
712 multiple inheritance. */
713 /* Unable to read bit position from stabs;
714 Assuming no multiple inheritance for now FIXME! */
715 /* We may have read this in the structure definition;
716 now we should fixup the members to be the actual base classes */
717 FIELD_BITPOS (new->field) = 0;
718
719 /* Get the base class name and type */
720 {
721 char *bname; /* base class name */
722 struct symbol *bsym; /* base class */
723 char *p1, *p2;
724 p1 = strchr (*pp, ' ');
725 p2 = strchr (*pp, ';');
726 if (p1 < p2)
727 bname = get_substring (pp, ' ');
728 else
729 bname = get_substring (pp, ';');
730 if (!bname || !*bname)
731 {
732 complain (&msg_unknown, *pp);
733 return 1;
734 }
735 /* FIXME! attach base info to type */
736 bsym = lookup_symbol (bname, 0, STRUCT_NAMESPACE, 0, 0); /*demangled_name */
737 if (bsym)
738 {
739 new->field.type = SYMBOL_TYPE (bsym);
740 new->field.name = type_name_no_tag (new->field.type);
741 }
742 else
743 {
744 complain (&msg_notfound, *pp);
745 return 1;
746 }
747 }
748
749 /* If more base classes to parse, loop again.
750 We ate the last ' ' or ';' in get_substring,
751 so on exit we will have skipped the trailing ';' */
752 /* if invalid, return 0; add code to detect - FIXME! */
753 }
754 return 1;
755 }
756
757 /* read cfront member functions.
758 pp points to string starting with list of functions
759 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
760 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
761 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
762 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
763 */
764
765 static int
766 read_cfront_member_functions (struct field_info *fip, char **pp,
767 struct type *type, struct objfile *objfile)
768 {
769 /* This code extracted from read_member_functions
770 so as to do the similar thing for our funcs */
771
772 int nfn_fields = 0;
773 int length = 0;
774 /* Total number of member functions defined in this class. If the class
775 defines two `f' functions, and one `g' function, then this will have
776 the value 3. */
777 int total_length = 0;
778 int i;
779 struct next_fnfield
780 {
781 struct next_fnfield *next;
782 struct fn_field fn_field;
783 }
784 *sublist;
785 struct type *look_ahead_type;
786 struct next_fnfieldlist *new_fnlist;
787 struct next_fnfield *new_sublist;
788 char *main_fn_name;
789 char *fname;
790 struct symbol *ref_func = 0;
791
792 /* Process each list until we find the end of the member functions.
793 eg: p = "__ct__1AFv foo__1AFv ;;;" */
794
795 STABS_CONTINUE (pp, objfile); /* handle \\ */
796
797 while (**pp != ';' && (fname = get_substring (pp, ' '), fname))
798 {
799 int is_static = 0;
800 int sublist_count = 0;
801 char *pname;
802 if (fname[0] == '*') /* static member */
803 {
804 is_static = 1;
805 sublist_count++;
806 fname++;
807 }
808 ref_func = lookup_symbol (fname, 0, VAR_NAMESPACE, 0, 0); /* demangled name */
809 if (!ref_func)
810 {
811 static struct complaint msg =
812 {"\
813 Unable to find function symbol for %s\n",
814 0, 0};
815 complain (&msg, fname);
816 continue;
817 }
818 sublist = NULL;
819 look_ahead_type = NULL;
820 length = 0;
821
822 new_fnlist = (struct next_fnfieldlist *)
823 xmalloc (sizeof (struct next_fnfieldlist));
824 make_cleanup (xfree, new_fnlist);
825 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
826
827 /* The following is code to work around cfront generated stabs.
828 The stabs contains full mangled name for each field.
829 We try to demangle the name and extract the field name out of it. */
830 {
831 char *dem, *dem_p, *dem_args;
832 int dem_len;
833 dem = cplus_demangle (fname, DMGL_ANSI | DMGL_PARAMS);
834 if (dem != NULL)
835 {
836 dem_p = strrchr (dem, ':');
837 if (dem_p != 0 && *(dem_p - 1) == ':')
838 dem_p++;
839 /* get rid of args */
840 dem_args = strchr (dem_p, '(');
841 if (dem_args == NULL)
842 dem_len = strlen (dem_p);
843 else
844 dem_len = dem_args - dem_p;
845 main_fn_name =
846 obsavestring (dem_p, dem_len, &objfile->type_obstack);
847 }
848 else
849 {
850 main_fn_name =
851 obsavestring (fname, strlen (fname), &objfile->type_obstack);
852 }
853 } /* end of code for cfront work around */
854
855 new_fnlist->fn_fieldlist.name = main_fn_name;
856
857 /*-------------------------------------------------*/
858 /* Set up the sublists
859 Sublists are stuff like args, static, visibility, etc.
860 so in ARM, we have to set that info some other way.
861 Multiple sublists happen if overloading
862 eg: foo::26=##1;:;2A.;
863 In g++, we'd loop here thru all the sublists... */
864
865 new_sublist =
866 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
867 make_cleanup (xfree, new_sublist);
868 memset (new_sublist, 0, sizeof (struct next_fnfield));
869
870 /* eat 1; from :;2A.; */
871 new_sublist->fn_field.type = SYMBOL_TYPE (ref_func); /* normally takes a read_type */
872 /* Make this type look like a method stub for gdb */
873 TYPE_FLAGS (new_sublist->fn_field.type) |= TYPE_FLAG_STUB;
874 TYPE_CODE (new_sublist->fn_field.type) = TYPE_CODE_METHOD;
875
876 /* If this is just a stub, then we don't have the real name here. */
877 if (TYPE_STUB (new_sublist->fn_field.type))
878 {
879 if (!TYPE_DOMAIN_TYPE (new_sublist->fn_field.type))
880 TYPE_DOMAIN_TYPE (new_sublist->fn_field.type) = type;
881 new_sublist->fn_field.is_stub = 1;
882 }
883
884 /* physname used later in mangling; eg PFs_i,5 for foo__1aFPFs_i
885 physname gets strcat'd in order to recreate the onto mangled name */
886 pname = get_cfront_method_physname (fname);
887 new_sublist->fn_field.physname = savestring (pname, strlen (pname));
888
889
890 /* Set this member function's visibility fields.
891 Unable to distinguish access from stabs definition!
892 Assuming public for now. FIXME!
893 (for private, set new_sublist->fn_field.is_private = 1,
894 for public, set new_sublist->fn_field.is_protected = 1) */
895
896 /* Unable to distinguish const/volatile from stabs definition!
897 Assuming normal for now. FIXME! */
898
899 new_sublist->fn_field.is_const = 0;
900 new_sublist->fn_field.is_volatile = 0; /* volatile not implemented in cfront */
901
902 /* Set virtual/static function info
903 How to get vtable offsets ?
904 Assuming normal for now FIXME!!
905 For vtables, figure out from whence this virtual function came.
906 It may belong to virtual function table of
907 one of its baseclasses.
908 set:
909 new_sublist -> fn_field.voffset = vtable offset,
910 new_sublist -> fn_field.fcontext = look_ahead_type;
911 where look_ahead_type is type of baseclass */
912 if (is_static)
913 new_sublist->fn_field.voffset = VOFFSET_STATIC;
914 else /* normal member function. */
915 new_sublist->fn_field.voffset = 0;
916 new_sublist->fn_field.fcontext = 0;
917
918
919 /* Prepare new sublist */
920 new_sublist->next = sublist;
921 sublist = new_sublist;
922 length++;
923
924 /* In g++, we loop thu sublists - now we set from functions. */
925 new_fnlist->fn_fieldlist.fn_fields = (struct fn_field *)
926 obstack_alloc (&objfile->type_obstack,
927 sizeof (struct fn_field) * length);
928 memset (new_fnlist->fn_fieldlist.fn_fields, 0,
929 sizeof (struct fn_field) * length);
930 for (i = length; (i--, sublist); sublist = sublist->next)
931 {
932 new_fnlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
933 }
934
935 new_fnlist->fn_fieldlist.length = length;
936 new_fnlist->next = fip->fnlist;
937 fip->fnlist = new_fnlist;
938 nfn_fields++;
939 total_length += length;
940 STABS_CONTINUE (pp, objfile); /* handle \\ */
941 } /* end of loop */
942
943 if (nfn_fields)
944 {
945 /* type should already have space */
946 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
947 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
948 memset (TYPE_FN_FIELDLISTS (type), 0,
949 sizeof (struct fn_fieldlist) * nfn_fields);
950 TYPE_NFN_FIELDS (type) = nfn_fields;
951 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
952 }
953
954 /* end of scope for reading member func */
955
956 /* eg: ";;" */
957
958 /* Skip trailing ';' and bump count of number of fields seen */
959 if (**pp == ';')
960 (*pp)++;
961 else
962 return 0;
963 return 1;
964 }
965
966 /* This routine fixes up partial cfront types that were created
967 while parsing the stabs. The main need for this function is
968 to add information such as methods to classes.
969 Examples of "p": "sA;;__ct__1AFv foo__1AFv ;;;" */
970 int
971 resolve_cfront_continuation (struct objfile *objfile, struct symbol *sym,
972 char *p)
973 {
974 struct symbol *ref_sym = 0;
975 char *sname;
976 /* snarfed from read_struct_type */
977 struct field_info fi;
978 struct type *type;
979 struct cleanup *back_to;
980
981 /* Need to make sure that fi isn't gunna conflict with struct
982 in case struct already had some fnfs */
983 fi.list = NULL;
984 fi.fnlist = NULL;
985 back_to = make_cleanup (null_cleanup, 0);
986
987 /* We only accept structs, classes and unions at the moment.
988 Other continuation types include t (typedef), r (long dbl), ...
989 We may want to add support for them as well;
990 right now they are handled by duplicating the symbol information
991 into the type information (see define_symbol) */
992 if (*p != 's' /* structs */
993 && *p != 'c' /* class */
994 && *p != 'u') /* union */
995 return 0; /* only handle C++ types */
996 p++;
997
998 /* Get symbol typs name and validate
999 eg: p = "A;;__ct__1AFv foo__1AFv ;;;" */
1000 sname = get_substring (&p, ';');
1001 if (!sname || strcmp (sname, SYMBOL_NAME (sym)))
1002 error ("Internal error: base symbol type name does not match\n");
1003
1004 /* Find symbol's internal gdb reference using demangled_name.
1005 This is the real sym that we want;
1006 sym was a temp hack to make debugger happy */
1007 ref_sym = lookup_symbol (SYMBOL_NAME (sym), 0, STRUCT_NAMESPACE, 0, 0);
1008 type = SYMBOL_TYPE (ref_sym);
1009
1010
1011 /* Now read the baseclasses, if any, read the regular C struct or C++
1012 class member fields, attach the fields to the type, read the C++
1013 member functions, attach them to the type, and then read any tilde
1014 field (baseclass specifier for the class holding the main vtable). */
1015
1016 if (!read_cfront_baseclasses (&fi, &p, type, objfile)
1017 /* g++ does this next, but cfront already did this:
1018 || !read_struct_fields (&fi, &p, type, objfile) */
1019 || !copy_cfront_struct_fields (&fi, type, objfile)
1020 || !read_cfront_member_functions (&fi, &p, type, objfile)
1021 || !read_cfront_static_fields (&fi, &p, type, objfile)
1022 || !attach_fields_to_type (&fi, type, objfile)
1023 || !attach_fn_fields_to_type (&fi, type)
1024 /* g++ does this next, but cfront doesn't seem to have this:
1025 || !read_tilde_fields (&fi, &p, type, objfile) */
1026 )
1027 {
1028 type = error_type (&p, objfile);
1029 }
1030
1031 do_cleanups (back_to);
1032 return 0;
1033 }
1034 /* End of code added to support parsing of ARM/Cfront stabs strings */
1035
1036
1037 /* This routine fixes up symbol references/aliases to point to the original
1038 symbol definition. Returns 0 on failure, non-zero on success. */
1039
1040 static int
1041 resolve_symbol_reference (struct objfile *objfile, struct symbol *sym, char *p)
1042 {
1043 int refnum;
1044 struct symbol *ref_sym = 0;
1045 struct alias_list *alias;
1046
1047 /* If this is not a symbol reference return now. */
1048 if (*p != '#')
1049 return 0;
1050
1051 /* Use "#<num>" as the name; we'll fix the name later.
1052 We stored the original symbol name as "#<id>=<name>"
1053 so we can now search for "#<id>" to resolving the reference.
1054 We'll fix the names later by removing the "#<id>" or "#<id>=" */
1055
1056 /*---------------------------------------------------------*/
1057 /* Get the reference id number, and
1058 advance p past the names so we can parse the rest.
1059 eg: id=2 for p : "2=", "2=z:r(0,1)" "2:r(0,1);l(#5,#6),l(#7,#4)" */
1060 /*---------------------------------------------------------*/
1061
1062 /* This gets reference name from string. sym may not have a name. */
1063
1064 /* Get the reference number associated with the reference id in the
1065 gdb stab string. From that reference number, get the main/primary
1066 symbol for this alias. */
1067 refnum = process_reference (&p);
1068 ref_sym = ref_search (refnum);
1069 if (!ref_sym)
1070 {
1071 complain (&lrs_general_complaint, "symbol for reference not found");
1072 return 0;
1073 }
1074
1075 /* Parse the stab of the referencing symbol
1076 now that we have the referenced symbol.
1077 Add it as a new symbol and a link back to the referenced symbol.
1078 eg: p : "=", "=z:r(0,1)" ":r(0,1);l(#5,#6),l(#7,#4)" */
1079
1080
1081 /* If the stab symbol table and string contain:
1082 RSYM 0 5 00000000 868 #15=z:r(0,1)
1083 LBRAC 0 0 00000000 899 #5=
1084 SLINE 0 16 00000003 923 #6=
1085 Then the same symbols can be later referenced by:
1086 RSYM 0 5 00000000 927 #15:r(0,1);l(#5,#6)
1087 This is used in live range splitting to:
1088 1) specify that a symbol (#15) is actually just a new storage
1089 class for a symbol (#15=z) which was previously defined.
1090 2) specify that the beginning and ending ranges for a symbol
1091 (#15) are the values of the beginning (#5) and ending (#6)
1092 symbols. */
1093
1094 /* Read number as reference id.
1095 eg: p : "=", "=z:r(0,1)" ":r(0,1);l(#5,#6),l(#7,#4)" */
1096 /* FIXME! Might I want to use SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
1097 in case of "l(0,0)"? */
1098
1099 /*--------------------------------------------------*/
1100 /* Add this symbol to the reference list. */
1101 /*--------------------------------------------------*/
1102
1103 alias = (struct alias_list *) obstack_alloc (&objfile->type_obstack,
1104 sizeof (struct alias_list));
1105 if (!alias)
1106 {
1107 complain (&lrs_general_complaint, "Unable to allocate alias list memory");
1108 return 0;
1109 }
1110
1111 alias->next = 0;
1112 alias->sym = sym;
1113
1114 if (!SYMBOL_ALIASES (ref_sym))
1115 {
1116 SYMBOL_ALIASES (ref_sym) = alias;
1117 }
1118 else
1119 {
1120 struct alias_list *temp;
1121
1122 /* Get to the end of the list. */
1123 for (temp = SYMBOL_ALIASES (ref_sym);
1124 temp->next;
1125 temp = temp->next)
1126 ;
1127 temp->next = alias;
1128 }
1129
1130 /* Want to fix up name so that other functions (eg. valops)
1131 will correctly print the name.
1132 Don't add_symbol_to_list so that lookup_symbol won't find it.
1133 nope... needed for fixups. */
1134 SYMBOL_NAME (sym) = SYMBOL_NAME (ref_sym);
1135
1136 /* Done! */
1137 return 1;
1138 }
1139
1140 /* Structure for storing pointers to reference definitions for fast lookup
1141 during "process_later". */
1142
1143 struct ref_map
1144 {
1145 char *stabs;
1146 CORE_ADDR value;
1147 struct symbol *sym;
1148 };
1149
1150 #define MAX_CHUNK_REFS 100
1151 #define REF_CHUNK_SIZE (MAX_CHUNK_REFS * sizeof (struct ref_map))
1152 #define REF_MAP_SIZE(ref_chunk) ((ref_chunk) * REF_CHUNK_SIZE)
1153
1154 static struct ref_map *ref_map;
1155
1156 /* Ptr to free cell in chunk's linked list. */
1157 static int ref_count = 0;
1158
1159 /* Number of chunks malloced. */
1160 static int ref_chunk = 0;
1161
1162 /* This file maintains a cache of stabs aliases found in the symbol
1163 table. If the symbol table changes, this cache must be cleared
1164 or we are left holding onto data in invalid obstacks. */
1165 void
1166 stabsread_clear_cache (void)
1167 {
1168 ref_count = 0;
1169 ref_chunk = 0;
1170 }
1171
1172 /* Create array of pointers mapping refids to symbols and stab strings.
1173 Add pointers to reference definition symbols and/or their values as we
1174 find them, using their reference numbers as our index.
1175 These will be used later when we resolve references. */
1176 void
1177 ref_add (int refnum, struct symbol *sym, char *stabs, CORE_ADDR value)
1178 {
1179 if (ref_count == 0)
1180 ref_chunk = 0;
1181 if (refnum >= ref_count)
1182 ref_count = refnum + 1;
1183 if (ref_count > ref_chunk * MAX_CHUNK_REFS)
1184 {
1185 int new_slots = ref_count - ref_chunk * MAX_CHUNK_REFS;
1186 int new_chunks = new_slots / MAX_CHUNK_REFS + 1;
1187 ref_map = (struct ref_map *)
1188 xrealloc (ref_map, REF_MAP_SIZE (ref_chunk + new_chunks));
1189 memset (ref_map + ref_chunk * MAX_CHUNK_REFS, 0, new_chunks * REF_CHUNK_SIZE);
1190 ref_chunk += new_chunks;
1191 }
1192 ref_map[refnum].stabs = stabs;
1193 ref_map[refnum].sym = sym;
1194 ref_map[refnum].value = value;
1195 }
1196
1197 /* Return defined sym for the reference REFNUM. */
1198 struct symbol *
1199 ref_search (int refnum)
1200 {
1201 if (refnum < 0 || refnum > ref_count)
1202 return 0;
1203 return ref_map[refnum].sym;
1204 }
1205
1206 /* Return value for the reference REFNUM. */
1207
1208 static CORE_ADDR
1209 ref_search_value (int refnum)
1210 {
1211 if (refnum < 0 || refnum > ref_count)
1212 return 0;
1213 return ref_map[refnum].value;
1214 }
1215
1216 /* Parse a reference id in STRING and return the resulting
1217 reference number. Move STRING beyond the reference id. */
1218
1219 static int
1220 process_reference (char **string)
1221 {
1222 char *p;
1223 int refnum = 0;
1224
1225 if (**string != '#')
1226 return 0;
1227
1228 /* Advance beyond the initial '#'. */
1229 p = *string + 1;
1230
1231 /* Read number as reference id. */
1232 while (*p && isdigit (*p))
1233 {
1234 refnum = refnum * 10 + *p - '0';
1235 p++;
1236 }
1237 *string = p;
1238 return refnum;
1239 }
1240
1241 /* If STRING defines a reference, store away a pointer to the reference
1242 definition for later use. Return the reference number. */
1243
1244 int
1245 symbol_reference_defined (char **string)
1246 {
1247 char *p = *string;
1248 int refnum = 0;
1249
1250 refnum = process_reference (&p);
1251
1252 /* Defining symbols end in '=' */
1253 if (*p == '=')
1254 {
1255 /* Symbol is being defined here. */
1256 *string = p + 1;
1257 return refnum;
1258 }
1259 else
1260 {
1261 /* Must be a reference. Either the symbol has already been defined,
1262 or this is a forward reference to it. */
1263 *string = p;
1264 return -1;
1265 }
1266 }
1267
1268 /* ARGSUSED */
1269 struct symbol *
1270 define_symbol (CORE_ADDR valu, char *string, int desc, int type,
1271 struct objfile *objfile)
1272 {
1273 register struct symbol *sym;
1274 char *p = (char *) strchr (string, ':');
1275 int deftype;
1276 int synonym = 0;
1277 register int i;
1278
1279 /* We would like to eliminate nameless symbols, but keep their types.
1280 E.g. stab entry ":t10=*2" should produce a type 10, which is a pointer
1281 to type 2, but, should not create a symbol to address that type. Since
1282 the symbol will be nameless, there is no way any user can refer to it. */
1283
1284 int nameless;
1285
1286 /* Ignore syms with empty names. */
1287 if (string[0] == 0)
1288 return 0;
1289
1290 /* Ignore old-style symbols from cc -go */
1291 if (p == 0)
1292 return 0;
1293
1294 while (p[1] == ':')
1295 {
1296 p += 2;
1297 p = strchr (p, ':');
1298 }
1299
1300 /* If a nameless stab entry, all we need is the type, not the symbol.
1301 e.g. ":t10=*2" or a nameless enum like " :T16=ered:0,green:1,blue:2,;" */
1302 nameless = (p == string || ((string[0] == ' ') && (string[1] == ':')));
1303
1304 current_symbol = sym = (struct symbol *)
1305 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
1306 memset (sym, 0, sizeof (struct symbol));
1307
1308 switch (type & N_TYPE)
1309 {
1310 case N_TEXT:
1311 SYMBOL_SECTION (sym) = SECT_OFF_TEXT (objfile);
1312 break;
1313 case N_DATA:
1314 SYMBOL_SECTION (sym) = SECT_OFF_DATA (objfile);
1315 break;
1316 case N_BSS:
1317 SYMBOL_SECTION (sym) = SECT_OFF_BSS (objfile);
1318 break;
1319 }
1320
1321 if (processing_gcc_compilation)
1322 {
1323 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
1324 number of bytes occupied by a type or object, which we ignore. */
1325 SYMBOL_LINE (sym) = desc;
1326 }
1327 else
1328 {
1329 SYMBOL_LINE (sym) = 0; /* unknown */
1330 }
1331
1332 if (is_cplus_marker (string[0]))
1333 {
1334 /* Special GNU C++ names. */
1335 switch (string[1])
1336 {
1337 case 't':
1338 SYMBOL_NAME (sym) = obsavestring ("this", strlen ("this"),
1339 &objfile->symbol_obstack);
1340 break;
1341
1342 case 'v': /* $vtbl_ptr_type */
1343 /* Was: SYMBOL_NAME (sym) = "vptr"; */
1344 goto normal;
1345
1346 case 'e':
1347 SYMBOL_NAME (sym) = obsavestring ("eh_throw", strlen ("eh_throw"),
1348 &objfile->symbol_obstack);
1349 break;
1350
1351 case '_':
1352 /* This was an anonymous type that was never fixed up. */
1353 goto normal;
1354
1355 #ifdef STATIC_TRANSFORM_NAME
1356 case 'X':
1357 /* SunPRO (3.0 at least) static variable encoding. */
1358 goto normal;
1359 #endif
1360
1361 default:
1362 complain (&unrecognized_cplus_name_complaint, string);
1363 goto normal; /* Do *something* with it */
1364 }
1365 }
1366 else if (string[0] == '#')
1367 {
1368 /* Special GNU C extension for referencing symbols. */
1369 char *s;
1370 int refnum, nlen;
1371
1372 /* If STRING defines a new reference id, then add it to the
1373 reference map. Else it must be referring to a previously
1374 defined symbol, so add it to the alias list of the previously
1375 defined symbol. */
1376 s = string;
1377 refnum = symbol_reference_defined (&s);
1378 if (refnum >= 0)
1379 ref_add (refnum, sym, string, SYMBOL_VALUE (sym));
1380 else if (!resolve_symbol_reference (objfile, sym, string))
1381 return NULL;
1382
1383 /* S..P contains the name of the symbol. We need to store
1384 the correct name into SYMBOL_NAME. */
1385 nlen = p - s;
1386 if (refnum >= 0)
1387 {
1388 if (nlen > 0)
1389 {
1390 SYMBOL_NAME (sym) = (char *)
1391 obstack_alloc (&objfile->symbol_obstack, nlen);
1392 strncpy (SYMBOL_NAME (sym), s, nlen);
1393 SYMBOL_NAME (sym)[nlen] = '\0';
1394 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1395 }
1396 else
1397 /* FIXME! Want SYMBOL_NAME (sym) = 0;
1398 Get error if leave name 0. So give it something. */
1399 {
1400 nlen = p - string;
1401 SYMBOL_NAME (sym) = (char *)
1402 obstack_alloc (&objfile->symbol_obstack, nlen);
1403 strncpy (SYMBOL_NAME (sym), string, nlen);
1404 SYMBOL_NAME (sym)[nlen] = '\0';
1405 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1406 }
1407 }
1408 /* Advance STRING beyond the reference id. */
1409 string = s;
1410 }
1411 else
1412 {
1413 normal:
1414 SYMBOL_LANGUAGE (sym) = current_subfile->language;
1415 SYMBOL_NAME (sym) = (char *)
1416 obstack_alloc (&objfile->symbol_obstack, ((p - string) + 1));
1417 /* Open-coded memcpy--saves function call time. */
1418 /* FIXME: Does it really? Try replacing with simple strcpy and
1419 try it on an executable with a large symbol table. */
1420 /* FIXME: considering that gcc can open code memcpy anyway, I
1421 doubt it. xoxorich. */
1422 {
1423 register char *p1 = string;
1424 register char *p2 = SYMBOL_NAME (sym);
1425 while (p1 != p)
1426 {
1427 *p2++ = *p1++;
1428 }
1429 *p2++ = '\0';
1430 }
1431
1432 /* If this symbol is from a C++ compilation, then attempt to cache the
1433 demangled form for future reference. This is a typical time versus
1434 space tradeoff, that was decided in favor of time because it sped up
1435 C++ symbol lookups by a factor of about 20. */
1436
1437 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
1438 }
1439 p++;
1440
1441 /* Determine the type of name being defined. */
1442 #if 0
1443 /* Getting GDB to correctly skip the symbol on an undefined symbol
1444 descriptor and not ever dump core is a very dodgy proposition if
1445 we do things this way. I say the acorn RISC machine can just
1446 fix their compiler. */
1447 /* The Acorn RISC machine's compiler can put out locals that don't
1448 start with "234=" or "(3,4)=", so assume anything other than the
1449 deftypes we know how to handle is a local. */
1450 if (!strchr ("cfFGpPrStTvVXCR", *p))
1451 #else
1452 if (isdigit (*p) || *p == '(' || *p == '-')
1453 #endif
1454 deftype = 'l';
1455 else
1456 deftype = *p++;
1457
1458 switch (deftype)
1459 {
1460 case 'c':
1461 /* c is a special case, not followed by a type-number.
1462 SYMBOL:c=iVALUE for an integer constant symbol.
1463 SYMBOL:c=rVALUE for a floating constant symbol.
1464 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
1465 e.g. "b:c=e6,0" for "const b = blob1"
1466 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1467 if (*p != '=')
1468 {
1469 SYMBOL_CLASS (sym) = LOC_CONST;
1470 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1471 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1472 add_symbol_to_list (sym, &file_symbols);
1473 return sym;
1474 }
1475 ++p;
1476 switch (*p++)
1477 {
1478 case 'r':
1479 {
1480 double d = atof (p);
1481 char *dbl_valu;
1482
1483 /* FIXME-if-picky-about-floating-accuracy: Should be using
1484 target arithmetic to get the value. real.c in GCC
1485 probably has the necessary code. */
1486
1487 /* FIXME: lookup_fundamental_type is a hack. We should be
1488 creating a type especially for the type of float constants.
1489 Problem is, what type should it be?
1490
1491 Also, what should the name of this type be? Should we
1492 be using 'S' constants (see stabs.texinfo) instead? */
1493
1494 SYMBOL_TYPE (sym) = lookup_fundamental_type (objfile,
1495 FT_DBL_PREC_FLOAT);
1496 dbl_valu = (char *)
1497 obstack_alloc (&objfile->symbol_obstack,
1498 TYPE_LENGTH (SYMBOL_TYPE (sym)));
1499 store_typed_floating (dbl_valu, SYMBOL_TYPE (sym), d);
1500 SYMBOL_VALUE_BYTES (sym) = dbl_valu;
1501 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
1502 }
1503 break;
1504 case 'i':
1505 {
1506 /* Defining integer constants this way is kind of silly,
1507 since 'e' constants allows the compiler to give not
1508 only the value, but the type as well. C has at least
1509 int, long, unsigned int, and long long as constant
1510 types; other languages probably should have at least
1511 unsigned as well as signed constants. */
1512
1513 /* We just need one int constant type for all objfiles.
1514 It doesn't depend on languages or anything (arguably its
1515 name should be a language-specific name for a type of
1516 that size, but I'm inclined to say that if the compiler
1517 wants a nice name for the type, it can use 'e'). */
1518 static struct type *int_const_type;
1519
1520 /* Yes, this is as long as a *host* int. That is because we
1521 use atoi. */
1522 if (int_const_type == NULL)
1523 int_const_type =
1524 init_type (TYPE_CODE_INT,
1525 sizeof (int) * HOST_CHAR_BIT / TARGET_CHAR_BIT, 0,
1526 "integer constant",
1527 (struct objfile *) NULL);
1528 SYMBOL_TYPE (sym) = int_const_type;
1529 SYMBOL_VALUE (sym) = atoi (p);
1530 SYMBOL_CLASS (sym) = LOC_CONST;
1531 }
1532 break;
1533 case 'e':
1534 /* SYMBOL:c=eTYPE,INTVALUE for a constant symbol whose value
1535 can be represented as integral.
1536 e.g. "b:c=e6,0" for "const b = blob1"
1537 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1538 {
1539 SYMBOL_CLASS (sym) = LOC_CONST;
1540 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1541
1542 if (*p != ',')
1543 {
1544 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1545 break;
1546 }
1547 ++p;
1548
1549 /* If the value is too big to fit in an int (perhaps because
1550 it is unsigned), or something like that, we silently get
1551 a bogus value. The type and everything else about it is
1552 correct. Ideally, we should be using whatever we have
1553 available for parsing unsigned and long long values,
1554 however. */
1555 SYMBOL_VALUE (sym) = atoi (p);
1556 }
1557 break;
1558 default:
1559 {
1560 SYMBOL_CLASS (sym) = LOC_CONST;
1561 SYMBOL_TYPE (sym) = error_type (&p, objfile);
1562 }
1563 }
1564 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1565 add_symbol_to_list (sym, &file_symbols);
1566 return sym;
1567
1568 case 'C':
1569 /* The name of a caught exception. */
1570 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1571 SYMBOL_CLASS (sym) = LOC_LABEL;
1572 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1573 SYMBOL_VALUE_ADDRESS (sym) = valu;
1574 add_symbol_to_list (sym, &local_symbols);
1575 break;
1576
1577 case 'f':
1578 /* A static function definition. */
1579 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1580 SYMBOL_CLASS (sym) = LOC_BLOCK;
1581 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1582 add_symbol_to_list (sym, &file_symbols);
1583 /* fall into process_function_types. */
1584
1585 process_function_types:
1586 /* Function result types are described as the result type in stabs.
1587 We need to convert this to the function-returning-type-X type
1588 in GDB. E.g. "int" is converted to "function returning int". */
1589 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_FUNC)
1590 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
1591
1592 /* All functions in C++ have prototypes. */
1593 if (SYMBOL_LANGUAGE (sym) == language_cplus)
1594 TYPE_FLAGS (SYMBOL_TYPE (sym)) |= TYPE_FLAG_PROTOTYPED;
1595
1596 /* fall into process_prototype_types */
1597
1598 process_prototype_types:
1599 /* Sun acc puts declared types of arguments here. */
1600 if (*p == ';')
1601 {
1602 struct type *ftype = SYMBOL_TYPE (sym);
1603 int nsemi = 0;
1604 int nparams = 0;
1605 char *p1 = p;
1606
1607 /* Obtain a worst case guess for the number of arguments
1608 by counting the semicolons. */
1609 while (*p1)
1610 {
1611 if (*p1++ == ';')
1612 nsemi++;
1613 }
1614
1615 /* Allocate parameter information fields and fill them in. */
1616 TYPE_FIELDS (ftype) = (struct field *)
1617 TYPE_ALLOC (ftype, nsemi * sizeof (struct field));
1618 while (*p++ == ';')
1619 {
1620 struct type *ptype;
1621
1622 /* A type number of zero indicates the start of varargs.
1623 FIXME: GDB currently ignores vararg functions. */
1624 if (p[0] == '0' && p[1] == '\0')
1625 break;
1626 ptype = read_type (&p, objfile);
1627
1628 /* The Sun compilers mark integer arguments, which should
1629 be promoted to the width of the calling conventions, with
1630 a type which references itself. This type is turned into
1631 a TYPE_CODE_VOID type by read_type, and we have to turn
1632 it back into builtin_type_int here.
1633 FIXME: Do we need a new builtin_type_promoted_int_arg ? */
1634 if (TYPE_CODE (ptype) == TYPE_CODE_VOID)
1635 ptype = builtin_type_int;
1636 TYPE_FIELD_TYPE (ftype, nparams) = ptype;
1637 TYPE_FIELD_ARTIFICIAL (ftype, nparams++) = 0;
1638 }
1639 TYPE_NFIELDS (ftype) = nparams;
1640 TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED;
1641 }
1642 break;
1643
1644 case 'F':
1645 /* A global function definition. */
1646 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1647 SYMBOL_CLASS (sym) = LOC_BLOCK;
1648 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1649 add_symbol_to_list (sym, &global_symbols);
1650 goto process_function_types;
1651
1652 case 'G':
1653 /* For a class G (global) symbol, it appears that the
1654 value is not correct. It is necessary to search for the
1655 corresponding linker definition to find the value.
1656 These definitions appear at the end of the namelist. */
1657 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1658 SYMBOL_CLASS (sym) = LOC_STATIC;
1659 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1660 /* Don't add symbol references to global_sym_chain.
1661 Symbol references don't have valid names and wont't match up with
1662 minimal symbols when the global_sym_chain is relocated.
1663 We'll fixup symbol references when we fixup the defining symbol. */
1664 if (SYMBOL_NAME (sym) && SYMBOL_NAME (sym)[0] != '#')
1665 {
1666 i = hashname (SYMBOL_NAME (sym));
1667 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
1668 global_sym_chain[i] = sym;
1669 }
1670 add_symbol_to_list (sym, &global_symbols);
1671 break;
1672
1673 /* This case is faked by a conditional above,
1674 when there is no code letter in the dbx data.
1675 Dbx data never actually contains 'l'. */
1676 case 's':
1677 case 'l':
1678 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1679 SYMBOL_CLASS (sym) = LOC_LOCAL;
1680 SYMBOL_VALUE (sym) = valu;
1681 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1682 add_symbol_to_list (sym, &local_symbols);
1683 break;
1684
1685 case 'p':
1686 if (*p == 'F')
1687 /* pF is a two-letter code that means a function parameter in Fortran.
1688 The type-number specifies the type of the return value.
1689 Translate it into a pointer-to-function type. */
1690 {
1691 p++;
1692 SYMBOL_TYPE (sym)
1693 = lookup_pointer_type
1694 (lookup_function_type (read_type (&p, objfile)));
1695 }
1696 else
1697 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1698
1699 /* Normally this is a parameter, a LOC_ARG. On the i960, it
1700 can also be a LOC_LOCAL_ARG depending on symbol type. */
1701 #ifndef DBX_PARM_SYMBOL_CLASS
1702 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
1703 #endif
1704
1705 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
1706 SYMBOL_VALUE (sym) = valu;
1707 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1708 add_symbol_to_list (sym, &local_symbols);
1709
1710 if (TARGET_BYTE_ORDER != BFD_ENDIAN_BIG)
1711 {
1712 /* On little-endian machines, this crud is never necessary,
1713 and, if the extra bytes contain garbage, is harmful. */
1714 break;
1715 }
1716
1717 /* If it's gcc-compiled, if it says `short', believe it. */
1718 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
1719 break;
1720
1721 if (!BELIEVE_PCC_PROMOTION)
1722 {
1723 /* This is the signed type which arguments get promoted to. */
1724 static struct type *pcc_promotion_type;
1725 /* This is the unsigned type which arguments get promoted to. */
1726 static struct type *pcc_unsigned_promotion_type;
1727
1728 /* Call it "int" because this is mainly C lossage. */
1729 if (pcc_promotion_type == NULL)
1730 pcc_promotion_type =
1731 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1732 0, "int", NULL);
1733
1734 if (pcc_unsigned_promotion_type == NULL)
1735 pcc_unsigned_promotion_type =
1736 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1737 TYPE_FLAG_UNSIGNED, "unsigned int", NULL);
1738
1739 if (BELIEVE_PCC_PROMOTION_TYPE)
1740 {
1741 /* This is defined on machines (e.g. sparc) where we
1742 should believe the type of a PCC 'short' argument,
1743 but shouldn't believe the address (the address is the
1744 address of the corresponding int).
1745
1746 My guess is that this correction, as opposed to
1747 changing the parameter to an 'int' (as done below,
1748 for PCC on most machines), is the right thing to do
1749 on all machines, but I don't want to risk breaking
1750 something that already works. On most PCC machines,
1751 the sparc problem doesn't come up because the calling
1752 function has to zero the top bytes (not knowing
1753 whether the called function wants an int or a short),
1754 so there is little practical difference between an
1755 int and a short (except perhaps what happens when the
1756 GDB user types "print short_arg = 0x10000;").
1757
1758 Hacked for SunOS 4.1 by gnu@cygnus.com. In 4.1, the
1759 compiler actually produces the correct address (we
1760 don't need to fix it up). I made this code adapt so
1761 that it will offset the symbol if it was pointing at
1762 an int-aligned location and not otherwise. This way
1763 you can use the same gdb for 4.0.x and 4.1 systems.
1764
1765 If the parameter is shorter than an int, and is
1766 integral (e.g. char, short, or unsigned equivalent),
1767 and is claimed to be passed on an integer boundary,
1768 don't believe it! Offset the parameter's address to
1769 the tail-end of that integer. */
1770
1771 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
1772 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1773 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (pcc_promotion_type))
1774 {
1775 SYMBOL_VALUE (sym) += TYPE_LENGTH (pcc_promotion_type)
1776 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1777 }
1778 break;
1779 }
1780 else
1781 {
1782 /* If PCC says a parameter is a short or a char,
1783 it is really an int. */
1784 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
1785 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
1786 {
1787 SYMBOL_TYPE (sym) =
1788 TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1789 ? pcc_unsigned_promotion_type
1790 : pcc_promotion_type;
1791 }
1792 break;
1793 }
1794 }
1795
1796 case 'P':
1797 /* acc seems to use P to declare the prototypes of functions that
1798 are referenced by this file. gdb is not prepared to deal
1799 with this extra information. FIXME, it ought to. */
1800 if (type == N_FUN)
1801 {
1802 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1803 goto process_prototype_types;
1804 }
1805 /*FALLTHROUGH */
1806
1807 case 'R':
1808 /* Parameter which is in a register. */
1809 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1810 SYMBOL_CLASS (sym) = LOC_REGPARM;
1811 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1812 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
1813 {
1814 complain (&reg_value_complaint, SYMBOL_VALUE (sym),
1815 NUM_REGS + NUM_PSEUDO_REGS,
1816 SYMBOL_SOURCE_NAME (sym));
1817 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
1818 }
1819 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1820 add_symbol_to_list (sym, &local_symbols);
1821 break;
1822
1823 case 'r':
1824 /* Register variable (either global or local). */
1825 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1826 SYMBOL_CLASS (sym) = LOC_REGISTER;
1827 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1828 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
1829 {
1830 complain (&reg_value_complaint, SYMBOL_VALUE (sym),
1831 NUM_REGS + NUM_PSEUDO_REGS,
1832 SYMBOL_SOURCE_NAME (sym));
1833 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
1834 }
1835 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1836 if (within_function)
1837 {
1838 /* Sun cc uses a pair of symbols, one 'p' and one 'r' with the same
1839 name to represent an argument passed in a register.
1840 GCC uses 'P' for the same case. So if we find such a symbol pair
1841 we combine it into one 'P' symbol. For Sun cc we need to do this
1842 regardless of REG_STRUCT_HAS_ADDR, because the compiler puts out
1843 the 'p' symbol even if it never saves the argument onto the stack.
1844
1845 On most machines, we want to preserve both symbols, so that
1846 we can still get information about what is going on with the
1847 stack (VAX for computing args_printed, using stack slots instead
1848 of saved registers in backtraces, etc.).
1849
1850 Note that this code illegally combines
1851 main(argc) struct foo argc; { register struct foo argc; }
1852 but this case is considered pathological and causes a warning
1853 from a decent compiler. */
1854
1855 if (local_symbols
1856 && local_symbols->nsyms > 0
1857 #ifndef USE_REGISTER_NOT_ARG
1858 && REG_STRUCT_HAS_ADDR_P ()
1859 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation,
1860 SYMBOL_TYPE (sym))
1861 && (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1862 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION
1863 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_SET
1864 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_BITSTRING)
1865 #endif
1866 )
1867 {
1868 struct symbol *prev_sym;
1869 prev_sym = local_symbols->symbol[local_symbols->nsyms - 1];
1870 if ((SYMBOL_CLASS (prev_sym) == LOC_REF_ARG
1871 || SYMBOL_CLASS (prev_sym) == LOC_ARG)
1872 && STREQ (SYMBOL_NAME (prev_sym), SYMBOL_NAME (sym)))
1873 {
1874 SYMBOL_CLASS (prev_sym) = LOC_REGPARM;
1875 /* Use the type from the LOC_REGISTER; that is the type
1876 that is actually in that register. */
1877 SYMBOL_TYPE (prev_sym) = SYMBOL_TYPE (sym);
1878 SYMBOL_VALUE (prev_sym) = SYMBOL_VALUE (sym);
1879 sym = prev_sym;
1880 break;
1881 }
1882 }
1883 add_symbol_to_list (sym, &local_symbols);
1884 }
1885 else
1886 add_symbol_to_list (sym, &file_symbols);
1887 break;
1888
1889 case 'S':
1890 /* Static symbol at top level of file */
1891 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1892 SYMBOL_CLASS (sym) = LOC_STATIC;
1893 SYMBOL_VALUE_ADDRESS (sym) = valu;
1894 #ifdef STATIC_TRANSFORM_NAME
1895 if (IS_STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym)))
1896 {
1897 struct minimal_symbol *msym;
1898 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, objfile);
1899 if (msym != NULL)
1900 {
1901 SYMBOL_NAME (sym) = STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym));
1902 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msym);
1903 }
1904 }
1905 #endif
1906 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1907 add_symbol_to_list (sym, &file_symbols);
1908 break;
1909
1910 case 't':
1911 /* Typedef */
1912 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1913
1914 /* For a nameless type, we don't want a create a symbol, thus we
1915 did not use `sym'. Return without further processing. */
1916 if (nameless)
1917 return NULL;
1918
1919 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1920 SYMBOL_VALUE (sym) = valu;
1921 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1922 /* C++ vagaries: we may have a type which is derived from
1923 a base type which did not have its name defined when the
1924 derived class was output. We fill in the derived class's
1925 base part member's name here in that case. */
1926 if (TYPE_NAME (SYMBOL_TYPE (sym)) != NULL)
1927 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1928 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
1929 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
1930 {
1931 int j;
1932 for (j = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; j >= 0; j--)
1933 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) == 0)
1934 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) =
1935 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), j));
1936 }
1937
1938 if (TYPE_NAME (SYMBOL_TYPE (sym)) == NULL)
1939 {
1940 /* gcc-2.6 or later (when using -fvtable-thunks)
1941 emits a unique named type for a vtable entry.
1942 Some gdb code depends on that specific name. */
1943 extern const char vtbl_ptr_name[];
1944
1945 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1946 && strcmp (SYMBOL_NAME (sym), vtbl_ptr_name))
1947 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1948 {
1949 /* If we are giving a name to a type such as "pointer to
1950 foo" or "function returning foo", we better not set
1951 the TYPE_NAME. If the program contains "typedef char
1952 *caddr_t;", we don't want all variables of type char
1953 * to print as caddr_t. This is not just a
1954 consequence of GDB's type management; PCC and GCC (at
1955 least through version 2.4) both output variables of
1956 either type char * or caddr_t with the type number
1957 defined in the 't' symbol for caddr_t. If a future
1958 compiler cleans this up it GDB is not ready for it
1959 yet, but if it becomes ready we somehow need to
1960 disable this check (without breaking the PCC/GCC2.4
1961 case).
1962
1963 Sigh.
1964
1965 Fortunately, this check seems not to be necessary
1966 for anything except pointers or functions. */
1967 /* ezannoni: 2000-10-26. This seems to apply for
1968 versions of gcc older than 2.8. This was the original
1969 problem: with the following code gdb would tell that
1970 the type for name1 is caddr_t, and func is char()
1971 typedef char *caddr_t;
1972 char *name2;
1973 struct x
1974 {
1975 char *name1;
1976 } xx;
1977 char *func()
1978 {
1979 }
1980 main () {}
1981 */
1982
1983 /* Pascal accepts names for pointer types. */
1984 if (current_subfile->language == language_pascal)
1985 {
1986 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1987 }
1988 }
1989 else
1990 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1991 }
1992
1993 add_symbol_to_list (sym, &file_symbols);
1994 break;
1995
1996 case 'T':
1997 /* Struct, union, or enum tag. For GNU C++, this can be be followed
1998 by 't' which means we are typedef'ing it as well. */
1999 synonym = *p == 't';
2000
2001 if (synonym)
2002 p++;
2003 /* The semantics of C++ state that "struct foo { ... }" also defines
2004 a typedef for "foo". Unfortunately, cfront never makes the typedef
2005 when translating C++ into C. We make the typedef here so that
2006 "ptype foo" works as expected for cfront translated code. */
2007 else if (current_subfile->language == language_cplus)
2008 synonym = 1;
2009
2010 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2011
2012 /* For a nameless type, we don't want a create a symbol, thus we
2013 did not use `sym'. Return without further processing. */
2014 if (nameless)
2015 return NULL;
2016
2017 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
2018 SYMBOL_VALUE (sym) = valu;
2019 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
2020 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
2021 TYPE_TAG_NAME (SYMBOL_TYPE (sym))
2022 = obconcat (&objfile->type_obstack, "", "", SYMBOL_NAME (sym));
2023 add_symbol_to_list (sym, &file_symbols);
2024
2025 if (synonym)
2026 {
2027 /* Clone the sym and then modify it. */
2028 register struct symbol *typedef_sym = (struct symbol *)
2029 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
2030 *typedef_sym = *sym;
2031 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
2032 SYMBOL_VALUE (typedef_sym) = valu;
2033 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
2034 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
2035 TYPE_NAME (SYMBOL_TYPE (sym))
2036 = obconcat (&objfile->type_obstack, "", "", SYMBOL_NAME (sym));
2037 add_symbol_to_list (typedef_sym, &file_symbols);
2038 }
2039 break;
2040
2041 case 'V':
2042 /* Static symbol of local scope */
2043 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2044 SYMBOL_CLASS (sym) = LOC_STATIC;
2045 SYMBOL_VALUE_ADDRESS (sym) = valu;
2046 #ifdef STATIC_TRANSFORM_NAME
2047 if (IS_STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym)))
2048 {
2049 struct minimal_symbol *msym;
2050 msym = lookup_minimal_symbol (SYMBOL_NAME (sym), NULL, objfile);
2051 if (msym != NULL)
2052 {
2053 SYMBOL_NAME (sym) = STATIC_TRANSFORM_NAME (SYMBOL_NAME (sym));
2054 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msym);
2055 }
2056 }
2057 #endif
2058 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2059 #if 0 /* OBSOLETE OS9K */
2060 // OBSOLETE if (os9k_stabs)
2061 // OBSOLETE add_symbol_to_list (sym, &global_symbols);
2062 // OBSOLETE else
2063 #endif /* OBSOLETE OS9K */
2064 add_symbol_to_list (sym, &local_symbols);
2065 break;
2066
2067 case 'v':
2068 /* Reference parameter */
2069 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2070 SYMBOL_CLASS (sym) = LOC_REF_ARG;
2071 SYMBOL_VALUE (sym) = valu;
2072 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2073 add_symbol_to_list (sym, &local_symbols);
2074 break;
2075
2076 case 'a':
2077 /* Reference parameter which is in a register. */
2078 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2079 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
2080 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
2081 if (SYMBOL_VALUE (sym) >= NUM_REGS + NUM_PSEUDO_REGS)
2082 {
2083 complain (&reg_value_complaint, SYMBOL_VALUE (sym),
2084 NUM_REGS + NUM_PSEUDO_REGS,
2085 SYMBOL_SOURCE_NAME (sym));
2086 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
2087 }
2088 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2089 add_symbol_to_list (sym, &local_symbols);
2090 break;
2091
2092 case 'X':
2093 /* This is used by Sun FORTRAN for "function result value".
2094 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
2095 that Pascal uses it too, but when I tried it Pascal used
2096 "x:3" (local symbol) instead. */
2097 SYMBOL_TYPE (sym) = read_type (&p, objfile);
2098 SYMBOL_CLASS (sym) = LOC_LOCAL;
2099 SYMBOL_VALUE (sym) = valu;
2100 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2101 add_symbol_to_list (sym, &local_symbols);
2102 break;
2103
2104 /* New code added to support cfront stabs strings.
2105 Note: case 'P' already handled above */
2106 case 'Z':
2107 /* Cfront type continuation coming up!
2108 Find the original definition and add to it.
2109 We'll have to do this for the typedef too,
2110 since we cloned the symbol to define a type in read_type.
2111 Stabs info examples:
2112 __1C :Ztl
2113 foo__1CFv :ZtF (first def foo__1CFv:F(0,3);(0,24))
2114 C:ZsC;;__ct__1CFv func1__1CFv func2__1CFv ... ;;;
2115 where C is the name of the class.
2116 Unfortunately, we can't lookup the original symbol yet 'cuz
2117 we haven't finished reading all the symbols.
2118 Instead, we save it for processing later */
2119 process_later (sym, p, resolve_cfront_continuation);
2120 SYMBOL_TYPE (sym) = error_type (&p, objfile); /* FIXME! change later */
2121 SYMBOL_CLASS (sym) = LOC_CONST;
2122 SYMBOL_VALUE (sym) = 0;
2123 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2124 /* Don't add to list - we'll delete it later when
2125 we add the continuation to the real sym */
2126 return sym;
2127 /* End of new code added to support cfront stabs strings */
2128
2129 default:
2130 SYMBOL_TYPE (sym) = error_type (&p, objfile);
2131 SYMBOL_CLASS (sym) = LOC_CONST;
2132 SYMBOL_VALUE (sym) = 0;
2133 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2134 add_symbol_to_list (sym, &file_symbols);
2135 break;
2136 }
2137
2138 /* When passing structures to a function, some systems sometimes pass
2139 the address in a register, not the structure itself. */
2140
2141 if (REG_STRUCT_HAS_ADDR_P ()
2142 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation, SYMBOL_TYPE (sym))
2143 && (SYMBOL_CLASS (sym) == LOC_REGPARM || SYMBOL_CLASS (sym) == LOC_ARG))
2144 {
2145 struct type *symbol_type = check_typedef (SYMBOL_TYPE (sym));
2146
2147 if ((TYPE_CODE (symbol_type) == TYPE_CODE_STRUCT)
2148 || (TYPE_CODE (symbol_type) == TYPE_CODE_UNION)
2149 || (TYPE_CODE (symbol_type) == TYPE_CODE_BITSTRING)
2150 || (TYPE_CODE (symbol_type) == TYPE_CODE_SET))
2151 {
2152 /* If REG_STRUCT_HAS_ADDR yields non-zero we have to convert
2153 LOC_REGPARM to LOC_REGPARM_ADDR for structures and unions. */
2154 if (SYMBOL_CLASS (sym) == LOC_REGPARM)
2155 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
2156 /* Likewise for converting LOC_ARG to LOC_REF_ARG (for the 7th
2157 and subsequent arguments on the sparc, for example). */
2158 else if (SYMBOL_CLASS (sym) == LOC_ARG)
2159 SYMBOL_CLASS (sym) = LOC_REF_ARG;
2160 }
2161 }
2162
2163 /* Is there more to parse? For example LRS/alias information? */
2164 while (*p && *p == ';')
2165 {
2166 p++;
2167 if (*p && p[0] == 'l' && p[1] == '(')
2168 {
2169 /* GNU extensions for live range splitting may be appended to
2170 the end of the stab string. eg. "l(#1,#2);l(#3,#5)" */
2171
2172 /* Resolve the live range and add it to SYM's live range list. */
2173 if (!resolve_live_range (objfile, sym, p))
2174 return NULL;
2175
2176 /* Find end of live range info. */
2177 p = strchr (p, ')');
2178 if (!*p || *p != ')')
2179 {
2180 complain (&lrs_general_complaint, "live range format not recognized");
2181 return NULL;
2182 }
2183 p++;
2184 }
2185 }
2186 return sym;
2187 }
2188
2189 /* Add the live range found in P to the symbol SYM in objfile OBJFILE. Returns
2190 non-zero on success, zero otherwise. */
2191
2192 static int
2193 resolve_live_range (struct objfile *objfile, struct symbol *sym, char *p)
2194 {
2195 int refnum;
2196 CORE_ADDR start, end;
2197
2198 /* Sanity check the beginning of the stabs string. */
2199 if (!*p || *p != 'l')
2200 {
2201 complain (&lrs_general_complaint, "live range string 1");
2202 return 0;
2203 }
2204 p++;
2205
2206 if (!*p || *p != '(')
2207 {
2208 complain (&lrs_general_complaint, "live range string 2");
2209 return 0;
2210 }
2211 p++;
2212
2213 /* Get starting value of range and advance P past the reference id.
2214
2215 ?!? In theory, the process_reference should never fail, but we should
2216 catch that case just in case the compiler scrogged the stabs. */
2217 refnum = process_reference (&p);
2218 start = ref_search_value (refnum);
2219 if (!start)
2220 {
2221 complain (&lrs_general_complaint, "Live range symbol not found 1");
2222 return 0;
2223 }
2224
2225 if (!*p || *p != ',')
2226 {
2227 complain (&lrs_general_complaint, "live range string 3");
2228 return 0;
2229 }
2230 p++;
2231
2232 /* Get ending value of range and advance P past the reference id.
2233
2234 ?!? In theory, the process_reference should never fail, but we should
2235 catch that case just in case the compiler scrogged the stabs. */
2236 refnum = process_reference (&p);
2237 end = ref_search_value (refnum);
2238 if (!end)
2239 {
2240 complain (&lrs_general_complaint, "Live range symbol not found 2");
2241 return 0;
2242 }
2243
2244 if (!*p || *p != ')')
2245 {
2246 complain (&lrs_general_complaint, "live range string 4");
2247 return 0;
2248 }
2249
2250 /* Now that we know the bounds of the range, add it to the
2251 symbol. */
2252 add_live_range (objfile, sym, start, end);
2253
2254 return 1;
2255 }
2256
2257 /* Add a new live range defined by START and END to the symbol SYM
2258 in objfile OBJFILE. */
2259
2260 static void
2261 add_live_range (struct objfile *objfile, struct symbol *sym, CORE_ADDR start,
2262 CORE_ADDR end)
2263 {
2264 struct range_list *r, *rs;
2265
2266 if (start >= end)
2267 {
2268 complain (&lrs_general_complaint, "end of live range follows start");
2269 return;
2270 }
2271
2272 /* Alloc new live range structure. */
2273 r = (struct range_list *)
2274 obstack_alloc (&objfile->type_obstack,
2275 sizeof (struct range_list));
2276 r->start = start;
2277 r->end = end;
2278 r->next = 0;
2279
2280 /* Append this range to the symbol's range list. */
2281 if (!SYMBOL_RANGES (sym))
2282 SYMBOL_RANGES (sym) = r;
2283 else
2284 {
2285 /* Get the last range for the symbol. */
2286 for (rs = SYMBOL_RANGES (sym); rs->next; rs = rs->next)
2287 ;
2288 rs->next = r;
2289 }
2290 }
2291 \f
2292
2293 /* Skip rest of this symbol and return an error type.
2294
2295 General notes on error recovery: error_type always skips to the
2296 end of the symbol (modulo cretinous dbx symbol name continuation).
2297 Thus code like this:
2298
2299 if (*(*pp)++ != ';')
2300 return error_type (pp, objfile);
2301
2302 is wrong because if *pp starts out pointing at '\0' (typically as the
2303 result of an earlier error), it will be incremented to point to the
2304 start of the next symbol, which might produce strange results, at least
2305 if you run off the end of the string table. Instead use
2306
2307 if (**pp != ';')
2308 return error_type (pp, objfile);
2309 ++*pp;
2310
2311 or
2312
2313 if (**pp != ';')
2314 foo = error_type (pp, objfile);
2315 else
2316 ++*pp;
2317
2318 And in case it isn't obvious, the point of all this hair is so the compiler
2319 can define new types and new syntaxes, and old versions of the
2320 debugger will be able to read the new symbol tables. */
2321
2322 static struct type *
2323 error_type (char **pp, struct objfile *objfile)
2324 {
2325 complain (&error_type_complaint);
2326 while (1)
2327 {
2328 /* Skip to end of symbol. */
2329 while (**pp != '\0')
2330 {
2331 (*pp)++;
2332 }
2333
2334 /* Check for and handle cretinous dbx symbol name continuation! */
2335 if ((*pp)[-1] == '\\' || (*pp)[-1] == '?')
2336 {
2337 *pp = next_symbol_text (objfile);
2338 }
2339 else
2340 {
2341 break;
2342 }
2343 }
2344 return (builtin_type_error);
2345 }
2346 \f
2347
2348 /* Read type information or a type definition; return the type. Even
2349 though this routine accepts either type information or a type
2350 definition, the distinction is relevant--some parts of stabsread.c
2351 assume that type information starts with a digit, '-', or '(' in
2352 deciding whether to call read_type. */
2353
2354 struct type *
2355 read_type (register char **pp, struct objfile *objfile)
2356 {
2357 register struct type *type = 0;
2358 struct type *type1;
2359 int typenums[2];
2360 char type_descriptor;
2361
2362 /* Size in bits of type if specified by a type attribute, or -1 if
2363 there is no size attribute. */
2364 int type_size = -1;
2365
2366 /* Used to distinguish string and bitstring from char-array and set. */
2367 int is_string = 0;
2368
2369 /* Used to distinguish vector from array. */
2370 int is_vector = 0;
2371
2372 /* Read type number if present. The type number may be omitted.
2373 for instance in a two-dimensional array declared with type
2374 "ar1;1;10;ar1;1;10;4". */
2375 if ((**pp >= '0' && **pp <= '9')
2376 || **pp == '('
2377 || **pp == '-')
2378 {
2379 if (read_type_number (pp, typenums) != 0)
2380 return error_type (pp, objfile);
2381
2382 /* Type is not being defined here. Either it already exists,
2383 or this is a forward reference to it. dbx_alloc_type handles
2384 both cases. */
2385 if (**pp != '=')
2386 return dbx_alloc_type (typenums, objfile);
2387
2388 /* Type is being defined here. */
2389 /* Skip the '='.
2390 Also skip the type descriptor - we get it below with (*pp)[-1]. */
2391 (*pp) += 2;
2392 }
2393 else
2394 {
2395 /* 'typenums=' not present, type is anonymous. Read and return
2396 the definition, but don't put it in the type vector. */
2397 typenums[0] = typenums[1] = -1;
2398 (*pp)++;
2399 }
2400
2401 again:
2402 type_descriptor = (*pp)[-1];
2403 switch (type_descriptor)
2404 {
2405 case 'x':
2406 {
2407 enum type_code code;
2408
2409 /* Used to index through file_symbols. */
2410 struct pending *ppt;
2411 int i;
2412
2413 /* Name including "struct", etc. */
2414 char *type_name;
2415
2416 {
2417 char *from, *to, *p, *q1, *q2;
2418
2419 /* Set the type code according to the following letter. */
2420 switch ((*pp)[0])
2421 {
2422 case 's':
2423 code = TYPE_CODE_STRUCT;
2424 break;
2425 case 'u':
2426 code = TYPE_CODE_UNION;
2427 break;
2428 case 'e':
2429 code = TYPE_CODE_ENUM;
2430 break;
2431 default:
2432 {
2433 /* Complain and keep going, so compilers can invent new
2434 cross-reference types. */
2435 static struct complaint msg =
2436 {"Unrecognized cross-reference type `%c'", 0, 0};
2437 complain (&msg, (*pp)[0]);
2438 code = TYPE_CODE_STRUCT;
2439 break;
2440 }
2441 }
2442
2443 q1 = strchr (*pp, '<');
2444 p = strchr (*pp, ':');
2445 if (p == NULL)
2446 return error_type (pp, objfile);
2447 if (q1 && p > q1 && p[1] == ':')
2448 {
2449 int nesting_level = 0;
2450 for (q2 = q1; *q2; q2++)
2451 {
2452 if (*q2 == '<')
2453 nesting_level++;
2454 else if (*q2 == '>')
2455 nesting_level--;
2456 else if (*q2 == ':' && nesting_level == 0)
2457 break;
2458 }
2459 p = q2;
2460 if (*p != ':')
2461 return error_type (pp, objfile);
2462 }
2463 to = type_name =
2464 (char *) obstack_alloc (&objfile->type_obstack, p - *pp + 1);
2465
2466 /* Copy the name. */
2467 from = *pp + 1;
2468 while (from < p)
2469 *to++ = *from++;
2470 *to = '\0';
2471
2472 /* Set the pointer ahead of the name which we just read, and
2473 the colon. */
2474 *pp = from + 1;
2475 }
2476
2477 /* Now check to see whether the type has already been
2478 declared. This was written for arrays of cross-referenced
2479 types before we had TYPE_CODE_TARGET_STUBBED, so I'm pretty
2480 sure it is not necessary anymore. But it might be a good
2481 idea, to save a little memory. */
2482
2483 for (ppt = file_symbols; ppt; ppt = ppt->next)
2484 for (i = 0; i < ppt->nsyms; i++)
2485 {
2486 struct symbol *sym = ppt->symbol[i];
2487
2488 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2489 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
2490 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
2491 && STREQ (SYMBOL_NAME (sym), type_name))
2492 {
2493 obstack_free (&objfile->type_obstack, type_name);
2494 type = SYMBOL_TYPE (sym);
2495 return type;
2496 }
2497 }
2498
2499 /* Didn't find the type to which this refers, so we must
2500 be dealing with a forward reference. Allocate a type
2501 structure for it, and keep track of it so we can
2502 fill in the rest of the fields when we get the full
2503 type. */
2504 type = dbx_alloc_type (typenums, objfile);
2505 TYPE_CODE (type) = code;
2506 TYPE_TAG_NAME (type) = type_name;
2507 INIT_CPLUS_SPECIFIC (type);
2508 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
2509
2510 add_undefined_type (type);
2511 return type;
2512 }
2513
2514 case '-': /* RS/6000 built-in type */
2515 case '0':
2516 case '1':
2517 case '2':
2518 case '3':
2519 case '4':
2520 case '5':
2521 case '6':
2522 case '7':
2523 case '8':
2524 case '9':
2525 case '(':
2526 (*pp)--;
2527
2528 /* We deal with something like t(1,2)=(3,4)=... which
2529 the Lucid compiler and recent gcc versions (post 2.7.3) use. */
2530
2531 /* Allocate and enter the typedef type first.
2532 This handles recursive types. */
2533 type = dbx_alloc_type (typenums, objfile);
2534 TYPE_CODE (type) = TYPE_CODE_TYPEDEF;
2535 {
2536 struct type *xtype = read_type (pp, objfile);
2537 if (type == xtype)
2538 {
2539 /* It's being defined as itself. That means it is "void". */
2540 TYPE_CODE (type) = TYPE_CODE_VOID;
2541 TYPE_LENGTH (type) = 1;
2542 }
2543 else if (type_size >= 0 || is_string)
2544 {
2545 /* This is the absolute wrong way to construct types. Every
2546 other debug format has found a way around this problem and
2547 the related problems with unnecessarily stubbed types;
2548 someone motivated should attempt to clean up the issue
2549 here as well. Once a type pointed to has been created it
2550 should not be modified.
2551
2552 Well, it's not *absolutely* wrong. Constructing recursive
2553 types (trees, linked lists) necessarily entails modifying
2554 types after creating them. Constructing any loop structure
2555 entails side effects. The Dwarf 2 reader does handle this
2556 more gracefully (it never constructs more than once
2557 instance of a type object, so it doesn't have to copy type
2558 objects wholesale), but it still mutates type objects after
2559 other folks have references to them.
2560
2561 Keep in mind that this circularity/mutation issue shows up
2562 at the source language level, too: C's "incomplete types",
2563 for example. So the proper cleanup, I think, would be to
2564 limit GDB's type smashing to match exactly those required
2565 by the source language. So GDB could have a
2566 "complete_this_type" function, but never create unnecessary
2567 copies of a type otherwise. */
2568 replace_type (type, xtype);
2569 TYPE_NAME (type) = NULL;
2570 TYPE_TAG_NAME (type) = NULL;
2571 }
2572 else
2573 {
2574 TYPE_FLAGS (type) |= TYPE_FLAG_TARGET_STUB;
2575 TYPE_TARGET_TYPE (type) = xtype;
2576 }
2577 }
2578 break;
2579
2580 /* In the following types, we must be sure to overwrite any existing
2581 type that the typenums refer to, rather than allocating a new one
2582 and making the typenums point to the new one. This is because there
2583 may already be pointers to the existing type (if it had been
2584 forward-referenced), and we must change it to a pointer, function,
2585 reference, or whatever, *in-place*. */
2586
2587 case '*': /* Pointer to another type */
2588 type1 = read_type (pp, objfile);
2589 type = make_pointer_type (type1, dbx_lookup_type (typenums));
2590 break;
2591
2592 case '&': /* Reference to another type */
2593 type1 = read_type (pp, objfile);
2594 type = make_reference_type (type1, dbx_lookup_type (typenums));
2595 break;
2596
2597 case 'f': /* Function returning another type */
2598 #if 0 /* OBSOLETE OS9K */
2599 // OBSOLETE if (os9k_stabs && **pp == '(')
2600 // OBSOLETE {
2601 // OBSOLETE /* Function prototype; parse it.
2602 // OBSOLETE We must conditionalize this on os9k_stabs because otherwise
2603 // OBSOLETE it could be confused with a Sun-style (1,3) typenumber
2604 // OBSOLETE (I think). */
2605 // OBSOLETE struct type *t;
2606 // OBSOLETE ++*pp;
2607 // OBSOLETE while (**pp != ')')
2608 // OBSOLETE {
2609 // OBSOLETE t = read_type (pp, objfile);
2610 // OBSOLETE if (**pp == ',')
2611 // OBSOLETE ++ * pp;
2612 // OBSOLETE }
2613 // OBSOLETE }
2614 #endif /* OBSOLETE OS9K */
2615
2616 type1 = read_type (pp, objfile);
2617 type = make_function_type (type1, dbx_lookup_type (typenums));
2618 break;
2619
2620 case 'g': /* Prototyped function. (Sun) */
2621 {
2622 /* Unresolved questions:
2623
2624 - According to Sun's ``STABS Interface Manual'', for 'f'
2625 and 'F' symbol descriptors, a `0' in the argument type list
2626 indicates a varargs function. But it doesn't say how 'g'
2627 type descriptors represent that info. Someone with access
2628 to Sun's toolchain should try it out.
2629
2630 - According to the comment in define_symbol (search for
2631 `process_prototype_types:'), Sun emits integer arguments as
2632 types which ref themselves --- like `void' types. Do we
2633 have to deal with that here, too? Again, someone with
2634 access to Sun's toolchain should try it out and let us
2635 know. */
2636
2637 const char *type_start = (*pp) - 1;
2638 struct type *return_type = read_type (pp, objfile);
2639 struct type *func_type
2640 = make_function_type (return_type, dbx_lookup_type (typenums));
2641 struct type_list {
2642 struct type *type;
2643 struct type_list *next;
2644 } *arg_types = 0;
2645 int num_args = 0;
2646
2647 while (**pp && **pp != '#')
2648 {
2649 struct type *arg_type = read_type (pp, objfile);
2650 struct type_list *new = alloca (sizeof (*new));
2651 new->type = arg_type;
2652 new->next = arg_types;
2653 arg_types = new;
2654 num_args++;
2655 }
2656 if (**pp == '#')
2657 ++*pp;
2658 else
2659 {
2660 static struct complaint msg = {
2661 "Prototyped function type didn't end arguments with `#':\n%s",
2662 0, 0
2663 };
2664 complain (&msg, type_start);
2665 }
2666
2667 /* If there is just one argument whose type is `void', then
2668 that's just an empty argument list. */
2669 if (arg_types
2670 && ! arg_types->next
2671 && TYPE_CODE (arg_types->type) == TYPE_CODE_VOID)
2672 num_args = 0;
2673
2674 TYPE_FIELDS (func_type)
2675 = (struct field *) TYPE_ALLOC (func_type,
2676 num_args * sizeof (struct field));
2677 memset (TYPE_FIELDS (func_type), 0, num_args * sizeof (struct field));
2678 {
2679 int i;
2680 struct type_list *t;
2681
2682 /* We stuck each argument type onto the front of the list
2683 when we read it, so the list is reversed. Build the
2684 fields array right-to-left. */
2685 for (t = arg_types, i = num_args - 1; t; t = t->next, i--)
2686 TYPE_FIELD_TYPE (func_type, i) = t->type;
2687 }
2688 TYPE_NFIELDS (func_type) = num_args;
2689 TYPE_FLAGS (func_type) |= TYPE_FLAG_PROTOTYPED;
2690
2691 type = func_type;
2692 break;
2693 }
2694
2695 case 'k': /* Const qualifier on some type (Sun) */
2696 #if 0 /* OBSOLETE OS9K */
2697 // OBSOLETE /* ezannoni 2002-07-16: This can be safely deleted, because 'c'
2698 // OBSOLETE means complex type in AIX stabs, while it means const qualifier
2699 // OBSOLETE in os9k stabs. Obviously we were supporting only the os9k meaning.
2700 // OBSOLETE We were erroring out if we were reading AIX stabs. Right now the
2701 // OBSOLETE erroring out will happen in the default clause of the switch. */
2702 // OBSOLETE case 'c': /* Const qualifier on some type (OS9000) */
2703 // OBSOLETE /* Because 'c' means other things to AIX and 'k' is perfectly good,
2704 // OBSOLETE only accept 'c' in the os9k_stabs case. */
2705 // OBSOLETE if (type_descriptor == 'c' && !os9k_stabs)
2706 // OBSOLETE return error_type (pp, objfile);
2707 #endif /* OBSOLETE OS9K */
2708 type = read_type (pp, objfile);
2709 type = make_cv_type (1, TYPE_VOLATILE (type), type,
2710 dbx_lookup_type (typenums));
2711 break;
2712
2713 case 'B': /* Volatile qual on some type (Sun) */
2714 #if 0 /* OBSOLETE OS9K */
2715 // OBSOLETE /* ezannoni 2002-07-16: This can be safely deleted, because 'i'
2716 // OBSOLETE means imported type in AIX stabs, while it means volatile qualifier
2717 // OBSOLETE in os9k stabs. Obviously we were supporting only the os9k meaning.
2718 // OBSOLETE We were erroring out if we were reading AIX stabs. Right now the
2719 // OBSOLETE erroring out will happen in the default clause of the switch. */
2720 // OBSOLETE case 'i': /* Volatile qual on some type (OS9000) */
2721 // OBSOLETE /* Because 'i' means other things to AIX and 'B' is perfectly good,
2722 // OBSOLETE only accept 'i' in the os9k_stabs case. */
2723 // OBSOLETE if (type_descriptor == 'i' && !os9k_stabs)
2724 // OBSOLETE return error_type (pp, objfile);
2725 #endif /* OBSOLETE OS9K */
2726 type = read_type (pp, objfile);
2727 type = make_cv_type (TYPE_CONST (type), 1, type,
2728 dbx_lookup_type (typenums));
2729 break;
2730
2731 case '@':
2732 if (isdigit (**pp) || **pp == '(' || **pp == '-')
2733 { /* Member (class & variable) type */
2734 /* FIXME -- we should be doing smash_to_XXX types here. */
2735
2736 struct type *domain = read_type (pp, objfile);
2737 struct type *memtype;
2738
2739 if (**pp != ',')
2740 /* Invalid member type data format. */
2741 return error_type (pp, objfile);
2742 ++*pp;
2743
2744 memtype = read_type (pp, objfile);
2745 type = dbx_alloc_type (typenums, objfile);
2746 smash_to_member_type (type, domain, memtype);
2747 }
2748 else
2749 /* type attribute */
2750 {
2751 char *attr = *pp;
2752 /* Skip to the semicolon. */
2753 while (**pp != ';' && **pp != '\0')
2754 ++(*pp);
2755 if (**pp == '\0')
2756 return error_type (pp, objfile);
2757 else
2758 ++ * pp; /* Skip the semicolon. */
2759
2760 switch (*attr)
2761 {
2762 case 's': /* Size attribute */
2763 type_size = atoi (attr + 1);
2764 if (type_size <= 0)
2765 type_size = -1;
2766 break;
2767
2768 case 'S': /* String attribute */
2769 /* FIXME: check to see if following type is array? */
2770 is_string = 1;
2771 break;
2772
2773 case 'V': /* Vector attribute */
2774 /* FIXME: check to see if following type is array? */
2775 is_vector = 1;
2776 break;
2777
2778 default:
2779 /* Ignore unrecognized type attributes, so future compilers
2780 can invent new ones. */
2781 break;
2782 }
2783 ++*pp;
2784 goto again;
2785 }
2786 break;
2787
2788 case '#': /* Method (class & fn) type */
2789 if ((*pp)[0] == '#')
2790 {
2791 /* We'll get the parameter types from the name. */
2792 struct type *return_type;
2793
2794 (*pp)++;
2795 return_type = read_type (pp, objfile);
2796 if (*(*pp)++ != ';')
2797 complain (&invalid_member_complaint, symnum);
2798 type = allocate_stub_method (return_type);
2799 if (typenums[0] != -1)
2800 *dbx_lookup_type (typenums) = type;
2801 }
2802 else
2803 {
2804 struct type *domain = read_type (pp, objfile);
2805 struct type *return_type;
2806 struct field *args;
2807 int nargs, varargs;
2808
2809 if (**pp != ',')
2810 /* Invalid member type data format. */
2811 return error_type (pp, objfile);
2812 else
2813 ++(*pp);
2814
2815 return_type = read_type (pp, objfile);
2816 args = read_args (pp, ';', objfile, &nargs, &varargs);
2817 type = dbx_alloc_type (typenums, objfile);
2818 smash_to_method_type (type, domain, return_type, args,
2819 nargs, varargs);
2820 }
2821 break;
2822
2823 case 'r': /* Range type */
2824 type = read_range_type (pp, typenums, objfile);
2825 if (typenums[0] != -1)
2826 *dbx_lookup_type (typenums) = type;
2827 break;
2828
2829 case 'b':
2830 #if 0 /* OBSOLETE OS9K */
2831 // OBSOLETE if (os9k_stabs)
2832 // OBSOLETE /* Const and volatile qualified type. */
2833 // OBSOLETE type = read_type (pp, objfile);
2834 // OBSOLETE else
2835 #endif /* OBSOLETE OS9K */
2836 {
2837 /* Sun ACC builtin int type */
2838 type = read_sun_builtin_type (pp, typenums, objfile);
2839 if (typenums[0] != -1)
2840 *dbx_lookup_type (typenums) = type;
2841 }
2842 break;
2843
2844 case 'R': /* Sun ACC builtin float type */
2845 type = read_sun_floating_type (pp, typenums, objfile);
2846 if (typenums[0] != -1)
2847 *dbx_lookup_type (typenums) = type;
2848 break;
2849
2850 case 'e': /* Enumeration type */
2851 type = dbx_alloc_type (typenums, objfile);
2852 type = read_enum_type (pp, type, objfile);
2853 if (typenums[0] != -1)
2854 *dbx_lookup_type (typenums) = type;
2855 break;
2856
2857 case 's': /* Struct type */
2858 case 'u': /* Union type */
2859 {
2860 enum type_code type_code = TYPE_CODE_UNDEF;
2861 type = dbx_alloc_type (typenums, objfile);
2862 switch (type_descriptor)
2863 {
2864 case 's':
2865 type_code = TYPE_CODE_STRUCT;
2866 break;
2867 case 'u':
2868 type_code = TYPE_CODE_UNION;
2869 break;
2870 }
2871 type = read_struct_type (pp, type, type_code, objfile);
2872 break;
2873 }
2874
2875 case 'a': /* Array type */
2876 if (**pp != 'r')
2877 return error_type (pp, objfile);
2878 ++*pp;
2879
2880 type = dbx_alloc_type (typenums, objfile);
2881 type = read_array_type (pp, type, objfile);
2882 if (is_string)
2883 TYPE_CODE (type) = TYPE_CODE_STRING;
2884 if (is_vector)
2885 TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
2886 break;
2887
2888 case 'S': /* Set or bitstring type */
2889 type1 = read_type (pp, objfile);
2890 type = create_set_type ((struct type *) NULL, type1);
2891 if (is_string)
2892 TYPE_CODE (type) = TYPE_CODE_BITSTRING;
2893 if (typenums[0] != -1)
2894 *dbx_lookup_type (typenums) = type;
2895 break;
2896
2897 default:
2898 --*pp; /* Go back to the symbol in error */
2899 /* Particularly important if it was \0! */
2900 return error_type (pp, objfile);
2901 }
2902
2903 if (type == 0)
2904 {
2905 warning ("GDB internal error, type is NULL in stabsread.c\n");
2906 return error_type (pp, objfile);
2907 }
2908
2909 /* Size specified in a type attribute overrides any other size. */
2910 if (type_size != -1)
2911 TYPE_LENGTH (type) = (type_size + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
2912
2913 return type;
2914 }
2915 \f
2916 /* RS/6000 xlc/dbx combination uses a set of builtin types, starting from -1.
2917 Return the proper type node for a given builtin type number. */
2918
2919 static struct type *
2920 rs6000_builtin_type (int typenum)
2921 {
2922 /* We recognize types numbered from -NUMBER_RECOGNIZED to -1. */
2923 #define NUMBER_RECOGNIZED 34
2924 /* This includes an empty slot for type number -0. */
2925 static struct type *negative_types[NUMBER_RECOGNIZED + 1];
2926 struct type *rettype = NULL;
2927
2928 if (typenum >= 0 || typenum < -NUMBER_RECOGNIZED)
2929 {
2930 complain (&rs6000_builtin_complaint, typenum);
2931 return builtin_type_error;
2932 }
2933 if (negative_types[-typenum] != NULL)
2934 return negative_types[-typenum];
2935
2936 #if TARGET_CHAR_BIT != 8
2937 #error This code wrong for TARGET_CHAR_BIT not 8
2938 /* These definitions all assume that TARGET_CHAR_BIT is 8. I think
2939 that if that ever becomes not true, the correct fix will be to
2940 make the size in the struct type to be in bits, not in units of
2941 TARGET_CHAR_BIT. */
2942 #endif
2943
2944 switch (-typenum)
2945 {
2946 case 1:
2947 /* The size of this and all the other types are fixed, defined
2948 by the debugging format. If there is a type called "int" which
2949 is other than 32 bits, then it should use a new negative type
2950 number (or avoid negative type numbers for that case).
2951 See stabs.texinfo. */
2952 rettype = init_type (TYPE_CODE_INT, 4, 0, "int", NULL);
2953 break;
2954 case 2:
2955 rettype = init_type (TYPE_CODE_INT, 1, 0, "char", NULL);
2956 break;
2957 case 3:
2958 rettype = init_type (TYPE_CODE_INT, 2, 0, "short", NULL);
2959 break;
2960 case 4:
2961 rettype = init_type (TYPE_CODE_INT, 4, 0, "long", NULL);
2962 break;
2963 case 5:
2964 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
2965 "unsigned char", NULL);
2966 break;
2967 case 6:
2968 rettype = init_type (TYPE_CODE_INT, 1, 0, "signed char", NULL);
2969 break;
2970 case 7:
2971 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
2972 "unsigned short", NULL);
2973 break;
2974 case 8:
2975 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2976 "unsigned int", NULL);
2977 break;
2978 case 9:
2979 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2980 "unsigned", NULL);
2981 case 10:
2982 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
2983 "unsigned long", NULL);
2984 break;
2985 case 11:
2986 rettype = init_type (TYPE_CODE_VOID, 1, 0, "void", NULL);
2987 break;
2988 case 12:
2989 /* IEEE single precision (32 bit). */
2990 rettype = init_type (TYPE_CODE_FLT, 4, 0, "float", NULL);
2991 break;
2992 case 13:
2993 /* IEEE double precision (64 bit). */
2994 rettype = init_type (TYPE_CODE_FLT, 8, 0, "double", NULL);
2995 break;
2996 case 14:
2997 /* This is an IEEE double on the RS/6000, and different machines with
2998 different sizes for "long double" should use different negative
2999 type numbers. See stabs.texinfo. */
3000 rettype = init_type (TYPE_CODE_FLT, 8, 0, "long double", NULL);
3001 break;
3002 case 15:
3003 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer", NULL);
3004 break;
3005 case 16:
3006 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
3007 "boolean", NULL);
3008 break;
3009 case 17:
3010 rettype = init_type (TYPE_CODE_FLT, 4, 0, "short real", NULL);
3011 break;
3012 case 18:
3013 rettype = init_type (TYPE_CODE_FLT, 8, 0, "real", NULL);
3014 break;
3015 case 19:
3016 rettype = init_type (TYPE_CODE_ERROR, 0, 0, "stringptr", NULL);
3017 break;
3018 case 20:
3019 rettype = init_type (TYPE_CODE_CHAR, 1, TYPE_FLAG_UNSIGNED,
3020 "character", NULL);
3021 break;
3022 case 21:
3023 rettype = init_type (TYPE_CODE_BOOL, 1, TYPE_FLAG_UNSIGNED,
3024 "logical*1", NULL);
3025 break;
3026 case 22:
3027 rettype = init_type (TYPE_CODE_BOOL, 2, TYPE_FLAG_UNSIGNED,
3028 "logical*2", NULL);
3029 break;
3030 case 23:
3031 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
3032 "logical*4", NULL);
3033 break;
3034 case 24:
3035 rettype = init_type (TYPE_CODE_BOOL, 4, TYPE_FLAG_UNSIGNED,
3036 "logical", NULL);
3037 break;
3038 case 25:
3039 /* Complex type consisting of two IEEE single precision values. */
3040 rettype = init_type (TYPE_CODE_COMPLEX, 8, 0, "complex", NULL);
3041 TYPE_TARGET_TYPE (rettype) = init_type (TYPE_CODE_FLT, 4, 0, "float",
3042 NULL);
3043 break;
3044 case 26:
3045 /* Complex type consisting of two IEEE double precision values. */
3046 rettype = init_type (TYPE_CODE_COMPLEX, 16, 0, "double complex", NULL);
3047 TYPE_TARGET_TYPE (rettype) = init_type (TYPE_CODE_FLT, 8, 0, "double",
3048 NULL);
3049 break;
3050 case 27:
3051 rettype = init_type (TYPE_CODE_INT, 1, 0, "integer*1", NULL);
3052 break;
3053 case 28:
3054 rettype = init_type (TYPE_CODE_INT, 2, 0, "integer*2", NULL);
3055 break;
3056 case 29:
3057 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer*4", NULL);
3058 break;
3059 case 30:
3060 rettype = init_type (TYPE_CODE_CHAR, 2, 0, "wchar", NULL);
3061 break;
3062 case 31:
3063 rettype = init_type (TYPE_CODE_INT, 8, 0, "long long", NULL);
3064 break;
3065 case 32:
3066 rettype = init_type (TYPE_CODE_INT, 8, TYPE_FLAG_UNSIGNED,
3067 "unsigned long long", NULL);
3068 break;
3069 case 33:
3070 rettype = init_type (TYPE_CODE_INT, 8, TYPE_FLAG_UNSIGNED,
3071 "logical*8", NULL);
3072 break;
3073 case 34:
3074 rettype = init_type (TYPE_CODE_INT, 8, 0, "integer*8", NULL);
3075 break;
3076 }
3077 negative_types[-typenum] = rettype;
3078 return rettype;
3079 }
3080 \f
3081 /* This page contains subroutines of read_type. */
3082
3083 /* Replace *OLD_NAME with the method name portion of PHYSNAME. */
3084
3085 static void
3086 update_method_name_from_physname (char **old_name, char *physname)
3087 {
3088 char *method_name;
3089
3090 method_name = method_name_from_physname (physname);
3091
3092 if (method_name == NULL)
3093 error ("bad physname %s\n", physname);
3094
3095 if (strcmp (*old_name, method_name) != 0)
3096 {
3097 xfree (*old_name);
3098 *old_name = method_name;
3099 }
3100 else
3101 xfree (method_name);
3102 }
3103
3104 /* Read member function stabs info for C++ classes. The form of each member
3105 function data is:
3106
3107 NAME :: TYPENUM[=type definition] ARGS : PHYSNAME ;
3108
3109 An example with two member functions is:
3110
3111 afunc1::20=##15;:i;2A.;afunc2::20:i;2A.;
3112
3113 For the case of overloaded operators, the format is op$::*.funcs, where
3114 $ is the CPLUS_MARKER (usually '$'), `*' holds the place for an operator
3115 name (such as `+=') and `.' marks the end of the operator name.
3116
3117 Returns 1 for success, 0 for failure. */
3118
3119 static int
3120 read_member_functions (struct field_info *fip, char **pp, struct type *type,
3121 struct objfile *objfile)
3122 {
3123 int nfn_fields = 0;
3124 int length = 0;
3125 /* Total number of member functions defined in this class. If the class
3126 defines two `f' functions, and one `g' function, then this will have
3127 the value 3. */
3128 int total_length = 0;
3129 int i;
3130 struct next_fnfield
3131 {
3132 struct next_fnfield *next;
3133 struct fn_field fn_field;
3134 }
3135 *sublist;
3136 struct type *look_ahead_type;
3137 struct next_fnfieldlist *new_fnlist;
3138 struct next_fnfield *new_sublist;
3139 char *main_fn_name;
3140 register char *p;
3141
3142 /* Process each list until we find something that is not a member function
3143 or find the end of the functions. */
3144
3145 while (**pp != ';')
3146 {
3147 /* We should be positioned at the start of the function name.
3148 Scan forward to find the first ':' and if it is not the
3149 first of a "::" delimiter, then this is not a member function. */
3150 p = *pp;
3151 while (*p != ':')
3152 {
3153 p++;
3154 }
3155 if (p[1] != ':')
3156 {
3157 break;
3158 }
3159
3160 sublist = NULL;
3161 look_ahead_type = NULL;
3162 length = 0;
3163
3164 new_fnlist = (struct next_fnfieldlist *)
3165 xmalloc (sizeof (struct next_fnfieldlist));
3166 make_cleanup (xfree, new_fnlist);
3167 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
3168
3169 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && is_cplus_marker ((*pp)[2]))
3170 {
3171 /* This is a completely wierd case. In order to stuff in the
3172 names that might contain colons (the usual name delimiter),
3173 Mike Tiemann defined a different name format which is
3174 signalled if the identifier is "op$". In that case, the
3175 format is "op$::XXXX." where XXXX is the name. This is
3176 used for names like "+" or "=". YUUUUUUUK! FIXME! */
3177 /* This lets the user type "break operator+".
3178 We could just put in "+" as the name, but that wouldn't
3179 work for "*". */
3180 static char opname[32] = "op$";
3181 char *o = opname + 3;
3182
3183 /* Skip past '::'. */
3184 *pp = p + 2;
3185
3186 STABS_CONTINUE (pp, objfile);
3187 p = *pp;
3188 while (*p != '.')
3189 {
3190 *o++ = *p++;
3191 }
3192 main_fn_name = savestring (opname, o - opname);
3193 /* Skip past '.' */
3194 *pp = p + 1;
3195 }
3196 else
3197 {
3198 main_fn_name = savestring (*pp, p - *pp);
3199 /* Skip past '::'. */
3200 *pp = p + 2;
3201 }
3202 new_fnlist->fn_fieldlist.name = main_fn_name;
3203
3204 do
3205 {
3206 new_sublist =
3207 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
3208 make_cleanup (xfree, new_sublist);
3209 memset (new_sublist, 0, sizeof (struct next_fnfield));
3210
3211 /* Check for and handle cretinous dbx symbol name continuation! */
3212 if (look_ahead_type == NULL)
3213 {
3214 /* Normal case. */
3215 STABS_CONTINUE (pp, objfile);
3216
3217 new_sublist->fn_field.type = read_type (pp, objfile);
3218 if (**pp != ':')
3219 {
3220 /* Invalid symtab info for member function. */
3221 return 0;
3222 }
3223 }
3224 else
3225 {
3226 /* g++ version 1 kludge */
3227 new_sublist->fn_field.type = look_ahead_type;
3228 look_ahead_type = NULL;
3229 }
3230
3231 (*pp)++;
3232 p = *pp;
3233 while (*p != ';')
3234 {
3235 p++;
3236 }
3237
3238 /* If this is just a stub, then we don't have the real name here. */
3239
3240 if (TYPE_STUB (new_sublist->fn_field.type))
3241 {
3242 if (!TYPE_DOMAIN_TYPE (new_sublist->fn_field.type))
3243 TYPE_DOMAIN_TYPE (new_sublist->fn_field.type) = type;
3244 new_sublist->fn_field.is_stub = 1;
3245 }
3246 new_sublist->fn_field.physname = savestring (*pp, p - *pp);
3247 *pp = p + 1;
3248
3249 /* Set this member function's visibility fields. */
3250 switch (*(*pp)++)
3251 {
3252 case VISIBILITY_PRIVATE:
3253 new_sublist->fn_field.is_private = 1;
3254 break;
3255 case VISIBILITY_PROTECTED:
3256 new_sublist->fn_field.is_protected = 1;
3257 break;
3258 }
3259
3260 STABS_CONTINUE (pp, objfile);
3261 switch (**pp)
3262 {
3263 case 'A': /* Normal functions. */
3264 new_sublist->fn_field.is_const = 0;
3265 new_sublist->fn_field.is_volatile = 0;
3266 (*pp)++;
3267 break;
3268 case 'B': /* `const' member functions. */
3269 new_sublist->fn_field.is_const = 1;
3270 new_sublist->fn_field.is_volatile = 0;
3271 (*pp)++;
3272 break;
3273 case 'C': /* `volatile' member function. */
3274 new_sublist->fn_field.is_const = 0;
3275 new_sublist->fn_field.is_volatile = 1;
3276 (*pp)++;
3277 break;
3278 case 'D': /* `const volatile' member function. */
3279 new_sublist->fn_field.is_const = 1;
3280 new_sublist->fn_field.is_volatile = 1;
3281 (*pp)++;
3282 break;
3283 case '*': /* File compiled with g++ version 1 -- no info */
3284 case '?':
3285 case '.':
3286 break;
3287 default:
3288 complain (&const_vol_complaint, **pp);
3289 break;
3290 }
3291
3292 switch (*(*pp)++)
3293 {
3294 case '*':
3295 {
3296 int nbits;
3297 /* virtual member function, followed by index.
3298 The sign bit is set to distinguish pointers-to-methods
3299 from virtual function indicies. Since the array is
3300 in words, the quantity must be shifted left by 1
3301 on 16 bit machine, and by 2 on 32 bit machine, forcing
3302 the sign bit out, and usable as a valid index into
3303 the array. Remove the sign bit here. */
3304 new_sublist->fn_field.voffset =
3305 (0x7fffffff & read_huge_number (pp, ';', &nbits)) + 2;
3306 if (nbits != 0)
3307 return 0;
3308
3309 STABS_CONTINUE (pp, objfile);
3310 if (**pp == ';' || **pp == '\0')
3311 {
3312 /* Must be g++ version 1. */
3313 new_sublist->fn_field.fcontext = 0;
3314 }
3315 else
3316 {
3317 /* Figure out from whence this virtual function came.
3318 It may belong to virtual function table of
3319 one of its baseclasses. */
3320 look_ahead_type = read_type (pp, objfile);
3321 if (**pp == ':')
3322 {
3323 /* g++ version 1 overloaded methods. */
3324 }
3325 else
3326 {
3327 new_sublist->fn_field.fcontext = look_ahead_type;
3328 if (**pp != ';')
3329 {
3330 return 0;
3331 }
3332 else
3333 {
3334 ++*pp;
3335 }
3336 look_ahead_type = NULL;
3337 }
3338 }
3339 break;
3340 }
3341 case '?':
3342 /* static member function. */
3343 {
3344 int slen = strlen (main_fn_name);
3345
3346 new_sublist->fn_field.voffset = VOFFSET_STATIC;
3347
3348 /* For static member functions, we can't tell if they
3349 are stubbed, as they are put out as functions, and not as
3350 methods.
3351 GCC v2 emits the fully mangled name if
3352 dbxout.c:flag_minimal_debug is not set, so we have to
3353 detect a fully mangled physname here and set is_stub
3354 accordingly. Fully mangled physnames in v2 start with
3355 the member function name, followed by two underscores.
3356 GCC v3 currently always emits stubbed member functions,
3357 but with fully mangled physnames, which start with _Z. */
3358 if (!(strncmp (new_sublist->fn_field.physname,
3359 main_fn_name, slen) == 0
3360 && new_sublist->fn_field.physname[slen] == '_'
3361 && new_sublist->fn_field.physname[slen + 1] == '_'))
3362 {
3363 new_sublist->fn_field.is_stub = 1;
3364 }
3365 break;
3366 }
3367
3368 default:
3369 /* error */
3370 complain (&member_fn_complaint, (*pp)[-1]);
3371 /* Fall through into normal member function. */
3372
3373 case '.':
3374 /* normal member function. */
3375 new_sublist->fn_field.voffset = 0;
3376 new_sublist->fn_field.fcontext = 0;
3377 break;
3378 }
3379
3380 new_sublist->next = sublist;
3381 sublist = new_sublist;
3382 length++;
3383 STABS_CONTINUE (pp, objfile);
3384 }
3385 while (**pp != ';' && **pp != '\0');
3386
3387 (*pp)++;
3388 STABS_CONTINUE (pp, objfile);
3389
3390 /* Skip GCC 3.X member functions which are duplicates of the callable
3391 constructor/destructor. */
3392 if (strcmp (main_fn_name, "__base_ctor") == 0
3393 || strcmp (main_fn_name, "__base_dtor") == 0
3394 || strcmp (main_fn_name, "__deleting_dtor") == 0)
3395 {
3396 xfree (main_fn_name);
3397 }
3398 else
3399 {
3400 int has_stub = 0;
3401 int has_destructor = 0, has_other = 0;
3402 int is_v3 = 0;
3403 struct next_fnfield *tmp_sublist;
3404
3405 /* Various versions of GCC emit various mostly-useless
3406 strings in the name field for special member functions.
3407
3408 For stub methods, we need to defer correcting the name
3409 until we are ready to unstub the method, because the current
3410 name string is used by gdb_mangle_name. The only stub methods
3411 of concern here are GNU v2 operators; other methods have their
3412 names correct (see caveat below).
3413
3414 For non-stub methods, in GNU v3, we have a complete physname.
3415 Therefore we can safely correct the name now. This primarily
3416 affects constructors and destructors, whose name will be
3417 __comp_ctor or __comp_dtor instead of Foo or ~Foo. Cast
3418 operators will also have incorrect names; for instance,
3419 "operator int" will be named "operator i" (i.e. the type is
3420 mangled).
3421
3422 For non-stub methods in GNU v2, we have no easy way to
3423 know if we have a complete physname or not. For most
3424 methods the result depends on the platform (if CPLUS_MARKER
3425 can be `$' or `.', it will use minimal debug information, or
3426 otherwise the full physname will be included).
3427
3428 Rather than dealing with this, we take a different approach.
3429 For v3 mangled names, we can use the full physname; for v2,
3430 we use cplus_demangle_opname (which is actually v2 specific),
3431 because the only interesting names are all operators - once again
3432 barring the caveat below. Skip this process if any method in the
3433 group is a stub, to prevent our fouling up the workings of
3434 gdb_mangle_name.
3435
3436 The caveat: GCC 2.95.x (and earlier?) put constructors and
3437 destructors in the same method group. We need to split this
3438 into two groups, because they should have different names.
3439 So for each method group we check whether it contains both
3440 routines whose physname appears to be a destructor (the physnames
3441 for and destructors are always provided, due to quirks in v2
3442 mangling) and routines whose physname does not appear to be a
3443 destructor. If so then we break up the list into two halves.
3444 Even if the constructors and destructors aren't in the same group
3445 the destructor will still lack the leading tilde, so that also
3446 needs to be fixed.
3447
3448 So, to summarize what we expect and handle here:
3449
3450 Given Given Real Real Action
3451 method name physname physname method name
3452
3453 __opi [none] __opi__3Foo operator int opname
3454 [now or later]
3455 Foo _._3Foo _._3Foo ~Foo separate and
3456 rename
3457 operator i _ZN3FoocviEv _ZN3FoocviEv operator int demangle
3458 __comp_ctor _ZN3FooC1ERKS_ _ZN3FooC1ERKS_ Foo demangle
3459 */
3460
3461 tmp_sublist = sublist;
3462 while (tmp_sublist != NULL)
3463 {
3464 if (tmp_sublist->fn_field.is_stub)
3465 has_stub = 1;
3466 if (tmp_sublist->fn_field.physname[0] == '_'
3467 && tmp_sublist->fn_field.physname[1] == 'Z')
3468 is_v3 = 1;
3469
3470 if (is_destructor_name (tmp_sublist->fn_field.physname))
3471 has_destructor++;
3472 else
3473 has_other++;
3474
3475 tmp_sublist = tmp_sublist->next;
3476 }
3477
3478 if (has_destructor && has_other)
3479 {
3480 struct next_fnfieldlist *destr_fnlist;
3481 struct next_fnfield *last_sublist;
3482
3483 /* Create a new fn_fieldlist for the destructors. */
3484
3485 destr_fnlist = (struct next_fnfieldlist *)
3486 xmalloc (sizeof (struct next_fnfieldlist));
3487 make_cleanup (xfree, destr_fnlist);
3488 memset (destr_fnlist, 0, sizeof (struct next_fnfieldlist));
3489 destr_fnlist->fn_fieldlist.name
3490 = obconcat (&objfile->type_obstack, "", "~",
3491 new_fnlist->fn_fieldlist.name);
3492
3493 destr_fnlist->fn_fieldlist.fn_fields = (struct fn_field *)
3494 obstack_alloc (&objfile->type_obstack,
3495 sizeof (struct fn_field) * has_destructor);
3496 memset (destr_fnlist->fn_fieldlist.fn_fields, 0,
3497 sizeof (struct fn_field) * has_destructor);
3498 tmp_sublist = sublist;
3499 last_sublist = NULL;
3500 i = 0;
3501 while (tmp_sublist != NULL)
3502 {
3503 if (!is_destructor_name (tmp_sublist->fn_field.physname))
3504 {
3505 tmp_sublist = tmp_sublist->next;
3506 continue;
3507 }
3508
3509 destr_fnlist->fn_fieldlist.fn_fields[i++]
3510 = tmp_sublist->fn_field;
3511 if (last_sublist)
3512 last_sublist->next = tmp_sublist->next;
3513 else
3514 sublist = tmp_sublist->next;
3515 last_sublist = tmp_sublist;
3516 tmp_sublist = tmp_sublist->next;
3517 }
3518
3519 destr_fnlist->fn_fieldlist.length = has_destructor;
3520 destr_fnlist->next = fip->fnlist;
3521 fip->fnlist = destr_fnlist;
3522 nfn_fields++;
3523 total_length += has_destructor;
3524 length -= has_destructor;
3525 }
3526 else if (is_v3)
3527 {
3528 /* v3 mangling prevents the use of abbreviated physnames,
3529 so we can do this here. There are stubbed methods in v3
3530 only:
3531 - in -gstabs instead of -gstabs+
3532 - or for static methods, which are output as a function type
3533 instead of a method type. */
3534
3535 update_method_name_from_physname (&new_fnlist->fn_fieldlist.name,
3536 sublist->fn_field.physname);
3537 }
3538 else if (has_destructor && new_fnlist->fn_fieldlist.name[0] != '~')
3539 {
3540 new_fnlist->fn_fieldlist.name = concat ("~", main_fn_name, NULL);
3541 xfree (main_fn_name);
3542 }
3543 else if (!has_stub)
3544 {
3545 char dem_opname[256];
3546 int ret;
3547 ret = cplus_demangle_opname (new_fnlist->fn_fieldlist.name,
3548 dem_opname, DMGL_ANSI);
3549 if (!ret)
3550 ret = cplus_demangle_opname (new_fnlist->fn_fieldlist.name,
3551 dem_opname, 0);
3552 if (ret)
3553 new_fnlist->fn_fieldlist.name
3554 = obsavestring (dem_opname, strlen (dem_opname),
3555 &objfile->type_obstack);
3556 }
3557
3558 new_fnlist->fn_fieldlist.fn_fields = (struct fn_field *)
3559 obstack_alloc (&objfile->type_obstack,
3560 sizeof (struct fn_field) * length);
3561 memset (new_fnlist->fn_fieldlist.fn_fields, 0,
3562 sizeof (struct fn_field) * length);
3563 for (i = length; (i--, sublist); sublist = sublist->next)
3564 {
3565 new_fnlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
3566 }
3567
3568 new_fnlist->fn_fieldlist.length = length;
3569 new_fnlist->next = fip->fnlist;
3570 fip->fnlist = new_fnlist;
3571 nfn_fields++;
3572 total_length += length;
3573 }
3574 }
3575
3576 if (nfn_fields)
3577 {
3578 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3579 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
3580 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
3581 memset (TYPE_FN_FIELDLISTS (type), 0,
3582 sizeof (struct fn_fieldlist) * nfn_fields);
3583 TYPE_NFN_FIELDS (type) = nfn_fields;
3584 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
3585 }
3586
3587 return 1;
3588 }
3589
3590 /* Special GNU C++ name.
3591
3592 Returns 1 for success, 0 for failure. "failure" means that we can't
3593 keep parsing and it's time for error_type(). */
3594
3595 static int
3596 read_cpp_abbrev (struct field_info *fip, char **pp, struct type *type,
3597 struct objfile *objfile)
3598 {
3599 register char *p;
3600 char *name;
3601 char cpp_abbrev;
3602 struct type *context;
3603
3604 p = *pp;
3605 if (*++p == 'v')
3606 {
3607 name = NULL;
3608 cpp_abbrev = *++p;
3609
3610 *pp = p + 1;
3611
3612 /* At this point, *pp points to something like "22:23=*22...",
3613 where the type number before the ':' is the "context" and
3614 everything after is a regular type definition. Lookup the
3615 type, find it's name, and construct the field name. */
3616
3617 context = read_type (pp, objfile);
3618
3619 switch (cpp_abbrev)
3620 {
3621 case 'f': /* $vf -- a virtual function table pointer */
3622 name = type_name_no_tag (context);
3623 if (name == NULL)
3624 {
3625 name = "";
3626 }
3627 fip->list->field.name =
3628 obconcat (&objfile->type_obstack, vptr_name, name, "");
3629 break;
3630
3631 case 'b': /* $vb -- a virtual bsomethingorother */
3632 name = type_name_no_tag (context);
3633 if (name == NULL)
3634 {
3635 complain (&invalid_cpp_type_complaint, symnum);
3636 name = "FOO";
3637 }
3638 fip->list->field.name =
3639 obconcat (&objfile->type_obstack, vb_name, name, "");
3640 break;
3641
3642 default:
3643 complain (&invalid_cpp_abbrev_complaint, *pp);
3644 fip->list->field.name =
3645 obconcat (&objfile->type_obstack,
3646 "INVALID_CPLUSPLUS_ABBREV", "", "");
3647 break;
3648 }
3649
3650 /* At this point, *pp points to the ':'. Skip it and read the
3651 field type. */
3652
3653 p = ++(*pp);
3654 if (p[-1] != ':')
3655 {
3656 complain (&invalid_cpp_abbrev_complaint, *pp);
3657 return 0;
3658 }
3659 fip->list->field.type = read_type (pp, objfile);
3660 if (**pp == ',')
3661 (*pp)++; /* Skip the comma. */
3662 else
3663 return 0;
3664
3665 {
3666 int nbits;
3667 FIELD_BITPOS (fip->list->field) = read_huge_number (pp, ';', &nbits);
3668 if (nbits != 0)
3669 return 0;
3670 }
3671 /* This field is unpacked. */
3672 FIELD_BITSIZE (fip->list->field) = 0;
3673 fip->list->visibility = VISIBILITY_PRIVATE;
3674 }
3675 else
3676 {
3677 complain (&invalid_cpp_abbrev_complaint, *pp);
3678 /* We have no idea what syntax an unrecognized abbrev would have, so
3679 better return 0. If we returned 1, we would need to at least advance
3680 *pp to avoid an infinite loop. */
3681 return 0;
3682 }
3683 return 1;
3684 }
3685
3686 static void
3687 read_one_struct_field (struct field_info *fip, char **pp, char *p,
3688 struct type *type, struct objfile *objfile)
3689 {
3690 /* The following is code to work around cfront generated stabs.
3691 The stabs contains full mangled name for each field.
3692 We try to demangle the name and extract the field name out of it.
3693 */
3694 if (ARM_DEMANGLING && current_subfile->language == language_cplus)
3695 {
3696 char save_p;
3697 char *dem, *dem_p;
3698 save_p = *p;
3699 *p = '\0';
3700 dem = cplus_demangle (*pp, DMGL_ANSI | DMGL_PARAMS);
3701 if (dem != NULL)
3702 {
3703 dem_p = strrchr (dem, ':');
3704 if (dem_p != 0 && *(dem_p - 1) == ':')
3705 dem_p++;
3706 FIELD_NAME (fip->list->field) =
3707 obsavestring (dem_p, strlen (dem_p), &objfile->type_obstack);
3708 }
3709 else
3710 {
3711 FIELD_NAME (fip->list->field) =
3712 obsavestring (*pp, p - *pp, &objfile->type_obstack);
3713 }
3714 *p = save_p;
3715 }
3716 /* end of code for cfront work around */
3717
3718 else
3719 fip->list->field.name =
3720 obsavestring (*pp, p - *pp, &objfile->type_obstack);
3721 *pp = p + 1;
3722
3723 /* This means we have a visibility for a field coming. */
3724 if (**pp == '/')
3725 {
3726 (*pp)++;
3727 fip->list->visibility = *(*pp)++;
3728 }
3729 else
3730 {
3731 /* normal dbx-style format, no explicit visibility */
3732 fip->list->visibility = VISIBILITY_PUBLIC;
3733 }
3734
3735 fip->list->field.type = read_type (pp, objfile);
3736 if (**pp == ':')
3737 {
3738 p = ++(*pp);
3739 #if 0
3740 /* Possible future hook for nested types. */
3741 if (**pp == '!')
3742 {
3743 fip->list->field.bitpos = (long) -2; /* nested type */
3744 p = ++(*pp);
3745 }
3746 else
3747 ...;
3748 #endif
3749 while (*p != ';')
3750 {
3751 p++;
3752 }
3753 /* Static class member. */
3754 SET_FIELD_PHYSNAME (fip->list->field, savestring (*pp, p - *pp));
3755 *pp = p + 1;
3756 return;
3757 }
3758 else if (**pp != ',')
3759 {
3760 /* Bad structure-type format. */
3761 complain (&stabs_general_complaint, "bad structure-type format");
3762 return;
3763 }
3764
3765 (*pp)++; /* Skip the comma. */
3766
3767 {
3768 int nbits;
3769 FIELD_BITPOS (fip->list->field) = read_huge_number (pp, ',', &nbits);
3770 if (nbits != 0)
3771 {
3772 complain (&stabs_general_complaint, "bad structure-type format");
3773 return;
3774 }
3775 FIELD_BITSIZE (fip->list->field) = read_huge_number (pp, ';', &nbits);
3776 if (nbits != 0)
3777 {
3778 complain (&stabs_general_complaint, "bad structure-type format");
3779 return;
3780 }
3781 }
3782
3783 if (FIELD_BITPOS (fip->list->field) == 0
3784 && FIELD_BITSIZE (fip->list->field) == 0)
3785 {
3786 /* This can happen in two cases: (1) at least for gcc 2.4.5 or so,
3787 it is a field which has been optimized out. The correct stab for
3788 this case is to use VISIBILITY_IGNORE, but that is a recent
3789 invention. (2) It is a 0-size array. For example
3790 union { int num; char str[0]; } foo. Printing "<no value>" for
3791 str in "p foo" is OK, since foo.str (and thus foo.str[3])
3792 will continue to work, and a 0-size array as a whole doesn't
3793 have any contents to print.
3794
3795 I suspect this probably could also happen with gcc -gstabs (not
3796 -gstabs+) for static fields, and perhaps other C++ extensions.
3797 Hopefully few people use -gstabs with gdb, since it is intended
3798 for dbx compatibility. */
3799
3800 /* Ignore this field. */
3801 fip->list->visibility = VISIBILITY_IGNORE;
3802 }
3803 else
3804 {
3805 /* Detect an unpacked field and mark it as such.
3806 dbx gives a bit size for all fields.
3807 Note that forward refs cannot be packed,
3808 and treat enums as if they had the width of ints. */
3809
3810 struct type *field_type = check_typedef (FIELD_TYPE (fip->list->field));
3811
3812 if (TYPE_CODE (field_type) != TYPE_CODE_INT
3813 && TYPE_CODE (field_type) != TYPE_CODE_RANGE
3814 && TYPE_CODE (field_type) != TYPE_CODE_BOOL
3815 && TYPE_CODE (field_type) != TYPE_CODE_ENUM)
3816 {
3817 FIELD_BITSIZE (fip->list->field) = 0;
3818 }
3819 if ((FIELD_BITSIZE (fip->list->field)
3820 == TARGET_CHAR_BIT * TYPE_LENGTH (field_type)
3821 || (TYPE_CODE (field_type) == TYPE_CODE_ENUM
3822 && FIELD_BITSIZE (fip->list->field) == TARGET_INT_BIT)
3823 )
3824 &&
3825 FIELD_BITPOS (fip->list->field) % 8 == 0)
3826 {
3827 FIELD_BITSIZE (fip->list->field) = 0;
3828 }
3829 }
3830 }
3831
3832
3833 /* Read struct or class data fields. They have the form:
3834
3835 NAME : [VISIBILITY] TYPENUM , BITPOS , BITSIZE ;
3836
3837 At the end, we see a semicolon instead of a field.
3838
3839 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
3840 a static field.
3841
3842 The optional VISIBILITY is one of:
3843
3844 '/0' (VISIBILITY_PRIVATE)
3845 '/1' (VISIBILITY_PROTECTED)
3846 '/2' (VISIBILITY_PUBLIC)
3847 '/9' (VISIBILITY_IGNORE)
3848
3849 or nothing, for C style fields with public visibility.
3850
3851 Returns 1 for success, 0 for failure. */
3852
3853 static int
3854 read_struct_fields (struct field_info *fip, char **pp, struct type *type,
3855 struct objfile *objfile)
3856 {
3857 register char *p;
3858 struct nextfield *new;
3859
3860 /* We better set p right now, in case there are no fields at all... */
3861
3862 p = *pp;
3863
3864 /* Read each data member type until we find the terminating ';' at the end of
3865 the data member list, or break for some other reason such as finding the
3866 start of the member function list. */
3867 /* Stab string for structure/union does not end with two ';' in
3868 SUN C compiler 5.3 i.e. F6U2, hence check for end of string. */
3869
3870 while (**pp != ';' && **pp != '\0')
3871 {
3872 #if 0 /* OBSOLETE OS9K */
3873 // OBSOLETE if (os9k_stabs && **pp == ',')
3874 // OBSOLETE break;
3875 #endif /* OBSOLETE OS9K */
3876 STABS_CONTINUE (pp, objfile);
3877 /* Get space to record the next field's data. */
3878 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
3879 make_cleanup (xfree, new);
3880 memset (new, 0, sizeof (struct nextfield));
3881 new->next = fip->list;
3882 fip->list = new;
3883
3884 /* Get the field name. */
3885 p = *pp;
3886
3887 /* If is starts with CPLUS_MARKER it is a special abbreviation,
3888 unless the CPLUS_MARKER is followed by an underscore, in
3889 which case it is just the name of an anonymous type, which we
3890 should handle like any other type name. */
3891
3892 if (is_cplus_marker (p[0]) && p[1] != '_')
3893 {
3894 if (!read_cpp_abbrev (fip, pp, type, objfile))
3895 return 0;
3896 continue;
3897 }
3898
3899 /* Look for the ':' that separates the field name from the field
3900 values. Data members are delimited by a single ':', while member
3901 functions are delimited by a pair of ':'s. When we hit the member
3902 functions (if any), terminate scan loop and return. */
3903
3904 while (*p != ':' && *p != '\0')
3905 {
3906 p++;
3907 }
3908 if (*p == '\0')
3909 return 0;
3910
3911 /* Check to see if we have hit the member functions yet. */
3912 if (p[1] == ':')
3913 {
3914 break;
3915 }
3916 read_one_struct_field (fip, pp, p, type, objfile);
3917 }
3918 if (p[0] == ':' && p[1] == ':')
3919 {
3920 /* (OBSOLETE) chill (OBSOLETE) the list of fields: the last
3921 entry (at the head) is a partially constructed entry which we
3922 now scrub. */
3923 fip->list = fip->list->next;
3924 }
3925 return 1;
3926 }
3927 /* *INDENT-OFF* */
3928 /* The stabs for C++ derived classes contain baseclass information which
3929 is marked by a '!' character after the total size. This function is
3930 called when we encounter the baseclass marker, and slurps up all the
3931 baseclass information.
3932
3933 Immediately following the '!' marker is the number of base classes that
3934 the class is derived from, followed by information for each base class.
3935 For each base class, there are two visibility specifiers, a bit offset
3936 to the base class information within the derived class, a reference to
3937 the type for the base class, and a terminating semicolon.
3938
3939 A typical example, with two base classes, would be "!2,020,19;0264,21;".
3940 ^^ ^ ^ ^ ^ ^ ^
3941 Baseclass information marker __________________|| | | | | | |
3942 Number of baseclasses __________________________| | | | | | |
3943 Visibility specifiers (2) ________________________| | | | | |
3944 Offset in bits from start of class _________________| | | | |
3945 Type number for base class ___________________________| | | |
3946 Visibility specifiers (2) _______________________________| | |
3947 Offset in bits from start of class ________________________| |
3948 Type number of base class ____________________________________|
3949
3950 Return 1 for success, 0 for (error-type-inducing) failure. */
3951 /* *INDENT-ON* */
3952
3953
3954
3955 static int
3956 read_baseclasses (struct field_info *fip, char **pp, struct type *type,
3957 struct objfile *objfile)
3958 {
3959 int i;
3960 struct nextfield *new;
3961
3962 if (**pp != '!')
3963 {
3964 return 1;
3965 }
3966 else
3967 {
3968 /* Skip the '!' baseclass information marker. */
3969 (*pp)++;
3970 }
3971
3972 ALLOCATE_CPLUS_STRUCT_TYPE (type);
3973 {
3974 int nbits;
3975 TYPE_N_BASECLASSES (type) = read_huge_number (pp, ',', &nbits);
3976 if (nbits != 0)
3977 return 0;
3978 }
3979
3980 #if 0
3981 /* Some stupid compilers have trouble with the following, so break
3982 it up into simpler expressions. */
3983 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *)
3984 TYPE_ALLOC (type, B_BYTES (TYPE_N_BASECLASSES (type)));
3985 #else
3986 {
3987 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
3988 char *pointer;
3989
3990 pointer = (char *) TYPE_ALLOC (type, num_bytes);
3991 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
3992 }
3993 #endif /* 0 */
3994
3995 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
3996
3997 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
3998 {
3999 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
4000 make_cleanup (xfree, new);
4001 memset (new, 0, sizeof (struct nextfield));
4002 new->next = fip->list;
4003 fip->list = new;
4004 FIELD_BITSIZE (new->field) = 0; /* this should be an unpacked field! */
4005
4006 STABS_CONTINUE (pp, objfile);
4007 switch (**pp)
4008 {
4009 case '0':
4010 /* Nothing to do. */
4011 break;
4012 case '1':
4013 SET_TYPE_FIELD_VIRTUAL (type, i);
4014 break;
4015 default:
4016 /* Unknown character. Complain and treat it as non-virtual. */
4017 {
4018 static struct complaint msg =
4019 {
4020 "Unknown virtual character `%c' for baseclass", 0, 0};
4021 complain (&msg, **pp);
4022 }
4023 }
4024 ++(*pp);
4025
4026 new->visibility = *(*pp)++;
4027 switch (new->visibility)
4028 {
4029 case VISIBILITY_PRIVATE:
4030 case VISIBILITY_PROTECTED:
4031 case VISIBILITY_PUBLIC:
4032 break;
4033 default:
4034 /* Bad visibility format. Complain and treat it as
4035 public. */
4036 {
4037 static struct complaint msg =
4038 {
4039 "Unknown visibility `%c' for baseclass", 0, 0
4040 };
4041 complain (&msg, new->visibility);
4042 new->visibility = VISIBILITY_PUBLIC;
4043 }
4044 }
4045
4046 {
4047 int nbits;
4048
4049 /* The remaining value is the bit offset of the portion of the object
4050 corresponding to this baseclass. Always zero in the absence of
4051 multiple inheritance. */
4052
4053 FIELD_BITPOS (new->field) = read_huge_number (pp, ',', &nbits);
4054 if (nbits != 0)
4055 return 0;
4056 }
4057
4058 /* The last piece of baseclass information is the type of the
4059 base class. Read it, and remember it's type name as this
4060 field's name. */
4061
4062 new->field.type = read_type (pp, objfile);
4063 new->field.name = type_name_no_tag (new->field.type);
4064
4065 /* skip trailing ';' and bump count of number of fields seen */
4066 if (**pp == ';')
4067 (*pp)++;
4068 else
4069 return 0;
4070 }
4071 return 1;
4072 }
4073
4074 /* The tail end of stabs for C++ classes that contain a virtual function
4075 pointer contains a tilde, a %, and a type number.
4076 The type number refers to the base class (possibly this class itself) which
4077 contains the vtable pointer for the current class.
4078
4079 This function is called when we have parsed all the method declarations,
4080 so we can look for the vptr base class info. */
4081
4082 static int
4083 read_tilde_fields (struct field_info *fip, char **pp, struct type *type,
4084 struct objfile *objfile)
4085 {
4086 register char *p;
4087
4088 STABS_CONTINUE (pp, objfile);
4089
4090 /* If we are positioned at a ';', then skip it. */
4091 if (**pp == ';')
4092 {
4093 (*pp)++;
4094 }
4095
4096 if (**pp == '~')
4097 {
4098 (*pp)++;
4099
4100 if (**pp == '=' || **pp == '+' || **pp == '-')
4101 {
4102 /* Obsolete flags that used to indicate the presence
4103 of constructors and/or destructors. */
4104 (*pp)++;
4105 }
4106
4107 /* Read either a '%' or the final ';'. */
4108 if (*(*pp)++ == '%')
4109 {
4110 /* The next number is the type number of the base class
4111 (possibly our own class) which supplies the vtable for
4112 this class. Parse it out, and search that class to find
4113 its vtable pointer, and install those into TYPE_VPTR_BASETYPE
4114 and TYPE_VPTR_FIELDNO. */
4115
4116 struct type *t;
4117 int i;
4118
4119 t = read_type (pp, objfile);
4120 p = (*pp)++;
4121 while (*p != '\0' && *p != ';')
4122 {
4123 p++;
4124 }
4125 if (*p == '\0')
4126 {
4127 /* Premature end of symbol. */
4128 return 0;
4129 }
4130
4131 TYPE_VPTR_BASETYPE (type) = t;
4132 if (type == t) /* Our own class provides vtbl ptr */
4133 {
4134 for (i = TYPE_NFIELDS (t) - 1;
4135 i >= TYPE_N_BASECLASSES (t);
4136 --i)
4137 {
4138 char *name = TYPE_FIELD_NAME (t, i);
4139 if (!strncmp (name, vptr_name, sizeof (vptr_name) - 2)
4140 && is_cplus_marker (name[sizeof (vptr_name) - 2]))
4141 {
4142 TYPE_VPTR_FIELDNO (type) = i;
4143 goto gotit;
4144 }
4145 }
4146 /* Virtual function table field not found. */
4147 complain (&vtbl_notfound_complaint, TYPE_NAME (type));
4148 return 0;
4149 }
4150 else
4151 {
4152 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
4153 }
4154
4155 gotit:
4156 *pp = p + 1;
4157 }
4158 }
4159 return 1;
4160 }
4161
4162 static int
4163 attach_fn_fields_to_type (struct field_info *fip, register struct type *type)
4164 {
4165 register int n;
4166
4167 for (n = TYPE_NFN_FIELDS (type);
4168 fip->fnlist != NULL;
4169 fip->fnlist = fip->fnlist->next)
4170 {
4171 --n; /* Circumvent Sun3 compiler bug */
4172 TYPE_FN_FIELDLISTS (type)[n] = fip->fnlist->fn_fieldlist;
4173 }
4174 return 1;
4175 }
4176
4177 /* read cfront class static data.
4178 pp points to string starting with the list of static data
4179 eg: A:ZcA;1@Bpub v2@Bvirpri;__ct__1AFv func__1AFv *sfunc__1AFv ;as__1A ;;
4180 ^^^^^^^^
4181
4182 A:ZcA;;foopri__1AFv foopro__1AFv __ct__1AFv __ct__1AFRC1A foopub__1AFv ;;;
4183 ^
4184 */
4185
4186 static int
4187 read_cfront_static_fields (struct field_info *fip, char **pp, struct type *type,
4188 struct objfile *objfile)
4189 {
4190 struct nextfield *new;
4191 struct type *stype;
4192 char *sname;
4193 struct symbol *ref_static = 0;
4194
4195 if (**pp == ';') /* no static data; return */
4196 {
4197 ++(*pp);
4198 return 1;
4199 }
4200
4201 /* Process each field in the list until we find the terminating ";" */
4202
4203 /* eg: p = "as__1A ;;;" */
4204 STABS_CONTINUE (pp, objfile); /* handle \\ */
4205 while (**pp != ';' && (sname = get_substring (pp, ' '), sname))
4206 {
4207 ref_static = lookup_symbol (sname, 0, VAR_NAMESPACE, 0, 0); /*demangled_name */
4208 if (!ref_static)
4209 {
4210 static struct complaint msg =
4211 {"\
4212 Unable to find symbol for static data field %s\n",
4213 0, 0};
4214 complain (&msg, sname);
4215 continue;
4216 }
4217 stype = SYMBOL_TYPE (ref_static);
4218
4219 /* allocate a new fip */
4220 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
4221 make_cleanup (xfree, new);
4222 memset (new, 0, sizeof (struct nextfield));
4223 new->next = fip->list;
4224 fip->list = new;
4225
4226 /* set visibility */
4227 /* FIXME! no way to tell visibility from stabs??? */
4228 new->visibility = VISIBILITY_PUBLIC;
4229
4230 /* set field info into fip */
4231 fip->list->field.type = stype;
4232
4233 /* set bitpos & bitsize */
4234 SET_FIELD_PHYSNAME (fip->list->field, savestring (sname, strlen (sname)));
4235
4236 /* set name field */
4237 /* The following is code to work around cfront generated stabs.
4238 The stabs contains full mangled name for each field.
4239 We try to demangle the name and extract the field name out of it.
4240 */
4241 if (ARM_DEMANGLING)
4242 {
4243 char *dem, *dem_p;
4244 dem = cplus_demangle (sname, DMGL_ANSI | DMGL_PARAMS);
4245 if (dem != NULL)
4246 {
4247 dem_p = strrchr (dem, ':');
4248 if (dem_p != 0 && *(dem_p - 1) == ':')
4249 dem_p++;
4250 fip->list->field.name =
4251 obsavestring (dem_p, strlen (dem_p), &objfile->type_obstack);
4252 }
4253 else
4254 {
4255 fip->list->field.name =
4256 obsavestring (sname, strlen (sname), &objfile->type_obstack);
4257 }
4258 } /* end of code for cfront work around */
4259 } /* loop again for next static field */
4260 return 1;
4261 }
4262
4263 /* Copy structure fields to fip so attach_fields_to_type will work.
4264 type has already been created with the initial instance data fields.
4265 Now we want to be able to add the other members to the class,
4266 so we want to add them back to the fip and reattach them again
4267 once we have collected all the class members. */
4268
4269 static int
4270 copy_cfront_struct_fields (struct field_info *fip, struct type *type,
4271 struct objfile *objfile)
4272 {
4273 int nfields = TYPE_NFIELDS (type);
4274 int i;
4275 struct nextfield *new;
4276
4277 /* Copy the fields into the list of fips and reset the types
4278 to remove the old fields */
4279
4280 for (i = 0; i < nfields; i++)
4281 {
4282 /* allocate a new fip */
4283 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
4284 make_cleanup (xfree, new);
4285 memset (new, 0, sizeof (struct nextfield));
4286 new->next = fip->list;
4287 fip->list = new;
4288
4289 /* copy field info into fip */
4290 new->field = TYPE_FIELD (type, i);
4291 /* set visibility */
4292 if (TYPE_FIELD_PROTECTED (type, i))
4293 new->visibility = VISIBILITY_PROTECTED;
4294 else if (TYPE_FIELD_PRIVATE (type, i))
4295 new->visibility = VISIBILITY_PRIVATE;
4296 else
4297 new->visibility = VISIBILITY_PUBLIC;
4298 }
4299 /* Now delete the fields from the type since we will be
4300 allocing new space once we get the rest of the fields
4301 in attach_fields_to_type.
4302 The pointer TYPE_FIELDS(type) is left dangling but should
4303 be freed later by objstack_free */
4304 TYPE_FIELDS (type) = 0;
4305 TYPE_NFIELDS (type) = 0;
4306
4307 return 1;
4308 }
4309
4310 /* Create the vector of fields, and record how big it is.
4311 We need this info to record proper virtual function table information
4312 for this class's virtual functions. */
4313
4314 static int
4315 attach_fields_to_type (struct field_info *fip, register struct type *type,
4316 struct objfile *objfile)
4317 {
4318 register int nfields = 0;
4319 register int non_public_fields = 0;
4320 register struct nextfield *scan;
4321
4322 /* Count up the number of fields that we have, as well as taking note of
4323 whether or not there are any non-public fields, which requires us to
4324 allocate and build the private_field_bits and protected_field_bits
4325 bitfields. */
4326
4327 for (scan = fip->list; scan != NULL; scan = scan->next)
4328 {
4329 nfields++;
4330 if (scan->visibility != VISIBILITY_PUBLIC)
4331 {
4332 non_public_fields++;
4333 }
4334 }
4335
4336 /* Now we know how many fields there are, and whether or not there are any
4337 non-public fields. Record the field count, allocate space for the
4338 array of fields, and create blank visibility bitfields if necessary. */
4339
4340 TYPE_NFIELDS (type) = nfields;
4341 TYPE_FIELDS (type) = (struct field *)
4342 TYPE_ALLOC (type, sizeof (struct field) * nfields);
4343 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
4344
4345 if (non_public_fields)
4346 {
4347 ALLOCATE_CPLUS_STRUCT_TYPE (type);
4348
4349 TYPE_FIELD_PRIVATE_BITS (type) =
4350 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4351 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
4352
4353 TYPE_FIELD_PROTECTED_BITS (type) =
4354 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4355 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
4356
4357 TYPE_FIELD_IGNORE_BITS (type) =
4358 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
4359 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
4360 }
4361
4362 /* Copy the saved-up fields into the field vector. Start from the head
4363 of the list, adding to the tail of the field array, so that they end
4364 up in the same order in the array in which they were added to the list. */
4365
4366 while (nfields-- > 0)
4367 {
4368 TYPE_FIELD (type, nfields) = fip->list->field;
4369 switch (fip->list->visibility)
4370 {
4371 case VISIBILITY_PRIVATE:
4372 SET_TYPE_FIELD_PRIVATE (type, nfields);
4373 break;
4374
4375 case VISIBILITY_PROTECTED:
4376 SET_TYPE_FIELD_PROTECTED (type, nfields);
4377 break;
4378
4379 case VISIBILITY_IGNORE:
4380 SET_TYPE_FIELD_IGNORE (type, nfields);
4381 break;
4382
4383 case VISIBILITY_PUBLIC:
4384 break;
4385
4386 default:
4387 /* Unknown visibility. Complain and treat it as public. */
4388 {
4389 static struct complaint msg =
4390 {
4391 "Unknown visibility `%c' for field", 0, 0};
4392 complain (&msg, fip->list->visibility);
4393 }
4394 break;
4395 }
4396 fip->list = fip->list->next;
4397 }
4398 return 1;
4399 }
4400
4401
4402 static struct complaint multiply_defined_struct =
4403 {"struct/union type gets multiply defined: %s%s", 0, 0};
4404
4405
4406 /* Complain that the compiler has emitted more than one definition for the
4407 structure type TYPE. */
4408 static void
4409 complain_about_struct_wipeout (struct type *type)
4410 {
4411 char *name = "";
4412 char *kind = "";
4413
4414 if (TYPE_TAG_NAME (type))
4415 {
4416 name = TYPE_TAG_NAME (type);
4417 switch (TYPE_CODE (type))
4418 {
4419 case TYPE_CODE_STRUCT: kind = "struct "; break;
4420 case TYPE_CODE_UNION: kind = "union "; break;
4421 case TYPE_CODE_ENUM: kind = "enum "; break;
4422 default: kind = "";
4423 }
4424 }
4425 else if (TYPE_NAME (type))
4426 {
4427 name = TYPE_NAME (type);
4428 kind = "";
4429 }
4430 else
4431 {
4432 name = "<unknown>";
4433 kind = "";
4434 }
4435
4436 complain (&multiply_defined_struct, kind, name);
4437 }
4438
4439
4440 /* Read the description of a structure (or union type) and return an object
4441 describing the type.
4442
4443 PP points to a character pointer that points to the next unconsumed token
4444 in the the stabs string. For example, given stabs "A:T4=s4a:1,0,32;;",
4445 *PP will point to "4a:1,0,32;;".
4446
4447 TYPE points to an incomplete type that needs to be filled in.
4448
4449 OBJFILE points to the current objfile from which the stabs information is
4450 being read. (Note that it is redundant in that TYPE also contains a pointer
4451 to this same objfile, so it might be a good idea to eliminate it. FIXME).
4452 */
4453
4454 static struct type *
4455 read_struct_type (char **pp, struct type *type, enum type_code type_code,
4456 struct objfile *objfile)
4457 {
4458 struct cleanup *back_to;
4459 struct field_info fi;
4460
4461 fi.list = NULL;
4462 fi.fnlist = NULL;
4463
4464 /* When describing struct/union/class types in stabs, G++ always drops
4465 all qualifications from the name. So if you've got:
4466 struct A { ... struct B { ... }; ... };
4467 then G++ will emit stabs for `struct A::B' that call it simply
4468 `struct B'. Obviously, if you've got a real top-level definition for
4469 `struct B', or other nested definitions, this is going to cause
4470 problems.
4471
4472 Obviously, GDB can't fix this by itself, but it can at least avoid
4473 scribbling on existing structure type objects when new definitions
4474 appear. */
4475 if (! (TYPE_CODE (type) == TYPE_CODE_UNDEF
4476 || TYPE_STUB (type)))
4477 {
4478 complain_about_struct_wipeout (type);
4479
4480 /* It's probably best to return the type unchanged. */
4481 return type;
4482 }
4483
4484 back_to = make_cleanup (null_cleanup, 0);
4485
4486 INIT_CPLUS_SPECIFIC (type);
4487 TYPE_CODE (type) = type_code;
4488 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
4489
4490 /* First comes the total size in bytes. */
4491
4492 {
4493 int nbits;
4494 TYPE_LENGTH (type) = read_huge_number (pp, 0, &nbits);
4495 if (nbits != 0)
4496 return error_type (pp, objfile);
4497 }
4498
4499 /* Now read the baseclasses, if any, read the regular C struct or C++
4500 class member fields, attach the fields to the type, read the C++
4501 member functions, attach them to the type, and then read any tilde
4502 field (baseclass specifier for the class holding the main vtable). */
4503
4504 if (!read_baseclasses (&fi, pp, type, objfile)
4505 || !read_struct_fields (&fi, pp, type, objfile)
4506 || !attach_fields_to_type (&fi, type, objfile)
4507 || !read_member_functions (&fi, pp, type, objfile)
4508 || !attach_fn_fields_to_type (&fi, type)
4509 || !read_tilde_fields (&fi, pp, type, objfile))
4510 {
4511 type = error_type (pp, objfile);
4512 }
4513
4514 do_cleanups (back_to);
4515 return (type);
4516 }
4517
4518 /* Read a definition of an array type,
4519 and create and return a suitable type object.
4520 Also creates a range type which represents the bounds of that
4521 array. */
4522
4523 static struct type *
4524 read_array_type (register char **pp, register struct type *type,
4525 struct objfile *objfile)
4526 {
4527 struct type *index_type, *element_type, *range_type;
4528 int lower, upper;
4529 int adjustable = 0;
4530 int nbits;
4531
4532 /* Format of an array type:
4533 "ar<index type>;lower;upper;<array_contents_type>".
4534 OS9000: "arlower,upper;<array_contents_type>".
4535
4536 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
4537 for these, produce a type like float[][]. */
4538
4539 #if 0 /* OBSOLETE OS9K */
4540 // OBSOLETE if (os9k_stabs)
4541 // OBSOLETE index_type = builtin_type_int;
4542 // OBSOLETE else
4543 #endif /* OBSOLETE OS9K */
4544 {
4545 index_type = read_type (pp, objfile);
4546 if (**pp != ';')
4547 /* Improper format of array type decl. */
4548 return error_type (pp, objfile);
4549 ++*pp;
4550 }
4551
4552 if (!(**pp >= '0' && **pp <= '9') && **pp != '-')
4553 {
4554 (*pp)++;
4555 adjustable = 1;
4556 }
4557 #if 0 /* OBSOLETE OS9K */
4558 // OBSOLETE lower = read_huge_number (pp, os9k_stabs ? ',' : ';', &nbits);
4559 #else /* OBSOLETE OS9K */
4560 lower = read_huge_number (pp, ';', &nbits);
4561 #endif /* OBSOLETE OS9K */
4562
4563 if (nbits != 0)
4564 return error_type (pp, objfile);
4565
4566 if (!(**pp >= '0' && **pp <= '9') && **pp != '-')
4567 {
4568 (*pp)++;
4569 adjustable = 1;
4570 }
4571 upper = read_huge_number (pp, ';', &nbits);
4572 if (nbits != 0)
4573 return error_type (pp, objfile);
4574
4575 element_type = read_type (pp, objfile);
4576
4577 if (adjustable)
4578 {
4579 lower = 0;
4580 upper = -1;
4581 }
4582
4583 range_type =
4584 create_range_type ((struct type *) NULL, index_type, lower, upper);
4585 type = create_array_type (type, element_type, range_type);
4586
4587 return type;
4588 }
4589
4590
4591 /* Read a definition of an enumeration type,
4592 and create and return a suitable type object.
4593 Also defines the symbols that represent the values of the type. */
4594
4595 static struct type *
4596 read_enum_type (register char **pp, register struct type *type,
4597 struct objfile *objfile)
4598 {
4599 register char *p;
4600 char *name;
4601 register long n;
4602 register struct symbol *sym;
4603 int nsyms = 0;
4604 struct pending **symlist;
4605 struct pending *osyms, *syms;
4606 int o_nsyms;
4607 int nbits;
4608 int unsigned_enum = 1;
4609
4610 #if 0
4611 /* FIXME! The stabs produced by Sun CC merrily define things that ought
4612 to be file-scope, between N_FN entries, using N_LSYM. What's a mother
4613 to do? For now, force all enum values to file scope. */
4614 if (within_function)
4615 symlist = &local_symbols;
4616 else
4617 #endif
4618 symlist = &file_symbols;
4619 osyms = *symlist;
4620 o_nsyms = osyms ? osyms->nsyms : 0;
4621
4622 #if 0 /* OBSOLETE OS9K */
4623 // OBSOLETE if (os9k_stabs)
4624 // OBSOLETE {
4625 // OBSOLETE /* Size. Perhaps this does not have to be conditionalized on
4626 // OBSOLETE os9k_stabs (assuming the name of an enum constant can't start
4627 // OBSOLETE with a digit). */
4628 // OBSOLETE read_huge_number (pp, 0, &nbits);
4629 // OBSOLETE if (nbits != 0)
4630 // OBSOLETE return error_type (pp, objfile);
4631 // OBSOLETE }
4632 #endif /* OBSOLETE OS9K */
4633
4634 /* The aix4 compiler emits an extra field before the enum members;
4635 my guess is it's a type of some sort. Just ignore it. */
4636 if (**pp == '-')
4637 {
4638 /* Skip over the type. */
4639 while (**pp != ':')
4640 (*pp)++;
4641
4642 /* Skip over the colon. */
4643 (*pp)++;
4644 }
4645
4646 /* Read the value-names and their values.
4647 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
4648 A semicolon or comma instead of a NAME means the end. */
4649 while (**pp && **pp != ';' && **pp != ',')
4650 {
4651 STABS_CONTINUE (pp, objfile);
4652 p = *pp;
4653 while (*p != ':')
4654 p++;
4655 name = obsavestring (*pp, p - *pp, &objfile->symbol_obstack);
4656 *pp = p + 1;
4657 n = read_huge_number (pp, ',', &nbits);
4658 if (nbits != 0)
4659 return error_type (pp, objfile);
4660
4661 sym = (struct symbol *)
4662 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
4663 memset (sym, 0, sizeof (struct symbol));
4664 SYMBOL_NAME (sym) = name;
4665 SYMBOL_LANGUAGE (sym) = current_subfile->language;
4666 SYMBOL_CLASS (sym) = LOC_CONST;
4667 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
4668 SYMBOL_VALUE (sym) = n;
4669 if (n < 0)
4670 unsigned_enum = 0;
4671 add_symbol_to_list (sym, symlist);
4672 nsyms++;
4673 }
4674
4675 if (**pp == ';')
4676 (*pp)++; /* Skip the semicolon. */
4677
4678 /* Now fill in the fields of the type-structure. */
4679
4680 TYPE_LENGTH (type) = TARGET_INT_BIT / HOST_CHAR_BIT;
4681 TYPE_CODE (type) = TYPE_CODE_ENUM;
4682 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
4683 if (unsigned_enum)
4684 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
4685 TYPE_NFIELDS (type) = nsyms;
4686 TYPE_FIELDS (type) = (struct field *)
4687 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
4688 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nsyms);
4689
4690 /* Find the symbols for the values and put them into the type.
4691 The symbols can be found in the symlist that we put them on
4692 to cause them to be defined. osyms contains the old value
4693 of that symlist; everything up to there was defined by us. */
4694 /* Note that we preserve the order of the enum constants, so
4695 that in something like "enum {FOO, LAST_THING=FOO}" we print
4696 FOO, not LAST_THING. */
4697
4698 for (syms = *symlist, n = nsyms - 1; syms; syms = syms->next)
4699 {
4700 int last = syms == osyms ? o_nsyms : 0;
4701 int j = syms->nsyms;
4702 for (; --j >= last; --n)
4703 {
4704 struct symbol *xsym = syms->symbol[j];
4705 SYMBOL_TYPE (xsym) = type;
4706 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
4707 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
4708 TYPE_FIELD_BITSIZE (type, n) = 0;
4709 }
4710 if (syms == osyms)
4711 break;
4712 }
4713
4714 return type;
4715 }
4716
4717 /* Sun's ACC uses a somewhat saner method for specifying the builtin
4718 typedefs in every file (for int, long, etc):
4719
4720 type = b <signed> <width> <format type>; <offset>; <nbits>
4721 signed = u or s.
4722 optional format type = c or b for char or boolean.
4723 offset = offset from high order bit to start bit of type.
4724 width is # bytes in object of this type, nbits is # bits in type.
4725
4726 The width/offset stuff appears to be for small objects stored in
4727 larger ones (e.g. `shorts' in `int' registers). We ignore it for now,
4728 FIXME. */
4729
4730 static struct type *
4731 read_sun_builtin_type (char **pp, int typenums[2], struct objfile *objfile)
4732 {
4733 int type_bits;
4734 int nbits;
4735 int signed_type;
4736 enum type_code code = TYPE_CODE_INT;
4737
4738 switch (**pp)
4739 {
4740 case 's':
4741 signed_type = 1;
4742 break;
4743 case 'u':
4744 signed_type = 0;
4745 break;
4746 default:
4747 return error_type (pp, objfile);
4748 }
4749 (*pp)++;
4750
4751 /* For some odd reason, all forms of char put a c here. This is strange
4752 because no other type has this honor. We can safely ignore this because
4753 we actually determine 'char'acterness by the number of bits specified in
4754 the descriptor.
4755 Boolean forms, e.g Fortran logical*X, put a b here. */
4756
4757 if (**pp == 'c')
4758 (*pp)++;
4759 else if (**pp == 'b')
4760 {
4761 code = TYPE_CODE_BOOL;
4762 (*pp)++;
4763 }
4764
4765 /* The first number appears to be the number of bytes occupied
4766 by this type, except that unsigned short is 4 instead of 2.
4767 Since this information is redundant with the third number,
4768 we will ignore it. */
4769 read_huge_number (pp, ';', &nbits);
4770 if (nbits != 0)
4771 return error_type (pp, objfile);
4772
4773 /* The second number is always 0, so ignore it too. */
4774 read_huge_number (pp, ';', &nbits);
4775 if (nbits != 0)
4776 return error_type (pp, objfile);
4777
4778 /* The third number is the number of bits for this type. */
4779 type_bits = read_huge_number (pp, 0, &nbits);
4780 if (nbits != 0)
4781 return error_type (pp, objfile);
4782 /* The type *should* end with a semicolon. If it are embedded
4783 in a larger type the semicolon may be the only way to know where
4784 the type ends. If this type is at the end of the stabstring we
4785 can deal with the omitted semicolon (but we don't have to like
4786 it). Don't bother to complain(), Sun's compiler omits the semicolon
4787 for "void". */
4788 if (**pp == ';')
4789 ++(*pp);
4790
4791 if (type_bits == 0)
4792 return init_type (TYPE_CODE_VOID, 1,
4793 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *) NULL,
4794 objfile);
4795 else
4796 return init_type (code,
4797 type_bits / TARGET_CHAR_BIT,
4798 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *) NULL,
4799 objfile);
4800 }
4801
4802 static struct type *
4803 read_sun_floating_type (char **pp, int typenums[2], struct objfile *objfile)
4804 {
4805 int nbits;
4806 int details;
4807 int nbytes;
4808 struct type *rettype;
4809
4810 /* The first number has more details about the type, for example
4811 FN_COMPLEX. */
4812 details = read_huge_number (pp, ';', &nbits);
4813 if (nbits != 0)
4814 return error_type (pp, objfile);
4815
4816 /* The second number is the number of bytes occupied by this type */
4817 nbytes = read_huge_number (pp, ';', &nbits);
4818 if (nbits != 0)
4819 return error_type (pp, objfile);
4820
4821 if (details == NF_COMPLEX || details == NF_COMPLEX16
4822 || details == NF_COMPLEX32)
4823 {
4824 rettype = init_type (TYPE_CODE_COMPLEX, nbytes, 0, NULL, objfile);
4825 TYPE_TARGET_TYPE (rettype)
4826 = init_type (TYPE_CODE_FLT, nbytes / 2, 0, NULL, objfile);
4827 return rettype;
4828 }
4829
4830 return init_type (TYPE_CODE_FLT, nbytes, 0, NULL, objfile);
4831 }
4832
4833 /* Read a number from the string pointed to by *PP.
4834 The value of *PP is advanced over the number.
4835 If END is nonzero, the character that ends the
4836 number must match END, or an error happens;
4837 and that character is skipped if it does match.
4838 If END is zero, *PP is left pointing to that character.
4839
4840 If the number fits in a long, set *BITS to 0 and return the value.
4841 If not, set *BITS to be the number of bits in the number and return 0.
4842
4843 If encounter garbage, set *BITS to -1 and return 0. */
4844
4845 static long
4846 read_huge_number (char **pp, int end, int *bits)
4847 {
4848 char *p = *pp;
4849 int sign = 1;
4850 long n = 0;
4851 int radix = 10;
4852 char overflow = 0;
4853 int nbits = 0;
4854 int c;
4855 long upper_limit;
4856
4857 if (*p == '-')
4858 {
4859 sign = -1;
4860 p++;
4861 }
4862
4863 /* Leading zero means octal. GCC uses this to output values larger
4864 than an int (because that would be hard in decimal). */
4865 if (*p == '0')
4866 {
4867 radix = 8;
4868 p++;
4869 }
4870
4871 #if 0 /* OBSOLETE OS9K */
4872 // OBSOLETE if (os9k_stabs)
4873 // OBSOLETE upper_limit = ULONG_MAX / radix;
4874 // OBSOLETE else
4875 #endif /* OBSOLETE OS9K */
4876 upper_limit = LONG_MAX / radix;
4877
4878 while ((c = *p++) >= '0' && c < ('0' + radix))
4879 {
4880 if (n <= upper_limit)
4881 {
4882 n *= radix;
4883 n += c - '0'; /* FIXME this overflows anyway */
4884 }
4885 else
4886 overflow = 1;
4887
4888 /* This depends on large values being output in octal, which is
4889 what GCC does. */
4890 if (radix == 8)
4891 {
4892 if (nbits == 0)
4893 {
4894 if (c == '0')
4895 /* Ignore leading zeroes. */
4896 ;
4897 else if (c == '1')
4898 nbits = 1;
4899 else if (c == '2' || c == '3')
4900 nbits = 2;
4901 else
4902 nbits = 3;
4903 }
4904 else
4905 nbits += 3;
4906 }
4907 }
4908 if (end)
4909 {
4910 if (c && c != end)
4911 {
4912 if (bits != NULL)
4913 *bits = -1;
4914 return 0;
4915 }
4916 }
4917 else
4918 --p;
4919
4920 *pp = p;
4921 if (overflow)
4922 {
4923 if (nbits == 0)
4924 {
4925 /* Large decimal constants are an error (because it is hard to
4926 count how many bits are in them). */
4927 if (bits != NULL)
4928 *bits = -1;
4929 return 0;
4930 }
4931
4932 /* -0x7f is the same as 0x80. So deal with it by adding one to
4933 the number of bits. */
4934 if (sign == -1)
4935 ++nbits;
4936 if (bits)
4937 *bits = nbits;
4938 }
4939 else
4940 {
4941 if (bits)
4942 *bits = 0;
4943 return n * sign;
4944 }
4945 /* It's *BITS which has the interesting information. */
4946 return 0;
4947 }
4948
4949 static struct type *
4950 read_range_type (char **pp, int typenums[2], struct objfile *objfile)
4951 {
4952 char *orig_pp = *pp;
4953 int rangenums[2];
4954 long n2, n3;
4955 int n2bits, n3bits;
4956 int self_subrange;
4957 struct type *result_type;
4958 struct type *index_type = NULL;
4959
4960 /* First comes a type we are a subrange of.
4961 In C it is usually 0, 1 or the type being defined. */
4962 if (read_type_number (pp, rangenums) != 0)
4963 return error_type (pp, objfile);
4964 self_subrange = (rangenums[0] == typenums[0] &&
4965 rangenums[1] == typenums[1]);
4966
4967 if (**pp == '=')
4968 {
4969 *pp = orig_pp;
4970 index_type = read_type (pp, objfile);
4971 }
4972
4973 /* A semicolon should now follow; skip it. */
4974 if (**pp == ';')
4975 (*pp)++;
4976
4977 /* The remaining two operands are usually lower and upper bounds
4978 of the range. But in some special cases they mean something else. */
4979 n2 = read_huge_number (pp, ';', &n2bits);
4980 n3 = read_huge_number (pp, ';', &n3bits);
4981
4982 if (n2bits == -1 || n3bits == -1)
4983 return error_type (pp, objfile);
4984
4985 if (index_type)
4986 goto handle_true_range;
4987
4988 /* If limits are huge, must be large integral type. */
4989 if (n2bits != 0 || n3bits != 0)
4990 {
4991 char got_signed = 0;
4992 char got_unsigned = 0;
4993 /* Number of bits in the type. */
4994 int nbits = 0;
4995
4996 /* Range from 0 to <large number> is an unsigned large integral type. */
4997 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
4998 {
4999 got_unsigned = 1;
5000 nbits = n3bits;
5001 }
5002 /* Range from <large number> to <large number>-1 is a large signed
5003 integral type. Take care of the case where <large number> doesn't
5004 fit in a long but <large number>-1 does. */
5005 else if ((n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
5006 || (n2bits != 0 && n3bits == 0
5007 && (n2bits == sizeof (long) * HOST_CHAR_BIT)
5008 && n3 == LONG_MAX))
5009 {
5010 got_signed = 1;
5011 nbits = n2bits;
5012 }
5013
5014 if (got_signed || got_unsigned)
5015 {
5016 return init_type (TYPE_CODE_INT, nbits / TARGET_CHAR_BIT,
5017 got_unsigned ? TYPE_FLAG_UNSIGNED : 0, NULL,
5018 objfile);
5019 }
5020 else
5021 return error_type (pp, objfile);
5022 }
5023
5024 /* A type defined as a subrange of itself, with bounds both 0, is void. */
5025 if (self_subrange && n2 == 0 && n3 == 0)
5026 return init_type (TYPE_CODE_VOID, 1, 0, NULL, objfile);
5027
5028 /* If n3 is zero and n2 is positive, we want a floating type, and n2
5029 is the width in bytes.
5030
5031 Fortran programs appear to use this for complex types also. To
5032 distinguish between floats and complex, g77 (and others?) seem
5033 to use self-subranges for the complexes, and subranges of int for
5034 the floats.
5035
5036 Also note that for complexes, g77 sets n2 to the size of one of
5037 the member floats, not the whole complex beast. My guess is that
5038 this was to work well with pre-COMPLEX versions of gdb. */
5039
5040 if (n3 == 0 && n2 > 0)
5041 {
5042 struct type *float_type
5043 = init_type (TYPE_CODE_FLT, n2, 0, NULL, objfile);
5044
5045 if (self_subrange)
5046 {
5047 struct type *complex_type =
5048 init_type (TYPE_CODE_COMPLEX, 2 * n2, 0, NULL, objfile);
5049 TYPE_TARGET_TYPE (complex_type) = float_type;
5050 return complex_type;
5051 }
5052 else
5053 return float_type;
5054 }
5055
5056 /* If the upper bound is -1, it must really be an unsigned int. */
5057
5058 else if (n2 == 0 && n3 == -1)
5059 {
5060 /* It is unsigned int or unsigned long. */
5061 /* GCC 2.3.3 uses this for long long too, but that is just a GDB 3.5
5062 compatibility hack. */
5063 return init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
5064 TYPE_FLAG_UNSIGNED, NULL, objfile);
5065 }
5066
5067 /* Special case: char is defined (Who knows why) as a subrange of
5068 itself with range 0-127. */
5069 else if (self_subrange && n2 == 0 && n3 == 127)
5070 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
5071
5072 #if 0
5073 /* OBSOLETE else if (current_symbol && SYMBOL_LANGUAGE (current_symbol) == language_chill */
5074 /* OBSOLETE && !self_subrange) */
5075 /* OBSOLETE goto handle_true_range; */
5076 #endif
5077
5078 /* We used to do this only for subrange of self or subrange of int. */
5079 else if (n2 == 0)
5080 {
5081 /* -1 is used for the upper bound of (4 byte) "unsigned int" and
5082 "unsigned long", and we already checked for that,
5083 so don't need to test for it here. */
5084
5085 if (n3 < 0)
5086 /* n3 actually gives the size. */
5087 return init_type (TYPE_CODE_INT, -n3, TYPE_FLAG_UNSIGNED,
5088 NULL, objfile);
5089
5090 /* Is n3 == 2**(8n)-1 for some integer n? Then it's an
5091 unsigned n-byte integer. But do require n to be a power of
5092 two; we don't want 3- and 5-byte integers flying around. */
5093 {
5094 int bytes;
5095 unsigned long bits;
5096
5097 bits = n3;
5098 for (bytes = 0; (bits & 0xff) == 0xff; bytes++)
5099 bits >>= 8;
5100 if (bits == 0
5101 && ((bytes - 1) & bytes) == 0) /* "bytes is a power of two" */
5102 return init_type (TYPE_CODE_INT, bytes, TYPE_FLAG_UNSIGNED, NULL,
5103 objfile);
5104 }
5105 }
5106 /* I think this is for Convex "long long". Since I don't know whether
5107 Convex sets self_subrange, I also accept that particular size regardless
5108 of self_subrange. */
5109 else if (n3 == 0 && n2 < 0
5110 && (self_subrange
5111 || n2 == -TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT))
5112 return init_type (TYPE_CODE_INT, -n2, 0, NULL, objfile);
5113 else if (n2 == -n3 - 1)
5114 {
5115 if (n3 == 0x7f)
5116 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
5117 if (n3 == 0x7fff)
5118 return init_type (TYPE_CODE_INT, 2, 0, NULL, objfile);
5119 if (n3 == 0x7fffffff)
5120 return init_type (TYPE_CODE_INT, 4, 0, NULL, objfile);
5121 }
5122
5123 /* We have a real range type on our hands. Allocate space and
5124 return a real pointer. */
5125 handle_true_range:
5126
5127 if (self_subrange)
5128 index_type = builtin_type_int;
5129 else
5130 index_type = *dbx_lookup_type (rangenums);
5131 if (index_type == NULL)
5132 {
5133 /* Does this actually ever happen? Is that why we are worrying
5134 about dealing with it rather than just calling error_type? */
5135
5136 static struct type *range_type_index;
5137
5138 complain (&range_type_base_complaint, rangenums[1]);
5139 if (range_type_index == NULL)
5140 range_type_index =
5141 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
5142 0, "range type index type", NULL);
5143 index_type = range_type_index;
5144 }
5145
5146 result_type = create_range_type ((struct type *) NULL, index_type, n2, n3);
5147 return (result_type);
5148 }
5149
5150 /* Read in an argument list. This is a list of types, separated by commas
5151 and terminated with END. Return the list of types read in, or (struct type
5152 **)-1 if there is an error. */
5153
5154 static struct field *
5155 read_args (char **pp, int end, struct objfile *objfile, int *nargsp,
5156 int *varargsp)
5157 {
5158 /* FIXME! Remove this arbitrary limit! */
5159 struct type *types[1024]; /* allow for fns of 1023 parameters */
5160 int n = 0, i;
5161 struct field *rval;
5162
5163 while (**pp != end)
5164 {
5165 if (**pp != ',')
5166 /* Invalid argument list: no ','. */
5167 return (struct field *) -1;
5168 (*pp)++;
5169 STABS_CONTINUE (pp, objfile);
5170 types[n++] = read_type (pp, objfile);
5171 }
5172 (*pp)++; /* get past `end' (the ':' character) */
5173
5174 if (TYPE_CODE (types[n - 1]) != TYPE_CODE_VOID)
5175 *varargsp = 1;
5176 else
5177 {
5178 n--;
5179 *varargsp = 0;
5180 }
5181
5182 rval = (struct field *) xmalloc (n * sizeof (struct field));
5183 memset (rval, 0, n * sizeof (struct field));
5184 for (i = 0; i < n; i++)
5185 rval[i].type = types[i];
5186 *nargsp = n;
5187 return rval;
5188 }
5189 \f
5190 /* Common block handling. */
5191
5192 /* List of symbols declared since the last BCOMM. This list is a tail
5193 of local_symbols. When ECOMM is seen, the symbols on the list
5194 are noted so their proper addresses can be filled in later,
5195 using the common block base address gotten from the assembler
5196 stabs. */
5197
5198 static struct pending *common_block;
5199 static int common_block_i;
5200
5201 /* Name of the current common block. We get it from the BCOMM instead of the
5202 ECOMM to match IBM documentation (even though IBM puts the name both places
5203 like everyone else). */
5204 static char *common_block_name;
5205
5206 /* Process a N_BCOMM symbol. The storage for NAME is not guaranteed
5207 to remain after this function returns. */
5208
5209 void
5210 common_block_start (char *name, struct objfile *objfile)
5211 {
5212 if (common_block_name != NULL)
5213 {
5214 static struct complaint msg =
5215 {
5216 "Invalid symbol data: common block within common block",
5217 0, 0};
5218 complain (&msg);
5219 }
5220 common_block = local_symbols;
5221 common_block_i = local_symbols ? local_symbols->nsyms : 0;
5222 common_block_name = obsavestring (name, strlen (name),
5223 &objfile->symbol_obstack);
5224 }
5225
5226 /* Process a N_ECOMM symbol. */
5227
5228 void
5229 common_block_end (struct objfile *objfile)
5230 {
5231 /* Symbols declared since the BCOMM are to have the common block
5232 start address added in when we know it. common_block and
5233 common_block_i point to the first symbol after the BCOMM in
5234 the local_symbols list; copy the list and hang it off the
5235 symbol for the common block name for later fixup. */
5236 int i;
5237 struct symbol *sym;
5238 struct pending *new = 0;
5239 struct pending *next;
5240 int j;
5241
5242 if (common_block_name == NULL)
5243 {
5244 static struct complaint msg =
5245 {"ECOMM symbol unmatched by BCOMM", 0, 0};
5246 complain (&msg);
5247 return;
5248 }
5249
5250 sym = (struct symbol *)
5251 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
5252 memset (sym, 0, sizeof (struct symbol));
5253 /* Note: common_block_name already saved on symbol_obstack */
5254 SYMBOL_NAME (sym) = common_block_name;
5255 SYMBOL_CLASS (sym) = LOC_BLOCK;
5256
5257 /* Now we copy all the symbols which have been defined since the BCOMM. */
5258
5259 /* Copy all the struct pendings before common_block. */
5260 for (next = local_symbols;
5261 next != NULL && next != common_block;
5262 next = next->next)
5263 {
5264 for (j = 0; j < next->nsyms; j++)
5265 add_symbol_to_list (next->symbol[j], &new);
5266 }
5267
5268 /* Copy however much of COMMON_BLOCK we need. If COMMON_BLOCK is
5269 NULL, it means copy all the local symbols (which we already did
5270 above). */
5271
5272 if (common_block != NULL)
5273 for (j = common_block_i; j < common_block->nsyms; j++)
5274 add_symbol_to_list (common_block->symbol[j], &new);
5275
5276 SYMBOL_TYPE (sym) = (struct type *) new;
5277
5278 /* Should we be putting local_symbols back to what it was?
5279 Does it matter? */
5280
5281 i = hashname (SYMBOL_NAME (sym));
5282 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
5283 global_sym_chain[i] = sym;
5284 common_block_name = NULL;
5285 }
5286
5287 /* Add a common block's start address to the offset of each symbol
5288 declared to be in it (by being between a BCOMM/ECOMM pair that uses
5289 the common block name). */
5290
5291 static void
5292 fix_common_block (struct symbol *sym, int valu)
5293 {
5294 struct pending *next = (struct pending *) SYMBOL_TYPE (sym);
5295 for (; next; next = next->next)
5296 {
5297 register int j;
5298 for (j = next->nsyms - 1; j >= 0; j--)
5299 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
5300 }
5301 }
5302 \f
5303
5304
5305 /* What about types defined as forward references inside of a small lexical
5306 scope? */
5307 /* Add a type to the list of undefined types to be checked through
5308 once this file has been read in. */
5309
5310 void
5311 add_undefined_type (struct type *type)
5312 {
5313 if (undef_types_length == undef_types_allocated)
5314 {
5315 undef_types_allocated *= 2;
5316 undef_types = (struct type **)
5317 xrealloc ((char *) undef_types,
5318 undef_types_allocated * sizeof (struct type *));
5319 }
5320 undef_types[undef_types_length++] = type;
5321 }
5322
5323 /* Go through each undefined type, see if it's still undefined, and fix it
5324 up if possible. We have two kinds of undefined types:
5325
5326 TYPE_CODE_ARRAY: Array whose target type wasn't defined yet.
5327 Fix: update array length using the element bounds
5328 and the target type's length.
5329 TYPE_CODE_STRUCT, TYPE_CODE_UNION: Structure whose fields were not
5330 yet defined at the time a pointer to it was made.
5331 Fix: Do a full lookup on the struct/union tag. */
5332 void
5333 cleanup_undefined_types (void)
5334 {
5335 struct type **type;
5336
5337 for (type = undef_types; type < undef_types + undef_types_length; type++)
5338 {
5339 switch (TYPE_CODE (*type))
5340 {
5341
5342 case TYPE_CODE_STRUCT:
5343 case TYPE_CODE_UNION:
5344 case TYPE_CODE_ENUM:
5345 {
5346 /* Check if it has been defined since. Need to do this here
5347 as well as in check_typedef to deal with the (legitimate in
5348 C though not C++) case of several types with the same name
5349 in different source files. */
5350 if (TYPE_STUB (*type))
5351 {
5352 struct pending *ppt;
5353 int i;
5354 /* Name of the type, without "struct" or "union" */
5355 char *typename = TYPE_TAG_NAME (*type);
5356
5357 if (typename == NULL)
5358 {
5359 static struct complaint msg =
5360 {"need a type name", 0, 0};
5361 complain (&msg);
5362 break;
5363 }
5364 for (ppt = file_symbols; ppt; ppt = ppt->next)
5365 {
5366 for (i = 0; i < ppt->nsyms; i++)
5367 {
5368 struct symbol *sym = ppt->symbol[i];
5369
5370 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
5371 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
5372 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
5373 TYPE_CODE (*type))
5374 && STREQ (SYMBOL_NAME (sym), typename))
5375 replace_type (*type, SYMBOL_TYPE (sym));
5376 }
5377 }
5378 }
5379 }
5380 break;
5381
5382 default:
5383 {
5384 static struct complaint msg =
5385 {"\
5386 GDB internal error. cleanup_undefined_types with bad type %d.", 0, 0};
5387 complain (&msg, TYPE_CODE (*type));
5388 }
5389 break;
5390 }
5391 }
5392
5393 undef_types_length = 0;
5394 }
5395
5396 /* Scan through all of the global symbols defined in the object file,
5397 assigning values to the debugging symbols that need to be assigned
5398 to. Get these symbols from the minimal symbol table. */
5399
5400 void
5401 scan_file_globals (struct objfile *objfile)
5402 {
5403 int hash;
5404 struct minimal_symbol *msymbol;
5405 struct symbol *sym, *prev, *rsym;
5406 struct objfile *resolve_objfile;
5407
5408 /* SVR4 based linkers copy referenced global symbols from shared
5409 libraries to the main executable.
5410 If we are scanning the symbols for a shared library, try to resolve
5411 them from the minimal symbols of the main executable first. */
5412
5413 if (symfile_objfile && objfile != symfile_objfile)
5414 resolve_objfile = symfile_objfile;
5415 else
5416 resolve_objfile = objfile;
5417
5418 while (1)
5419 {
5420 /* Avoid expensive loop through all minimal symbols if there are
5421 no unresolved symbols. */
5422 for (hash = 0; hash < HASHSIZE; hash++)
5423 {
5424 if (global_sym_chain[hash])
5425 break;
5426 }
5427 if (hash >= HASHSIZE)
5428 return;
5429
5430 for (msymbol = resolve_objfile->msymbols;
5431 msymbol && SYMBOL_NAME (msymbol) != NULL;
5432 msymbol++)
5433 {
5434 QUIT;
5435
5436 /* Skip static symbols. */
5437 switch (MSYMBOL_TYPE (msymbol))
5438 {
5439 case mst_file_text:
5440 case mst_file_data:
5441 case mst_file_bss:
5442 continue;
5443 default:
5444 break;
5445 }
5446
5447 prev = NULL;
5448
5449 /* Get the hash index and check all the symbols
5450 under that hash index. */
5451
5452 hash = hashname (SYMBOL_NAME (msymbol));
5453
5454 for (sym = global_sym_chain[hash]; sym;)
5455 {
5456 if (SYMBOL_NAME (msymbol)[0] == SYMBOL_NAME (sym)[0] &&
5457 STREQ (SYMBOL_NAME (msymbol) + 1, SYMBOL_NAME (sym) + 1))
5458 {
5459
5460 struct alias_list *aliases;
5461
5462 /* Splice this symbol out of the hash chain and
5463 assign the value we have to it. */
5464 if (prev)
5465 {
5466 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
5467 }
5468 else
5469 {
5470 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
5471 }
5472
5473 /* Check to see whether we need to fix up a common block. */
5474 /* Note: this code might be executed several times for
5475 the same symbol if there are multiple references. */
5476
5477 /* If symbol has aliases, do minimal symbol fixups for each.
5478 These live aliases/references weren't added to
5479 global_sym_chain hash but may also need to be fixed up. */
5480 /* FIXME: Maybe should have added aliases to the global chain, resolved symbol name, then treated aliases as normal
5481 symbols? Still, we wouldn't want to add_to_list. */
5482 /* Now do the same for each alias of this symbol */
5483 rsym = sym;
5484 aliases = SYMBOL_ALIASES (sym);
5485 while (rsym)
5486 {
5487 if (SYMBOL_CLASS (rsym) == LOC_BLOCK)
5488 {
5489 fix_common_block (rsym,
5490 SYMBOL_VALUE_ADDRESS (msymbol));
5491 }
5492 else
5493 {
5494 SYMBOL_VALUE_ADDRESS (rsym)
5495 = SYMBOL_VALUE_ADDRESS (msymbol);
5496 }
5497 SYMBOL_SECTION (rsym) = SYMBOL_SECTION (msymbol);
5498 if (aliases)
5499 {
5500 rsym = aliases->sym;
5501 aliases = aliases->next;
5502 }
5503 else
5504 rsym = NULL;
5505 }
5506
5507
5508 if (prev)
5509 {
5510 sym = SYMBOL_VALUE_CHAIN (prev);
5511 }
5512 else
5513 {
5514 sym = global_sym_chain[hash];
5515 }
5516 }
5517 else
5518 {
5519 prev = sym;
5520 sym = SYMBOL_VALUE_CHAIN (sym);
5521 }
5522 }
5523 }
5524 if (resolve_objfile == objfile)
5525 break;
5526 resolve_objfile = objfile;
5527 }
5528
5529 /* Change the storage class of any remaining unresolved globals to
5530 LOC_UNRESOLVED and remove them from the chain. */
5531 for (hash = 0; hash < HASHSIZE; hash++)
5532 {
5533 sym = global_sym_chain[hash];
5534 while (sym)
5535 {
5536 prev = sym;
5537 sym = SYMBOL_VALUE_CHAIN (sym);
5538
5539 /* Change the symbol address from the misleading chain value
5540 to address zero. */
5541 SYMBOL_VALUE_ADDRESS (prev) = 0;
5542
5543 /* Complain about unresolved common block symbols. */
5544 if (SYMBOL_CLASS (prev) == LOC_STATIC)
5545 SYMBOL_CLASS (prev) = LOC_UNRESOLVED;
5546 else
5547 complain (&unresolved_sym_chain_complaint,
5548 objfile->name, SYMBOL_NAME (prev));
5549 }
5550 }
5551 memset (global_sym_chain, 0, sizeof (global_sym_chain));
5552 }
5553
5554 /* Initialize anything that needs initializing when starting to read
5555 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
5556 to a psymtab. */
5557
5558 void
5559 stabsread_init (void)
5560 {
5561 }
5562
5563 /* Initialize anything that needs initializing when a completely new
5564 symbol file is specified (not just adding some symbols from another
5565 file, e.g. a shared library). */
5566
5567 void
5568 stabsread_new_init (void)
5569 {
5570 /* Empty the hash table of global syms looking for values. */
5571 memset (global_sym_chain, 0, sizeof (global_sym_chain));
5572 }
5573
5574 /* Initialize anything that needs initializing at the same time as
5575 start_symtab() is called. */
5576
5577 void
5578 start_stabs (void)
5579 {
5580 global_stabs = NULL; /* AIX COFF */
5581 /* Leave FILENUM of 0 free for builtin types and this file's types. */
5582 n_this_object_header_files = 1;
5583 type_vector_length = 0;
5584 type_vector = (struct type **) 0;
5585
5586 /* FIXME: If common_block_name is not already NULL, we should complain(). */
5587 common_block_name = NULL;
5588
5589 #if 0 /* OBSOLETE OS9K */
5590 // OBSOLETE os9k_stabs = 0;
5591 #endif /* OBSOLETE OS9K */
5592 }
5593
5594 /* Call after end_symtab() */
5595
5596 void
5597 end_stabs (void)
5598 {
5599 if (type_vector)
5600 {
5601 xfree (type_vector);
5602 }
5603 type_vector = 0;
5604 type_vector_length = 0;
5605 previous_stab_code = 0;
5606 }
5607
5608 void
5609 finish_global_stabs (struct objfile *objfile)
5610 {
5611 if (global_stabs)
5612 {
5613 patch_block_stabs (global_symbols, global_stabs, objfile);
5614 xfree (global_stabs);
5615 global_stabs = NULL;
5616 }
5617 }
5618
5619 /* Initializer for this module */
5620
5621 void
5622 _initialize_stabsread (void)
5623 {
5624 undef_types_allocated = 20;
5625 undef_types_length = 0;
5626 undef_types = (struct type **)
5627 xmalloc (undef_types_allocated * sizeof (struct type *));
5628 }
This page took 0.144167 seconds and 4 git commands to generate.