* stabsread.c (read_struct_fields): Don't call read_cpp_abbrev on $_.
[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
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21 /* Support routines for reading and decoding debugging information in
22 the "stabs" format. This format is used with many systems that use
23 the a.out object file format, as well as some systems that use
24 COFF or ELF where the stabs data is placed in a special section.
25 Avoid placing any object file format specific code in this file. */
26
27 #include "defs.h"
28 #include "bfd.h"
29 #include "obstack.h"
30 #include "symtab.h"
31 #include "gdbtypes.h"
32 #include "symfile.h"
33 #include "objfiles.h"
34 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
35 #include "buildsym.h"
36 #include "complaints.h"
37 #include "demangle.h"
38
39 /* Ask stabsread.h to define the vars it normally declares `extern'. */
40 #define EXTERN /**/
41 #include "stabsread.h" /* Our own declarations */
42 #undef EXTERN
43
44 /* The routines that read and process a complete stabs for a C struct or
45 C++ class pass lists of data member fields and lists of member function
46 fields in an instance of a field_info structure, as defined below.
47 This is part of some reorganization of low level C++ support and is
48 expected to eventually go away... (FIXME) */
49
50 struct field_info
51 {
52 struct nextfield
53 {
54 struct nextfield *next;
55 int visibility;
56 struct field field;
57 } *list;
58 struct next_fnfieldlist
59 {
60 struct next_fnfieldlist *next;
61 struct fn_fieldlist fn_fieldlist;
62 } *fnlist;
63 };
64
65 static struct type *
66 dbx_alloc_type PARAMS ((int [2], struct objfile *));
67
68 static long read_huge_number PARAMS ((char **, int, int *));
69
70 static struct type *error_type PARAMS ((char **));
71
72 static void
73 patch_block_stabs PARAMS ((struct pending *, struct pending_stabs *,
74 struct objfile *));
75
76 static void
77 fix_common_block PARAMS ((struct symbol *, int));
78
79 static int
80 read_type_number PARAMS ((char **, int *));
81
82 static struct type *
83 read_range_type PARAMS ((char **, int [2], struct objfile *));
84
85 static struct type *
86 read_sun_builtin_type PARAMS ((char **, int [2], struct objfile *));
87
88 static struct type *
89 read_sun_floating_type PARAMS ((char **, int [2], struct objfile *));
90
91 static struct type *
92 read_enum_type PARAMS ((char **, struct type *, struct objfile *));
93
94 static struct type *
95 rs6000_builtin_type PARAMS ((int));
96
97 static int
98 read_member_functions PARAMS ((struct field_info *, char **, struct type *,
99 struct objfile *));
100
101 static int
102 read_struct_fields PARAMS ((struct field_info *, char **, struct type *,
103 struct objfile *));
104
105 static int
106 read_baseclasses PARAMS ((struct field_info *, char **, struct type *,
107 struct objfile *));
108
109 static int
110 read_tilde_fields PARAMS ((struct field_info *, char **, struct type *,
111 struct objfile *));
112
113 static int
114 attach_fn_fields_to_type PARAMS ((struct field_info *, struct type *));
115
116 static int
117 attach_fields_to_type PARAMS ((struct field_info *, struct type *,
118 struct objfile *));
119
120 static struct type *
121 read_struct_type PARAMS ((char **, struct type *, struct objfile *));
122
123 static struct type *
124 read_array_type PARAMS ((char **, struct type *, struct objfile *));
125
126 static struct type **
127 read_args PARAMS ((char **, int, struct objfile *));
128
129 static int
130 read_cpp_abbrev PARAMS ((struct field_info *, char **, struct type *,
131 struct objfile *));
132
133 static const char vptr_name[] = { '_','v','p','t','r',CPLUS_MARKER,'\0' };
134 static const char vb_name[] = { '_','v','b',CPLUS_MARKER,'\0' };
135
136 /* Define this as 1 if a pcc declaration of a char or short argument
137 gives the correct address. Otherwise assume pcc gives the
138 address of the corresponding int, which is not the same on a
139 big-endian machine. */
140
141 #ifndef BELIEVE_PCC_PROMOTION
142 #define BELIEVE_PCC_PROMOTION 0
143 #endif
144
145 #if 0
146 /* I think this can go away, all current uses have been removed.
147 GCC emits a few crazy types which can only be distinguished by the
148 name (complex, long long on some machines), but I'd say fix GCC. */
149
150 /* During some calls to read_type (and thus to read_range_type), this
151 contains the name of the type being defined. Range types are only
152 used in C as basic types. We use the name to distinguish the otherwise
153 identical basic types "int" and "long" and their unsigned versions.
154 FIXME, this should disappear with better type management. */
155
156 static char *long_kludge_name;
157 #endif
158
159 #if 0
160 struct complaint dbx_class_complaint =
161 {
162 "encountered DBX-style class variable debugging information.\n\
163 You seem to have compiled your program with \
164 \"g++ -g0\" instead of \"g++ -g\".\n\
165 Therefore GDB will not know about your class variables", 0, 0
166 };
167 #endif
168
169 struct complaint invalid_cpp_abbrev_complaint =
170 {"invalid C++ abbreviation `%s'", 0, 0};
171
172 struct complaint invalid_cpp_type_complaint =
173 {"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
174
175 struct complaint member_fn_complaint =
176 {"member function type missing, got '%c'", 0, 0};
177
178 struct complaint const_vol_complaint =
179 {"const/volatile indicator missing, got '%c'", 0, 0};
180
181 struct complaint error_type_complaint =
182 {"debug info mismatch between compiler and debugger", 0, 0};
183
184 struct complaint invalid_member_complaint =
185 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
186
187 struct complaint range_type_base_complaint =
188 {"base type %d of range type is not defined", 0, 0};
189
190 struct complaint reg_value_complaint =
191 {"register number too large in symbol %s", 0, 0};
192
193 struct complaint vtbl_notfound_complaint =
194 {"virtual function table pointer not found when defining class `%s'", 0, 0};
195
196 struct complaint unrecognized_cplus_name_complaint =
197 {"Unknown C++ symbol name `%s'", 0, 0};
198
199 struct complaint rs6000_builtin_complaint =
200 {"Unknown builtin type %d", 0, 0};
201
202 struct complaint stabs_general_complaint =
203 {"%s", 0, 0};
204
205 /* Make a list of forward references which haven't been defined. */
206
207 static struct type **undef_types;
208 static int undef_types_allocated;
209 static int undef_types_length;
210
211 /* Check for and handle cretinous stabs symbol name continuation! */
212 #define STABS_CONTINUE(pp) \
213 do { \
214 if (**(pp) == '\\') *(pp) = next_symbol_text (); \
215 } while (0)
216
217 \f
218 /* This is used by other symbol readers besides stabs, so for cleanliness
219 should probably be in buildsym.c. */
220
221 int
222 hashname (name)
223 char *name;
224 {
225 register char *p = name;
226 register int total = p[0];
227 register int c;
228
229 c = p[1];
230 total += c << 2;
231 if (c)
232 {
233 c = p[2];
234 total += c << 4;
235 if (c)
236 {
237 total += p[3] << 6;
238 }
239 }
240
241 /* Ensure result is positive. */
242 if (total < 0)
243 {
244 total += (1000 << 6);
245 }
246 return (total % HASHSIZE);
247 }
248
249 \f
250 /* Look up a dbx type-number pair. Return the address of the slot
251 where the type for that number-pair is stored.
252 The number-pair is in TYPENUMS.
253
254 This can be used for finding the type associated with that pair
255 or for associating a new type with the pair. */
256
257 struct type **
258 dbx_lookup_type (typenums)
259 int typenums[2];
260 {
261 register int filenum = typenums[0];
262 register int index = typenums[1];
263 unsigned old_len;
264 register int real_filenum;
265 register struct header_file *f;
266 int f_orig_length;
267
268 if (filenum == -1) /* -1,-1 is for temporary types. */
269 return 0;
270
271 if (filenum < 0 || filenum >= n_this_object_header_files)
272 {
273 static struct complaint msg = {"\
274 Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
275 0, 0};
276 complain (&msg, filenum, index, symnum);
277 goto error_return;
278 }
279
280 if (filenum == 0)
281 {
282 if (index < 0)
283 {
284 /* Caller wants address of address of type. We think
285 that negative (rs6k builtin) types will never appear as
286 "lvalues", (nor should they), so we stuff the real type
287 pointer into a temp, and return its address. If referenced,
288 this will do the right thing. */
289 static struct type *temp_type;
290
291 temp_type = rs6000_builtin_type(index);
292 return &temp_type;
293 }
294
295 /* Type is defined outside of header files.
296 Find it in this object file's type vector. */
297 if (index >= type_vector_length)
298 {
299 old_len = type_vector_length;
300 if (old_len == 0)
301 {
302 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
303 type_vector = (struct type **)
304 malloc (type_vector_length * sizeof (struct type *));
305 }
306 while (index >= type_vector_length)
307 {
308 type_vector_length *= 2;
309 }
310 type_vector = (struct type **)
311 xrealloc ((char *) type_vector,
312 (type_vector_length * sizeof (struct type *)));
313 memset (&type_vector[old_len], 0,
314 (type_vector_length - old_len) * sizeof (struct type *));
315 }
316 return (&type_vector[index]);
317 }
318 else
319 {
320 real_filenum = this_object_header_files[filenum];
321
322 if (real_filenum >= n_header_files)
323 {
324 struct type *temp_type;
325 struct type **temp_type_p;
326
327 warning ("GDB internal error: bad real_filenum");
328
329 error_return:
330 temp_type = init_type (TYPE_CODE_ERROR, 0, 0, NULL, NULL);
331 temp_type_p = (struct type **) xmalloc (sizeof (struct type *));
332 *temp_type_p = temp_type;
333 return temp_type_p;
334 }
335
336 f = &header_files[real_filenum];
337
338 f_orig_length = f->length;
339 if (index >= f_orig_length)
340 {
341 while (index >= f->length)
342 {
343 f->length *= 2;
344 }
345 f->vector = (struct type **)
346 xrealloc ((char *) f->vector, f->length * sizeof (struct type *));
347 memset (&f->vector[f_orig_length], 0,
348 (f->length - f_orig_length) * sizeof (struct type *));
349 }
350 return (&f->vector[index]);
351 }
352 }
353
354 /* Make sure there is a type allocated for type numbers TYPENUMS
355 and return the type object.
356 This can create an empty (zeroed) type object.
357 TYPENUMS may be (-1, -1) to return a new type object that is not
358 put into the type vector, and so may not be referred to by number. */
359
360 static struct type *
361 dbx_alloc_type (typenums, objfile)
362 int typenums[2];
363 struct objfile *objfile;
364 {
365 register struct type **type_addr;
366
367 if (typenums[0] == -1)
368 {
369 return (alloc_type (objfile));
370 }
371
372 type_addr = dbx_lookup_type (typenums);
373
374 /* If we are referring to a type not known at all yet,
375 allocate an empty type for it.
376 We will fill it in later if we find out how. */
377 if (*type_addr == 0)
378 {
379 *type_addr = alloc_type (objfile);
380 }
381
382 return (*type_addr);
383 }
384
385 /* for all the stabs in a given stab vector, build appropriate types
386 and fix their symbols in given symbol vector. */
387
388 static void
389 patch_block_stabs (symbols, stabs, objfile)
390 struct pending *symbols;
391 struct pending_stabs *stabs;
392 struct objfile *objfile;
393 {
394 int ii;
395 char *name;
396 char *pp;
397 struct symbol *sym;
398
399 if (stabs)
400 {
401
402 /* for all the stab entries, find their corresponding symbols and
403 patch their types! */
404
405 for (ii = 0; ii < stabs->count; ++ii)
406 {
407 name = stabs->stab[ii];
408 pp = (char*) strchr (name, ':');
409 sym = find_symbol_in_list (symbols, name, pp-name);
410 if (!sym)
411 {
412 /* On xcoff, if a global is defined and never referenced,
413 ld will remove it from the executable. There is then
414 a N_GSYM stab for it, but no regular (C_EXT) symbol. */
415 sym = (struct symbol *)
416 obstack_alloc (&objfile->symbol_obstack,
417 sizeof (struct symbol));
418
419 memset (sym, 0, sizeof (struct symbol));
420 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
421 SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT;
422 SYMBOL_NAME (sym) =
423 obstack_copy0 (&objfile->symbol_obstack, name, pp - name);
424 pp += 2;
425 if (*(pp-1) == 'F' || *(pp-1) == 'f')
426 {
427 /* I don't think the linker does this with functions,
428 so as far as I know this is never executed.
429 But it doesn't hurt to check. */
430 SYMBOL_TYPE (sym) =
431 lookup_function_type (read_type (&pp, objfile));
432 }
433 else
434 {
435 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
436 }
437 add_symbol_to_list (sym, &global_symbols);
438 }
439 else
440 {
441 pp += 2;
442 if (*(pp-1) == 'F' || *(pp-1) == 'f')
443 {
444 SYMBOL_TYPE (sym) =
445 lookup_function_type (read_type (&pp, objfile));
446 }
447 else
448 {
449 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
450 }
451 }
452 }
453 }
454 }
455
456 \f
457 /* Read a number by which a type is referred to in dbx data,
458 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
459 Just a single number N is equivalent to (0,N).
460 Return the two numbers by storing them in the vector TYPENUMS.
461 TYPENUMS will then be used as an argument to dbx_lookup_type.
462
463 Returns 0 for success, -1 for error. */
464
465 static int
466 read_type_number (pp, typenums)
467 register char **pp;
468 register int *typenums;
469 {
470 int nbits;
471 if (**pp == '(')
472 {
473 (*pp)++;
474 typenums[0] = read_huge_number (pp, ',', &nbits);
475 if (nbits != 0) return -1;
476 typenums[1] = read_huge_number (pp, ')', &nbits);
477 if (nbits != 0) return -1;
478 }
479 else
480 {
481 typenums[0] = 0;
482 typenums[1] = read_huge_number (pp, 0, &nbits);
483 if (nbits != 0) return -1;
484 }
485 return 0;
486 }
487
488 \f
489 /* To handle GNU C++ typename abbreviation, we need to be able to
490 fill in a type's name as soon as space for that type is allocated.
491 `type_synonym_name' is the name of the type being allocated.
492 It is cleared as soon as it is used (lest all allocated types
493 get this name). */
494
495 static char *type_synonym_name;
496
497 /* ARGSUSED */
498 struct symbol *
499 define_symbol (valu, string, desc, type, objfile)
500 unsigned int valu;
501 char *string;
502 int desc;
503 int type;
504 struct objfile *objfile;
505 {
506 register struct symbol *sym;
507 char *p = (char *) strchr (string, ':');
508 int deftype;
509 int synonym = 0;
510 register int i;
511
512 /* We would like to eliminate nameless symbols, but keep their types.
513 E.g. stab entry ":t10=*2" should produce a type 10, which is a pointer
514 to type 2, but, should not create a symbol to address that type. Since
515 the symbol will be nameless, there is no way any user can refer to it. */
516
517 int nameless;
518
519 /* Ignore syms with empty names. */
520 if (string[0] == 0)
521 return 0;
522
523 /* Ignore old-style symbols from cc -go */
524 if (p == 0)
525 return 0;
526
527 /* If a nameless stab entry, all we need is the type, not the symbol.
528 e.g. ":t10=*2" or a nameless enum like " :T16=ered:0,green:1,blue:2,;" */
529 nameless = (p == string || ((string[0] == ' ') && (string[1] == ':')));
530
531 sym = (struct symbol *)
532 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
533 memset (sym, 0, sizeof (struct symbol));
534
535 if (processing_gcc_compilation)
536 {
537 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
538 number of bytes occupied by a type or object, which we ignore. */
539 SYMBOL_LINE(sym) = desc;
540 }
541 else
542 {
543 SYMBOL_LINE(sym) = 0; /* unknown */
544 }
545
546 if (string[0] == CPLUS_MARKER)
547 {
548 /* Special GNU C++ names. */
549 switch (string[1])
550 {
551 case 't':
552 SYMBOL_NAME (sym) = obsavestring ("this", strlen ("this"),
553 &objfile -> symbol_obstack);
554 break;
555
556 case 'v': /* $vtbl_ptr_type */
557 /* Was: SYMBOL_NAME (sym) = "vptr"; */
558 goto normal;
559
560 case 'e':
561 SYMBOL_NAME (sym) = obsavestring ("eh_throw", strlen ("eh_throw"),
562 &objfile -> symbol_obstack);
563 break;
564
565 case '_':
566 /* This was an anonymous type that was never fixed up. */
567 goto normal;
568
569 default:
570 complain (&unrecognized_cplus_name_complaint, string);
571 goto normal; /* Do *something* with it */
572 }
573 }
574 else
575 {
576 normal:
577 SYMBOL_LANGUAGE (sym) = current_subfile -> language;
578 SYMBOL_NAME (sym) = (char *)
579 obstack_alloc (&objfile -> symbol_obstack, ((p - string) + 1));
580 /* Open-coded bcopy--saves function call time. */
581 /* FIXME: Does it really? Try replacing with simple strcpy and
582 try it on an executable with a large symbol table. */
583 {
584 register char *p1 = string;
585 register char *p2 = SYMBOL_NAME (sym);
586 while (p1 != p)
587 {
588 *p2++ = *p1++;
589 }
590 *p2++ = '\0';
591 }
592
593 /* If this symbol is from a C++ compilation, then attempt to cache the
594 demangled form for future reference. This is a typical time versus
595 space tradeoff, that was decided in favor of time because it sped up
596 C++ symbol lookups by a factor of about 20. */
597
598 SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
599 }
600 p++;
601
602 /* Determine the type of name being defined. */
603 #if 0
604 /* Getting GDB to correctly skip the symbol on an undefined symbol
605 descriptor and not ever dump core is a very dodgy proposition if
606 we do things this way. I say the acorn RISC machine can just
607 fix their compiler. */
608 /* The Acorn RISC machine's compiler can put out locals that don't
609 start with "234=" or "(3,4)=", so assume anything other than the
610 deftypes we know how to handle is a local. */
611 if (!strchr ("cfFGpPrStTvVXCR", *p))
612 #else
613 if (isdigit (*p) || *p == '(' || *p == '-')
614 #endif
615 deftype = 'l';
616 else
617 deftype = *p++;
618
619 switch (deftype)
620 {
621 case 'c':
622 /* c is a special case, not followed by a type-number.
623 SYMBOL:c=iVALUE for an integer constant symbol.
624 SYMBOL:c=rVALUE for a floating constant symbol.
625 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
626 e.g. "b:c=e6,0" for "const b = blob1"
627 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
628 if (*p != '=')
629 {
630 SYMBOL_CLASS (sym) = LOC_CONST;
631 SYMBOL_TYPE (sym) = error_type (&p);
632 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
633 add_symbol_to_list (sym, &file_symbols);
634 return sym;
635 }
636 ++p;
637 switch (*p++)
638 {
639 case 'r':
640 {
641 double d = atof (p);
642 char *dbl_valu;
643
644 /* FIXME: lookup_fundamental_type is a hack. We should be
645 creating a type especially for the type of float constants.
646 Problem is, what type should it be? We currently have to
647 read this in host floating point format, but what type
648 represents a host format "double"?
649
650 Also, what should the name of this type be? Should we
651 be using 'S' constants (see stabs.texinfo) instead? */
652
653 SYMBOL_TYPE (sym) = lookup_fundamental_type (objfile,
654 FT_DBL_PREC_FLOAT);
655 dbl_valu = (char *)
656 obstack_alloc (&objfile -> symbol_obstack, sizeof (double));
657 memcpy (dbl_valu, &d, sizeof (double));
658 /* Put it in target byte order, but it's still in host
659 floating point format. */
660 SWAP_TARGET_AND_HOST (dbl_valu, sizeof (double));
661 SYMBOL_VALUE_BYTES (sym) = dbl_valu;
662 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
663 }
664 break;
665 case 'i':
666 {
667 /* Defining integer constants this way is kind of silly,
668 since 'e' constants allows the compiler to give not
669 only the value, but the type as well. C has at least
670 int, long, unsigned int, and long long as constant
671 types; other languages probably should have at least
672 unsigned as well as signed constants. */
673
674 /* We just need one int constant type for all objfiles.
675 It doesn't depend on languages or anything (arguably its
676 name should be a language-specific name for a type of
677 that size, but I'm inclined to say that if the compiler
678 wants a nice name for the type, it can use 'e'). */
679 static struct type *int_const_type;
680
681 /* Yes, this is as long as a *host* int. That is because we
682 use atoi. */
683 if (int_const_type == NULL)
684 int_const_type =
685 init_type (TYPE_CODE_INT,
686 sizeof (int) * HOST_CHAR_BIT / TARGET_CHAR_BIT, 0,
687 "integer constant",
688 (struct objfile *)NULL);
689 SYMBOL_TYPE (sym) = int_const_type;
690 SYMBOL_VALUE (sym) = atoi (p);
691 SYMBOL_CLASS (sym) = LOC_CONST;
692 }
693 break;
694 case 'e':
695 /* SYMBOL:c=eTYPE,INTVALUE for a constant symbol whose value
696 can be represented as integral.
697 e.g. "b:c=e6,0" for "const b = blob1"
698 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
699 {
700 SYMBOL_CLASS (sym) = LOC_CONST;
701 SYMBOL_TYPE (sym) = read_type (&p, objfile);
702
703 if (*p != ',')
704 {
705 SYMBOL_TYPE (sym) = error_type (&p);
706 break;
707 }
708 ++p;
709
710 /* If the value is too big to fit in an int (perhaps because
711 it is unsigned), or something like that, we silently get
712 a bogus value. The type and everything else about it is
713 correct. Ideally, we should be using whatever we have
714 available for parsing unsigned and long long values,
715 however. */
716 SYMBOL_VALUE (sym) = atoi (p);
717 }
718 break;
719 default:
720 {
721 SYMBOL_CLASS (sym) = LOC_CONST;
722 SYMBOL_TYPE (sym) = error_type (&p);
723 }
724 }
725 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
726 add_symbol_to_list (sym, &file_symbols);
727 return sym;
728
729 case 'C':
730 /* The name of a caught exception. */
731 SYMBOL_TYPE (sym) = read_type (&p, objfile);
732 SYMBOL_CLASS (sym) = LOC_LABEL;
733 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
734 SYMBOL_VALUE_ADDRESS (sym) = valu;
735 add_symbol_to_list (sym, &local_symbols);
736 break;
737
738 case 'f':
739 /* A static function definition. */
740 SYMBOL_TYPE (sym) = read_type (&p, objfile);
741 SYMBOL_CLASS (sym) = LOC_BLOCK;
742 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
743 add_symbol_to_list (sym, &file_symbols);
744 /* fall into process_function_types. */
745
746 process_function_types:
747 /* Function result types are described as the result type in stabs.
748 We need to convert this to the function-returning-type-X type
749 in GDB. E.g. "int" is converted to "function returning int". */
750 if (TYPE_CODE (SYMBOL_TYPE (sym)) != TYPE_CODE_FUNC)
751 {
752 #if 0
753 /* This code doesn't work -- it needs to realloc and can't. */
754 /* Attempt to set up to record a function prototype... */
755 struct type *new = alloc_type (objfile);
756
757 /* Generate a template for the type of this function. The
758 types of the arguments will be added as we read the symbol
759 table. */
760 *new = *lookup_function_type (SYMBOL_TYPE(sym));
761 SYMBOL_TYPE(sym) = new;
762 TYPE_OBJFILE (new) = objfile;
763 in_function_type = new;
764 #else
765 SYMBOL_TYPE (sym) = lookup_function_type (SYMBOL_TYPE (sym));
766 #endif
767 }
768 /* fall into process_prototype_types */
769
770 process_prototype_types:
771 /* Sun acc puts declared types of arguments here. We don't care
772 about their actual types (FIXME -- we should remember the whole
773 function prototype), but the list may define some new types
774 that we have to remember, so we must scan it now. */
775 while (*p == ';') {
776 p++;
777 read_type (&p, objfile);
778 }
779 break;
780
781 case 'F':
782 /* A global function definition. */
783 SYMBOL_TYPE (sym) = read_type (&p, objfile);
784 SYMBOL_CLASS (sym) = LOC_BLOCK;
785 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
786 add_symbol_to_list (sym, &global_symbols);
787 goto process_function_types;
788
789 case 'G':
790 /* For a class G (global) symbol, it appears that the
791 value is not correct. It is necessary to search for the
792 corresponding linker definition to find the value.
793 These definitions appear at the end of the namelist. */
794 SYMBOL_TYPE (sym) = read_type (&p, objfile);
795 i = hashname (SYMBOL_NAME (sym));
796 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
797 global_sym_chain[i] = sym;
798 SYMBOL_CLASS (sym) = LOC_STATIC;
799 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
800 add_symbol_to_list (sym, &global_symbols);
801 break;
802
803 /* This case is faked by a conditional above,
804 when there is no code letter in the dbx data.
805 Dbx data never actually contains 'l'. */
806 case 'l':
807 SYMBOL_TYPE (sym) = read_type (&p, objfile);
808 SYMBOL_CLASS (sym) = LOC_LOCAL;
809 SYMBOL_VALUE (sym) = valu;
810 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
811 add_symbol_to_list (sym, &local_symbols);
812 break;
813
814 case 'p':
815 if (*p == 'F')
816 /* pF is a two-letter code that means a function parameter in Fortran.
817 The type-number specifies the type of the return value.
818 Translate it into a pointer-to-function type. */
819 {
820 p++;
821 SYMBOL_TYPE (sym)
822 = lookup_pointer_type
823 (lookup_function_type (read_type (&p, objfile)));
824 }
825 else
826 SYMBOL_TYPE (sym) = read_type (&p, objfile);
827
828 /* Normally this is a parameter, a LOC_ARG. On the i960, it
829 can also be a LOC_LOCAL_ARG depending on symbol type. */
830 #ifndef DBX_PARM_SYMBOL_CLASS
831 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
832 #endif
833
834 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
835 SYMBOL_VALUE (sym) = valu;
836 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
837 #if 0
838 /* This doesn't work yet. */
839 add_param_to_type (&in_function_type, sym);
840 #endif
841 add_symbol_to_list (sym, &local_symbols);
842
843 /* If it's gcc-compiled, if it says `short', believe it. */
844 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
845 break;
846
847 #if !BELIEVE_PCC_PROMOTION
848 {
849 /* This is the signed type which arguments get promoted to. */
850 static struct type *pcc_promotion_type;
851 /* This is the unsigned type which arguments get promoted to. */
852 static struct type *pcc_unsigned_promotion_type;
853
854 /* Call it "int" because this is mainly C lossage. */
855 if (pcc_promotion_type == NULL)
856 pcc_promotion_type =
857 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
858 0, "int", NULL);
859
860 if (pcc_unsigned_promotion_type == NULL)
861 pcc_unsigned_promotion_type =
862 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
863 TYPE_FLAG_UNSIGNED, "unsigned int", NULL);
864
865 #if defined(BELIEVE_PCC_PROMOTION_TYPE)
866 /* This macro is defined on machines (e.g. sparc) where
867 we should believe the type of a PCC 'short' argument,
868 but shouldn't believe the address (the address is
869 the address of the corresponding int). Note that
870 this is only different from the BELIEVE_PCC_PROMOTION
871 case on big-endian machines.
872
873 My guess is that this correction, as opposed to changing
874 the parameter to an 'int' (as done below, for PCC
875 on most machines), is the right thing to do
876 on all machines, but I don't want to risk breaking
877 something that already works. On most PCC machines,
878 the sparc problem doesn't come up because the calling
879 function has to zero the top bytes (not knowing whether
880 the called function wants an int or a short), so there
881 is no practical difference between an int and a short
882 (except perhaps what happens when the GDB user types
883 "print short_arg = 0x10000;").
884
885 Hacked for SunOS 4.1 by gnu@cygnus.com. In 4.1, the compiler
886 actually produces the correct address (we don't need to fix it
887 up). I made this code adapt so that it will offset the symbol
888 if it was pointing at an int-aligned location and not
889 otherwise. This way you can use the same gdb for 4.0.x and
890 4.1 systems.
891
892 If the parameter is shorter than an int, and is integral
893 (e.g. char, short, or unsigned equivalent), and is claimed to
894 be passed on an integer boundary, don't believe it! Offset the
895 parameter's address to the tail-end of that integer. */
896
897 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
898 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
899 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (pcc_promotion_type))
900 {
901 SYMBOL_VALUE (sym) += TYPE_LENGTH (pcc_promotion_type)
902 - TYPE_LENGTH (SYMBOL_TYPE (sym));
903 }
904 break;
905
906 #else /* no BELIEVE_PCC_PROMOTION_TYPE. */
907
908 /* If PCC says a parameter is a short or a char,
909 it is really an int. */
910 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (pcc_promotion_type)
911 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
912 {
913 SYMBOL_TYPE (sym) =
914 TYPE_UNSIGNED (SYMBOL_TYPE (sym))
915 ? pcc_unsigned_promotion_type
916 : pcc_promotion_type;
917 }
918 break;
919
920 #endif /* no BELIEVE_PCC_PROMOTION_TYPE. */
921 }
922 #endif /* !BELIEVE_PCC_PROMOTION. */
923
924 case 'P':
925 /* acc seems to use P to delare the prototypes of functions that
926 are referenced by this file. gdb is not prepared to deal
927 with this extra information. FIXME, it ought to. */
928 if (type == N_FUN)
929 {
930 read_type (&p, objfile);
931 goto process_prototype_types;
932 }
933 /*FALLTHROUGH*/
934
935 case 'R':
936 /* Parameter which is in a register. */
937 SYMBOL_TYPE (sym) = read_type (&p, objfile);
938 SYMBOL_CLASS (sym) = LOC_REGPARM;
939 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
940 if (SYMBOL_VALUE (sym) >= NUM_REGS)
941 {
942 complain (&reg_value_complaint, SYMBOL_SOURCE_NAME (sym));
943 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
944 }
945 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
946 add_symbol_to_list (sym, &local_symbols);
947 break;
948
949 case 'r':
950 /* Register variable (either global or local). */
951 SYMBOL_TYPE (sym) = read_type (&p, objfile);
952 SYMBOL_CLASS (sym) = LOC_REGISTER;
953 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
954 if (SYMBOL_VALUE (sym) >= NUM_REGS)
955 {
956 complain (&reg_value_complaint, SYMBOL_SOURCE_NAME (sym));
957 SYMBOL_VALUE (sym) = SP_REGNUM; /* Known safe, though useless */
958 }
959 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
960 if (within_function)
961 {
962 /* Sun cc uses a pair of symbols, one 'p' and one 'r' with the same
963 name to represent an argument passed in a register.
964 GCC uses 'P' for the same case. So if we find such a symbol pair
965 we combine it into one 'P' symbol.
966 Note that this code illegally combines
967 main(argc) int argc; { register int argc = 1; }
968 but this case is considered pathological and causes a warning
969 from a decent compiler. */
970 if (local_symbols
971 && local_symbols->nsyms > 0)
972 {
973 struct symbol *prev_sym;
974 prev_sym = local_symbols->symbol[local_symbols->nsyms - 1];
975 if (SYMBOL_CLASS (prev_sym) == LOC_ARG
976 && STREQ (SYMBOL_NAME (prev_sym), SYMBOL_NAME(sym)))
977 {
978 SYMBOL_CLASS (prev_sym) = LOC_REGPARM;
979 SYMBOL_VALUE (prev_sym) = SYMBOL_VALUE (sym);
980 sym = prev_sym;
981 break;
982 }
983 }
984 add_symbol_to_list (sym, &local_symbols);
985 }
986 else
987 add_symbol_to_list (sym, &file_symbols);
988 break;
989
990 case 'S':
991 /* Static symbol at top level of file */
992 SYMBOL_TYPE (sym) = read_type (&p, objfile);
993 SYMBOL_CLASS (sym) = LOC_STATIC;
994 SYMBOL_VALUE_ADDRESS (sym) = valu;
995 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
996 add_symbol_to_list (sym, &file_symbols);
997 break;
998
999 case 't':
1000 #if 0
1001 /* See comment where long_kludge_name is declared. */
1002 /* Here we save the name of the symbol for read_range_type, which
1003 ends up reading in the basic types. In stabs, unfortunately there
1004 is no distinction between "int" and "long" types except their
1005 names. Until we work out a saner type policy (eliminating most
1006 builtin types and using the names specified in the files), we
1007 save away the name so that far away from here in read_range_type,
1008 we can examine it to decide between "int" and "long". FIXME. */
1009 long_kludge_name = SYMBOL_NAME (sym);
1010 #endif
1011 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1012
1013 /* For a nameless type, we don't want a create a symbol, thus we
1014 did not use `sym'. Return without further processing. */
1015 if (nameless) return NULL;
1016
1017 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1018 SYMBOL_VALUE (sym) = valu;
1019 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1020 /* C++ vagaries: we may have a type which is derived from
1021 a base type which did not have its name defined when the
1022 derived class was output. We fill in the derived class's
1023 base part member's name here in that case. */
1024 if (TYPE_NAME (SYMBOL_TYPE (sym)) != NULL)
1025 if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1026 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
1027 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
1028 {
1029 int j;
1030 for (j = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; j >= 0; j--)
1031 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) == 0)
1032 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) =
1033 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), j));
1034 }
1035
1036 if (TYPE_NAME (SYMBOL_TYPE (sym)) == NULL)
1037 {
1038 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR)
1039 {
1040 /* If we are giving a name to a type such as "pointer
1041 to foo", we better not set the TYPE_NAME. If the
1042 program contains "typedef char *caddr_t;", we don't
1043 want all variables of type char * to print as
1044 caddr_t. This is not just a consequence of GDB's
1045 type management; PCC and GCC (at least through
1046 version 2.4) both output variables of either type
1047 char * or caddr_t with the type number defined in
1048 the 't' symbol for caddr_t. If a future compiler
1049 cleans this up it GDB is not ready for it yet, but
1050 if it becomes ready we somehow need to disable this
1051 check (without breaking the PCC/GCC2.4 case).
1052
1053 Sigh.
1054
1055 Fortunately, this check seems not to be necessary
1056 for anything except pointers. */
1057 }
1058 else
1059 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_NAME (sym);
1060 }
1061
1062 add_symbol_to_list (sym, &file_symbols);
1063 break;
1064
1065 case 'T':
1066 /* Struct, union, or enum tag. For GNU C++, this can be be followed
1067 by 't' which means we are typedef'ing it as well. */
1068 synonym = *p == 't';
1069
1070 if (synonym)
1071 {
1072 p++;
1073 type_synonym_name = obsavestring (SYMBOL_NAME (sym),
1074 strlen (SYMBOL_NAME (sym)),
1075 &objfile -> symbol_obstack);
1076 }
1077
1078 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1079
1080 /* For a nameless type, we don't want a create a symbol, thus we
1081 did not use `sym'. Return without further processing. */
1082 if (nameless) return NULL;
1083
1084 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1085 SYMBOL_VALUE (sym) = valu;
1086 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1087 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1088 TYPE_NAME (SYMBOL_TYPE (sym))
1089 = obconcat (&objfile -> type_obstack, "",
1090 (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_ENUM
1091 ? "enum "
1092 : (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1093 ? "struct " : "union ")),
1094 SYMBOL_NAME (sym));
1095 add_symbol_to_list (sym, &file_symbols);
1096
1097 if (synonym)
1098 {
1099 /* Clone the sym and then modify it. */
1100 register struct symbol *typedef_sym = (struct symbol *)
1101 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
1102 *typedef_sym = *sym;
1103 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
1104 SYMBOL_VALUE (typedef_sym) = valu;
1105 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
1106 add_symbol_to_list (typedef_sym, &file_symbols);
1107 }
1108 break;
1109
1110 case 'V':
1111 /* Static symbol of local scope */
1112 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1113 SYMBOL_CLASS (sym) = LOC_STATIC;
1114 SYMBOL_VALUE_ADDRESS (sym) = valu;
1115 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1116 add_symbol_to_list (sym, &local_symbols);
1117 break;
1118
1119 case 'v':
1120 /* Reference parameter */
1121 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1122 SYMBOL_CLASS (sym) = LOC_REF_ARG;
1123 SYMBOL_VALUE (sym) = valu;
1124 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1125 add_symbol_to_list (sym, &local_symbols);
1126 break;
1127
1128 case 'X':
1129 /* This is used by Sun FORTRAN for "function result value".
1130 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
1131 that Pascal uses it too, but when I tried it Pascal used
1132 "x:3" (local symbol) instead. */
1133 SYMBOL_TYPE (sym) = read_type (&p, objfile);
1134 SYMBOL_CLASS (sym) = LOC_LOCAL;
1135 SYMBOL_VALUE (sym) = valu;
1136 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1137 add_symbol_to_list (sym, &local_symbols);
1138 break;
1139
1140 default:
1141 SYMBOL_TYPE (sym) = error_type (&p);
1142 SYMBOL_CLASS (sym) = LOC_CONST;
1143 SYMBOL_VALUE (sym) = 0;
1144 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1145 add_symbol_to_list (sym, &file_symbols);
1146 break;
1147 }
1148
1149 /* When passing structures to a function, some systems sometimes pass
1150 the address in a register, not the structure itself.
1151
1152 If REG_STRUCT_HAS_ADDR yields non-zero we have to convert LOC_REGPARM
1153 to LOC_REGPARM_ADDR for structures and unions. */
1154
1155 #if !defined (REG_STRUCT_HAS_ADDR)
1156 #define REG_STRUCT_HAS_ADDR(gcc_p) 0
1157 #endif
1158
1159 if (SYMBOL_CLASS (sym) == LOC_REGPARM
1160 && REG_STRUCT_HAS_ADDR (processing_gcc_compilation)
1161 && ( (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT)
1162 || (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)))
1163 SYMBOL_CLASS (sym) = LOC_REGPARM_ADDR;
1164
1165 return sym;
1166 }
1167
1168 \f
1169 /* Skip rest of this symbol and return an error type.
1170
1171 General notes on error recovery: error_type always skips to the
1172 end of the symbol (modulo cretinous dbx symbol name continuation).
1173 Thus code like this:
1174
1175 if (*(*pp)++ != ';')
1176 return error_type (pp);
1177
1178 is wrong because if *pp starts out pointing at '\0' (typically as the
1179 result of an earlier error), it will be incremented to point to the
1180 start of the next symbol, which might produce strange results, at least
1181 if you run off the end of the string table. Instead use
1182
1183 if (**pp != ';')
1184 return error_type (pp);
1185 ++*pp;
1186
1187 or
1188
1189 if (**pp != ';')
1190 foo = error_type (pp);
1191 else
1192 ++*pp;
1193
1194 And in case it isn't obvious, the point of all this hair is so the compiler
1195 can define new types and new syntaxes, and old versions of the
1196 debugger will be able to read the new symbol tables. */
1197
1198 static struct type *
1199 error_type (pp)
1200 char **pp;
1201 {
1202 complain (&error_type_complaint);
1203 while (1)
1204 {
1205 /* Skip to end of symbol. */
1206 while (**pp != '\0')
1207 {
1208 (*pp)++;
1209 }
1210
1211 /* Check for and handle cretinous dbx symbol name continuation! */
1212 if ((*pp)[-1] == '\\')
1213 {
1214 *pp = next_symbol_text ();
1215 }
1216 else
1217 {
1218 break;
1219 }
1220 }
1221 return (builtin_type_error);
1222 }
1223
1224 \f
1225 /* Read type information or a type definition; return the type. Even
1226 though this routine accepts either type information or a type
1227 definition, the distinction is relevant--some parts of stabsread.c
1228 assume that type information starts with a digit, '-', or '(' in
1229 deciding whether to call read_type. */
1230
1231 struct type *
1232 read_type (pp, objfile)
1233 register char **pp;
1234 struct objfile *objfile;
1235 {
1236 register struct type *type = 0;
1237 struct type *type1;
1238 int typenums[2];
1239 int xtypenums[2];
1240 char type_descriptor;
1241
1242 /* Read type number if present. The type number may be omitted.
1243 for instance in a two-dimensional array declared with type
1244 "ar1;1;10;ar1;1;10;4". */
1245 if ((**pp >= '0' && **pp <= '9')
1246 || **pp == '(')
1247 {
1248 if (read_type_number (pp, typenums) != 0)
1249 return error_type (pp);
1250
1251 /* Type is not being defined here. Either it already exists,
1252 or this is a forward reference to it. dbx_alloc_type handles
1253 both cases. */
1254 if (**pp != '=')
1255 return dbx_alloc_type (typenums, objfile);
1256
1257 /* Type is being defined here. */
1258 /* Skip the '='. */
1259 ++(*pp);
1260
1261 while (**pp == '@')
1262 {
1263 char *p = *pp + 1;
1264 /* It might be a type attribute or a member type. */
1265 if (isdigit (*p) || *p == '(' || *p == '-')
1266 /* Member type. */
1267 break;
1268 else
1269 {
1270 /* Type attributes; skip to the semicolon. */
1271 while (*p != ';' && *p != '\0')
1272 ++p;
1273 *pp = p;
1274 if (*p == '\0')
1275 return error_type (pp);
1276 else
1277 /* Skip the semicolon. */
1278 ++*pp;
1279 }
1280 }
1281 /* Skip the type descriptor, we get it below with (*pp)[-1]. */
1282 ++(*pp);
1283 }
1284 else
1285 {
1286 /* 'typenums=' not present, type is anonymous. Read and return
1287 the definition, but don't put it in the type vector. */
1288 typenums[0] = typenums[1] = -1;
1289 (*pp)++;
1290 }
1291
1292 type_descriptor = (*pp)[-1];
1293 switch (type_descriptor)
1294 {
1295 case 'x':
1296 {
1297 enum type_code code;
1298
1299 /* Used to index through file_symbols. */
1300 struct pending *ppt;
1301 int i;
1302
1303 /* Name including "struct", etc. */
1304 char *type_name;
1305
1306 /* Name without "struct", etc. */
1307 char *type_name_only;
1308
1309 {
1310 char *prefix;
1311 char *from, *to;
1312
1313 /* Set the type code according to the following letter. */
1314 switch ((*pp)[0])
1315 {
1316 case 's':
1317 code = TYPE_CODE_STRUCT;
1318 prefix = "struct ";
1319 break;
1320 case 'u':
1321 code = TYPE_CODE_UNION;
1322 prefix = "union ";
1323 break;
1324 case 'e':
1325 code = TYPE_CODE_ENUM;
1326 prefix = "enum ";
1327 break;
1328 default:
1329 return error_type (pp);
1330 }
1331
1332 to = type_name = (char *)
1333 obstack_alloc (&objfile -> type_obstack,
1334 (strlen (prefix) +
1335 ((char *) strchr (*pp, ':') - (*pp)) + 1));
1336
1337 /* Copy the prefix. */
1338 from = prefix;
1339 while ((*to++ = *from++) != '\0')
1340 ;
1341 to--;
1342
1343 type_name_only = to;
1344
1345 /* Copy the name. */
1346 from = *pp + 1;
1347 while ((*to++ = *from++) != ':')
1348 ;
1349 *--to = '\0';
1350
1351 /* Set the pointer ahead of the name which we just read. */
1352 *pp = from;
1353
1354 #if 0
1355 /* The following hack is clearly wrong, because it doesn't
1356 check whether we are in a baseclass. I tried to reproduce
1357 the case that it is trying to fix, but I couldn't get
1358 g++ to put out a cross reference to a basetype. Perhaps
1359 it doesn't do it anymore. */
1360 /* Note: for C++, the cross reference may be to a base type which
1361 has not yet been seen. In this case, we skip to the comma,
1362 which will mark the end of the base class name. (The ':'
1363 at the end of the base class name will be skipped as well.)
1364 But sometimes (ie. when the cross ref is the last thing on
1365 the line) there will be no ','. */
1366 from = (char *) strchr (*pp, ',');
1367 if (from)
1368 *pp = from;
1369 #endif /* 0 */
1370 }
1371
1372 /* Now check to see whether the type has already been declared. */
1373 /* This is necessary at least in the case where the
1374 program says something like
1375 struct foo bar[5];
1376 The compiler puts out a cross-reference; we better find
1377 set the length of the structure correctly so we can
1378 set the length of the array. */
1379 for (ppt = file_symbols; ppt; ppt = ppt->next)
1380 for (i = 0; i < ppt->nsyms; i++)
1381 {
1382 struct symbol *sym = ppt->symbol[i];
1383
1384 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
1385 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
1386 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
1387 && STREQ (SYMBOL_NAME (sym), type_name_only))
1388 {
1389 obstack_free (&objfile -> type_obstack, type_name);
1390 type = SYMBOL_TYPE (sym);
1391 return type;
1392 }
1393 }
1394
1395 /* Didn't find the type to which this refers, so we must
1396 be dealing with a forward reference. Allocate a type
1397 structure for it, and keep track of it so we can
1398 fill in the rest of the fields when we get the full
1399 type. */
1400 type = dbx_alloc_type (typenums, objfile);
1401 TYPE_CODE (type) = code;
1402 TYPE_NAME (type) = type_name;
1403 INIT_CPLUS_SPECIFIC(type);
1404 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
1405
1406 add_undefined_type (type);
1407 return type;
1408 }
1409
1410 case '-': /* RS/6000 built-in type */
1411 case '0':
1412 case '1':
1413 case '2':
1414 case '3':
1415 case '4':
1416 case '5':
1417 case '6':
1418 case '7':
1419 case '8':
1420 case '9':
1421 case '(':
1422
1423 /* The type is being defined to another type. When we support
1424 Ada (and arguably for C, so "whatis foo" can give "size_t",
1425 "wchar_t", or whatever it was declared as) we'll need to
1426 allocate a distinct type here rather than returning the
1427 existing one. GCC is currently (deliberately) incapable of
1428 putting out the debugging information to do that, however. */
1429
1430 (*pp)--;
1431 if (read_type_number (pp, xtypenums) != 0)
1432 return error_type (pp);
1433 if (typenums[0] == xtypenums[0] && typenums[1] == xtypenums[1])
1434 /* It's being defined as itself. That means it is "void". */
1435 type = init_type (TYPE_CODE_VOID, 0, 0, NULL, objfile);
1436 else
1437 type = *dbx_lookup_type (xtypenums);
1438 if (typenums[0] != -1)
1439 *dbx_lookup_type (typenums) = type;
1440 /* This can happen if we had '-' followed by a garbage character,
1441 for example. */
1442 if (type == NULL)
1443 return error_type (pp);
1444 break;
1445
1446 /* In the following types, we must be sure to overwrite any existing
1447 type that the typenums refer to, rather than allocating a new one
1448 and making the typenums point to the new one. This is because there
1449 may already be pointers to the existing type (if it had been
1450 forward-referenced), and we must change it to a pointer, function,
1451 reference, or whatever, *in-place*. */
1452
1453 case '*':
1454 type1 = read_type (pp, objfile);
1455 type = make_pointer_type (type1, dbx_lookup_type (typenums));
1456 break;
1457
1458 case '&': /* Reference to another type */
1459 type1 = read_type (pp, objfile);
1460 type = make_reference_type (type1, dbx_lookup_type (typenums));
1461 break;
1462
1463 case 'f': /* Function returning another type */
1464 type1 = read_type (pp, objfile);
1465 type = make_function_type (type1, dbx_lookup_type (typenums));
1466 break;
1467
1468 case 'k': /* Const qualifier on some type (Sun) */
1469 type = read_type (pp, objfile);
1470 /* FIXME! For now, we ignore const and volatile qualifiers. */
1471 break;
1472
1473 case 'B': /* Volatile qual on some type (Sun) */
1474 type = read_type (pp, objfile);
1475 /* FIXME! For now, we ignore const and volatile qualifiers. */
1476 break;
1477
1478 /* FIXME -- we should be doing smash_to_XXX types here. */
1479 case '@': /* Member (class & variable) type */
1480 {
1481 struct type *domain = read_type (pp, objfile);
1482 struct type *memtype;
1483
1484 if (**pp != ',')
1485 /* Invalid member type data format. */
1486 return error_type (pp);
1487 ++*pp;
1488
1489 memtype = read_type (pp, objfile);
1490 type = dbx_alloc_type (typenums, objfile);
1491 smash_to_member_type (type, domain, memtype);
1492 }
1493 break;
1494
1495 case '#': /* Method (class & fn) type */
1496 if ((*pp)[0] == '#')
1497 {
1498 /* We'll get the parameter types from the name. */
1499 struct type *return_type;
1500
1501 (*pp)++;
1502 return_type = read_type (pp, objfile);
1503 if (*(*pp)++ != ';')
1504 complain (&invalid_member_complaint, symnum);
1505 type = allocate_stub_method (return_type);
1506 if (typenums[0] != -1)
1507 *dbx_lookup_type (typenums) = type;
1508 }
1509 else
1510 {
1511 struct type *domain = read_type (pp, objfile);
1512 struct type *return_type;
1513 struct type **args;
1514
1515 if (**pp != ',')
1516 /* Invalid member type data format. */
1517 return error_type (pp);
1518 else
1519 ++(*pp);
1520
1521 return_type = read_type (pp, objfile);
1522 args = read_args (pp, ';', objfile);
1523 type = dbx_alloc_type (typenums, objfile);
1524 smash_to_method_type (type, domain, return_type, args);
1525 }
1526 break;
1527
1528 case 'r': /* Range type */
1529 type = read_range_type (pp, typenums, objfile);
1530 if (typenums[0] != -1)
1531 *dbx_lookup_type (typenums) = type;
1532 break;
1533
1534 case 'b': /* Sun ACC builtin int type */
1535 type = read_sun_builtin_type (pp, typenums, objfile);
1536 if (typenums[0] != -1)
1537 *dbx_lookup_type (typenums) = type;
1538 break;
1539
1540 case 'R': /* Sun ACC builtin float type */
1541 type = read_sun_floating_type (pp, typenums, objfile);
1542 if (typenums[0] != -1)
1543 *dbx_lookup_type (typenums) = type;
1544 break;
1545
1546 case 'e': /* Enumeration type */
1547 type = dbx_alloc_type (typenums, objfile);
1548 type = read_enum_type (pp, type, objfile);
1549 if (typenums[0] != -1)
1550 *dbx_lookup_type (typenums) = type;
1551 break;
1552
1553 case 's': /* Struct type */
1554 case 'u': /* Union type */
1555 type = dbx_alloc_type (typenums, objfile);
1556 if (!TYPE_NAME (type))
1557 {
1558 TYPE_NAME (type) = type_synonym_name;
1559 }
1560 type_synonym_name = NULL;
1561 switch (type_descriptor)
1562 {
1563 case 's':
1564 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1565 break;
1566 case 'u':
1567 TYPE_CODE (type) = TYPE_CODE_UNION;
1568 break;
1569 }
1570 type = read_struct_type (pp, type, objfile);
1571 break;
1572
1573 case 'a': /* Array type */
1574 if (**pp != 'r')
1575 return error_type (pp);
1576 ++*pp;
1577
1578 type = dbx_alloc_type (typenums, objfile);
1579 type = read_array_type (pp, type, objfile);
1580 break;
1581
1582 default:
1583 --*pp; /* Go back to the symbol in error */
1584 /* Particularly important if it was \0! */
1585 return error_type (pp);
1586 }
1587
1588 if (type == 0)
1589 {
1590 warning ("GDB internal error, type is NULL in stabsread.c\n");
1591 return error_type (pp);
1592 }
1593
1594 return type;
1595 }
1596 \f
1597 /* RS/6000 xlc/dbx combination uses a set of builtin types, starting from -1.
1598 Return the proper type node for a given builtin type number. */
1599
1600 static struct type *
1601 rs6000_builtin_type (typenum)
1602 int typenum;
1603 {
1604 /* We recognize types numbered from -NUMBER_RECOGNIZED to -1. */
1605 #define NUMBER_RECOGNIZED 30
1606 /* This includes an empty slot for type number -0. */
1607 static struct type *negative_types[NUMBER_RECOGNIZED + 1];
1608 struct type *rettype;
1609
1610 if (typenum >= 0 || typenum < -NUMBER_RECOGNIZED)
1611 {
1612 complain (&rs6000_builtin_complaint, typenum);
1613 return builtin_type_error;
1614 }
1615 if (negative_types[-typenum] != NULL)
1616 return negative_types[-typenum];
1617
1618 #if TARGET_CHAR_BIT != 8
1619 #error This code wrong for TARGET_CHAR_BIT not 8
1620 /* These definitions all assume that TARGET_CHAR_BIT is 8. I think
1621 that if that ever becomes not true, the correct fix will be to
1622 make the size in the struct type to be in bits, not in units of
1623 TARGET_CHAR_BIT. */
1624 #endif
1625
1626 switch (-typenum)
1627 {
1628 case 1:
1629 /* The size of this and all the other types are fixed, defined
1630 by the debugging format. If there is a type called "int" which
1631 is other than 32 bits, then it should use a new negative type
1632 number (or avoid negative type numbers for that case).
1633 See stabs.texinfo. */
1634 rettype = init_type (TYPE_CODE_INT, 4, 0, "int", NULL);
1635 break;
1636 case 2:
1637 rettype = init_type (TYPE_CODE_INT, 1, 0, "char", NULL);
1638 break;
1639 case 3:
1640 rettype = init_type (TYPE_CODE_INT, 2, 0, "short", NULL);
1641 break;
1642 case 4:
1643 rettype = init_type (TYPE_CODE_INT, 4, 0, "long", NULL);
1644 break;
1645 case 5:
1646 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
1647 "unsigned char", NULL);
1648 break;
1649 case 6:
1650 rettype = init_type (TYPE_CODE_INT, 1, 0, "signed char", NULL);
1651 break;
1652 case 7:
1653 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
1654 "unsigned short", NULL);
1655 break;
1656 case 8:
1657 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1658 "unsigned int", NULL);
1659 break;
1660 case 9:
1661 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1662 "unsigned", NULL);
1663 case 10:
1664 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1665 "unsigned long", NULL);
1666 break;
1667 case 11:
1668 rettype = init_type (TYPE_CODE_VOID, 0, 0, "void", NULL);
1669 break;
1670 case 12:
1671 /* IEEE single precision (32 bit). */
1672 rettype = init_type (TYPE_CODE_FLT, 4, 0, "float", NULL);
1673 break;
1674 case 13:
1675 /* IEEE double precision (64 bit). */
1676 rettype = init_type (TYPE_CODE_FLT, 8, 0, "double", NULL);
1677 break;
1678 case 14:
1679 /* This is an IEEE double on the RS/6000, and different machines with
1680 different sizes for "long double" should use different negative
1681 type numbers. See stabs.texinfo. */
1682 rettype = init_type (TYPE_CODE_FLT, 8, 0, "long double", NULL);
1683 break;
1684 case 15:
1685 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer", NULL);
1686 break;
1687 case 16:
1688 /* What is the proper size of this type? */
1689 rettype = init_type (TYPE_CODE_BOOL, 1, 0, "boolean", NULL);
1690 break;
1691 case 17:
1692 rettype = init_type (TYPE_CODE_FLT, 4, 0, "short real", NULL);
1693 break;
1694 case 18:
1695 rettype = init_type (TYPE_CODE_FLT, 8, 0, "real", NULL);
1696 break;
1697 case 19:
1698 rettype = init_type (TYPE_CODE_ERROR, 0, 0, "stringptr", NULL);
1699 break;
1700 case 20:
1701 rettype = init_type (TYPE_CODE_CHAR, 1, TYPE_FLAG_UNSIGNED,
1702 "character", NULL);
1703 break;
1704 case 21:
1705 rettype = init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED,
1706 "logical*1", NULL);
1707 break;
1708 case 22:
1709 rettype = init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED,
1710 "logical*2", NULL);
1711 break;
1712 case 23:
1713 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1714 "logical*4", NULL);
1715 break;
1716 case 24:
1717 rettype = init_type (TYPE_CODE_INT, 4, TYPE_FLAG_UNSIGNED,
1718 "logical", NULL);
1719 break;
1720 case 25:
1721 /* Complex type consisting of two IEEE single precision values. */
1722 rettype = init_type (TYPE_CODE_ERROR, 8, 0, "complex", NULL);
1723 break;
1724 case 26:
1725 /* Complex type consisting of two IEEE double precision values. */
1726 rettype = init_type (TYPE_CODE_ERROR, 16, 0, "double complex", NULL);
1727 break;
1728 case 27:
1729 rettype = init_type (TYPE_CODE_INT, 1, 0, "integer*1", NULL);
1730 break;
1731 case 28:
1732 rettype = init_type (TYPE_CODE_INT, 2, 0, "integer*2", NULL);
1733 break;
1734 case 29:
1735 rettype = init_type (TYPE_CODE_INT, 4, 0, "integer*4", NULL);
1736 break;
1737 case 30:
1738 rettype = init_type (TYPE_CODE_CHAR, 2, 0, "wchar", NULL);
1739 break;
1740 }
1741 negative_types[-typenum] = rettype;
1742 return rettype;
1743 }
1744 \f
1745 /* This page contains subroutines of read_type. */
1746
1747 #define VISIBILITY_PRIVATE '0' /* Stabs character for private field */
1748 #define VISIBILITY_PROTECTED '1' /* Stabs character for protected fld */
1749 #define VISIBILITY_PUBLIC '2' /* Stabs character for public field */
1750
1751 /* Read member function stabs info for C++ classes. The form of each member
1752 function data is:
1753
1754 NAME :: TYPENUM[=type definition] ARGS : PHYSNAME ;
1755
1756 An example with two member functions is:
1757
1758 afunc1::20=##15;:i;2A.;afunc2::20:i;2A.;
1759
1760 For the case of overloaded operators, the format is op$::*.funcs, where
1761 $ is the CPLUS_MARKER (usually '$'), `*' holds the place for an operator
1762 name (such as `+=') and `.' marks the end of the operator name.
1763
1764 Returns 1 for success, 0 for failure. */
1765
1766 static int
1767 read_member_functions (fip, pp, type, objfile)
1768 struct field_info *fip;
1769 char **pp;
1770 struct type *type;
1771 struct objfile *objfile;
1772 {
1773 int nfn_fields = 0;
1774 int length = 0;
1775 /* Total number of member functions defined in this class. If the class
1776 defines two `f' functions, and one `g' function, then this will have
1777 the value 3. */
1778 int total_length = 0;
1779 int i;
1780 struct next_fnfield
1781 {
1782 struct next_fnfield *next;
1783 struct fn_field fn_field;
1784 } *sublist;
1785 struct type *look_ahead_type;
1786 struct next_fnfieldlist *new_fnlist;
1787 struct next_fnfield *new_sublist;
1788 char *main_fn_name;
1789 register char *p;
1790
1791 /* Process each list until we find something that is not a member function
1792 or find the end of the functions. */
1793
1794 while (**pp != ';')
1795 {
1796 /* We should be positioned at the start of the function name.
1797 Scan forward to find the first ':' and if it is not the
1798 first of a "::" delimiter, then this is not a member function. */
1799 p = *pp;
1800 while (*p != ':')
1801 {
1802 p++;
1803 }
1804 if (p[1] != ':')
1805 {
1806 break;
1807 }
1808
1809 sublist = NULL;
1810 look_ahead_type = NULL;
1811 length = 0;
1812
1813 new_fnlist = (struct next_fnfieldlist *)
1814 xmalloc (sizeof (struct next_fnfieldlist));
1815 make_cleanup (free, new_fnlist);
1816 memset (new_fnlist, 0, sizeof (struct next_fnfieldlist));
1817
1818 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && (*pp)[2] == CPLUS_MARKER)
1819 {
1820 /* This is a completely wierd case. In order to stuff in the
1821 names that might contain colons (the usual name delimiter),
1822 Mike Tiemann defined a different name format which is
1823 signalled if the identifier is "op$". In that case, the
1824 format is "op$::XXXX." where XXXX is the name. This is
1825 used for names like "+" or "=". YUUUUUUUK! FIXME! */
1826 /* This lets the user type "break operator+".
1827 We could just put in "+" as the name, but that wouldn't
1828 work for "*". */
1829 static char opname[32] = {'o', 'p', CPLUS_MARKER};
1830 char *o = opname + 3;
1831
1832 /* Skip past '::'. */
1833 *pp = p + 2;
1834
1835 STABS_CONTINUE (pp);
1836 p = *pp;
1837 while (*p != '.')
1838 {
1839 *o++ = *p++;
1840 }
1841 main_fn_name = savestring (opname, o - opname);
1842 /* Skip past '.' */
1843 *pp = p + 1;
1844 }
1845 else
1846 {
1847 main_fn_name = savestring (*pp, p - *pp);
1848 /* Skip past '::'. */
1849 *pp = p + 2;
1850 }
1851 new_fnlist -> fn_fieldlist.name = main_fn_name;
1852
1853 do
1854 {
1855 new_sublist =
1856 (struct next_fnfield *) xmalloc (sizeof (struct next_fnfield));
1857 make_cleanup (free, new_sublist);
1858 memset (new_sublist, 0, sizeof (struct next_fnfield));
1859
1860 /* Check for and handle cretinous dbx symbol name continuation! */
1861 if (look_ahead_type == NULL)
1862 {
1863 /* Normal case. */
1864 STABS_CONTINUE (pp);
1865
1866 new_sublist -> fn_field.type = read_type (pp, objfile);
1867 if (**pp != ':')
1868 {
1869 /* Invalid symtab info for member function. */
1870 return 0;
1871 }
1872 }
1873 else
1874 {
1875 /* g++ version 1 kludge */
1876 new_sublist -> fn_field.type = look_ahead_type;
1877 look_ahead_type = NULL;
1878 }
1879
1880 (*pp)++;
1881 p = *pp;
1882 while (*p != ';')
1883 {
1884 p++;
1885 }
1886
1887 /* If this is just a stub, then we don't have the real name here. */
1888
1889 if (TYPE_FLAGS (new_sublist -> fn_field.type) & TYPE_FLAG_STUB)
1890 {
1891 if (!TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type))
1892 TYPE_DOMAIN_TYPE (new_sublist -> fn_field.type) = type;
1893 new_sublist -> fn_field.is_stub = 1;
1894 }
1895 new_sublist -> fn_field.physname = savestring (*pp, p - *pp);
1896 *pp = p + 1;
1897
1898 /* Set this member function's visibility fields. */
1899 switch (*(*pp)++)
1900 {
1901 case VISIBILITY_PRIVATE:
1902 new_sublist -> fn_field.is_private = 1;
1903 break;
1904 case VISIBILITY_PROTECTED:
1905 new_sublist -> fn_field.is_protected = 1;
1906 break;
1907 }
1908
1909 STABS_CONTINUE (pp);
1910 switch (**pp)
1911 {
1912 case 'A': /* Normal functions. */
1913 new_sublist -> fn_field.is_const = 0;
1914 new_sublist -> fn_field.is_volatile = 0;
1915 (*pp)++;
1916 break;
1917 case 'B': /* `const' member functions. */
1918 new_sublist -> fn_field.is_const = 1;
1919 new_sublist -> fn_field.is_volatile = 0;
1920 (*pp)++;
1921 break;
1922 case 'C': /* `volatile' member function. */
1923 new_sublist -> fn_field.is_const = 0;
1924 new_sublist -> fn_field.is_volatile = 1;
1925 (*pp)++;
1926 break;
1927 case 'D': /* `const volatile' member function. */
1928 new_sublist -> fn_field.is_const = 1;
1929 new_sublist -> fn_field.is_volatile = 1;
1930 (*pp)++;
1931 break;
1932 case '*': /* File compiled with g++ version 1 -- no info */
1933 case '?':
1934 case '.':
1935 break;
1936 default:
1937 complain (&const_vol_complaint, **pp);
1938 break;
1939 }
1940
1941 switch (*(*pp)++)
1942 {
1943 case '*':
1944 {
1945 int nbits;
1946 /* virtual member function, followed by index.
1947 The sign bit is set to distinguish pointers-to-methods
1948 from virtual function indicies. Since the array is
1949 in words, the quantity must be shifted left by 1
1950 on 16 bit machine, and by 2 on 32 bit machine, forcing
1951 the sign bit out, and usable as a valid index into
1952 the array. Remove the sign bit here. */
1953 new_sublist -> fn_field.voffset =
1954 (0x7fffffff & read_huge_number (pp, ';', &nbits)) + 2;
1955 if (nbits != 0)
1956 return 0;
1957
1958 STABS_CONTINUE (pp);
1959 if (**pp == ';' || **pp == '\0')
1960 {
1961 /* Must be g++ version 1. */
1962 new_sublist -> fn_field.fcontext = 0;
1963 }
1964 else
1965 {
1966 /* Figure out from whence this virtual function came.
1967 It may belong to virtual function table of
1968 one of its baseclasses. */
1969 look_ahead_type = read_type (pp, objfile);
1970 if (**pp == ':')
1971 {
1972 /* g++ version 1 overloaded methods. */
1973 }
1974 else
1975 {
1976 new_sublist -> fn_field.fcontext = look_ahead_type;
1977 if (**pp != ';')
1978 {
1979 return 0;
1980 }
1981 else
1982 {
1983 ++*pp;
1984 }
1985 look_ahead_type = NULL;
1986 }
1987 }
1988 break;
1989 }
1990 case '?':
1991 /* static member function. */
1992 new_sublist -> fn_field.voffset = VOFFSET_STATIC;
1993 if (strncmp (new_sublist -> fn_field.physname,
1994 main_fn_name, strlen (main_fn_name)))
1995 {
1996 new_sublist -> fn_field.is_stub = 1;
1997 }
1998 break;
1999
2000 default:
2001 /* error */
2002 complain (&member_fn_complaint, (*pp)[-1]);
2003 /* Fall through into normal member function. */
2004
2005 case '.':
2006 /* normal member function. */
2007 new_sublist -> fn_field.voffset = 0;
2008 new_sublist -> fn_field.fcontext = 0;
2009 break;
2010 }
2011
2012 new_sublist -> next = sublist;
2013 sublist = new_sublist;
2014 length++;
2015 STABS_CONTINUE (pp);
2016 }
2017 while (**pp != ';' && **pp != '\0');
2018
2019 (*pp)++;
2020
2021 new_fnlist -> fn_fieldlist.fn_fields = (struct fn_field *)
2022 obstack_alloc (&objfile -> type_obstack,
2023 sizeof (struct fn_field) * length);
2024 memset (new_fnlist -> fn_fieldlist.fn_fields, 0,
2025 sizeof (struct fn_field) * length);
2026 for (i = length; (i--, sublist); sublist = sublist -> next)
2027 {
2028 new_fnlist -> fn_fieldlist.fn_fields[i] = sublist -> fn_field;
2029 }
2030
2031 new_fnlist -> fn_fieldlist.length = length;
2032 new_fnlist -> next = fip -> fnlist;
2033 fip -> fnlist = new_fnlist;
2034 nfn_fields++;
2035 total_length += length;
2036 STABS_CONTINUE (pp);
2037 }
2038
2039 if (nfn_fields)
2040 {
2041 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2042 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
2043 TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * nfn_fields);
2044 memset (TYPE_FN_FIELDLISTS (type), 0,
2045 sizeof (struct fn_fieldlist) * nfn_fields);
2046 TYPE_NFN_FIELDS (type) = nfn_fields;
2047 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2048 }
2049
2050 return 1;
2051 }
2052
2053 /* Special GNU C++ name.
2054
2055 Returns 1 for success, 0 for failure. "failure" means that we can't
2056 keep parsing and it's time for error_type(). */
2057
2058 static int
2059 read_cpp_abbrev (fip, pp, type, objfile)
2060 struct field_info *fip;
2061 char **pp;
2062 struct type *type;
2063 struct objfile *objfile;
2064 {
2065 register char *p;
2066 const char *prefix;
2067 char *name;
2068 char cpp_abbrev;
2069 struct type *context;
2070
2071 p = *pp;
2072 if (*++p == 'v')
2073 {
2074 name = NULL;
2075 cpp_abbrev = *++p;
2076
2077 *pp = p + 1;
2078
2079 /* At this point, *pp points to something like "22:23=*22...",
2080 where the type number before the ':' is the "context" and
2081 everything after is a regular type definition. Lookup the
2082 type, find it's name, and construct the field name. */
2083
2084 context = read_type (pp, objfile);
2085
2086 switch (cpp_abbrev)
2087 {
2088 case 'f': /* $vf -- a virtual function table pointer */
2089 fip->list->field.name =
2090 obconcat (&objfile->type_obstack, vptr_name, "", "");
2091 break;
2092
2093 case 'b': /* $vb -- a virtual bsomethingorother */
2094 name = type_name_no_tag (context);
2095 if (name == NULL)
2096 {
2097 complain (&invalid_cpp_type_complaint, symnum);
2098 name = "FOO";
2099 }
2100 fip->list->field.name =
2101 obconcat (&objfile->type_obstack, vb_name, name, "");
2102 break;
2103
2104 default:
2105 complain (&invalid_cpp_abbrev_complaint, *pp);
2106 fip->list->field.name =
2107 obconcat (&objfile->type_obstack,
2108 "INVALID_CPLUSPLUS_ABBREV", "", "");
2109 break;
2110 }
2111
2112 /* At this point, *pp points to the ':'. Skip it and read the
2113 field type. */
2114
2115 p = ++(*pp);
2116 if (p[-1] != ':')
2117 {
2118 complain (&invalid_cpp_abbrev_complaint, *pp);
2119 return 0;
2120 }
2121 fip->list->field.type = read_type (pp, objfile);
2122 if (**pp == ',')
2123 (*pp)++; /* Skip the comma. */
2124 else
2125 return 0;
2126
2127 {
2128 int nbits;
2129 fip->list->field.bitpos = read_huge_number (pp, ';', &nbits);
2130 if (nbits != 0)
2131 return 0;
2132 }
2133 /* This field is unpacked. */
2134 fip->list->field.bitsize = 0;
2135 fip->list->visibility = VISIBILITY_PRIVATE;
2136 }
2137 else
2138 {
2139 complain (&invalid_cpp_abbrev_complaint, *pp);
2140 /* We have no idea what syntax an unrecognized abbrev would have, so
2141 better return 0. If we returned 1, we would need to at least advance
2142 *pp to avoid an infinite loop. */
2143 return 0;
2144 }
2145 return 1;
2146 }
2147
2148 static void
2149 read_one_struct_field (fip, pp, p, type, objfile)
2150 struct field_info *fip;
2151 char **pp;
2152 char *p;
2153 struct type *type;
2154 struct objfile *objfile;
2155 {
2156 fip -> list -> field.name =
2157 obsavestring (*pp, p - *pp, &objfile -> type_obstack);
2158 *pp = p + 1;
2159
2160 /* This means we have a visibility for a field coming. */
2161 if (**pp == '/')
2162 {
2163 (*pp)++;
2164 fip -> list -> visibility = *(*pp)++;
2165 switch (fip -> list -> visibility)
2166 {
2167 case VISIBILITY_PRIVATE:
2168 case VISIBILITY_PROTECTED:
2169 break;
2170
2171 case VISIBILITY_PUBLIC:
2172 /* Nothing to do */
2173 break;
2174
2175 default:
2176 /* Unknown visibility specifier. */
2177 complain (&stabs_general_complaint,
2178 "unknown visibility specifier");
2179 return;
2180 break;
2181 }
2182 }
2183 else
2184 {
2185 /* normal dbx-style format, no explicit visibility */
2186 fip -> list -> visibility = VISIBILITY_PUBLIC;
2187 }
2188
2189 fip -> list -> field.type = read_type (pp, objfile);
2190 if (**pp == ':')
2191 {
2192 p = ++(*pp);
2193 #if 0
2194 /* Possible future hook for nested types. */
2195 if (**pp == '!')
2196 {
2197 fip -> list -> field.bitpos = (long)-2; /* nested type */
2198 p = ++(*pp);
2199 }
2200 else
2201 #endif
2202 {
2203 /* Static class member. */
2204 fip -> list -> field.bitpos = (long) -1;
2205 }
2206 while (*p != ';')
2207 {
2208 p++;
2209 }
2210 fip -> list -> field.bitsize = (long) savestring (*pp, p - *pp);
2211 *pp = p + 1;
2212 return;
2213 }
2214 else if (**pp != ',')
2215 {
2216 /* Bad structure-type format. */
2217 complain (&stabs_general_complaint, "bad structure-type format");
2218 return;
2219 }
2220
2221 (*pp)++; /* Skip the comma. */
2222
2223 {
2224 int nbits;
2225 fip -> list -> field.bitpos = read_huge_number (pp, ',', &nbits);
2226 if (nbits != 0)
2227 {
2228 complain (&stabs_general_complaint, "bad structure-type format");
2229 return;
2230 }
2231 fip -> list -> field.bitsize = read_huge_number (pp, ';', &nbits);
2232 if (nbits != 0)
2233 {
2234 complain (&stabs_general_complaint, "bad structure-type format");
2235 return;
2236 }
2237 }
2238 #if 0
2239 /* FIXME-tiemann: Can't the compiler put out something which
2240 lets us distinguish these? (or maybe just not put out anything
2241 for the field). What is the story here? What does the compiler
2242 really do? Also, patch gdb.texinfo for this case; I document
2243 it as a possible problem there. Search for "DBX-style". */
2244
2245 /* This is wrong because this is identical to the symbols
2246 produced for GCC 0-size arrays. For example:
2247 typedef union {
2248 int num;
2249 char str[0];
2250 } foo;
2251 The code which dumped core in such circumstances should be
2252 fixed not to dump core. */
2253
2254 /* g++ -g0 can put out bitpos & bitsize zero for a static
2255 field. This does not give us any way of getting its
2256 class, so we can't know its name. But we can just
2257 ignore the field so we don't dump core and other nasty
2258 stuff. */
2259 if (fip -> list -> field.bitpos == 0 && fip -> list -> field.bitsize == 0)
2260 {
2261 complain (&dbx_class_complaint);
2262 /* Ignore this field. */
2263 fip -> list = fip -> list -> next;
2264 }
2265 else
2266 #endif /* 0 */
2267 {
2268 /* Detect an unpacked field and mark it as such.
2269 dbx gives a bit size for all fields.
2270 Note that forward refs cannot be packed,
2271 and treat enums as if they had the width of ints. */
2272
2273 if (TYPE_CODE (fip -> list -> field.type) != TYPE_CODE_INT
2274 && TYPE_CODE (fip -> list -> field.type) != TYPE_CODE_ENUM)
2275 {
2276 fip -> list -> field.bitsize = 0;
2277 }
2278 if ((fip -> list -> field.bitsize
2279 == TARGET_CHAR_BIT * TYPE_LENGTH (fip -> list -> field.type)
2280 || (TYPE_CODE (fip -> list -> field.type) == TYPE_CODE_ENUM
2281 && (fip -> list -> field.bitsize
2282 == TARGET_INT_BIT)
2283 )
2284 )
2285 &&
2286 fip -> list -> field.bitpos % 8 == 0)
2287 {
2288 fip -> list -> field.bitsize = 0;
2289 }
2290 }
2291 }
2292
2293
2294 /* Read struct or class data fields. They have the form:
2295
2296 NAME : [VISIBILITY] TYPENUM , BITPOS , BITSIZE ;
2297
2298 At the end, we see a semicolon instead of a field.
2299
2300 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
2301 a static field.
2302
2303 The optional VISIBILITY is one of:
2304
2305 '/0' (VISIBILITY_PRIVATE)
2306 '/1' (VISIBILITY_PROTECTED)
2307 '/2' (VISIBILITY_PUBLIC)
2308
2309 or nothing, for C style fields with public visibility.
2310
2311 Returns 1 for success, 0 for failure. */
2312
2313 static int
2314 read_struct_fields (fip, pp, type, objfile)
2315 struct field_info *fip;
2316 char **pp;
2317 struct type *type;
2318 struct objfile *objfile;
2319 {
2320 register char *p;
2321 struct nextfield *new;
2322
2323 /* We better set p right now, in case there are no fields at all... */
2324
2325 p = *pp;
2326
2327 /* Read each data member type until we find the terminating ';' at the end of
2328 the data member list, or break for some other reason such as finding the
2329 start of the member function list. */
2330
2331 while (**pp != ';')
2332 {
2333 STABS_CONTINUE (pp);
2334 /* Get space to record the next field's data. */
2335 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
2336 make_cleanup (free, new);
2337 memset (new, 0, sizeof (struct nextfield));
2338 new -> next = fip -> list;
2339 fip -> list = new;
2340
2341 /* Get the field name. */
2342 p = *pp;
2343 /* If is starts with CPLUS_MARKER it is a special abbreviation, unless
2344 the CPLUS_MARKER is followed by an underscore, in which case it is
2345 just the name of an anonymous type, which we should handle like any
2346 other type name. */
2347 if (*p == CPLUS_MARKER && p[1] != '_')
2348 {
2349 if (!read_cpp_abbrev (fip, pp, type, objfile))
2350 return 0;
2351 continue;
2352 }
2353
2354 /* Look for the ':' that separates the field name from the field
2355 values. Data members are delimited by a single ':', while member
2356 functions are delimited by a pair of ':'s. When we hit the member
2357 functions (if any), terminate scan loop and return. */
2358
2359 while (*p != ':' && *p != '\0')
2360 {
2361 p++;
2362 }
2363 if (*p == '\0')
2364 return 0;
2365
2366 /* Check to see if we have hit the member functions yet. */
2367 if (p[1] == ':')
2368 {
2369 break;
2370 }
2371 read_one_struct_field (fip, pp, p, type, objfile);
2372 }
2373 if (p[1] == ':')
2374 {
2375 /* chill the list of fields: the last entry (at the head) is a
2376 partially constructed entry which we now scrub. */
2377 fip -> list = fip -> list -> next;
2378 }
2379 return 1;
2380 }
2381
2382 /* The stabs for C++ derived classes contain baseclass information which
2383 is marked by a '!' character after the total size. This function is
2384 called when we encounter the baseclass marker, and slurps up all the
2385 baseclass information.
2386
2387 Immediately following the '!' marker is the number of base classes that
2388 the class is derived from, followed by information for each base class.
2389 For each base class, there are two visibility specifiers, a bit offset
2390 to the base class information within the derived class, a reference to
2391 the type for the base class, and a terminating semicolon.
2392
2393 A typical example, with two base classes, would be "!2,020,19;0264,21;".
2394 ^^ ^ ^ ^ ^ ^ ^
2395 Baseclass information marker __________________|| | | | | | |
2396 Number of baseclasses __________________________| | | | | | |
2397 Visibility specifiers (2) ________________________| | | | | |
2398 Offset in bits from start of class _________________| | | | |
2399 Type number for base class ___________________________| | | |
2400 Visibility specifiers (2) _______________________________| | |
2401 Offset in bits from start of class ________________________| |
2402 Type number of base class ____________________________________|
2403
2404 Return 1 for success, 0 for (error-type-inducing) failure. */
2405
2406 static int
2407 read_baseclasses (fip, pp, type, objfile)
2408 struct field_info *fip;
2409 char **pp;
2410 struct type *type;
2411 struct objfile *objfile;
2412 {
2413 int i;
2414 struct nextfield *new;
2415
2416 if (**pp != '!')
2417 {
2418 return 1;
2419 }
2420 else
2421 {
2422 /* Skip the '!' baseclass information marker. */
2423 (*pp)++;
2424 }
2425
2426 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2427 {
2428 int nbits;
2429 TYPE_N_BASECLASSES (type) = read_huge_number (pp, ',', &nbits);
2430 if (nbits != 0)
2431 return 0;
2432 }
2433
2434 #if 0
2435 /* Some stupid compilers have trouble with the following, so break
2436 it up into simpler expressions. */
2437 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *)
2438 TYPE_ALLOC (type, B_BYTES (TYPE_N_BASECLASSES (type)));
2439 #else
2440 {
2441 int num_bytes = B_BYTES (TYPE_N_BASECLASSES (type));
2442 char *pointer;
2443
2444 pointer = (char *) TYPE_ALLOC (type, num_bytes);
2445 TYPE_FIELD_VIRTUAL_BITS (type) = (B_TYPE *) pointer;
2446 }
2447 #endif /* 0 */
2448
2449 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), TYPE_N_BASECLASSES (type));
2450
2451 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
2452 {
2453 new = (struct nextfield *) xmalloc (sizeof (struct nextfield));
2454 make_cleanup (free, new);
2455 memset (new, 0, sizeof (struct nextfield));
2456 new -> next = fip -> list;
2457 fip -> list = new;
2458 new -> field.bitsize = 0; /* this should be an unpacked field! */
2459
2460 STABS_CONTINUE (pp);
2461 switch (*(*pp)++)
2462 {
2463 case '0':
2464 /* Nothing to do. */
2465 break;
2466 case '1':
2467 SET_TYPE_FIELD_VIRTUAL (type, i);
2468 break;
2469 default:
2470 /* Bad visibility format. */
2471 return 0;
2472 }
2473
2474 new -> visibility = *(*pp)++;
2475 switch (new -> visibility)
2476 {
2477 case VISIBILITY_PRIVATE:
2478 case VISIBILITY_PROTECTED:
2479 case VISIBILITY_PUBLIC:
2480 break;
2481 default:
2482 /* Bad visibility format. */
2483 return 0;
2484 }
2485
2486 {
2487 int nbits;
2488
2489 /* The remaining value is the bit offset of the portion of the object
2490 corresponding to this baseclass. Always zero in the absence of
2491 multiple inheritance. */
2492
2493 new -> field.bitpos = read_huge_number (pp, ',', &nbits);
2494 if (nbits != 0)
2495 return 0;
2496 }
2497
2498 /* The last piece of baseclass information is the type of the
2499 base class. Read it, and remember it's type name as this
2500 field's name. */
2501
2502 new -> field.type = read_type (pp, objfile);
2503 new -> field.name = type_name_no_tag (new -> field.type);
2504
2505 /* skip trailing ';' and bump count of number of fields seen */
2506 if (**pp == ';')
2507 (*pp)++;
2508 else
2509 return 0;
2510 }
2511 return 1;
2512 }
2513
2514 /* The tail end of stabs for C++ classes that contain a virtual function
2515 pointer contains a tilde, a %, and a type number.
2516 The type number refers to the base class (possibly this class itself) which
2517 contains the vtable pointer for the current class.
2518
2519 This function is called when we have parsed all the method declarations,
2520 so we can look for the vptr base class info. */
2521
2522 static int
2523 read_tilde_fields (fip, pp, type, objfile)
2524 struct field_info *fip;
2525 char **pp;
2526 struct type *type;
2527 struct objfile *objfile;
2528 {
2529 register char *p;
2530
2531 STABS_CONTINUE (pp);
2532
2533 /* If we are positioned at a ';', then skip it. */
2534 if (**pp == ';')
2535 {
2536 (*pp)++;
2537 }
2538
2539 if (**pp == '~')
2540 {
2541 (*pp)++;
2542
2543 if (**pp == '=' || **pp == '+' || **pp == '-')
2544 {
2545 /* Obsolete flags that used to indicate the presence
2546 of constructors and/or destructors. */
2547 (*pp)++;
2548 }
2549
2550 /* Read either a '%' or the final ';'. */
2551 if (*(*pp)++ == '%')
2552 {
2553 /* The next number is the type number of the base class
2554 (possibly our own class) which supplies the vtable for
2555 this class. Parse it out, and search that class to find
2556 its vtable pointer, and install those into TYPE_VPTR_BASETYPE
2557 and TYPE_VPTR_FIELDNO. */
2558
2559 struct type *t;
2560 int i;
2561
2562 t = read_type (pp, objfile);
2563 p = (*pp)++;
2564 while (*p != '\0' && *p != ';')
2565 {
2566 p++;
2567 }
2568 if (*p == '\0')
2569 {
2570 /* Premature end of symbol. */
2571 return 0;
2572 }
2573
2574 TYPE_VPTR_BASETYPE (type) = t;
2575 if (type == t) /* Our own class provides vtbl ptr */
2576 {
2577 for (i = TYPE_NFIELDS (t) - 1;
2578 i >= TYPE_N_BASECLASSES (t);
2579 --i)
2580 {
2581 if (! strncmp (TYPE_FIELD_NAME (t, i), vptr_name,
2582 sizeof (vptr_name) - 1))
2583 {
2584 TYPE_VPTR_FIELDNO (type) = i;
2585 goto gotit;
2586 }
2587 }
2588 /* Virtual function table field not found. */
2589 complain (&vtbl_notfound_complaint, TYPE_NAME (type));
2590 return 0;
2591 }
2592 else
2593 {
2594 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
2595 }
2596
2597 gotit:
2598 *pp = p + 1;
2599 }
2600 }
2601 return 1;
2602 }
2603
2604 static int
2605 attach_fn_fields_to_type (fip, type)
2606 struct field_info *fip;
2607 register struct type *type;
2608 {
2609 register int n;
2610
2611 for (n = 0; n < TYPE_N_BASECLASSES (type); n++)
2612 {
2613 if (TYPE_CODE (TYPE_BASECLASS (type, n)) == TYPE_CODE_UNDEF)
2614 {
2615 /* @@ Memory leak on objfile -> type_obstack? */
2616 return 0;
2617 }
2618 TYPE_NFN_FIELDS_TOTAL (type) +=
2619 TYPE_NFN_FIELDS_TOTAL (TYPE_BASECLASS (type, n));
2620 }
2621
2622 for (n = TYPE_NFN_FIELDS (type);
2623 fip -> fnlist != NULL;
2624 fip -> fnlist = fip -> fnlist -> next)
2625 {
2626 --n; /* Circumvent Sun3 compiler bug */
2627 TYPE_FN_FIELDLISTS (type)[n] = fip -> fnlist -> fn_fieldlist;
2628 }
2629 return 1;
2630 }
2631
2632 /* Create the vector of fields, and record how big it is.
2633 We need this info to record proper virtual function table information
2634 for this class's virtual functions. */
2635
2636 static int
2637 attach_fields_to_type (fip, type, objfile)
2638 struct field_info *fip;
2639 register struct type *type;
2640 struct objfile *objfile;
2641 {
2642 register int nfields = 0;
2643 register int non_public_fields = 0;
2644 register struct nextfield *scan;
2645
2646 /* Count up the number of fields that we have, as well as taking note of
2647 whether or not there are any non-public fields, which requires us to
2648 allocate and build the private_field_bits and protected_field_bits
2649 bitfields. */
2650
2651 for (scan = fip -> list; scan != NULL; scan = scan -> next)
2652 {
2653 nfields++;
2654 if (scan -> visibility != VISIBILITY_PUBLIC)
2655 {
2656 non_public_fields++;
2657 }
2658 }
2659
2660 /* Now we know how many fields there are, and whether or not there are any
2661 non-public fields. Record the field count, allocate space for the
2662 array of fields, and create blank visibility bitfields if necessary. */
2663
2664 TYPE_NFIELDS (type) = nfields;
2665 TYPE_FIELDS (type) = (struct field *)
2666 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2667 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
2668
2669 if (non_public_fields)
2670 {
2671 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2672
2673 TYPE_FIELD_PRIVATE_BITS (type) =
2674 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2675 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
2676
2677 TYPE_FIELD_PROTECTED_BITS (type) =
2678 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
2679 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
2680 }
2681
2682 /* Copy the saved-up fields into the field vector. Start from the head
2683 of the list, adding to the tail of the field array, so that they end
2684 up in the same order in the array in which they were added to the list. */
2685
2686 while (nfields-- > 0)
2687 {
2688 TYPE_FIELD (type, nfields) = fip -> list -> field;
2689 switch (fip -> list -> visibility)
2690 {
2691 case VISIBILITY_PRIVATE:
2692 SET_TYPE_FIELD_PRIVATE (type, nfields);
2693 break;
2694
2695 case VISIBILITY_PROTECTED:
2696 SET_TYPE_FIELD_PROTECTED (type, nfields);
2697 break;
2698
2699 case VISIBILITY_PUBLIC:
2700 break;
2701
2702 default:
2703 /* Should warn about this unknown visibility? */
2704 break;
2705 }
2706 fip -> list = fip -> list -> next;
2707 }
2708 return 1;
2709 }
2710
2711 /* Read the description of a structure (or union type) and return an object
2712 describing the type.
2713
2714 PP points to a character pointer that points to the next unconsumed token
2715 in the the stabs string. For example, given stabs "A:T4=s4a:1,0,32;;",
2716 *PP will point to "4a:1,0,32;;".
2717
2718 TYPE points to an incomplete type that needs to be filled in.
2719
2720 OBJFILE points to the current objfile from which the stabs information is
2721 being read. (Note that it is redundant in that TYPE also contains a pointer
2722 to this same objfile, so it might be a good idea to eliminate it. FIXME).
2723 */
2724
2725 static struct type *
2726 read_struct_type (pp, type, objfile)
2727 char **pp;
2728 struct type *type;
2729 struct objfile *objfile;
2730 {
2731 struct cleanup *back_to;
2732 struct field_info fi;
2733
2734 fi.list = NULL;
2735 fi.fnlist = NULL;
2736
2737 back_to = make_cleanup (null_cleanup, 0);
2738
2739 INIT_CPLUS_SPECIFIC (type);
2740 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
2741
2742 /* First comes the total size in bytes. */
2743
2744 {
2745 int nbits;
2746 TYPE_LENGTH (type) = read_huge_number (pp, 0, &nbits);
2747 if (nbits != 0)
2748 return error_type (pp);
2749 }
2750
2751 /* Now read the baseclasses, if any, read the regular C struct or C++
2752 class member fields, attach the fields to the type, read the C++
2753 member functions, attach them to the type, and then read any tilde
2754 field (baseclass specifier for the class holding the main vtable). */
2755
2756 if (!read_baseclasses (&fi, pp, type, objfile)
2757 || !read_struct_fields (&fi, pp, type, objfile)
2758 || !attach_fields_to_type (&fi, type, objfile)
2759 || !read_member_functions (&fi, pp, type, objfile)
2760 || !attach_fn_fields_to_type (&fi, type)
2761 || !read_tilde_fields (&fi, pp, type, objfile))
2762 {
2763 do_cleanups (back_to);
2764 return (error_type (pp));
2765 }
2766
2767 do_cleanups (back_to);
2768 return (type);
2769 }
2770
2771 /* Read a definition of an array type,
2772 and create and return a suitable type object.
2773 Also creates a range type which represents the bounds of that
2774 array. */
2775
2776 static struct type *
2777 read_array_type (pp, type, objfile)
2778 register char **pp;
2779 register struct type *type;
2780 struct objfile *objfile;
2781 {
2782 struct type *index_type, *element_type, *range_type;
2783 int lower, upper;
2784 int adjustable = 0;
2785 int nbits;
2786
2787 /* Format of an array type:
2788 "ar<index type>;lower;upper;<array_contents_type>". Put code in
2789 to handle this.
2790
2791 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
2792 for these, produce a type like float[][]. */
2793
2794 index_type = read_type (pp, objfile);
2795 if (**pp != ';')
2796 /* Improper format of array type decl. */
2797 return error_type (pp);
2798 ++*pp;
2799
2800 if (!(**pp >= '0' && **pp <= '9'))
2801 {
2802 (*pp)++;
2803 adjustable = 1;
2804 }
2805 lower = read_huge_number (pp, ';', &nbits);
2806 if (nbits != 0)
2807 return error_type (pp);
2808
2809 if (!(**pp >= '0' && **pp <= '9'))
2810 {
2811 (*pp)++;
2812 adjustable = 1;
2813 }
2814 upper = read_huge_number (pp, ';', &nbits);
2815 if (nbits != 0)
2816 return error_type (pp);
2817
2818 element_type = read_type (pp, objfile);
2819
2820 if (adjustable)
2821 {
2822 lower = 0;
2823 upper = -1;
2824 }
2825
2826 range_type =
2827 create_range_type ((struct type *) NULL, index_type, lower, upper);
2828 type = create_array_type (type, element_type, range_type);
2829
2830 /* If we have an array whose element type is not yet known, but whose
2831 bounds *are* known, record it to be adjusted at the end of the file. */
2832
2833 if (TYPE_LENGTH (element_type) == 0 && !adjustable)
2834 {
2835 add_undefined_type (type);
2836 }
2837
2838 return type;
2839 }
2840
2841
2842 /* Read a definition of an enumeration type,
2843 and create and return a suitable type object.
2844 Also defines the symbols that represent the values of the type. */
2845
2846 static struct type *
2847 read_enum_type (pp, type, objfile)
2848 register char **pp;
2849 register struct type *type;
2850 struct objfile *objfile;
2851 {
2852 register char *p;
2853 char *name;
2854 register long n;
2855 register struct symbol *sym;
2856 int nsyms = 0;
2857 struct pending **symlist;
2858 struct pending *osyms, *syms;
2859 int o_nsyms;
2860
2861 #if 0
2862 /* FIXME! The stabs produced by Sun CC merrily define things that ought
2863 to be file-scope, between N_FN entries, using N_LSYM. What's a mother
2864 to do? For now, force all enum values to file scope. */
2865 if (within_function)
2866 symlist = &local_symbols;
2867 else
2868 #endif
2869 symlist = &file_symbols;
2870 osyms = *symlist;
2871 o_nsyms = osyms ? osyms->nsyms : 0;
2872
2873 /* Read the value-names and their values.
2874 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
2875 A semicolon or comma instead of a NAME means the end. */
2876 while (**pp && **pp != ';' && **pp != ',')
2877 {
2878 int nbits;
2879 STABS_CONTINUE (pp);
2880 p = *pp;
2881 while (*p != ':') p++;
2882 name = obsavestring (*pp, p - *pp, &objfile -> symbol_obstack);
2883 *pp = p + 1;
2884 n = read_huge_number (pp, ',', &nbits);
2885 if (nbits != 0)
2886 return error_type (pp);
2887
2888 sym = (struct symbol *)
2889 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symbol));
2890 memset (sym, 0, sizeof (struct symbol));
2891 SYMBOL_NAME (sym) = name;
2892 SYMBOL_LANGUAGE (sym) = current_subfile -> language;
2893 SYMBOL_CLASS (sym) = LOC_CONST;
2894 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2895 SYMBOL_VALUE (sym) = n;
2896 add_symbol_to_list (sym, symlist);
2897 nsyms++;
2898 }
2899
2900 if (**pp == ';')
2901 (*pp)++; /* Skip the semicolon. */
2902
2903 /* Now fill in the fields of the type-structure. */
2904
2905 TYPE_LENGTH (type) = sizeof (int);
2906 TYPE_CODE (type) = TYPE_CODE_ENUM;
2907 TYPE_FLAGS (type) &= ~TYPE_FLAG_STUB;
2908 TYPE_NFIELDS (type) = nsyms;
2909 TYPE_FIELDS (type) = (struct field *)
2910 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2911 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nsyms);
2912
2913 /* Find the symbols for the values and put them into the type.
2914 The symbols can be found in the symlist that we put them on
2915 to cause them to be defined. osyms contains the old value
2916 of that symlist; everything up to there was defined by us. */
2917 /* Note that we preserve the order of the enum constants, so
2918 that in something like "enum {FOO, LAST_THING=FOO}" we print
2919 FOO, not LAST_THING. */
2920
2921 for (syms = *symlist, n = 0; syms; syms = syms->next)
2922 {
2923 int j = 0;
2924 if (syms == osyms)
2925 j = o_nsyms;
2926 for (; j < syms->nsyms; j++,n++)
2927 {
2928 struct symbol *xsym = syms->symbol[j];
2929 SYMBOL_TYPE (xsym) = type;
2930 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
2931 TYPE_FIELD_VALUE (type, n) = 0;
2932 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
2933 TYPE_FIELD_BITSIZE (type, n) = 0;
2934 }
2935 if (syms == osyms)
2936 break;
2937 }
2938
2939 #if 0
2940 /* This screws up perfectly good C programs with enums. FIXME. */
2941 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2942 if(TYPE_NFIELDS(type) == 2 &&
2943 ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
2944 STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2945 (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
2946 STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
2947 TYPE_CODE(type) = TYPE_CODE_BOOL;
2948 #endif
2949
2950 return type;
2951 }
2952
2953 /* Sun's ACC uses a somewhat saner method for specifying the builtin
2954 typedefs in every file (for int, long, etc):
2955
2956 type = b <signed> <width>; <offset>; <nbits>
2957 signed = u or s. Possible c in addition to u or s (for char?).
2958 offset = offset from high order bit to start bit of type.
2959 width is # bytes in object of this type, nbits is # bits in type.
2960
2961 The width/offset stuff appears to be for small objects stored in
2962 larger ones (e.g. `shorts' in `int' registers). We ignore it for now,
2963 FIXME. */
2964
2965 static struct type *
2966 read_sun_builtin_type (pp, typenums, objfile)
2967 char **pp;
2968 int typenums[2];
2969 struct objfile *objfile;
2970 {
2971 int type_bits;
2972 int nbits;
2973 int signed_type;
2974
2975 switch (**pp)
2976 {
2977 case 's':
2978 signed_type = 1;
2979 break;
2980 case 'u':
2981 signed_type = 0;
2982 break;
2983 default:
2984 return error_type (pp);
2985 }
2986 (*pp)++;
2987
2988 /* For some odd reason, all forms of char put a c here. This is strange
2989 because no other type has this honor. We can safely ignore this because
2990 we actually determine 'char'acterness by the number of bits specified in
2991 the descriptor. */
2992
2993 if (**pp == 'c')
2994 (*pp)++;
2995
2996 /* The first number appears to be the number of bytes occupied
2997 by this type, except that unsigned short is 4 instead of 2.
2998 Since this information is redundant with the third number,
2999 we will ignore it. */
3000 read_huge_number (pp, ';', &nbits);
3001 if (nbits != 0)
3002 return error_type (pp);
3003
3004 /* The second number is always 0, so ignore it too. */
3005 read_huge_number (pp, ';', &nbits);
3006 if (nbits != 0)
3007 return error_type (pp);
3008
3009 /* The third number is the number of bits for this type. */
3010 type_bits = read_huge_number (pp, 0, &nbits);
3011 if (nbits != 0)
3012 return error_type (pp);
3013
3014 #if 0
3015 /* FIXME. Here we should just be able to make a type of the right
3016 number of bits and signedness. FIXME. */
3017
3018 if (type_bits == TARGET_LONG_LONG_BIT)
3019 return (lookup_fundamental_type (objfile,
3020 signed_type? FT_LONG_LONG: FT_UNSIGNED_LONG_LONG));
3021
3022 if (type_bits == TARGET_INT_BIT)
3023 {
3024 /* FIXME -- the only way to distinguish `int' from `long'
3025 is to look at its name! */
3026 if (signed_type)
3027 {
3028 if (long_kludge_name && long_kludge_name[0] == 'l' /* long */)
3029 return lookup_fundamental_type (objfile, FT_LONG);
3030 else
3031 return lookup_fundamental_type (objfile, FT_INTEGER);
3032 }
3033 else
3034 {
3035 if (long_kludge_name
3036 && ((long_kludge_name[0] == 'u' /* unsigned */ &&
3037 long_kludge_name[9] == 'l' /* long */)
3038 || (long_kludge_name[0] == 'l' /* long unsigned */)))
3039 return lookup_fundamental_type (objfile, FT_UNSIGNED_LONG);
3040 else
3041 return lookup_fundamental_type (objfile, FT_UNSIGNED_INTEGER);
3042 }
3043 }
3044
3045 if (type_bits == TARGET_SHORT_BIT)
3046 return (lookup_fundamental_type (objfile,
3047 signed_type? FT_SHORT: FT_UNSIGNED_SHORT));
3048
3049 if (type_bits == TARGET_CHAR_BIT)
3050 return (lookup_fundamental_type (objfile,
3051 signed_type? FT_CHAR: FT_UNSIGNED_CHAR));
3052
3053 if (type_bits == 0)
3054 return lookup_fundamental_type (objfile, FT_VOID);
3055
3056 return error_type (pp);
3057 #else
3058 return init_type (type_bits == 0 ? TYPE_CODE_VOID : TYPE_CODE_INT,
3059 type_bits / TARGET_CHAR_BIT,
3060 signed_type ? 0 : TYPE_FLAG_UNSIGNED, (char *)NULL,
3061 objfile);
3062 #endif
3063 }
3064
3065 static struct type *
3066 read_sun_floating_type (pp, typenums, objfile)
3067 char **pp;
3068 int typenums[2];
3069 struct objfile *objfile;
3070 {
3071 int nbits;
3072 int details;
3073 int nbytes;
3074
3075 /* The first number has more details about the type, for example
3076 FN_COMPLEX. */
3077 details = read_huge_number (pp, ';', &nbits);
3078 if (nbits != 0)
3079 return error_type (pp);
3080
3081 /* The second number is the number of bytes occupied by this type */
3082 nbytes = read_huge_number (pp, ';', &nbits);
3083 if (nbits != 0)
3084 return error_type (pp);
3085
3086 if (details == NF_COMPLEX || details == NF_COMPLEX16
3087 || details == NF_COMPLEX32)
3088 /* This is a type we can't handle, but we do know the size.
3089 We also will be able to give it a name. */
3090 return init_type (TYPE_CODE_ERROR, nbytes, 0, NULL, objfile);
3091
3092 return init_type (TYPE_CODE_FLT, nbytes, 0, NULL, objfile);
3093 }
3094
3095 /* Read a number from the string pointed to by *PP.
3096 The value of *PP is advanced over the number.
3097 If END is nonzero, the character that ends the
3098 number must match END, or an error happens;
3099 and that character is skipped if it does match.
3100 If END is zero, *PP is left pointing to that character.
3101
3102 If the number fits in a long, set *BITS to 0 and return the value.
3103 If not, set *BITS to be the number of bits in the number and return 0.
3104
3105 If encounter garbage, set *BITS to -1 and return 0. */
3106
3107 static long
3108 read_huge_number (pp, end, bits)
3109 char **pp;
3110 int end;
3111 int *bits;
3112 {
3113 char *p = *pp;
3114 int sign = 1;
3115 long n = 0;
3116 int radix = 10;
3117 char overflow = 0;
3118 int nbits = 0;
3119 int c;
3120 long upper_limit;
3121
3122 if (*p == '-')
3123 {
3124 sign = -1;
3125 p++;
3126 }
3127
3128 /* Leading zero means octal. GCC uses this to output values larger
3129 than an int (because that would be hard in decimal). */
3130 if (*p == '0')
3131 {
3132 radix = 8;
3133 p++;
3134 }
3135
3136 upper_limit = LONG_MAX / radix;
3137 while ((c = *p++) >= '0' && c < ('0' + radix))
3138 {
3139 if (n <= upper_limit)
3140 {
3141 n *= radix;
3142 n += c - '0'; /* FIXME this overflows anyway */
3143 }
3144 else
3145 overflow = 1;
3146
3147 /* This depends on large values being output in octal, which is
3148 what GCC does. */
3149 if (radix == 8)
3150 {
3151 if (nbits == 0)
3152 {
3153 if (c == '0')
3154 /* Ignore leading zeroes. */
3155 ;
3156 else if (c == '1')
3157 nbits = 1;
3158 else if (c == '2' || c == '3')
3159 nbits = 2;
3160 else
3161 nbits = 3;
3162 }
3163 else
3164 nbits += 3;
3165 }
3166 }
3167 if (end)
3168 {
3169 if (c && c != end)
3170 {
3171 if (bits != NULL)
3172 *bits = -1;
3173 return;
3174 }
3175 }
3176 else
3177 --p;
3178
3179 *pp = p;
3180 if (overflow)
3181 {
3182 if (nbits == 0)
3183 {
3184 /* Large decimal constants are an error (because it is hard to
3185 count how many bits are in them). */
3186 if (bits != NULL)
3187 *bits = -1;
3188 return;
3189 }
3190
3191 /* -0x7f is the same as 0x80. So deal with it by adding one to
3192 the number of bits. */
3193 if (sign == -1)
3194 ++nbits;
3195 if (bits)
3196 *bits = nbits;
3197 }
3198 else
3199 {
3200 if (bits)
3201 *bits = 0;
3202 return n * sign;
3203 }
3204 /* It's *BITS which has the interesting information. */
3205 return 0;
3206 }
3207
3208 static struct type *
3209 read_range_type (pp, typenums, objfile)
3210 char **pp;
3211 int typenums[2];
3212 struct objfile *objfile;
3213 {
3214 int rangenums[2];
3215 long n2, n3;
3216 int n2bits, n3bits;
3217 int self_subrange;
3218 struct type *result_type;
3219 struct type *index_type;
3220
3221 /* First comes a type we are a subrange of.
3222 In C it is usually 0, 1 or the type being defined. */
3223 /* FIXME: according to stabs.texinfo and AIX doc, this can be a type-id
3224 not just a type number. */
3225 if (read_type_number (pp, rangenums) != 0)
3226 return error_type (pp);
3227 self_subrange = (rangenums[0] == typenums[0] &&
3228 rangenums[1] == typenums[1]);
3229
3230 /* A semicolon should now follow; skip it. */
3231 if (**pp == ';')
3232 (*pp)++;
3233
3234 /* The remaining two operands are usually lower and upper bounds
3235 of the range. But in some special cases they mean something else. */
3236 n2 = read_huge_number (pp, ';', &n2bits);
3237 n3 = read_huge_number (pp, ';', &n3bits);
3238
3239 if (n2bits == -1 || n3bits == -1)
3240 return error_type (pp);
3241
3242 /* If limits are huge, must be large integral type. */
3243 if (n2bits != 0 || n3bits != 0)
3244 {
3245 char got_signed = 0;
3246 char got_unsigned = 0;
3247 /* Number of bits in the type. */
3248 int nbits;
3249
3250 /* Range from 0 to <large number> is an unsigned large integral type. */
3251 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
3252 {
3253 got_unsigned = 1;
3254 nbits = n3bits;
3255 }
3256 /* Range from <large number> to <large number>-1 is a large signed
3257 integral type. */
3258 else if (n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
3259 {
3260 got_signed = 1;
3261 nbits = n2bits;
3262 }
3263
3264 if (got_signed || got_unsigned)
3265 {
3266 return init_type (TYPE_CODE_INT, nbits / TARGET_CHAR_BIT,
3267 got_unsigned ? TYPE_FLAG_UNSIGNED : 0, NULL,
3268 objfile);
3269 }
3270 else
3271 return error_type (pp);
3272 }
3273
3274 /* A type defined as a subrange of itself, with bounds both 0, is void. */
3275 if (self_subrange && n2 == 0 && n3 == 0)
3276 return init_type (TYPE_CODE_VOID, 0, 0, NULL, objfile);
3277
3278 /* If n3 is zero and n2 is not, we want a floating type,
3279 and n2 is the width in bytes.
3280
3281 Fortran programs appear to use this for complex types also,
3282 and they give no way to distinguish between double and single-complex!
3283
3284 GDB does not have complex types.
3285
3286 Just return the complex as a float of that size. It won't work right
3287 for the complex values, but at least it makes the file loadable.
3288
3289 FIXME, we may be able to distinguish these by their names. FIXME. */
3290
3291 if (n3 == 0 && n2 > 0)
3292 {
3293 return init_type (TYPE_CODE_FLT, n2, 0, NULL, objfile);
3294 }
3295
3296 /* If the upper bound is -1, it must really be an unsigned int. */
3297
3298 else if (n2 == 0 && n3 == -1)
3299 {
3300 /* It is unsigned int or unsigned long. */
3301 /* GCC sometimes uses this for long long too. We could
3302 distinguish it by the name, but we don't. */
3303 return init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3304 TYPE_FLAG_UNSIGNED, NULL, objfile);
3305 }
3306
3307 /* Special case: char is defined (Who knows why) as a subrange of
3308 itself with range 0-127. */
3309 else if (self_subrange && n2 == 0 && n3 == 127)
3310 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
3311
3312 /* We used to do this only for subrange of self or subrange of int. */
3313 else if (n2 == 0)
3314 {
3315 if (n3 < 0)
3316 /* n3 actually gives the size. */
3317 return init_type (TYPE_CODE_INT, - n3, TYPE_FLAG_UNSIGNED,
3318 NULL, objfile);
3319 if (n3 == 0xff)
3320 return init_type (TYPE_CODE_INT, 1, TYPE_FLAG_UNSIGNED, NULL, objfile);
3321 if (n3 == 0xffff)
3322 return init_type (TYPE_CODE_INT, 2, TYPE_FLAG_UNSIGNED, NULL, objfile);
3323
3324 /* -1 is used for the upper bound of (4 byte) "unsigned int" and
3325 "unsigned long", and we already checked for that,
3326 so don't need to test for it here. */
3327 }
3328 /* I think this is for Convex "long long". Since I don't know whether
3329 Convex sets self_subrange, I also accept that particular size regardless
3330 of self_subrange. */
3331 else if (n3 == 0 && n2 < 0
3332 && (self_subrange
3333 || n2 == - TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT))
3334 return init_type (TYPE_CODE_INT, - n2, 0, NULL, objfile);
3335 else if (n2 == -n3 -1)
3336 {
3337 if (n3 == 0x7f)
3338 return init_type (TYPE_CODE_INT, 1, 0, NULL, objfile);
3339 if (n3 == 0x7fff)
3340 return init_type (TYPE_CODE_INT, 2, 0, NULL, objfile);
3341 if (n3 == 0x7fffffff)
3342 return init_type (TYPE_CODE_INT, 4, 0, NULL, objfile);
3343 }
3344
3345 /* We have a real range type on our hands. Allocate space and
3346 return a real pointer. */
3347
3348 /* At this point I don't have the faintest idea how to deal with
3349 a self_subrange type; I'm going to assume that this is used
3350 as an idiom, and that all of them are special cases. So . . . */
3351 if (self_subrange)
3352 return error_type (pp);
3353
3354 index_type = *dbx_lookup_type (rangenums);
3355 if (index_type == NULL)
3356 {
3357 /* Does this actually ever happen? Is that why we are worrying
3358 about dealing with it rather than just calling error_type? */
3359
3360 static struct type *range_type_index;
3361
3362 complain (&range_type_base_complaint, rangenums[1]);
3363 if (range_type_index == NULL)
3364 range_type_index =
3365 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
3366 0, "range type index type", NULL);
3367 index_type = range_type_index;
3368 }
3369
3370 result_type = create_range_type ((struct type *) NULL, index_type, n2, n3);
3371 return (result_type);
3372 }
3373
3374 /* Read in an argument list. This is a list of types, separated by commas
3375 and terminated with END. Return the list of types read in, or (struct type
3376 **)-1 if there is an error. */
3377
3378 static struct type **
3379 read_args (pp, end, objfile)
3380 char **pp;
3381 int end;
3382 struct objfile *objfile;
3383 {
3384 /* FIXME! Remove this arbitrary limit! */
3385 struct type *types[1024], **rval; /* allow for fns of 1023 parameters */
3386 int n = 0;
3387
3388 while (**pp != end)
3389 {
3390 if (**pp != ',')
3391 /* Invalid argument list: no ','. */
3392 return (struct type **)-1;
3393 (*pp)++;
3394 STABS_CONTINUE (pp);
3395 types[n++] = read_type (pp, objfile);
3396 }
3397 (*pp)++; /* get past `end' (the ':' character) */
3398
3399 if (n == 1)
3400 {
3401 rval = (struct type **) xmalloc (2 * sizeof (struct type *));
3402 }
3403 else if (TYPE_CODE (types[n-1]) != TYPE_CODE_VOID)
3404 {
3405 rval = (struct type **) xmalloc ((n + 1) * sizeof (struct type *));
3406 memset (rval + n, 0, sizeof (struct type *));
3407 }
3408 else
3409 {
3410 rval = (struct type **) xmalloc (n * sizeof (struct type *));
3411 }
3412 memcpy (rval, types, n * sizeof (struct type *));
3413 return rval;
3414 }
3415
3416 /* Add a common block's start address to the offset of each symbol
3417 declared to be in it (by being between a BCOMM/ECOMM pair that uses
3418 the common block name). */
3419
3420 static void
3421 fix_common_block (sym, valu)
3422 struct symbol *sym;
3423 int valu;
3424 {
3425 struct pending *next = (struct pending *) SYMBOL_NAMESPACE (sym);
3426 for ( ; next; next = next->next)
3427 {
3428 register int j;
3429 for (j = next->nsyms - 1; j >= 0; j--)
3430 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
3431 }
3432 }
3433
3434
3435 \f
3436 /* What about types defined as forward references inside of a small lexical
3437 scope? */
3438 /* Add a type to the list of undefined types to be checked through
3439 once this file has been read in. */
3440
3441 void
3442 add_undefined_type (type)
3443 struct type *type;
3444 {
3445 if (undef_types_length == undef_types_allocated)
3446 {
3447 undef_types_allocated *= 2;
3448 undef_types = (struct type **)
3449 xrealloc ((char *) undef_types,
3450 undef_types_allocated * sizeof (struct type *));
3451 }
3452 undef_types[undef_types_length++] = type;
3453 }
3454
3455 /* Go through each undefined type, see if it's still undefined, and fix it
3456 up if possible. We have two kinds of undefined types:
3457
3458 TYPE_CODE_ARRAY: Array whose target type wasn't defined yet.
3459 Fix: update array length using the element bounds
3460 and the target type's length.
3461 TYPE_CODE_STRUCT, TYPE_CODE_UNION: Structure whose fields were not
3462 yet defined at the time a pointer to it was made.
3463 Fix: Do a full lookup on the struct/union tag. */
3464 void
3465 cleanup_undefined_types ()
3466 {
3467 struct type **type;
3468
3469 for (type = undef_types; type < undef_types + undef_types_length; type++)
3470 {
3471 switch (TYPE_CODE (*type))
3472 {
3473
3474 case TYPE_CODE_STRUCT:
3475 case TYPE_CODE_UNION:
3476 case TYPE_CODE_ENUM:
3477 {
3478 /* Check if it has been defined since. */
3479 if (TYPE_FLAGS (*type) & TYPE_FLAG_STUB)
3480 {
3481 struct pending *ppt;
3482 int i;
3483 /* Name of the type, without "struct" or "union" */
3484 char *typename = type_name_no_tag (*type);
3485
3486 if (typename == NULL)
3487 {
3488 static struct complaint msg = {"need a type name", 0, 0};
3489 complain (&msg);
3490 break;
3491 }
3492 for (ppt = file_symbols; ppt; ppt = ppt->next)
3493 {
3494 for (i = 0; i < ppt->nsyms; i++)
3495 {
3496 struct symbol *sym = ppt->symbol[i];
3497
3498 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3499 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
3500 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
3501 TYPE_CODE (*type))
3502 && STREQ (SYMBOL_NAME (sym), typename))
3503 {
3504 memcpy (*type, SYMBOL_TYPE (sym),
3505 sizeof (struct type));
3506 }
3507 }
3508 }
3509 }
3510 }
3511 break;
3512
3513 case TYPE_CODE_ARRAY:
3514 {
3515 struct type *range_type;
3516 int lower, upper;
3517
3518 if (TYPE_LENGTH (*type) != 0) /* Better be unknown */
3519 goto badtype;
3520 if (TYPE_NFIELDS (*type) != 1)
3521 goto badtype;
3522 range_type = TYPE_FIELD_TYPE (*type, 0);
3523 if (TYPE_CODE (range_type) != TYPE_CODE_RANGE)
3524 goto badtype;
3525
3526 /* Now recompute the length of the array type, based on its
3527 number of elements and the target type's length. */
3528 lower = TYPE_FIELD_BITPOS (range_type, 0);
3529 upper = TYPE_FIELD_BITPOS (range_type, 1);
3530 TYPE_LENGTH (*type) = (upper - lower + 1)
3531 * TYPE_LENGTH (TYPE_TARGET_TYPE (*type));
3532 }
3533 break;
3534
3535 default:
3536 badtype:
3537 {
3538 static struct complaint msg = {"\
3539 GDB internal error. cleanup_undefined_types with bad type %d.", 0, 0};
3540 complain (&msg, TYPE_CODE (*type));
3541 }
3542 break;
3543 }
3544 }
3545 undef_types_length = 0;
3546 }
3547
3548 /* Scan through all of the global symbols defined in the object file,
3549 assigning values to the debugging symbols that need to be assigned
3550 to. Get these symbols from the minimal symbol table. */
3551
3552 void
3553 scan_file_globals (objfile)
3554 struct objfile *objfile;
3555 {
3556 int hash;
3557 struct minimal_symbol *msymbol;
3558 struct symbol *sym, *prev;
3559
3560 if (objfile->msymbols == 0) /* Beware the null file. */
3561 return;
3562
3563 for (msymbol = objfile -> msymbols; SYMBOL_NAME (msymbol) != NULL; msymbol++)
3564 {
3565 QUIT;
3566
3567 prev = NULL;
3568
3569 /* Get the hash index and check all the symbols
3570 under that hash index. */
3571
3572 hash = hashname (SYMBOL_NAME (msymbol));
3573
3574 for (sym = global_sym_chain[hash]; sym;)
3575 {
3576 if (SYMBOL_NAME (msymbol)[0] == SYMBOL_NAME (sym)[0] &&
3577 STREQ(SYMBOL_NAME (msymbol) + 1, SYMBOL_NAME (sym) + 1))
3578 {
3579 /* Splice this symbol out of the hash chain and
3580 assign the value we have to it. */
3581 if (prev)
3582 {
3583 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
3584 }
3585 else
3586 {
3587 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
3588 }
3589
3590 /* Check to see whether we need to fix up a common block. */
3591 /* Note: this code might be executed several times for
3592 the same symbol if there are multiple references. */
3593
3594 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
3595 {
3596 fix_common_block (sym, SYMBOL_VALUE_ADDRESS (msymbol));
3597 }
3598 else
3599 {
3600 SYMBOL_VALUE_ADDRESS (sym) = SYMBOL_VALUE_ADDRESS (msymbol);
3601 }
3602
3603 if (prev)
3604 {
3605 sym = SYMBOL_VALUE_CHAIN (prev);
3606 }
3607 else
3608 {
3609 sym = global_sym_chain[hash];
3610 }
3611 }
3612 else
3613 {
3614 prev = sym;
3615 sym = SYMBOL_VALUE_CHAIN (sym);
3616 }
3617 }
3618 }
3619 }
3620
3621 /* Initialize anything that needs initializing when starting to read
3622 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
3623 to a psymtab. */
3624
3625 void
3626 stabsread_init ()
3627 {
3628 }
3629
3630 /* Initialize anything that needs initializing when a completely new
3631 symbol file is specified (not just adding some symbols from another
3632 file, e.g. a shared library). */
3633
3634 void
3635 stabsread_new_init ()
3636 {
3637 /* Empty the hash table of global syms looking for values. */
3638 memset (global_sym_chain, 0, sizeof (global_sym_chain));
3639 }
3640
3641 /* Initialize anything that needs initializing at the same time as
3642 start_symtab() is called. */
3643
3644 void start_stabs ()
3645 {
3646 global_stabs = NULL; /* AIX COFF */
3647 /* Leave FILENUM of 0 free for builtin types and this file's types. */
3648 n_this_object_header_files = 1;
3649 type_vector_length = 0;
3650 type_vector = (struct type **) 0;
3651 }
3652
3653 /* Call after end_symtab() */
3654
3655 void end_stabs ()
3656 {
3657 if (type_vector)
3658 {
3659 free ((char *) type_vector);
3660 }
3661 type_vector = 0;
3662 type_vector_length = 0;
3663 previous_stab_code = 0;
3664 }
3665
3666 void
3667 finish_global_stabs (objfile)
3668 struct objfile *objfile;
3669 {
3670 if (global_stabs)
3671 {
3672 patch_block_stabs (global_symbols, global_stabs, objfile);
3673 free ((PTR) global_stabs);
3674 global_stabs = NULL;
3675 }
3676 }
3677
3678 /* Initializer for this module */
3679
3680 void
3681 _initialize_stabsread ()
3682 {
3683 undef_types_allocated = 20;
3684 undef_types_length = 0;
3685 undef_types = (struct type **)
3686 xmalloc (undef_types_allocated * sizeof (struct type *));
3687 }