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