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