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