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