0a5aa5d4280a97d6a8e309b2927b2860b1cd4d5d
[deliverable/binutils-gdb.git] / gdb / buildsym.c
1 /* Build symbol tables in GDB's internal format.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 /* This module provides subroutines used for creating and adding to
21 the symbol table. These routines are called from various symbol-
22 file-reading routines.
23
24 They originated in dbxread.c of gdb-4.2, and were split out to
25 make xcoffread.c more maintainable by sharing code. */
26
27 #include <stdio.h>
28 #include "defs.h"
29 #include "obstack.h"
30 #include "symtab.h"
31 #include "breakpoint.h"
32 #include "gdbcore.h" /* for bfd stuff for symfile.h */
33 #include "symfile.h" /* Needed for "struct complaint" */
34 #include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
35 #include <string.h>
36 #include <ctype.h>
37
38 /* Ask buildsym.h to define the vars it normally declares `extern'. */
39 #define EXTERN /**/
40 #include "buildsym.h" /* Our own declarations */
41 #undef EXTERN
42
43 extern void qsort ();
44 extern double atof ();
45
46 /* Things we export from outside, and probably shouldn't. FIXME. */
47 extern void new_object_header_files ();
48 extern char *next_symbol_text ();
49 extern int hashname ();
50 extern void patch_block_stabs (); /* AIX xcoffread.c */
51 extern struct type *builtin_type (); /* AIX xcoffread.c */
52 \f
53
54 static void cleanup_undefined_types ();
55 static void fix_common_block ();
56
57 static const char vptr_name[] = { '_','v','p','t','r',CPLUS_MARKER,'\0' };
58 static const char vb_name[] = { '_','v','b',CPLUS_MARKER,'\0' };
59
60 /* Define this as 1 if a pcc declaration of a char or short argument
61 gives the correct address. Otherwise assume pcc gives the
62 address of the corresponding int, which is not the same on a
63 big-endian machine. */
64
65 #ifndef BELIEVE_PCC_PROMOTION
66 #define BELIEVE_PCC_PROMOTION 0
67 #endif
68
69 /* During some calls to read_type (and thus to read_range_type), this
70 contains the name of the type being defined. Range types are only
71 used in C as basic types. We use the name to distinguish the otherwise
72 identical basic types "int" and "long" and their unsigned versions.
73 FIXME, this should disappear with better type management. */
74
75 static char *long_kludge_name;
76
77 /* Make a list of forward references which haven't been defined. */
78 static struct type **undef_types;
79 static int undef_types_allocated, undef_types_length;
80
81 /* Initial sizes of data structures. These are realloc'd larger if needed,
82 and realloc'd down to the size actually used, when completed. */
83
84 #define INITIAL_CONTEXT_STACK_SIZE 10
85 #define INITIAL_TYPE_VECTOR_LENGTH 160
86 #define INITIAL_LINE_VECTOR_LENGTH 1000
87 \f
88 /* Complaints about the symbols we have encountered. */
89
90 struct complaint innerblock_complaint =
91 {"inner block not inside outer block in %s", 0, 0};
92
93 struct complaint blockvector_complaint =
94 {"block at %x out of order", 0, 0};
95
96 #if 0
97 struct complaint dbx_class_complaint =
98 {"encountered DBX-style class variable debugging information.\n\
99 You seem to have compiled your program with \
100 \"g++ -g0\" instead of \"g++ -g\".\n\
101 Therefore GDB will not know about your class variables", 0, 0};
102 #endif
103
104 struct complaint invalid_cpp_abbrev_complaint =
105 {"invalid C++ abbreviation `%s'", 0, 0};
106
107 struct complaint invalid_cpp_type_complaint =
108 {"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
109
110 struct complaint member_fn_complaint =
111 {"member function type missing, got '%c'", 0, 0};
112
113 struct complaint const_vol_complaint =
114 {"const/volatile indicator missing, got '%c'", 0, 0};
115
116 struct complaint error_type_complaint =
117 {"debug info mismatch between compiler and debugger", 0, 0};
118
119 struct complaint invalid_member_complaint =
120 {"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
121
122 struct complaint range_type_base_complaint =
123 {"base type %d of range type is not defined", 0, 0};
124 \f
125 /* Look up a dbx type-number pair. Return the address of the slot
126 where the type for that number-pair is stored.
127 The number-pair is in TYPENUMS.
128
129 This can be used for finding the type associated with that pair
130 or for associating a new type with the pair. */
131
132 struct type **
133 dbx_lookup_type (typenums)
134 int typenums[2];
135 {
136 register int filenum = typenums[0], index = typenums[1];
137 unsigned old_len;
138
139 if (filenum < 0 || filenum >= n_this_object_header_files)
140 error ("Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
141 filenum, index, symnum);
142
143 if (filenum == 0)
144 {
145 /* Type is defined outside of header files.
146 Find it in this object file's type vector. */
147 if (index >= type_vector_length)
148 {
149 old_len = type_vector_length;
150 if (old_len == 0) {
151 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH;
152 type_vector = (struct type **)
153 malloc (type_vector_length * sizeof (struct type *));
154 }
155 while (index >= type_vector_length)
156 type_vector_length *= 2;
157 type_vector = (struct type **)
158 xrealloc (type_vector,
159 (type_vector_length * sizeof (struct type *)));
160 bzero (&type_vector[old_len],
161 (type_vector_length - old_len) * sizeof (struct type *));
162 }
163 return &type_vector[index];
164 }
165 else
166 {
167 register int real_filenum = this_object_header_files[filenum];
168 register struct header_file *f;
169 int f_orig_length;
170
171 if (real_filenum >= n_header_files)
172 abort ();
173
174 f = &header_files[real_filenum];
175
176 f_orig_length = f->length;
177 if (index >= f_orig_length)
178 {
179 while (index >= f->length)
180 f->length *= 2;
181 f->vector = (struct type **)
182 xrealloc (f->vector, f->length * sizeof (struct type *));
183 bzero (&f->vector[f_orig_length],
184 (f->length - f_orig_length) * sizeof (struct type *));
185 }
186 return &f->vector[index];
187 }
188 }
189
190 /* Create a type object. Occaisionally used when you need a type
191 which isn't going to be given a type number. */
192
193 struct type *
194 dbx_create_type ()
195 {
196 register struct type *type =
197 (struct type *) obstack_alloc (symbol_obstack, sizeof (struct type));
198
199 bzero (type, sizeof (struct type));
200 TYPE_VPTR_FIELDNO (type) = -1;
201 TYPE_VPTR_BASETYPE (type) = 0;
202 return type;
203 }
204
205 /* Make sure there is a type allocated for type numbers TYPENUMS
206 and return the type object.
207 This can create an empty (zeroed) type object.
208 TYPENUMS may be (-1, -1) to return a new type object that is not
209 put into the type vector, and so may not be referred to by number. */
210
211 struct type *
212 dbx_alloc_type (typenums)
213 int typenums[2];
214 {
215 register struct type **type_addr;
216 register struct type *type;
217
218 if (typenums[0] != -1)
219 {
220 type_addr = dbx_lookup_type (typenums);
221 type = *type_addr;
222 }
223 else
224 {
225 type_addr = 0;
226 type = 0;
227 }
228
229 /* If we are referring to a type not known at all yet,
230 allocate an empty type for it.
231 We will fill it in later if we find out how. */
232 if (type == 0)
233 {
234 type = dbx_create_type ();
235 if (type_addr)
236 *type_addr = type;
237 }
238
239 return type;
240 }
241 \f
242 /* maintain the lists of symbols and blocks */
243
244 /* Add a symbol to one of the lists of symbols. */
245 void
246 add_symbol_to_list (symbol, listhead)
247 struct symbol *symbol;
248 struct pending **listhead;
249 {
250 /* We keep PENDINGSIZE symbols in each link of the list.
251 If we don't have a link with room in it, add a new link. */
252 if (*listhead == 0 || (*listhead)->nsyms == PENDINGSIZE)
253 {
254 register struct pending *link;
255 if (free_pendings)
256 {
257 link = free_pendings;
258 free_pendings = link->next;
259 }
260 else
261 link = (struct pending *) xmalloc (sizeof (struct pending));
262
263 link->next = *listhead;
264 *listhead = link;
265 link->nsyms = 0;
266 }
267
268 (*listhead)->symbol[(*listhead)->nsyms++] = symbol;
269 }
270
271 /* Find a symbol on a pending list. */
272 struct symbol *
273 find_symbol_in_list (list, name, length)
274 struct pending *list;
275 char *name;
276 int length;
277 {
278 int j;
279
280 while (list) {
281 for (j = list->nsyms; --j >= 0; ) {
282 char *pp = SYMBOL_NAME (list->symbol[j]);
283 if (*pp == *name && strncmp (pp, name, length) == 0 && pp[length] == '\0')
284 return list->symbol[j];
285 }
286 list = list->next;
287 }
288 return NULL;
289 }
290
291 /* At end of reading syms, or in case of quit,
292 really free as many `struct pending's as we can easily find. */
293
294 /* ARGSUSED */
295 void
296 really_free_pendings (foo)
297 int foo;
298 {
299 struct pending *next, *next1;
300 #if 0
301 struct pending_block *bnext, *bnext1;
302 #endif
303
304 for (next = free_pendings; next; next = next1)
305 {
306 next1 = next->next;
307 free (next);
308 }
309 free_pendings = 0;
310
311 #if 0 /* Now we make the links in the symbol_obstack, so don't free them. */
312 for (bnext = pending_blocks; bnext; bnext = bnext1)
313 {
314 bnext1 = bnext->next;
315 free (bnext);
316 }
317 #endif
318 pending_blocks = 0;
319
320 for (next = file_symbols; next; next = next1)
321 {
322 next1 = next->next;
323 free (next);
324 }
325 file_symbols = 0;
326
327 for (next = global_symbols; next; next = next1)
328 {
329 next1 = next->next;
330 free (next);
331 }
332 global_symbols = 0;
333 }
334
335 /* Take one of the lists of symbols and make a block from it.
336 Keep the order the symbols have in the list (reversed from the input file).
337 Put the block on the list of pending blocks. */
338
339 void
340 finish_block (symbol, listhead, old_blocks, start, end)
341 struct symbol *symbol;
342 struct pending **listhead;
343 struct pending_block *old_blocks;
344 CORE_ADDR start, end;
345 {
346 register struct pending *next, *next1;
347 register struct block *block;
348 register struct pending_block *pblock;
349 struct pending_block *opblock;
350 register int i;
351
352 /* Count the length of the list of symbols. */
353
354 for (next = *listhead, i = 0;
355 next;
356 i += next->nsyms, next = next->next)
357 /*EMPTY*/;
358
359 block = (struct block *) obstack_alloc (symbol_obstack,
360 (sizeof (struct block) + ((i - 1) * sizeof (struct symbol *))));
361
362 /* Copy the symbols into the block. */
363
364 BLOCK_NSYMS (block) = i;
365 for (next = *listhead; next; next = next->next)
366 {
367 register int j;
368 for (j = next->nsyms - 1; j >= 0; j--)
369 BLOCK_SYM (block, --i) = next->symbol[j];
370 }
371
372 BLOCK_START (block) = start;
373 BLOCK_END (block) = end;
374 BLOCK_SUPERBLOCK (block) = 0; /* Filled in when containing block is made */
375 BLOCK_GCC_COMPILED (block) = processing_gcc_compilation;
376
377 /* Put the block in as the value of the symbol that names it. */
378
379 if (symbol)
380 {
381 SYMBOL_BLOCK_VALUE (symbol) = block;
382 BLOCK_FUNCTION (block) = symbol;
383 }
384 else
385 BLOCK_FUNCTION (block) = 0;
386
387 /* Now "free" the links of the list, and empty the list. */
388
389 for (next = *listhead; next; next = next1)
390 {
391 next1 = next->next;
392 next->next = free_pendings;
393 free_pendings = next;
394 }
395 *listhead = 0;
396
397 /* Install this block as the superblock
398 of all blocks made since the start of this scope
399 that don't have superblocks yet. */
400
401 opblock = 0;
402 for (pblock = pending_blocks; pblock != old_blocks; pblock = pblock->next)
403 {
404 if (BLOCK_SUPERBLOCK (pblock->block) == 0) {
405 #if 1
406 /* Check to be sure the blocks are nested as we receive them.
407 If the compiler/assembler/linker work, this just burns a small
408 amount of time. */
409 if (BLOCK_START (pblock->block) < BLOCK_START (block)
410 || BLOCK_END (pblock->block) > BLOCK_END (block)) {
411 complain(&innerblock_complaint, symbol? SYMBOL_NAME (symbol):
412 "(don't know)");
413 BLOCK_START (pblock->block) = BLOCK_START (block);
414 BLOCK_END (pblock->block) = BLOCK_END (block);
415 }
416 #endif
417 BLOCK_SUPERBLOCK (pblock->block) = block;
418 }
419 opblock = pblock;
420 }
421
422 /* Record this block on the list of all blocks in the file.
423 Put it after opblock, or at the beginning if opblock is 0.
424 This puts the block in the list after all its subblocks. */
425
426 /* Allocate in the symbol_obstack to save time.
427 It wastes a little space. */
428 pblock = (struct pending_block *)
429 obstack_alloc (symbol_obstack,
430 sizeof (struct pending_block));
431 pblock->block = block;
432 if (opblock)
433 {
434 pblock->next = opblock->next;
435 opblock->next = pblock;
436 }
437 else
438 {
439 pblock->next = pending_blocks;
440 pending_blocks = pblock;
441 }
442 }
443
444 struct blockvector *
445 make_blockvector ()
446 {
447 register struct pending_block *next;
448 register struct blockvector *blockvector;
449 register int i;
450
451 /* Count the length of the list of blocks. */
452
453 for (next = pending_blocks, i = 0; next; next = next->next, i++);
454
455 blockvector = (struct blockvector *)
456 obstack_alloc (symbol_obstack,
457 (sizeof (struct blockvector)
458 + (i - 1) * sizeof (struct block *)));
459
460 /* Copy the blocks into the blockvector.
461 This is done in reverse order, which happens to put
462 the blocks into the proper order (ascending starting address).
463 finish_block has hair to insert each block into the list
464 after its subblocks in order to make sure this is true. */
465
466 BLOCKVECTOR_NBLOCKS (blockvector) = i;
467 for (next = pending_blocks; next; next = next->next) {
468 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
469 }
470
471 #if 0 /* Now we make the links in the obstack, so don't free them. */
472 /* Now free the links of the list, and empty the list. */
473
474 for (next = pending_blocks; next; next = next1)
475 {
476 next1 = next->next;
477 free (next);
478 }
479 #endif
480 pending_blocks = 0;
481
482 #if 1 /* FIXME, shut this off after a while to speed up symbol reading. */
483 /* Some compilers output blocks in the wrong order, but we depend
484 on their being in the right order so we can binary search.
485 Check the order and moan about it. FIXME. */
486 if (BLOCKVECTOR_NBLOCKS (blockvector) > 1)
487 for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++) {
488 if (BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i-1))
489 > BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i))) {
490 complain (&blockvector_complaint,
491 BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i)));
492 }
493 }
494 #endif
495
496 return blockvector;
497 }
498 \f
499 /* Start recording information about source code that came from an included
500 (or otherwise merged-in) source file with a different name. */
501
502 void
503 start_subfile (name, dirname)
504 char *name;
505 char *dirname;
506 {
507 register struct subfile *subfile;
508
509 /* See if this subfile is already known as a subfile of the
510 current main source file. */
511
512 for (subfile = subfiles; subfile; subfile = subfile->next)
513 {
514 if (!strcmp (subfile->name, name))
515 {
516 current_subfile = subfile;
517 return;
518 }
519 }
520
521 /* This subfile is not known. Add an entry for it.
522 Make an entry for this subfile in the list of all subfiles
523 of the current main source file. */
524
525 subfile = (struct subfile *) xmalloc (sizeof (struct subfile));
526 subfile->next = subfiles;
527 subfiles = subfile;
528 current_subfile = subfile;
529
530 /* Save its name and compilation directory name */
531 subfile->name = obsavestring (name, strlen (name));
532 if (dirname == NULL)
533 subfile->dirname = NULL;
534 else
535 subfile->dirname = obsavestring (dirname, strlen (dirname));
536
537 /* Initialize line-number recording for this subfile. */
538 subfile->line_vector = 0;
539 }
540 \f
541 /* Handle the N_BINCL and N_EINCL symbol types
542 that act like N_SOL for switching source files
543 (different subfiles, as we call them) within one object file,
544 but using a stack rather than in an arbitrary order. */
545
546 void
547 push_subfile ()
548 {
549 register struct subfile_stack *tem
550 = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack));
551
552 tem->next = subfile_stack;
553 subfile_stack = tem;
554 if (current_subfile == 0 || current_subfile->name == 0)
555 abort ();
556 tem->name = current_subfile->name;
557 tem->prev_index = header_file_prev_index;
558 }
559
560 char *
561 pop_subfile ()
562 {
563 register char *name;
564 register struct subfile_stack *link = subfile_stack;
565
566 if (link == 0)
567 abort ();
568
569 name = link->name;
570 subfile_stack = link->next;
571 header_file_prev_index = link->prev_index;
572 free (link);
573
574 return name;
575 }
576 \f
577 /* Manage the vector of line numbers for each subfile. */
578
579 void
580 record_line (subfile, line, pc)
581 register struct subfile *subfile;
582 int line;
583 CORE_ADDR pc;
584 {
585 struct linetable_entry *e;
586 /* Ignore the dummy line number in libg.o */
587
588 if (line == 0xffff)
589 return;
590
591 /* Make sure line vector exists and is big enough. */
592 if (!subfile->line_vector) {
593 subfile->line_vector_length = INITIAL_LINE_VECTOR_LENGTH;
594 subfile->line_vector = (struct linetable *)
595 xmalloc (sizeof (struct linetable)
596 + subfile->line_vector_length * sizeof (struct linetable_entry));
597 subfile->line_vector->nitems = 0;
598 }
599
600 if (subfile->line_vector->nitems + 1 >= subfile->line_vector_length)
601 {
602 subfile->line_vector_length *= 2;
603 subfile->line_vector = (struct linetable *)
604 xrealloc (subfile->line_vector, (sizeof (struct linetable)
605 + subfile->line_vector_length * sizeof (struct linetable_entry)));
606 }
607
608 e = subfile->line_vector->item + subfile->line_vector->nitems++;
609 e->line = line; e->pc = pc;
610 }
611
612
613 /* Needed in order to sort line tables from IBM xcoff files. Sigh! */
614
615 /* static */
616 int
617 compare_line_numbers (ln1, ln2)
618 struct linetable_entry *ln1, *ln2;
619 {
620 return ln1->line - ln2->line;
621 }
622 \f
623 /* Start a new symtab for a new source file.
624 This is called when a dbx symbol of type N_SO is seen;
625 it indicates the start of data for one original source file. */
626
627 void
628 start_symtab (name, dirname, start_addr)
629 char *name;
630 char *dirname;
631 CORE_ADDR start_addr;
632 {
633
634 last_source_file = name;
635 last_source_start_addr = start_addr;
636 file_symbols = 0;
637 global_symbols = 0;
638 global_stabs = 0; /* AIX COFF */
639 file_stabs = 0; /* AIX COFF */
640 within_function = 0;
641
642 /* Context stack is initially empty. Allocate first one with room for
643 10 levels; reuse it forever afterward. */
644 if (context_stack == 0) {
645 context_stack_size = INITIAL_CONTEXT_STACK_SIZE;
646 context_stack = (struct context_stack *)
647 xmalloc (context_stack_size * sizeof (struct context_stack));
648 }
649 context_stack_depth = 0;
650
651 new_object_header_files ();
652
653 type_vector_length = 0;
654 type_vector = (struct type **) 0;
655
656 /* Initialize the list of sub source files with one entry
657 for this file (the top-level source file). */
658
659 subfiles = 0;
660 current_subfile = 0;
661 start_subfile (name, dirname);
662 }
663
664 /* Finish the symbol definitions for one main source file,
665 close off all the lexical contexts for that file
666 (creating struct block's for them), then make the struct symtab
667 for that file and put it in the list of all such.
668
669 END_ADDR is the address of the end of the file's text. */
670
671 struct symtab *
672 end_symtab (end_addr, sort_pending, sort_linevec, objfile)
673 CORE_ADDR end_addr;
674 int sort_pending;
675 int sort_linevec;
676 struct objfile *objfile;
677 {
678 register struct symtab *symtab;
679 register struct blockvector *blockvector;
680 register struct subfile *subfile;
681 struct subfile *nextsub;
682
683 /* Finish the lexical context of the last function in the file;
684 pop the context stack. */
685
686 if (context_stack_depth > 0)
687 {
688 register struct context_stack *cstk;
689 context_stack_depth--;
690 cstk = &context_stack[context_stack_depth];
691 /* Make a block for the local symbols within. */
692 finish_block (cstk->name, &local_symbols, cstk->old_blocks,
693 cstk->start_addr, end_addr);
694
695 /* Debug: if context stack still has something in it, we are in
696 trouble. */
697 if (context_stack_depth > 0)
698 abort ();
699 }
700
701 /* It is unfortunate that in aixcoff, pending blocks might not be ordered
702 in this stage. Especially, blocks for static functions will show up at
703 the end. We need to sort them, so tools like `find_pc_function' and
704 `find_pc_block' can work reliably. */
705 if (sort_pending && pending_blocks) {
706 /* FIXME! Remove this horrid bubble sort and use qsort!!! */
707 int swapped;
708 do {
709 struct pending_block *pb, *pbnext;
710
711 pb = pending_blocks, pbnext = pb->next;
712 swapped = 0;
713
714 while ( pbnext ) {
715
716 /* swap blocks if unordered! */
717
718 if (BLOCK_START(pb->block) < BLOCK_START(pbnext->block)) {
719 struct block *tmp = pb->block;
720 pb->block = pbnext->block;
721 pbnext->block = tmp;
722 swapped = 1;
723 }
724 pb = pbnext;
725 pbnext = pbnext->next;
726 }
727 } while (swapped);
728 }
729
730 /* Cleanup any undefined types that have been left hanging around
731 (this needs to be done before the finish_blocks so that
732 file_symbols is still good). */
733 cleanup_undefined_types ();
734
735 /* Hooks for xcoffread.c */
736 if (file_stabs) {
737 patch_block_stabs (file_symbols, file_stabs);
738 free (file_stabs);
739 file_stabs = 0;
740 }
741
742 if (global_stabs) {
743 patch_block_stabs (global_symbols, global_stabs);
744 free (global_stabs);
745 global_stabs = 0;
746 }
747
748 if (pending_blocks == 0
749 && file_symbols == 0
750 && global_symbols == 0) {
751 /* Ignore symtabs that have no functions with real debugging info */
752 blockvector = NULL;
753 } else {
754 /* Define the STATIC_BLOCK and GLOBAL_BLOCK, and build the blockvector. */
755 finish_block (0, &file_symbols, 0, last_source_start_addr, end_addr);
756 finish_block (0, &global_symbols, 0, last_source_start_addr, end_addr);
757 blockvector = make_blockvector ();
758 }
759
760 /* Now create the symtab objects proper, one for each subfile. */
761 /* (The main file is the last one on the chain.) */
762
763 for (subfile = subfiles; subfile; subfile = nextsub)
764 {
765 /* If we have blocks of symbols, make a symtab.
766 Otherwise, just ignore this file and any line number info in it. */
767 symtab = 0;
768 if (blockvector) {
769 if (subfile->line_vector) {
770 /* First, shrink the linetable to make more memory. */
771 subfile->line_vector = (struct linetable *)
772 xrealloc (subfile->line_vector, (sizeof (struct linetable)
773 + subfile->line_vector->nitems * sizeof (struct linetable_entry)));
774
775 if (sort_linevec)
776 qsort (subfile->line_vector->item, subfile->line_vector->nitems,
777 sizeof (struct linetable_entry), compare_line_numbers);
778 }
779
780 /* Now, allocate a symbol table. */
781 symtab = allocate_symtab (subfile->name, objfile);
782
783 /* Fill in its components. */
784 symtab->blockvector = blockvector;
785 symtab->linetable = subfile->line_vector;
786 symtab->dirname = subfile->dirname;
787 symtab->free_code = free_linetable;
788 symtab->free_ptr = 0;
789
790 /* Link the new symtab into the list of such. */
791 symtab->next = symtab_list;
792 symtab_list = symtab;
793 } else {
794 /* No blocks for this file. Delete any line number info we have
795 for it. */
796 if (subfile->line_vector)
797 free (subfile->line_vector);
798 }
799
800 nextsub = subfile->next;
801 free (subfile);
802 }
803
804 if (type_vector)
805 free ((char *) type_vector);
806 type_vector = 0;
807 type_vector_length = 0;
808
809 last_source_file = 0;
810 current_subfile = 0;
811 previous_stab_code = 0;
812
813 return symtab;
814 }
815
816
817 /* Push a context block. Args are an identifying nesting level (checkable
818 when you pop it), and the starting PC address of this context. */
819
820 struct context_stack *
821 push_context (desc, valu)
822 int desc;
823 CORE_ADDR valu;
824 {
825 register struct context_stack *new;
826
827 if (context_stack_depth == context_stack_size)
828 {
829 context_stack_size *= 2;
830 context_stack = (struct context_stack *)
831 xrealloc (context_stack,
832 (context_stack_size
833 * sizeof (struct context_stack)));
834 }
835
836 new = &context_stack[context_stack_depth++];
837 new->depth = desc;
838 new->locals = local_symbols;
839 new->old_blocks = pending_blocks;
840 new->start_addr = valu;
841 new->name = 0;
842
843 local_symbols = 0;
844
845 return new;
846 }
847 \f
848 /* Initialize anything that needs initializing when starting to read
849 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
850 to a psymtab. */
851
852 void
853 buildsym_init ()
854 {
855 free_pendings = 0;
856 file_symbols = 0;
857 global_symbols = 0;
858 pending_blocks = 0;
859 }
860
861 /* Initialize anything that needs initializing when a completely new
862 symbol file is specified (not just adding some symbols from another
863 file, e.g. a shared library). */
864
865 void
866 buildsym_new_init ()
867 {
868 /* Empty the hash table of global syms looking for values. */
869 bzero (global_sym_chain, sizeof global_sym_chain);
870
871 buildsym_init ();
872 }
873
874 /* Scan through all of the global symbols defined in the object file,
875 assigning values to the debugging symbols that need to be assigned
876 to. Get these symbols from the misc function list. */
877
878 void
879 scan_file_globals ()
880 {
881 int hash;
882 int mf;
883
884 for (mf = 0; mf < misc_function_count; mf++)
885 {
886 char *namestring = misc_function_vector[mf].name;
887 struct symbol *sym, *prev;
888
889 QUIT;
890
891 prev = (struct symbol *) 0;
892
893 /* Get the hash index and check all the symbols
894 under that hash index. */
895
896 hash = hashname (namestring);
897
898 for (sym = global_sym_chain[hash]; sym;)
899 {
900 if (*namestring == SYMBOL_NAME (sym)[0]
901 && !strcmp(namestring + 1, SYMBOL_NAME (sym) + 1))
902 {
903 /* Splice this symbol out of the hash chain and
904 assign the value we have to it. */
905 if (prev)
906 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
907 else
908 global_sym_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
909
910 /* Check to see whether we need to fix up a common block. */
911 /* Note: this code might be executed several times for
912 the same symbol if there are multiple references. */
913 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
914 fix_common_block (sym, misc_function_vector[mf].address);
915 else
916 SYMBOL_VALUE_ADDRESS (sym) = misc_function_vector[mf].address;
917
918 if (prev)
919 sym = SYMBOL_VALUE_CHAIN (prev);
920 else
921 sym = global_sym_chain[hash];
922 }
923 else
924 {
925 prev = sym;
926 sym = SYMBOL_VALUE_CHAIN (sym);
927 }
928 }
929 }
930 }
931
932 \f
933 /* Read a number by which a type is referred to in dbx data,
934 or perhaps read a pair (FILENUM, TYPENUM) in parentheses.
935 Just a single number N is equivalent to (0,N).
936 Return the two numbers by storing them in the vector TYPENUMS.
937 TYPENUMS will then be used as an argument to dbx_lookup_type. */
938
939 void
940 read_type_number (pp, typenums)
941 register char **pp;
942 register int *typenums;
943 {
944 if (**pp == '(')
945 {
946 (*pp)++;
947 typenums[0] = read_number (pp, ',');
948 typenums[1] = read_number (pp, ')');
949 }
950 else
951 {
952 typenums[0] = 0;
953 typenums[1] = read_number (pp, 0);
954 }
955 }
956 \f
957 /* To handle GNU C++ typename abbreviation, we need to be able to
958 fill in a type's name as soon as space for that type is allocated.
959 `type_synonym_name' is the name of the type being allocated.
960 It is cleared as soon as it is used (lest all allocated types
961 get this name). */
962 static char *type_synonym_name;
963
964 /* ARGSUSED */
965 struct symbol *
966 define_symbol (valu, string, desc, type)
967 unsigned int valu;
968 char *string;
969 int desc;
970 int type;
971 {
972 register struct symbol *sym;
973 char *p = (char *) strchr (string, ':');
974 int deftype;
975 int synonym = 0;
976 register int i;
977
978 /* Ignore syms with empty names. */
979 if (string[0] == 0)
980 return 0;
981
982 /* Ignore old-style symbols from cc -go */
983 if (p == 0)
984 return 0;
985
986 sym = (struct symbol *)obstack_alloc (symbol_obstack, sizeof (struct symbol));
987
988 if (processing_gcc_compilation) {
989 /* GCC 2.x puts the line number in desc. SunOS apparently puts in the
990 number of bytes occupied by a type or object, which we ignore. */
991 SYMBOL_LINE(sym) = desc;
992 } else {
993 SYMBOL_LINE(sym) = 0; /* unknown */
994 }
995
996 if (string[0] == CPLUS_MARKER)
997 {
998 /* Special GNU C++ names. */
999 switch (string[1])
1000 {
1001 case 't':
1002 SYMBOL_NAME (sym) = "this";
1003 break;
1004 case 'v': /* $vtbl_ptr_type */
1005 /* Was: SYMBOL_NAME (sym) = "vptr"; */
1006 goto normal;
1007 case 'e':
1008 SYMBOL_NAME (sym) = "eh_throw";
1009 break;
1010
1011 case '_':
1012 /* This was an anonymous type that was never fixed up. */
1013 goto normal;
1014
1015 default:
1016 abort ();
1017 }
1018 }
1019 else
1020 {
1021 normal:
1022 SYMBOL_NAME (sym)
1023 = (char *) obstack_alloc (symbol_obstack, ((p - string) + 1));
1024 /* Open-coded bcopy--saves function call time. */
1025 {
1026 register char *p1 = string;
1027 register char *p2 = SYMBOL_NAME (sym);
1028 while (p1 != p)
1029 *p2++ = *p1++;
1030 *p2++ = '\0';
1031 }
1032 }
1033 p++;
1034 /* Determine the type of name being defined. */
1035 /* The Acorn RISC machine's compiler can put out locals that don't
1036 start with "234=" or "(3,4)=", so assume anything other than the
1037 deftypes we know how to handle is a local. */
1038 /* (Peter Watkins @ Computervision)
1039 Handle Sun-style local fortran array types 'ar...' .
1040 (gnu@cygnus.com) -- this strchr() handles them properly?
1041 (tiemann@cygnus.com) -- 'C' is for catch. */
1042 if (!strchr ("cfFGpPrStTvVXC", *p))
1043 deftype = 'l';
1044 else
1045 deftype = *p++;
1046
1047 /* c is a special case, not followed by a type-number.
1048 SYMBOL:c=iVALUE for an integer constant symbol.
1049 SYMBOL:c=rVALUE for a floating constant symbol.
1050 SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
1051 e.g. "b:c=e6,0" for "const b = blob1"
1052 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1053 if (deftype == 'c')
1054 {
1055 if (*p++ != '=')
1056 error ("Invalid symbol data at symtab pos %d.", symnum);
1057 switch (*p++)
1058 {
1059 case 'r':
1060 {
1061 double d = atof (p);
1062 char *dbl_valu;
1063
1064 SYMBOL_TYPE (sym) = builtin_type_double;
1065 dbl_valu =
1066 (char *) obstack_alloc (symbol_obstack, sizeof (double));
1067 memcpy (dbl_valu, &d, sizeof (double));
1068 SWAP_TARGET_AND_HOST (dbl_valu, sizeof (double));
1069 SYMBOL_VALUE_BYTES (sym) = dbl_valu;
1070 SYMBOL_CLASS (sym) = LOC_CONST_BYTES;
1071 }
1072 break;
1073 case 'i':
1074 {
1075 SYMBOL_TYPE (sym) = builtin_type_int;
1076 SYMBOL_VALUE (sym) = atoi (p);
1077 SYMBOL_CLASS (sym) = LOC_CONST;
1078 }
1079 break;
1080 case 'e':
1081 /* SYMBOL:c=eTYPE,INTVALUE for an enum constant symbol.
1082 e.g. "b:c=e6,0" for "const b = blob1"
1083 (where type 6 is defined by "blobs:t6=eblob1:0,blob2:1,;"). */
1084 {
1085 int typenums[2];
1086
1087 read_type_number (&p, typenums);
1088 if (*p++ != ',')
1089 error ("Invalid symbol data: no comma in enum const symbol");
1090
1091 SYMBOL_TYPE (sym) = *dbx_lookup_type (typenums);
1092 SYMBOL_VALUE (sym) = atoi (p);
1093 SYMBOL_CLASS (sym) = LOC_CONST;
1094 }
1095 break;
1096 default:
1097 error ("Invalid symbol data at symtab pos %d.", symnum);
1098 }
1099 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1100 add_symbol_to_list (sym, &file_symbols);
1101 return sym;
1102 }
1103
1104 /* Now usually comes a number that says which data type,
1105 and possibly more stuff to define the type
1106 (all of which is handled by read_type) */
1107
1108 if (deftype == 'p' && *p == 'F')
1109 /* pF is a two-letter code that means a function parameter in Fortran.
1110 The type-number specifies the type of the return value.
1111 Translate it into a pointer-to-function type. */
1112 {
1113 p++;
1114 SYMBOL_TYPE (sym)
1115 = lookup_pointer_type (lookup_function_type (read_type (&p)));
1116 }
1117 else
1118 {
1119 struct type *type_read;
1120 synonym = *p == 't';
1121
1122 if (synonym)
1123 {
1124 p += 1;
1125 type_synonym_name = obsavestring (SYMBOL_NAME (sym),
1126 strlen (SYMBOL_NAME (sym)));
1127 }
1128
1129 /* Here we save the name of the symbol for read_range_type, which
1130 ends up reading in the basic types. In stabs, unfortunately there
1131 is no distinction between "int" and "long" types except their
1132 names. Until we work out a saner type policy (eliminating most
1133 builtin types and using the names specified in the files), we
1134 save away the name so that far away from here in read_range_type,
1135 we can examine it to decide between "int" and "long". FIXME. */
1136 long_kludge_name = SYMBOL_NAME (sym);
1137 type_read = read_type (&p);
1138
1139 if ((deftype == 'F' || deftype == 'f')
1140 && TYPE_CODE (type_read) != TYPE_CODE_FUNC)
1141 {
1142 #if 0
1143 /* This code doesn't work -- it needs to realloc and can't. */
1144 struct type *new = (struct type *)
1145 obstack_alloc (symbol_obstack, sizeof (struct type));
1146
1147 /* Generate a template for the type of this function. The
1148 types of the arguments will be added as we read the symbol
1149 table. */
1150 *new = *lookup_function_type (type_read);
1151 SYMBOL_TYPE(sym) = new;
1152 in_function_type = new;
1153 #else
1154 SYMBOL_TYPE (sym) = lookup_function_type (type_read);
1155 #endif
1156 }
1157 else
1158 SYMBOL_TYPE (sym) = type_read;
1159 }
1160
1161 switch (deftype)
1162 {
1163 case 'C':
1164 /* The name of a caught exception. */
1165 SYMBOL_CLASS (sym) = LOC_LABEL;
1166 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1167 SYMBOL_VALUE_ADDRESS (sym) = valu;
1168 add_symbol_to_list (sym, &local_symbols);
1169 break;
1170
1171 case 'f':
1172 SYMBOL_CLASS (sym) = LOC_BLOCK;
1173 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1174 add_symbol_to_list (sym, &file_symbols);
1175 break;
1176
1177 case 'F':
1178 SYMBOL_CLASS (sym) = LOC_BLOCK;
1179 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1180 add_symbol_to_list (sym, &global_symbols);
1181 break;
1182
1183 case 'G':
1184 /* For a class G (global) symbol, it appears that the
1185 value is not correct. It is necessary to search for the
1186 corresponding linker definition to find the value.
1187 These definitions appear at the end of the namelist. */
1188 i = hashname (SYMBOL_NAME (sym));
1189 SYMBOL_VALUE_CHAIN (sym) = global_sym_chain[i];
1190 global_sym_chain[i] = sym;
1191 SYMBOL_CLASS (sym) = LOC_STATIC;
1192 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1193 add_symbol_to_list (sym, &global_symbols);
1194 break;
1195
1196 /* This case is faked by a conditional above,
1197 when there is no code letter in the dbx data.
1198 Dbx data never actually contains 'l'. */
1199 case 'l':
1200 SYMBOL_CLASS (sym) = LOC_LOCAL;
1201 SYMBOL_VALUE (sym) = valu;
1202 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1203 add_symbol_to_list (sym, &local_symbols);
1204 break;
1205
1206 case 'p':
1207 /* Normally this is a parameter, a LOC_ARG. On the i960, it
1208 can also be a LOC_LOCAL_ARG depending on symbol type. */
1209 #ifndef DBX_PARM_SYMBOL_CLASS
1210 #define DBX_PARM_SYMBOL_CLASS(type) LOC_ARG
1211 #endif
1212 SYMBOL_CLASS (sym) = DBX_PARM_SYMBOL_CLASS (type);
1213 SYMBOL_VALUE (sym) = valu;
1214 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1215 #if 0
1216 /* This doesn't work yet. */
1217 add_param_to_type (&in_function_type, sym);
1218 #endif
1219 add_symbol_to_list (sym, &local_symbols);
1220
1221 /* If it's gcc-compiled, if it says `short', believe it. */
1222 if (processing_gcc_compilation || BELIEVE_PCC_PROMOTION)
1223 break;
1224
1225 #if defined(BELIEVE_PCC_PROMOTION_TYPE)
1226 /* This macro is defined on machines (e.g. sparc) where
1227 we should believe the type of a PCC 'short' argument,
1228 but shouldn't believe the address (the address is
1229 the address of the corresponding int). Note that
1230 this is only different from the BELIEVE_PCC_PROMOTION
1231 case on big-endian machines.
1232
1233 My guess is that this correction, as opposed to changing
1234 the parameter to an 'int' (as done below, for PCC
1235 on most machines), is the right thing to do
1236 on all machines, but I don't want to risk breaking
1237 something that already works. On most PCC machines,
1238 the sparc problem doesn't come up because the calling
1239 function has to zero the top bytes (not knowing whether
1240 the called function wants an int or a short), so there
1241 is no practical difference between an int and a short
1242 (except perhaps what happens when the GDB user types
1243 "print short_arg = 0x10000;").
1244
1245 Hacked for SunOS 4.1 by gnu@cygnus.com. In 4.1, the compiler
1246 actually produces the correct address (we don't need to fix it
1247 up). I made this code adapt so that it will offset the symbol
1248 if it was pointing at an int-aligned location and not
1249 otherwise. This way you can use the same gdb for 4.0.x and
1250 4.1 systems.
1251
1252 If the parameter is shorter than an int, and is integral
1253 (e.g. char, short, or unsigned equivalent), and is claimed to
1254 be passed on an integer boundary, don't believe it! Offset the
1255 parameter's address to the tail-end of that integer. */
1256
1257 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (builtin_type_int)
1258 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1259 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (builtin_type_int)) {
1260 SYMBOL_VALUE (sym) += TYPE_LENGTH (builtin_type_int)
1261 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1262 }
1263 break;
1264
1265 #else /* no BELIEVE_PCC_PROMOTION_TYPE. */
1266
1267 /* If PCC says a parameter is a short or a char,
1268 it is really an int. */
1269 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (builtin_type_int)
1270 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT) {
1271 SYMBOL_TYPE (sym) = TYPE_UNSIGNED (SYMBOL_TYPE (sym))?
1272 builtin_type_unsigned_int:
1273 builtin_type_int;
1274 }
1275 break;
1276
1277 #endif /* no BELIEVE_PCC_PROMOTION_TYPE. */
1278
1279 case 'P':
1280 SYMBOL_CLASS (sym) = LOC_REGPARM;
1281 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1282 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1283 add_symbol_to_list (sym, &local_symbols);
1284 break;
1285
1286 case 'r':
1287 SYMBOL_CLASS (sym) = LOC_REGISTER;
1288 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (valu);
1289 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1290 add_symbol_to_list (sym, &local_symbols);
1291 break;
1292
1293 case 'S':
1294 /* Static symbol at top level of file */
1295 SYMBOL_CLASS (sym) = LOC_STATIC;
1296 SYMBOL_VALUE_ADDRESS (sym) = valu;
1297 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1298 add_symbol_to_list (sym, &file_symbols);
1299 break;
1300
1301 case 't':
1302 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1303 SYMBOL_VALUE (sym) = valu;
1304 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1305 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0
1306 && (TYPE_FLAGS (SYMBOL_TYPE (sym)) & TYPE_FLAG_PERM) == 0)
1307 TYPE_NAME (SYMBOL_TYPE (sym)) =
1308 obsavestring (SYMBOL_NAME (sym),
1309 strlen (SYMBOL_NAME (sym)));
1310 /* C++ vagaries: we may have a type which is derived from
1311 a base type which did not have its name defined when the
1312 derived class was output. We fill in the derived class's
1313 base part member's name here in that case. */
1314 else if ((TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1315 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_UNION)
1316 && TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)))
1317 {
1318 int j;
1319 for (j = TYPE_N_BASECLASSES (SYMBOL_TYPE (sym)) - 1; j >= 0; j--)
1320 if (TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) == 0)
1321 TYPE_BASECLASS_NAME (SYMBOL_TYPE (sym), j) =
1322 type_name_no_tag (TYPE_BASECLASS (SYMBOL_TYPE (sym), j));
1323 }
1324
1325 add_symbol_to_list (sym, &file_symbols);
1326 break;
1327
1328 case 'T':
1329 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1330 SYMBOL_VALUE (sym) = valu;
1331 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1332 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0
1333 && (TYPE_FLAGS (SYMBOL_TYPE (sym)) & TYPE_FLAG_PERM) == 0)
1334 TYPE_NAME (SYMBOL_TYPE (sym))
1335 = obconcat ("",
1336 (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_ENUM
1337 ? "enum "
1338 : (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_STRUCT
1339 ? "struct " : "union ")),
1340 SYMBOL_NAME (sym));
1341 add_symbol_to_list (sym, &file_symbols);
1342
1343 if (synonym)
1344 {
1345 register struct symbol *typedef_sym
1346 = (struct symbol *) obstack_alloc (symbol_obstack, sizeof (struct symbol));
1347 SYMBOL_NAME (typedef_sym) = SYMBOL_NAME (sym);
1348 SYMBOL_TYPE (typedef_sym) = SYMBOL_TYPE (sym);
1349
1350 SYMBOL_CLASS (typedef_sym) = LOC_TYPEDEF;
1351 SYMBOL_VALUE (typedef_sym) = valu;
1352 SYMBOL_NAMESPACE (typedef_sym) = VAR_NAMESPACE;
1353 add_symbol_to_list (typedef_sym, &file_symbols);
1354 }
1355 break;
1356
1357 case 'V':
1358 /* Static symbol of local scope */
1359 SYMBOL_CLASS (sym) = LOC_STATIC;
1360 SYMBOL_VALUE_ADDRESS (sym) = valu;
1361 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1362 add_symbol_to_list (sym, &local_symbols);
1363 break;
1364
1365 case 'v':
1366 /* Reference parameter */
1367 SYMBOL_CLASS (sym) = LOC_REF_ARG;
1368 SYMBOL_VALUE (sym) = valu;
1369 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1370 add_symbol_to_list (sym, &local_symbols);
1371 break;
1372
1373 case 'X':
1374 /* This is used by Sun FORTRAN for "function result value".
1375 Sun claims ("dbx and dbxtool interfaces", 2nd ed)
1376 that Pascal uses it too, but when I tried it Pascal used
1377 "x:3" (local symbol) instead. */
1378 SYMBOL_CLASS (sym) = LOC_LOCAL;
1379 SYMBOL_VALUE (sym) = valu;
1380 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1381 add_symbol_to_list (sym, &local_symbols);
1382 break;
1383
1384 default:
1385 error ("Invalid symbol data: unknown symbol-type code `%c' at symtab pos %d.", deftype, symnum);
1386 }
1387 return sym;
1388 }
1389 \f
1390 /* What about types defined as forward references inside of a small lexical
1391 scope? */
1392 /* Add a type to the list of undefined types to be checked through
1393 once this file has been read in. */
1394 void
1395 add_undefined_type (type)
1396 struct type *type;
1397 {
1398 if (undef_types_length == undef_types_allocated)
1399 {
1400 undef_types_allocated *= 2;
1401 undef_types = (struct type **)
1402 xrealloc (undef_types,
1403 undef_types_allocated * sizeof (struct type *));
1404 }
1405 undef_types[undef_types_length++] = type;
1406 }
1407
1408 /* Go through each undefined type, see if it's still undefined, and fix it
1409 up if possible. We have two kinds of undefined types:
1410
1411 TYPE_CODE_ARRAY: Array whose target type wasn't defined yet.
1412 Fix: update array length using the element bounds
1413 and the target type's length.
1414 TYPE_CODE_STRUCT, TYPE_CODE_UNION: Structure whose fields were not
1415 yet defined at the time a pointer to it was made.
1416 Fix: Do a full lookup on the struct/union tag. */
1417 static void
1418 cleanup_undefined_types ()
1419 {
1420 struct type **type;
1421
1422 for (type = undef_types; type < undef_types + undef_types_length; type++) {
1423 switch (TYPE_CODE (*type)) {
1424
1425 case TYPE_CODE_STRUCT:
1426 case TYPE_CODE_UNION:
1427 {
1428 /* Reasonable test to see if it's been defined since. */
1429 if (TYPE_NFIELDS (*type) == 0)
1430 {
1431 struct pending *ppt;
1432 int i;
1433 /* Name of the type, without "struct" or "union" */
1434 char *typename = TYPE_NAME (*type);
1435
1436 if (!strncmp (typename, "struct ", 7))
1437 typename += 7;
1438 if (!strncmp (typename, "union ", 6))
1439 typename += 6;
1440
1441 for (ppt = file_symbols; ppt; ppt = ppt->next)
1442 for (i = 0; i < ppt->nsyms; i++)
1443 {
1444 struct symbol *sym = ppt->symbol[i];
1445
1446 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
1447 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
1448 && (TYPE_CODE (SYMBOL_TYPE (sym)) ==
1449 TYPE_CODE (*type))
1450 && !strcmp (SYMBOL_NAME (sym), typename))
1451 memcpy (*type, SYMBOL_TYPE (sym), sizeof (struct type));
1452 }
1453 }
1454 else
1455 /* It has been defined; don't mark it as a stub. */
1456 TYPE_FLAGS (*type) &= ~TYPE_FLAG_STUB;
1457 }
1458 break;
1459
1460 case TYPE_CODE_ARRAY:
1461 {
1462 struct type *range_type;
1463 int lower, upper;
1464
1465 if (TYPE_LENGTH (*type) != 0) /* Better be unknown */
1466 goto badtype;
1467 if (TYPE_NFIELDS (*type) != 1)
1468 goto badtype;
1469 range_type = TYPE_FIELD_TYPE (*type, 0);
1470 if (TYPE_CODE (range_type) != TYPE_CODE_RANGE)
1471 goto badtype;
1472
1473 /* Now recompute the length of the array type, based on its
1474 number of elements and the target type's length. */
1475 lower = TYPE_FIELD_BITPOS (range_type, 0);
1476 upper = TYPE_FIELD_BITPOS (range_type, 1);
1477 TYPE_LENGTH (*type) = (upper - lower + 1)
1478 * TYPE_LENGTH (TYPE_TARGET_TYPE (*type));
1479 }
1480 break;
1481
1482 default:
1483 badtype:
1484 error ("GDB internal error. cleanup_undefined_types with bad type.");
1485 break;
1486 }
1487 }
1488 undef_types_length = 0;
1489 }
1490 \f
1491 /* Skip rest of this symbol and return an error type.
1492
1493 General notes on error recovery: error_type always skips to the
1494 end of the symbol (modulo cretinous dbx symbol name continuation).
1495 Thus code like this:
1496
1497 if (*(*pp)++ != ';')
1498 return error_type (pp);
1499
1500 is wrong because if *pp starts out pointing at '\0' (typically as the
1501 result of an earlier error), it will be incremented to point to the
1502 start of the next symbol, which might produce strange results, at least
1503 if you run off the end of the string table. Instead use
1504
1505 if (**pp != ';')
1506 return error_type (pp);
1507 ++*pp;
1508
1509 or
1510
1511 if (**pp != ';')
1512 foo = error_type (pp);
1513 else
1514 ++*pp;
1515
1516 And in case it isn't obvious, the point of all this hair is so the compiler
1517 can define new types and new syntaxes, and old versions of the
1518 debugger will be able to read the new symbol tables. */
1519
1520 struct type *
1521 error_type (pp)
1522 char **pp;
1523 {
1524 complain (&error_type_complaint, 0);
1525 while (1)
1526 {
1527 /* Skip to end of symbol. */
1528 while (**pp != '\0')
1529 (*pp)++;
1530
1531 /* Check for and handle cretinous dbx symbol name continuation! */
1532 if ((*pp)[-1] == '\\')
1533 *pp = next_symbol_text ();
1534 else
1535 break;
1536 }
1537 return builtin_type_error;
1538 }
1539 \f
1540 /* Read a dbx type reference or definition;
1541 return the type that is meant.
1542 This can be just a number, in which case it references
1543 a type already defined and placed in type_vector.
1544 Or the number can be followed by an =, in which case
1545 it means to define a new type according to the text that
1546 follows the =. */
1547
1548 struct type *
1549 read_type (pp)
1550 register char **pp;
1551 {
1552 register struct type *type = 0;
1553 struct type *type1;
1554 int typenums[2];
1555 int xtypenums[2];
1556
1557 /* Read type number if present. The type number may be omitted.
1558 for instance in a two-dimensional array declared with type
1559 "ar1;1;10;ar1;1;10;4". */
1560 if ((**pp >= '0' && **pp <= '9')
1561 || **pp == '(')
1562 {
1563 read_type_number (pp, typenums);
1564
1565 /* Type is not being defined here. Either it already exists,
1566 or this is a forward reference to it. dbx_alloc_type handles
1567 both cases. */
1568 if (**pp != '=')
1569 return dbx_alloc_type (typenums);
1570
1571 /* Type is being defined here. */
1572 #if 0 /* Callers aren't prepared for a NULL result! FIXME -- metin! */
1573 {
1574 struct type *tt;
1575
1576 /* if such a type already exists, this is an unnecessary duplication
1577 of the stab string, which is common in (RS/6000) xlc generated
1578 objects. In that case, simply return NULL and let the caller take
1579 care of it. */
1580
1581 tt = *dbx_lookup_type (typenums);
1582 if (tt && tt->length && tt->code)
1583 return NULL;
1584 }
1585 #endif
1586
1587 *pp += 2;
1588 }
1589 else
1590 {
1591 /* 'typenums=' not present, type is anonymous. Read and return
1592 the definition, but don't put it in the type vector. */
1593 typenums[0] = typenums[1] = -1;
1594 *pp += 1;
1595 }
1596
1597 switch ((*pp)[-1])
1598 {
1599 case 'x':
1600 {
1601 enum type_code code;
1602
1603 /* Used to index through file_symbols. */
1604 struct pending *ppt;
1605 int i;
1606
1607 /* Name including "struct", etc. */
1608 char *type_name;
1609
1610 /* Name without "struct", etc. */
1611 char *type_name_only;
1612
1613 {
1614 char *prefix;
1615 char *from, *to;
1616
1617 /* Set the type code according to the following letter. */
1618 switch ((*pp)[0])
1619 {
1620 case 's':
1621 code = TYPE_CODE_STRUCT;
1622 prefix = "struct ";
1623 break;
1624 case 'u':
1625 code = TYPE_CODE_UNION;
1626 prefix = "union ";
1627 break;
1628 case 'e':
1629 code = TYPE_CODE_ENUM;
1630 prefix = "enum ";
1631 break;
1632 default:
1633 return error_type (pp);
1634 }
1635
1636 to = type_name = (char *)
1637 obstack_alloc (symbol_obstack,
1638 (strlen (prefix) +
1639 ((char *) strchr (*pp, ':') - (*pp)) + 1));
1640
1641 /* Copy the prefix. */
1642 from = prefix;
1643 while (*to++ = *from++)
1644 ;
1645 to--;
1646
1647 type_name_only = to;
1648
1649 /* Copy the name. */
1650 from = *pp + 1;
1651 while ((*to++ = *from++) != ':')
1652 ;
1653 *--to = '\0';
1654
1655 /* Set the pointer ahead of the name which we just read. */
1656 *pp = from;
1657
1658 #if 0
1659 /* The following hack is clearly wrong, because it doesn't
1660 check whether we are in a baseclass. I tried to reproduce
1661 the case that it is trying to fix, but I couldn't get
1662 g++ to put out a cross reference to a basetype. Perhaps
1663 it doesn't do it anymore. */
1664 /* Note: for C++, the cross reference may be to a base type which
1665 has not yet been seen. In this case, we skip to the comma,
1666 which will mark the end of the base class name. (The ':'
1667 at the end of the base class name will be skipped as well.)
1668 But sometimes (ie. when the cross ref is the last thing on
1669 the line) there will be no ','. */
1670 from = (char *) strchr (*pp, ',');
1671 if (from)
1672 *pp = from;
1673 #endif /* 0 */
1674 }
1675
1676 /* Now check to see whether the type has already been declared. */
1677 /* This is necessary at least in the case where the
1678 program says something like
1679 struct foo bar[5];
1680 The compiler puts out a cross-reference; we better find
1681 set the length of the structure correctly so we can
1682 set the length of the array. */
1683 for (ppt = file_symbols; ppt; ppt = ppt->next)
1684 for (i = 0; i < ppt->nsyms; i++)
1685 {
1686 struct symbol *sym = ppt->symbol[i];
1687
1688 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF
1689 && SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE
1690 && (TYPE_CODE (SYMBOL_TYPE (sym)) == code)
1691 && !strcmp (SYMBOL_NAME (sym), type_name_only))
1692 {
1693 obstack_free (symbol_obstack, type_name);
1694 type = SYMBOL_TYPE (sym);
1695 return type;
1696 }
1697 }
1698
1699 /* Didn't find the type to which this refers, so we must
1700 be dealing with a forward reference. Allocate a type
1701 structure for it, and keep track of it so we can
1702 fill in the rest of the fields when we get the full
1703 type. */
1704 type = dbx_alloc_type (typenums);
1705 TYPE_CODE (type) = code;
1706 TYPE_NAME (type) = type_name;
1707 INIT_CPLUS_SPECIFIC(type);
1708 TYPE_FLAGS (type) |= TYPE_FLAG_STUB;
1709
1710 add_undefined_type (type);
1711 return type;
1712 }
1713
1714 case '-': /* RS/6000 built-in type */
1715 (*pp)--;
1716 type = builtin_type (pp); /* (in xcoffread.c) */
1717 goto after_digits;
1718
1719 case '0':
1720 case '1':
1721 case '2':
1722 case '3':
1723 case '4':
1724 case '5':
1725 case '6':
1726 case '7':
1727 case '8':
1728 case '9':
1729 case '(':
1730 (*pp)--;
1731 read_type_number (pp, xtypenums);
1732 type = *dbx_lookup_type (xtypenums);
1733 /* fall through */
1734
1735 after_digits:
1736 if (type == 0)
1737 type = builtin_type_void;
1738 if (typenums[0] != -1)
1739 *dbx_lookup_type (typenums) = type;
1740 break;
1741
1742 case '*':
1743 type1 = read_type (pp);
1744 /* FIXME -- we should be doing smash_to_XXX types here. */
1745 #if 0
1746 /* postponed type decoration should be allowed. */
1747 if (typenums[1] > 0 && typenums[1] < type_vector_length &&
1748 (type = type_vector[typenums[1]])) {
1749 smash_to_pointer_type (type, type1);
1750 break;
1751 }
1752 #endif
1753 type = lookup_pointer_type (type1);
1754 if (typenums[0] != -1)
1755 *dbx_lookup_type (typenums) = type;
1756 break;
1757
1758 case '@':
1759 {
1760 struct type *domain = read_type (pp);
1761 struct type *memtype;
1762
1763 if (**pp != ',')
1764 /* Invalid member type data format. */
1765 return error_type (pp);
1766 ++*pp;
1767
1768 memtype = read_type (pp);
1769 type = dbx_alloc_type (typenums);
1770 smash_to_member_type (type, domain, memtype);
1771 }
1772 break;
1773
1774 case '#':
1775 if ((*pp)[0] == '#')
1776 {
1777 /* We'll get the parameter types from the name. */
1778 struct type *return_type;
1779
1780 *pp += 1;
1781 return_type = read_type (pp);
1782 if (*(*pp)++ != ';')
1783 complain (&invalid_member_complaint, symnum);
1784 type = allocate_stub_method (return_type);
1785 if (typenums[0] != -1)
1786 *dbx_lookup_type (typenums) = type;
1787 }
1788 else
1789 {
1790 struct type *domain = read_type (pp);
1791 struct type *return_type;
1792 struct type **args;
1793
1794 if (*(*pp)++ != ',')
1795 error ("invalid member type data format, at symtab pos %d.",
1796 symnum);
1797
1798 return_type = read_type (pp);
1799 args = read_args (pp, ';');
1800 type = dbx_alloc_type (typenums);
1801 smash_to_method_type (type, domain, return_type, args);
1802 }
1803 break;
1804
1805 case '&':
1806 type1 = read_type (pp);
1807 type = lookup_reference_type (type1);
1808 if (typenums[0] != -1)
1809 *dbx_lookup_type (typenums) = type;
1810 break;
1811
1812 case 'f':
1813 type1 = read_type (pp);
1814 type = lookup_function_type (type1);
1815 if (typenums[0] != -1)
1816 *dbx_lookup_type (typenums) = type;
1817 break;
1818
1819 case 'r':
1820 type = read_range_type (pp, typenums);
1821 if (typenums[0] != -1)
1822 *dbx_lookup_type (typenums) = type;
1823 break;
1824
1825 case 'e':
1826 type = dbx_alloc_type (typenums);
1827 type = read_enum_type (pp, type);
1828 *dbx_lookup_type (typenums) = type;
1829 break;
1830
1831 case 's':
1832 type = dbx_alloc_type (typenums);
1833 TYPE_NAME (type) = type_synonym_name;
1834 type_synonym_name = 0;
1835 type = read_struct_type (pp, type);
1836 break;
1837
1838 case 'u':
1839 type = dbx_alloc_type (typenums);
1840 TYPE_NAME (type) = type_synonym_name;
1841 type_synonym_name = 0;
1842 type = read_struct_type (pp, type);
1843 TYPE_CODE (type) = TYPE_CODE_UNION;
1844 break;
1845
1846 case 'a':
1847 if (**pp != 'r')
1848 return error_type (pp);
1849 ++*pp;
1850
1851 type = dbx_alloc_type (typenums);
1852 type = read_array_type (pp, type);
1853 break;
1854
1855 default:
1856 --*pp; /* Go back to the symbol in error */
1857 /* Particularly important if it was \0! */
1858 return error_type (pp);
1859 }
1860
1861 if (type == 0)
1862 abort ();
1863
1864 #if 0
1865 /* If this is an overriding temporary alteration for a header file's
1866 contents, and this type number is unknown in the global definition,
1867 put this type into the global definition at this type number. */
1868 if (header_file_prev_index >= 0)
1869 {
1870 register struct type **tp
1871 = explicit_lookup_type (header_file_prev_index, typenums[1]);
1872 if (*tp == 0)
1873 *tp = type;
1874 }
1875 #endif
1876 return type;
1877 }
1878 \f
1879 /* This page contains subroutines of read_type. */
1880
1881 /* Read the description of a structure (or union type)
1882 and return an object describing the type. */
1883
1884 struct type *
1885 read_struct_type (pp, type)
1886 char **pp;
1887 register struct type *type;
1888 {
1889 /* Total number of methods defined in this class.
1890 If the class defines two `f' methods, and one `g' method,
1891 then this will have the value 3. */
1892 int total_length = 0;
1893
1894 struct nextfield
1895 {
1896 struct nextfield *next;
1897 int visibility; /* 0=public, 1=protected, 2=public */
1898 struct field field;
1899 };
1900
1901 struct next_fnfield
1902 {
1903 struct next_fnfield *next;
1904 struct fn_field fn_field;
1905 };
1906
1907 struct next_fnfieldlist
1908 {
1909 struct next_fnfieldlist *next;
1910 struct fn_fieldlist fn_fieldlist;
1911 };
1912
1913 register struct nextfield *list = 0;
1914 struct nextfield *new;
1915 register char *p;
1916 int nfields = 0;
1917 int non_public_fields = 0;
1918 register int n;
1919
1920 register struct next_fnfieldlist *mainlist = 0;
1921 int nfn_fields = 0;
1922
1923 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1924 INIT_CPLUS_SPECIFIC(type);
1925
1926 /* First comes the total size in bytes. */
1927
1928 TYPE_LENGTH (type) = read_number (pp, 0);
1929
1930 /* C++: Now, if the class is a derived class, then the next character
1931 will be a '!', followed by the number of base classes derived from.
1932 Each element in the list contains visibility information,
1933 the offset of this base class in the derived structure,
1934 and then the base type. */
1935 if (**pp == '!')
1936 {
1937 int i, n_baseclasses, offset;
1938 struct type *baseclass;
1939 int via_public;
1940
1941 /* Nonzero if it is a virtual baseclass, i.e.,
1942
1943 struct A{};
1944 struct B{};
1945 struct C : public B, public virtual A {};
1946
1947 B is a baseclass of C; A is a virtual baseclass for C. This is a C++
1948 2.0 language feature. */
1949 int via_virtual;
1950
1951 *pp += 1;
1952
1953 ALLOCATE_CPLUS_STRUCT_TYPE(type);
1954
1955 n_baseclasses = read_number (pp, ',');
1956 TYPE_FIELD_VIRTUAL_BITS (type) =
1957 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (n_baseclasses));
1958 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), n_baseclasses);
1959
1960 for (i = 0; i < n_baseclasses; i++)
1961 {
1962 if (**pp == '\\')
1963 *pp = next_symbol_text ();
1964
1965 switch (**pp)
1966 {
1967 case '0':
1968 via_virtual = 0;
1969 break;
1970 case '1':
1971 via_virtual = 1;
1972 break;
1973 default:
1974 /* Bad visibility format. */
1975 return error_type (pp);
1976 }
1977 ++*pp;
1978
1979 switch (**pp)
1980 {
1981 case '0':
1982 via_public = 0;
1983 non_public_fields++;
1984 break;
1985 case '2':
1986 via_public = 2;
1987 break;
1988 default:
1989 /* Bad visibility format. */
1990 return error_type (pp);
1991 }
1992 if (via_virtual)
1993 SET_TYPE_FIELD_VIRTUAL (type, i);
1994 ++*pp;
1995
1996 /* Offset of the portion of the object corresponding to
1997 this baseclass. Always zero in the absence of
1998 multiple inheritance. */
1999 offset = read_number (pp, ',');
2000 baseclass = read_type (pp);
2001 *pp += 1; /* skip trailing ';' */
2002
2003 /* Make this baseclass visible for structure-printing purposes. */
2004 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2005 new->next = list;
2006 list = new;
2007 list->visibility = via_public;
2008 list->field.type = baseclass;
2009 list->field.name = type_name_no_tag (baseclass);
2010 list->field.bitpos = offset;
2011 list->field.bitsize = 0; /* this should be an unpacked field! */
2012 nfields++;
2013 }
2014 TYPE_N_BASECLASSES (type) = n_baseclasses;
2015 }
2016
2017 /* Now come the fields, as NAME:?TYPENUM,BITPOS,BITSIZE; for each one.
2018 At the end, we see a semicolon instead of a field.
2019
2020 In C++, this may wind up being NAME:?TYPENUM:PHYSNAME; for
2021 a static field.
2022
2023 The `?' is a placeholder for one of '/2' (public visibility),
2024 '/1' (protected visibility), '/0' (private visibility), or nothing
2025 (C style symbol table, public visibility). */
2026
2027 /* We better set p right now, in case there are no fields at all... */
2028 p = *pp;
2029
2030 while (**pp != ';')
2031 {
2032 /* Check for and handle cretinous dbx symbol name continuation! */
2033 if (**pp == '\\') *pp = next_symbol_text ();
2034
2035 /* Get space to record the next field's data. */
2036 new = (struct nextfield *) alloca (sizeof (struct nextfield));
2037 new->next = list;
2038 list = new;
2039
2040 /* Get the field name. */
2041 p = *pp;
2042 if (*p == CPLUS_MARKER)
2043 {
2044 /* Special GNU C++ name. */
2045 if (*++p == 'v')
2046 {
2047 const char *prefix;
2048 char *name = 0;
2049 struct type *context;
2050
2051 switch (*++p)
2052 {
2053 case 'f':
2054 prefix = vptr_name;
2055 break;
2056 case 'b':
2057 prefix = vb_name;
2058 break;
2059 default:
2060 complain (&invalid_cpp_abbrev_complaint, *pp);
2061 prefix = "INVALID_C++_ABBREV";
2062 break;
2063 }
2064 *pp = p + 1;
2065 context = read_type (pp);
2066 name = type_name_no_tag (context);
2067 if (name == 0)
2068 {
2069 complain (&invalid_cpp_type_complaint, symnum);
2070 TYPE_NAME (context) = name;
2071 }
2072 list->field.name = obconcat (prefix, name, "");
2073 p = ++(*pp);
2074 if (p[-1] != ':')
2075 complain (&invalid_cpp_abbrev_complaint, *pp);
2076 list->field.type = read_type (pp);
2077 (*pp)++; /* Skip the comma. */
2078 list->field.bitpos = read_number (pp, ';');
2079 /* This field is unpacked. */
2080 list->field.bitsize = 0;
2081 list->visibility = 0; /* private */
2082 non_public_fields++;
2083 }
2084 /* GNU C++ anonymous type. */
2085 else if (*p == '_')
2086 break;
2087 else
2088 complain (&invalid_cpp_abbrev_complaint, *pp);
2089
2090 nfields++;
2091 continue;
2092 }
2093
2094 while (*p != ':') p++;
2095 list->field.name = obsavestring (*pp, p - *pp);
2096
2097 /* C++: Check to see if we have hit the methods yet. */
2098 if (p[1] == ':')
2099 break;
2100
2101 *pp = p + 1;
2102
2103 /* This means we have a visibility for a field coming. */
2104 if (**pp == '/')
2105 {
2106 switch (*++*pp)
2107 {
2108 case '0':
2109 list->visibility = 0; /* private */
2110 non_public_fields++;
2111 *pp += 1;
2112 break;
2113
2114 case '1':
2115 list->visibility = 1; /* protected */
2116 non_public_fields++;
2117 *pp += 1;
2118 break;
2119
2120 case '2':
2121 list->visibility = 2; /* public */
2122 *pp += 1;
2123 break;
2124 }
2125 }
2126 else /* normal dbx-style format. */
2127 list->visibility = 2; /* public */
2128
2129 list->field.type = read_type (pp);
2130 if (**pp == ':')
2131 {
2132 /* Static class member. */
2133 list->field.bitpos = (long)-1;
2134 p = ++(*pp);
2135 while (*p != ';') p++;
2136 list->field.bitsize = (long) savestring (*pp, p - *pp);
2137 *pp = p + 1;
2138 nfields++;
2139 continue;
2140 }
2141 else if (**pp != ',')
2142 /* Bad structure-type format. */
2143 return error_type (pp);
2144
2145 (*pp)++; /* Skip the comma. */
2146 list->field.bitpos = read_number (pp, ',');
2147 list->field.bitsize = read_number (pp, ';');
2148
2149 #if 0
2150 /* FIXME-tiemann: Can't the compiler put out something which
2151 lets us distinguish these? (or maybe just not put out anything
2152 for the field). What is the story here? What does the compiler
2153 really do? Also, patch gdb.texinfo for this case; I document
2154 it as a possible problem there. Search for "DBX-style". */
2155
2156 /* This is wrong because this is identical to the symbols
2157 produced for GCC 0-size arrays. For example:
2158 typedef union {
2159 int num;
2160 char str[0];
2161 } foo;
2162 The code which dumped core in such circumstances should be
2163 fixed not to dump core. */
2164
2165 /* g++ -g0 can put out bitpos & bitsize zero for a static
2166 field. This does not give us any way of getting its
2167 class, so we can't know its name. But we can just
2168 ignore the field so we don't dump core and other nasty
2169 stuff. */
2170 if (list->field.bitpos == 0
2171 && list->field.bitsize == 0)
2172 {
2173 complain (&dbx_class_complaint, 0);
2174 /* Ignore this field. */
2175 list = list->next;
2176 }
2177 else
2178 #endif /* 0 */
2179 {
2180 /* Detect an unpacked field and mark it as such.
2181 dbx gives a bit size for all fields.
2182 Note that forward refs cannot be packed,
2183 and treat enums as if they had the width of ints. */
2184 if (TYPE_CODE (list->field.type) != TYPE_CODE_INT
2185 && TYPE_CODE (list->field.type) != TYPE_CODE_ENUM)
2186 list->field.bitsize = 0;
2187 if ((list->field.bitsize == 8 * TYPE_LENGTH (list->field.type)
2188 || (TYPE_CODE (list->field.type) == TYPE_CODE_ENUM
2189 && (list->field.bitsize
2190 == 8 * TYPE_LENGTH (builtin_type_int))
2191 )
2192 )
2193 &&
2194 list->field.bitpos % 8 == 0)
2195 list->field.bitsize = 0;
2196 nfields++;
2197 }
2198 }
2199
2200 if (p[1] == ':')
2201 /* chill the list of fields: the last entry (at the head)
2202 is a partially constructed entry which we now scrub. */
2203 list = list->next;
2204
2205 /* Now create the vector of fields, and record how big it is.
2206 We need this info to record proper virtual function table information
2207 for this class's virtual functions. */
2208
2209 TYPE_NFIELDS (type) = nfields;
2210 TYPE_FIELDS (type) = (struct field *) obstack_alloc (symbol_obstack,
2211 sizeof (struct field) * nfields);
2212
2213 if (non_public_fields)
2214 {
2215 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2216
2217 TYPE_FIELD_PRIVATE_BITS (type) =
2218 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (nfields));
2219 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
2220
2221 TYPE_FIELD_PROTECTED_BITS (type) =
2222 (B_TYPE *) obstack_alloc (symbol_obstack, B_BYTES (nfields));
2223 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
2224 }
2225
2226 /* Copy the saved-up fields into the field vector. */
2227
2228 for (n = nfields; list; list = list->next)
2229 {
2230 n -= 1;
2231 TYPE_FIELD (type, n) = list->field;
2232 if (list->visibility == 0)
2233 SET_TYPE_FIELD_PRIVATE (type, n);
2234 else if (list->visibility == 1)
2235 SET_TYPE_FIELD_PROTECTED (type, n);
2236 }
2237
2238 /* Now come the method fields, as NAME::methods
2239 where each method is of the form TYPENUM,ARGS,...:PHYSNAME;
2240 At the end, we see a semicolon instead of a field.
2241
2242 For the case of overloaded operators, the format is
2243 OPERATOR::*.methods, where OPERATOR is the string "operator",
2244 `*' holds the place for an operator name (such as `+=')
2245 and `.' marks the end of the operator name. */
2246 if (p[1] == ':')
2247 {
2248 /* Now, read in the methods. To simplify matters, we
2249 "unread" the name that has been read, so that we can
2250 start from the top. */
2251
2252 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2253 /* For each list of method lists... */
2254 do
2255 {
2256 int i;
2257 struct next_fnfield *sublist = 0;
2258 struct type *look_ahead_type = NULL;
2259 int length = 0;
2260 struct next_fnfieldlist *new_mainlist =
2261 (struct next_fnfieldlist *)alloca (sizeof (struct next_fnfieldlist));
2262 char *main_fn_name;
2263
2264 p = *pp;
2265
2266 /* read in the name. */
2267 while (*p != ':') p++;
2268 if ((*pp)[0] == 'o' && (*pp)[1] == 'p' && (*pp)[2] == CPLUS_MARKER)
2269 {
2270 /* This is a completely wierd case. In order to stuff in the
2271 names that might contain colons (the usual name delimiter),
2272 Mike Tiemann defined a different name format which is
2273 signalled if the identifier is "op$". In that case, the
2274 format is "op$::XXXX." where XXXX is the name. This is
2275 used for names like "+" or "=". YUUUUUUUK! FIXME! */
2276 /* This lets the user type "break operator+".
2277 We could just put in "+" as the name, but that wouldn't
2278 work for "*". */
2279 static char opname[32] = {'o', 'p', CPLUS_MARKER};
2280 char *o = opname + 3;
2281
2282 /* Skip past '::'. */
2283 *pp = p + 2;
2284 if (**pp == '\\') *pp = next_symbol_text ();
2285 p = *pp;
2286 while (*p != '.')
2287 *o++ = *p++;
2288 main_fn_name = savestring (opname, o - opname);
2289 /* Skip past '.' */
2290 *pp = p + 1;
2291 }
2292 else
2293 main_fn_name = savestring (*pp, p - *pp);
2294 /* Skip past '::'. */
2295 *pp = p + 2;
2296 new_mainlist->fn_fieldlist.name = main_fn_name;
2297
2298 do
2299 {
2300 struct next_fnfield *new_sublist =
2301 (struct next_fnfield *)alloca (sizeof (struct next_fnfield));
2302
2303 /* Check for and handle cretinous dbx symbol name continuation! */
2304 if (look_ahead_type == NULL) /* Normal case. */
2305 {
2306 if (**pp == '\\') *pp = next_symbol_text ();
2307
2308 new_sublist->fn_field.type = read_type (pp);
2309 if (**pp != ':')
2310 /* Invalid symtab info for method. */
2311 return error_type (pp);
2312 }
2313 else
2314 { /* g++ version 1 kludge */
2315 new_sublist->fn_field.type = look_ahead_type;
2316 look_ahead_type = NULL;
2317 }
2318
2319 *pp += 1;
2320 p = *pp;
2321 while (*p != ';') p++;
2322
2323 /* If this is just a stub, then we don't have the
2324 real name here. */
2325 if (TYPE_FLAGS (new_sublist->fn_field.type) & TYPE_FLAG_STUB)
2326 new_sublist->fn_field.is_stub = 1;
2327 new_sublist->fn_field.physname = savestring (*pp, p - *pp);
2328 *pp = p + 1;
2329
2330 /* Set this method's visibility fields. */
2331 switch (*(*pp)++ - '0')
2332 {
2333 case 0:
2334 new_sublist->fn_field.is_private = 1;
2335 break;
2336 case 1:
2337 new_sublist->fn_field.is_protected = 1;
2338 break;
2339 }
2340
2341 if (**pp == '\\') *pp = next_symbol_text ();
2342 switch (**pp)
2343 {
2344 case 'A': /* Normal functions. */
2345 new_sublist->fn_field.is_const = 0;
2346 new_sublist->fn_field.is_volatile = 0;
2347 (*pp)++;
2348 break;
2349 case 'B': /* `const' member functions. */
2350 new_sublist->fn_field.is_const = 1;
2351 new_sublist->fn_field.is_volatile = 0;
2352 (*pp)++;
2353 break;
2354 case 'C': /* `volatile' member function. */
2355 new_sublist->fn_field.is_const = 0;
2356 new_sublist->fn_field.is_volatile = 1;
2357 (*pp)++;
2358 break;
2359 case 'D': /* `const volatile' member function. */
2360 new_sublist->fn_field.is_const = 1;
2361 new_sublist->fn_field.is_volatile = 1;
2362 (*pp)++;
2363 break;
2364 case '*': /* File compiled with g++ version 1 -- no info */
2365 case '?':
2366 case '.':
2367 break;
2368 default:
2369 complain(&const_vol_complaint, **pp);
2370 break;
2371 }
2372
2373 switch (*(*pp)++)
2374 {
2375 case '*':
2376 /* virtual member function, followed by index. */
2377 /* The sign bit is set to distinguish pointers-to-methods
2378 from virtual function indicies. Since the array is
2379 in words, the quantity must be shifted left by 1
2380 on 16 bit machine, and by 2 on 32 bit machine, forcing
2381 the sign bit out, and usable as a valid index into
2382 the array. Remove the sign bit here. */
2383 new_sublist->fn_field.voffset =
2384 (0x7fffffff & read_number (pp, ';')) + 2;
2385
2386 if (**pp == '\\') *pp = next_symbol_text ();
2387
2388 if (**pp == ';' || **pp == '\0')
2389 /* Must be g++ version 1. */
2390 new_sublist->fn_field.fcontext = 0;
2391 else
2392 {
2393 /* Figure out from whence this virtual function came.
2394 It may belong to virtual function table of
2395 one of its baseclasses. */
2396 look_ahead_type = read_type (pp);
2397 if (**pp == ':')
2398 { /* g++ version 1 overloaded methods. */ }
2399 else
2400 {
2401 new_sublist->fn_field.fcontext = look_ahead_type;
2402 if (**pp != ';')
2403 return error_type (pp);
2404 else
2405 ++*pp;
2406 look_ahead_type = NULL;
2407 }
2408 }
2409 break;
2410
2411 case '?':
2412 /* static member function. */
2413 new_sublist->fn_field.voffset = VOFFSET_STATIC;
2414 if (strncmp (new_sublist->fn_field.physname,
2415 main_fn_name, strlen (main_fn_name)))
2416 new_sublist->fn_field.is_stub = 1;
2417 break;
2418
2419 default:
2420 /* error */
2421 complain (&member_fn_complaint, (*pp)[-1]);
2422 /* Fall through into normal member function. */
2423
2424 case '.':
2425 /* normal member function. */
2426 new_sublist->fn_field.voffset = 0;
2427 new_sublist->fn_field.fcontext = 0;
2428 break;
2429 }
2430
2431 new_sublist->next = sublist;
2432 sublist = new_sublist;
2433 length++;
2434 if (**pp == '\\') *pp = next_symbol_text ();
2435 }
2436 while (**pp != ';' && **pp != '\0');
2437
2438 *pp += 1;
2439
2440 new_mainlist->fn_fieldlist.fn_fields =
2441 (struct fn_field *) obstack_alloc (symbol_obstack,
2442 sizeof (struct fn_field) * length);
2443 for (i = length; (i--, sublist); sublist = sublist->next)
2444 new_mainlist->fn_fieldlist.fn_fields[i] = sublist->fn_field;
2445
2446 new_mainlist->fn_fieldlist.length = length;
2447 new_mainlist->next = mainlist;
2448 mainlist = new_mainlist;
2449 nfn_fields++;
2450 total_length += length;
2451 }
2452 while (**pp != ';');
2453 }
2454
2455 *pp += 1;
2456
2457
2458 if (nfn_fields)
2459 {
2460 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
2461 obstack_alloc (symbol_obstack,
2462 sizeof (struct fn_fieldlist) * nfn_fields);
2463 TYPE_NFN_FIELDS (type) = nfn_fields;
2464 TYPE_NFN_FIELDS_TOTAL (type) = total_length;
2465 }
2466
2467 {
2468 int i;
2469 for (i = 0; i < TYPE_N_BASECLASSES (type); ++i)
2470 TYPE_NFN_FIELDS_TOTAL (type) +=
2471 TYPE_NFN_FIELDS_TOTAL (TYPE_BASECLASS (type, i));
2472 }
2473
2474 for (n = nfn_fields; mainlist; mainlist = mainlist->next)
2475 TYPE_FN_FIELDLISTS (type)[--n] = mainlist->fn_fieldlist;
2476
2477 if (**pp == '~')
2478 {
2479 *pp += 1;
2480
2481 if (**pp == '=' || **pp == '+' || **pp == '-')
2482 {
2483 /* Obsolete flags that used to indicate the presence
2484 of constructors and/or destructors. */
2485 *pp += 1;
2486 }
2487
2488 /* Read either a '%' or the final ';'. */
2489 if (*(*pp)++ == '%')
2490 {
2491 /* We'd like to be able to derive the vtable pointer field
2492 from the type information, but when it's inherited, that's
2493 hard. A reason it's hard is because we may read in the
2494 info about a derived class before we read in info about
2495 the base class that provides the vtable pointer field.
2496 Once the base info has been read, we could fill in the info
2497 for the derived classes, but for the fact that by then,
2498 we don't remember who needs what. */
2499
2500 int predicted_fieldno = -1;
2501
2502 /* Now we must record the virtual function table pointer's
2503 field information. */
2504
2505 struct type *t;
2506 int i;
2507
2508
2509 #if 0
2510 {
2511 /* In version 2, we derive the vfield ourselves. */
2512 for (n = 0; n < nfields; n++)
2513 {
2514 if (! strncmp (TYPE_FIELD_NAME (type, n), vptr_name,
2515 sizeof (vptr_name) -1))
2516 {
2517 predicted_fieldno = n;
2518 break;
2519 }
2520 }
2521 if (predicted_fieldno < 0)
2522 for (n = 0; n < TYPE_N_BASECLASSES (type); n++)
2523 if (! TYPE_FIELD_VIRTUAL (type, n)
2524 && TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, n)) >= 0)
2525 {
2526 predicted_fieldno = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, n));
2527 break;
2528 }
2529 }
2530 #endif
2531
2532 t = read_type (pp);
2533 p = (*pp)++;
2534 while (*p != '\0' && *p != ';')
2535 p++;
2536 if (*p == '\0')
2537 /* Premature end of symbol. */
2538 return error_type (pp);
2539
2540 TYPE_VPTR_BASETYPE (type) = t;
2541 if (type == t)
2542 {
2543 if (TYPE_FIELD_NAME (t, TYPE_N_BASECLASSES (t)) == 0)
2544 {
2545 /* FIXME-tiemann: what's this? */
2546 #if 0
2547 TYPE_VPTR_FIELDNO (type) = i = TYPE_N_BASECLASSES (t);
2548 #else
2549 error_type (pp);
2550 #endif
2551 }
2552 else for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); --i)
2553 if (! strncmp (TYPE_FIELD_NAME (t, i), vptr_name,
2554 sizeof (vptr_name) -1))
2555 {
2556 TYPE_VPTR_FIELDNO (type) = i;
2557 break;
2558 }
2559 if (i < 0)
2560 /* Virtual function table field not found. */
2561 return error_type (pp);
2562 }
2563 else
2564 TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t);
2565
2566 #if 0
2567 if (TYPE_VPTR_FIELDNO (type) != predicted_fieldno)
2568 error ("TYPE_VPTR_FIELDNO miscalculated");
2569 #endif
2570
2571 *pp = p + 1;
2572 }
2573 }
2574
2575 return type;
2576 }
2577
2578 /* Read a definition of an array type,
2579 and create and return a suitable type object.
2580 Also creates a range type which represents the bounds of that
2581 array. */
2582 struct type *
2583 read_array_type (pp, type)
2584 register char **pp;
2585 register struct type *type;
2586 {
2587 struct type *index_type, *element_type, *range_type;
2588 int lower, upper;
2589 int adjustable = 0;
2590
2591 /* Format of an array type:
2592 "ar<index type>;lower;upper;<array_contents_type>". Put code in
2593 to handle this.
2594
2595 Fortran adjustable arrays use Adigits or Tdigits for lower or upper;
2596 for these, produce a type like float[][]. */
2597
2598 index_type = read_type (pp);
2599 if (**pp != ';')
2600 /* Improper format of array type decl. */
2601 return error_type (pp);
2602 ++*pp;
2603
2604 if (!(**pp >= '0' && **pp <= '9'))
2605 {
2606 *pp += 1;
2607 adjustable = 1;
2608 }
2609 lower = read_number (pp, ';');
2610
2611 if (!(**pp >= '0' && **pp <= '9'))
2612 {
2613 *pp += 1;
2614 adjustable = 1;
2615 }
2616 upper = read_number (pp, ';');
2617
2618 element_type = read_type (pp);
2619
2620 if (adjustable)
2621 {
2622 lower = 0;
2623 upper = -1;
2624 }
2625
2626 {
2627 /* Create range type. */
2628 range_type = (struct type *) obstack_alloc (symbol_obstack,
2629 sizeof (struct type));
2630 TYPE_CODE (range_type) = TYPE_CODE_RANGE;
2631 TYPE_TARGET_TYPE (range_type) = index_type;
2632
2633 /* This should never be needed. */
2634 TYPE_LENGTH (range_type) = sizeof (int);
2635
2636 TYPE_NFIELDS (range_type) = 2;
2637 TYPE_FIELDS (range_type) =
2638 (struct field *) obstack_alloc (symbol_obstack,
2639 2 * sizeof (struct field));
2640 TYPE_FIELD_BITPOS (range_type, 0) = lower;
2641 TYPE_FIELD_BITPOS (range_type, 1) = upper;
2642 }
2643
2644 TYPE_CODE (type) = TYPE_CODE_ARRAY;
2645 TYPE_TARGET_TYPE (type) = element_type;
2646 TYPE_LENGTH (type) = (upper - lower + 1) * TYPE_LENGTH (element_type);
2647 TYPE_NFIELDS (type) = 1;
2648 TYPE_FIELDS (type) =
2649 (struct field *) obstack_alloc (symbol_obstack,
2650 sizeof (struct field));
2651 TYPE_FIELD_TYPE (type, 0) = range_type;
2652
2653 /* If we have an array whose element type is not yet known, but whose
2654 bounds *are* known, record it to be adjusted at the end of the file. */
2655 if (TYPE_LENGTH (element_type) == 0 && !adjustable)
2656 add_undefined_type (type);
2657
2658 return type;
2659 }
2660
2661
2662 /* Read a definition of an enumeration type,
2663 and create and return a suitable type object.
2664 Also defines the symbols that represent the values of the type. */
2665
2666 struct type *
2667 read_enum_type (pp, type)
2668 register char **pp;
2669 register struct type *type;
2670 {
2671 register char *p;
2672 char *name;
2673 register long n;
2674 register struct symbol *sym;
2675 int nsyms = 0;
2676 struct pending **symlist;
2677 struct pending *osyms, *syms;
2678 int o_nsyms;
2679
2680 if (within_function)
2681 symlist = &local_symbols;
2682 else
2683 symlist = &file_symbols;
2684 osyms = *symlist;
2685 o_nsyms = osyms ? osyms->nsyms : 0;
2686
2687 /* Read the value-names and their values.
2688 The input syntax is NAME:VALUE,NAME:VALUE, and so on.
2689 A semicolon or comman instead of a NAME means the end. */
2690 while (**pp && **pp != ';' && **pp != ',')
2691 {
2692 /* Check for and handle cretinous dbx symbol name continuation! */
2693 if (**pp == '\\') *pp = next_symbol_text ();
2694
2695 p = *pp;
2696 while (*p != ':') p++;
2697 name = obsavestring (*pp, p - *pp);
2698 *pp = p + 1;
2699 n = read_number (pp, ',');
2700
2701 sym = (struct symbol *) obstack_alloc (symbol_obstack, sizeof (struct symbol));
2702 bzero (sym, sizeof (struct symbol));
2703 SYMBOL_NAME (sym) = name;
2704 SYMBOL_CLASS (sym) = LOC_CONST;
2705 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
2706 SYMBOL_VALUE (sym) = n;
2707 add_symbol_to_list (sym, symlist);
2708 nsyms++;
2709 }
2710
2711 if (**pp == ';')
2712 (*pp)++; /* Skip the semicolon. */
2713
2714 /* Now fill in the fields of the type-structure. */
2715
2716 TYPE_LENGTH (type) = sizeof (int);
2717 TYPE_CODE (type) = TYPE_CODE_ENUM;
2718 TYPE_NFIELDS (type) = nsyms;
2719 TYPE_FIELDS (type) = (struct field *) obstack_alloc (symbol_obstack, sizeof (struct field) * nsyms);
2720
2721 /* Find the symbols for the values and put them into the type.
2722 The symbols can be found in the symlist that we put them on
2723 to cause them to be defined. osyms contains the old value
2724 of that symlist; everything up to there was defined by us. */
2725 /* Note that we preserve the order of the enum constants, so
2726 that in something like "enum {FOO, LAST_THING=FOO}" we print
2727 FOO, not LAST_THING. */
2728
2729 for (syms = *symlist, n = 0; syms; syms = syms->next)
2730 {
2731 int j = 0;
2732 if (syms == osyms)
2733 j = o_nsyms;
2734 for (; j < syms->nsyms; j++,n++)
2735 {
2736 struct symbol *xsym = syms->symbol[j];
2737 SYMBOL_TYPE (xsym) = type;
2738 TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
2739 TYPE_FIELD_VALUE (type, n) = 0;
2740 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
2741 TYPE_FIELD_BITSIZE (type, n) = 0;
2742 }
2743 if (syms == osyms)
2744 break;
2745 }
2746
2747 #if 0
2748 /* This screws up perfectly good C programs with enums. FIXME. */
2749 /* Is this Modula-2's BOOLEAN type? Flag it as such if so. */
2750 if(TYPE_NFIELDS(type) == 2 &&
2751 ((!strcmp(TYPE_FIELD_NAME(type,0),"TRUE") &&
2752 !strcmp(TYPE_FIELD_NAME(type,1),"FALSE")) ||
2753 (!strcmp(TYPE_FIELD_NAME(type,1),"TRUE") &&
2754 !strcmp(TYPE_FIELD_NAME(type,0),"FALSE"))))
2755 TYPE_CODE(type) = TYPE_CODE_BOOL;
2756 #endif
2757
2758 return type;
2759 }
2760
2761 /* Read a number from the string pointed to by *PP.
2762 The value of *PP is advanced over the number.
2763 If END is nonzero, the character that ends the
2764 number must match END, or an error happens;
2765 and that character is skipped if it does match.
2766 If END is zero, *PP is left pointing to that character.
2767
2768 If the number fits in a long, set *VALUE and set *BITS to 0.
2769 If not, set *BITS to be the number of bits in the number.
2770
2771 If encounter garbage, set *BITS to -1. */
2772
2773 void
2774 read_huge_number (pp, end, valu, bits)
2775 char **pp;
2776 int end;
2777 long *valu;
2778 int *bits;
2779 {
2780 char *p = *pp;
2781 int sign = 1;
2782 long n = 0;
2783 int radix = 10;
2784 char overflow = 0;
2785 int nbits = 0;
2786 int c;
2787 long upper_limit;
2788
2789 if (*p == '-')
2790 {
2791 sign = -1;
2792 p++;
2793 }
2794
2795 /* Leading zero means octal. GCC uses this to output values larger
2796 than an int (because that would be hard in decimal). */
2797 if (*p == '0')
2798 {
2799 radix = 8;
2800 p++;
2801 }
2802
2803 upper_limit = LONG_MAX / radix;
2804 while ((c = *p++) >= '0' && c <= ('0' + radix))
2805 {
2806 if (n <= upper_limit)
2807 {
2808 n *= radix;
2809 n += c - '0'; /* FIXME this overflows anyway */
2810 }
2811 else
2812 overflow = 1;
2813
2814 /* This depends on large values being output in octal, which is
2815 what GCC does. */
2816 if (radix == 8)
2817 {
2818 if (nbits == 0)
2819 {
2820 if (c == '0')
2821 /* Ignore leading zeroes. */
2822 ;
2823 else if (c == '1')
2824 nbits = 1;
2825 else if (c == '2' || c == '3')
2826 nbits = 2;
2827 else
2828 nbits = 3;
2829 }
2830 else
2831 nbits += 3;
2832 }
2833 }
2834 if (end)
2835 {
2836 if (c && c != end)
2837 {
2838 if (bits != NULL)
2839 *bits = -1;
2840 return;
2841 }
2842 }
2843 else
2844 --p;
2845
2846 *pp = p;
2847 if (overflow)
2848 {
2849 if (nbits == 0)
2850 {
2851 /* Large decimal constants are an error (because it is hard to
2852 count how many bits are in them). */
2853 if (bits != NULL)
2854 *bits = -1;
2855 return;
2856 }
2857
2858 /* -0x7f is the same as 0x80. So deal with it by adding one to
2859 the number of bits. */
2860 if (sign == -1)
2861 ++nbits;
2862 if (bits)
2863 *bits = nbits;
2864 }
2865 else
2866 {
2867 if (valu)
2868 *valu = n * sign;
2869 if (bits)
2870 *bits = 0;
2871 }
2872 }
2873
2874 #define MAX_OF_C_TYPE(t) ((1 << (sizeof (t)*8 - 1)) - 1)
2875 #define MIN_OF_C_TYPE(t) (-(1 << (sizeof (t)*8 - 1)))
2876
2877 struct type *
2878 read_range_type (pp, typenums)
2879 char **pp;
2880 int typenums[2];
2881 {
2882 int rangenums[2];
2883 long n2, n3;
2884 int n2bits, n3bits;
2885 int self_subrange;
2886 struct type *result_type;
2887
2888 /* First comes a type we are a subrange of.
2889 In C it is usually 0, 1 or the type being defined. */
2890 read_type_number (pp, rangenums);
2891 self_subrange = (rangenums[0] == typenums[0] &&
2892 rangenums[1] == typenums[1]);
2893
2894 /* A semicolon should now follow; skip it. */
2895 if (**pp == ';')
2896 (*pp)++;
2897
2898 /* The remaining two operands are usually lower and upper bounds
2899 of the range. But in some special cases they mean something else. */
2900 read_huge_number (pp, ';', &n2, &n2bits);
2901 read_huge_number (pp, ';', &n3, &n3bits);
2902
2903 if (n2bits == -1 || n3bits == -1)
2904 return error_type (pp);
2905
2906 /* If limits are huge, must be large integral type. */
2907 if (n2bits != 0 || n3bits != 0)
2908 {
2909 char got_signed = 0;
2910 char got_unsigned = 0;
2911 /* Number of bits in the type. */
2912 int nbits;
2913
2914 /* Range from 0 to <large number> is an unsigned large integral type. */
2915 if ((n2bits == 0 && n2 == 0) && n3bits != 0)
2916 {
2917 got_unsigned = 1;
2918 nbits = n3bits;
2919 }
2920 /* Range from <large number> to <large number>-1 is a large signed
2921 integral type. */
2922 else if (n2bits != 0 && n3bits != 0 && n2bits == n3bits + 1)
2923 {
2924 got_signed = 1;
2925 nbits = n2bits;
2926 }
2927
2928 /* Check for "long long". */
2929 if (got_signed && nbits == TARGET_LONG_LONG_BIT)
2930 return builtin_type_long_long;
2931 if (got_unsigned && nbits == TARGET_LONG_LONG_BIT)
2932 return builtin_type_unsigned_long_long;
2933
2934 if (got_signed || got_unsigned)
2935 {
2936 result_type = (struct type *) obstack_alloc (symbol_obstack,
2937 sizeof (struct type));
2938 bzero (result_type, sizeof (struct type));
2939 TYPE_LENGTH (result_type) = nbits / TARGET_CHAR_BIT;
2940 TYPE_CODE (result_type) = TYPE_CODE_INT;
2941 if (got_unsigned)
2942 TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
2943 return result_type;
2944 }
2945 else
2946 return error_type (pp);
2947 }
2948
2949 /* A type defined as a subrange of itself, with bounds both 0, is void. */
2950 if (self_subrange && n2 == 0 && n3 == 0)
2951 return builtin_type_void;
2952
2953 /* If n3 is zero and n2 is not, we want a floating type,
2954 and n2 is the width in bytes.
2955
2956 Fortran programs appear to use this for complex types also,
2957 and they give no way to distinguish between double and single-complex!
2958 We don't have complex types, so we would lose on all fortran files!
2959 So return type `double' for all of those. It won't work right
2960 for the complex values, but at least it makes the file loadable.
2961
2962 FIXME, we may be able to distinguish these by their names. FIXME. */
2963
2964 if (n3 == 0 && n2 > 0)
2965 {
2966 if (n2 == sizeof (float))
2967 return builtin_type_float;
2968 return builtin_type_double;
2969 }
2970
2971 /* If the upper bound is -1, it must really be an unsigned int. */
2972
2973 else if (n2 == 0 && n3 == -1)
2974 {
2975 /* FIXME -- the only way to distinguish `unsigned int' from `unsigned
2976 long' is to look at its name! */
2977 if (
2978 long_kludge_name && ((long_kludge_name[0] == 'u' /* unsigned */ &&
2979 long_kludge_name[9] == 'l' /* long */)
2980 || (long_kludge_name[0] == 'l' /* long unsigned */)))
2981 return builtin_type_unsigned_long;
2982 else
2983 return builtin_type_unsigned_int;
2984 }
2985
2986 /* Special case: char is defined (Who knows why) as a subrange of
2987 itself with range 0-127. */
2988 else if (self_subrange && n2 == 0 && n3 == 127)
2989 return builtin_type_char;
2990
2991 /* Assumptions made here: Subrange of self is equivalent to subrange
2992 of int. FIXME: Host and target type-sizes assumed the same. */
2993 /* FIXME: This is the *only* place in GDB that depends on comparing
2994 some type to a builtin type with ==. Fix it! */
2995 else if (n2 == 0
2996 && (self_subrange ||
2997 *dbx_lookup_type (rangenums) == builtin_type_int))
2998 {
2999 /* an unsigned type */
3000 #ifdef LONG_LONG
3001 if (n3 == - sizeof (long long))
3002 return builtin_type_unsigned_long_long;
3003 #endif
3004 /* FIXME -- the only way to distinguish `unsigned int' from `unsigned
3005 long' is to look at its name! */
3006 if (n3 == (unsigned long)~0L &&
3007 long_kludge_name && ((long_kludge_name[0] == 'u' /* unsigned */ &&
3008 long_kludge_name[9] == 'l' /* long */)
3009 || (long_kludge_name[0] == 'l' /* long unsigned */)))
3010 return builtin_type_unsigned_long;
3011 if (n3 == (unsigned int)~0L)
3012 return builtin_type_unsigned_int;
3013 if (n3 == (unsigned short)~0L)
3014 return builtin_type_unsigned_short;
3015 if (n3 == (unsigned char)~0L)
3016 return builtin_type_unsigned_char;
3017 }
3018 #ifdef LONG_LONG
3019 else if (n3 == 0 && n2 == -sizeof (long long))
3020 return builtin_type_long_long;
3021 #endif
3022 else if (n2 == -n3 -1)
3023 {
3024 /* a signed type */
3025 /* FIXME -- the only way to distinguish `int' from `long' is to look
3026 at its name! */
3027 if ((n3 == (1 << (8 * sizeof (long) - 1)) - 1) &&
3028 long_kludge_name && long_kludge_name[0] == 'l' /* long */)
3029 return builtin_type_long;
3030 if (n3 == (1 << (8 * sizeof (int) - 1)) - 1)
3031 return builtin_type_int;
3032 if (n3 == (1 << (8 * sizeof (short) - 1)) - 1)
3033 return builtin_type_short;
3034 if (n3 == (1 << (8 * sizeof (char) - 1)) - 1)
3035 return builtin_type_char;
3036 }
3037
3038 /* We have a real range type on our hands. Allocate space and
3039 return a real pointer. */
3040
3041 /* At this point I don't have the faintest idea how to deal with
3042 a self_subrange type; I'm going to assume that this is used
3043 as an idiom, and that all of them are special cases. So . . . */
3044 if (self_subrange)
3045 return error_type (pp);
3046
3047 result_type = (struct type *) obstack_alloc (symbol_obstack,
3048 sizeof (struct type));
3049 bzero (result_type, sizeof (struct type));
3050
3051 TYPE_CODE (result_type) = TYPE_CODE_RANGE;
3052
3053 TYPE_TARGET_TYPE (result_type) = *dbx_lookup_type(rangenums);
3054 if (TYPE_TARGET_TYPE (result_type) == 0) {
3055 complain (&range_type_base_complaint, rangenums[1]);
3056 TYPE_TARGET_TYPE (result_type) = builtin_type_int;
3057 }
3058
3059 TYPE_NFIELDS (result_type) = 2;
3060 TYPE_FIELDS (result_type) =
3061 (struct field *) obstack_alloc (symbol_obstack,
3062 2 * sizeof (struct field));
3063 bzero (TYPE_FIELDS (result_type), 2 * sizeof (struct field));
3064 TYPE_FIELD_BITPOS (result_type, 0) = n2;
3065 TYPE_FIELD_BITPOS (result_type, 1) = n3;
3066
3067 TYPE_LENGTH (result_type) = TYPE_LENGTH (TYPE_TARGET_TYPE (result_type));
3068
3069 return result_type;
3070 }
3071
3072 /* Read a number from the string pointed to by *PP.
3073 The value of *PP is advanced over the number.
3074 If END is nonzero, the character that ends the
3075 number must match END, or an error happens;
3076 and that character is skipped if it does match.
3077 If END is zero, *PP is left pointing to that character. */
3078
3079 long
3080 read_number (pp, end)
3081 char **pp;
3082 int end;
3083 {
3084 register char *p = *pp;
3085 register long n = 0;
3086 register int c;
3087 int sign = 1;
3088
3089 /* Handle an optional leading minus sign. */
3090
3091 if (*p == '-')
3092 {
3093 sign = -1;
3094 p++;
3095 }
3096
3097 /* Read the digits, as far as they go. */
3098
3099 while ((c = *p++) >= '0' && c <= '9')
3100 {
3101 n *= 10;
3102 n += c - '0';
3103 }
3104 if (end)
3105 {
3106 if (c && c != end)
3107 error ("Invalid symbol data: invalid character \\%03o at symbol pos %d.", c, symnum);
3108 }
3109 else
3110 --p;
3111
3112 *pp = p;
3113 return n * sign;
3114 }
3115
3116 /* Read in an argument list. This is a list of types, separated by commas
3117 and terminated with END. Return the list of types read in, or (struct type
3118 **)-1 if there is an error. */
3119 struct type **
3120 read_args (pp, end)
3121 char **pp;
3122 int end;
3123 {
3124 /* FIXME! Remove this arbitrary limit! */
3125 struct type *types[1024], **rval; /* allow for fns of 1023 parameters */
3126 int n = 0;
3127
3128 while (**pp != end)
3129 {
3130 if (**pp != ',')
3131 /* Invalid argument list: no ','. */
3132 return (struct type **)-1;
3133 *pp += 1;
3134
3135 /* Check for and handle cretinous dbx symbol name continuation! */
3136 if (**pp == '\\')
3137 *pp = next_symbol_text ();
3138
3139 types[n++] = read_type (pp);
3140 }
3141 *pp += 1; /* get past `end' (the ':' character) */
3142
3143 if (n == 1)
3144 {
3145 rval = (struct type **) xmalloc (2 * sizeof (struct type *));
3146 }
3147 else if (TYPE_CODE (types[n-1]) != TYPE_CODE_VOID)
3148 {
3149 rval = (struct type **) xmalloc ((n + 1) * sizeof (struct type *));
3150 bzero (rval + n, sizeof (struct type *));
3151 }
3152 else
3153 {
3154 rval = (struct type **) xmalloc (n * sizeof (struct type *));
3155 }
3156 memcpy (rval, types, n * sizeof (struct type *));
3157 return rval;
3158 }
3159
3160 /* Add a common block's start address to the offset of each symbol
3161 declared to be in it (by being between a BCOMM/ECOMM pair that uses
3162 the common block name). */
3163
3164 static void
3165 fix_common_block (sym, valu)
3166 struct symbol *sym;
3167 int valu;
3168 {
3169 struct pending *next = (struct pending *) SYMBOL_NAMESPACE (sym);
3170 for ( ; next; next = next->next)
3171 {
3172 register int j;
3173 for (j = next->nsyms - 1; j >= 0; j--)
3174 SYMBOL_VALUE_ADDRESS (next->symbol[j]) += valu;
3175 }
3176 }
3177
3178 /* Initializer for this module */
3179 void
3180 _initialize_buildsym ()
3181 {
3182 undef_types_allocated = 20;
3183 undef_types_length = 0;
3184 undef_types = (struct type **) xmalloc (undef_types_allocated *
3185 sizeof (struct type *));
3186 }
This page took 0.094237 seconds and 4 git commands to generate.