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