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