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