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