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