1 /* Support routines for building symbol tables in GDB's internal format.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1995, 1996
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This module provides subroutines used for creating and adding to
22 the symbol table. These routines are called from various symbol-
23 file-reading routines.
25 Routines to support specific debugging information formats (stabs,
26 DWARF, etc) belong somewhere else. */
32 #include "symfile.h" /* Needed for "struct complaint" */
35 #include "complaints.h"
36 #include "gdb_string.h"
38 /* Ask buildsym.h to define the vars it normally declares `extern'. */
40 #include "buildsym.h" /* Our own declarations */
43 /* For cleanup_undefined_types and finish_global_stabs (somewhat
44 questionable--see comment where we call them). */
45 #include "stabsread.h"
47 /* Pointer to the head of a linked list of symbol blocks which have
48 already been finalized (lexical contexts already closed) and which are
49 just waiting to be built into a blockvector when finalizing the
52 static struct pending_block *pending_blocks = NULL;
54 /* List of free `struct pending' structures for reuse. */
56 static struct pending *free_pendings;
58 /* Non-zero if symtab has line number info. This prevents an otherwise empty
59 symtab from being tossed. */
61 static int have_line_numbers;
64 compare_line_numbers PARAMS ((const void *, const void *));
67 /* Initial sizes of data structures. These are realloc'd larger if needed,
68 and realloc'd down to the size actually used, when completed. */
70 #define INITIAL_CONTEXT_STACK_SIZE 10
71 #define INITIAL_LINE_VECTOR_LENGTH 1000
74 /* Complaints about the symbols we have encountered. */
76 struct complaint block_end_complaint =
77 {"block end address less than block start address in %s (patched it)", 0, 0};
79 struct complaint anon_block_end_complaint =
80 {"block end address 0x%lx less than block start address 0x%lx (patched it)", 0, 0};
82 struct complaint innerblock_complaint =
83 {"inner block not inside outer block in %s", 0, 0};
85 struct complaint innerblock_anon_complaint =
86 {"inner block (0x%lx-0x%lx) not inside outer block (0x%lx-0x%lx)", 0, 0};
88 struct complaint blockvector_complaint =
89 {"block at 0x%lx out of order", 0, 0};
92 /* maintain the lists of symbols and blocks */
94 /* Add a symbol to one of the lists of symbols. */
97 add_symbol_to_list (symbol, listhead)
98 struct symbol *symbol;
99 struct pending **listhead;
101 register struct pending *link;
103 /* If this is an alias for another symbol, don't add it. */
104 if (symbol->ginfo.name && symbol->ginfo.name[0] == '#')
107 /* We keep PENDINGSIZE symbols in each link of the list.
108 If we don't have a link with room in it, add a new link. */
109 if (*listhead == NULL || (*listhead)->nsyms == PENDINGSIZE)
113 link = free_pendings;
114 free_pendings = link->next;
118 link = (struct pending *) xmalloc (sizeof (struct pending));
121 link->next = *listhead;
126 (*listhead)->symbol[(*listhead)->nsyms++] = symbol;
129 /* Find a symbol named NAME on a LIST. NAME need not be '\0'-terminated;
130 LENGTH is the length of the name. */
133 find_symbol_in_list (list, name, length)
134 struct pending *list;
143 for (j = list->nsyms; --j >= 0; )
145 pp = SYMBOL_NAME (list->symbol[j]);
146 if (*pp == *name && strncmp (pp, name, length) == 0 &&
149 return (list->symbol[j]);
157 /* At end of reading syms, or in case of quit,
158 really free as many `struct pending's as we can easily find. */
162 really_free_pendings (foo)
165 struct pending *next, *next1;
167 for (next = free_pendings; next; next = next1)
172 free_pendings = NULL;
174 free_pending_blocks ();
176 for (next = file_symbols; next != NULL; next = next1)
183 for (next = global_symbols; next != NULL; next = next1)
188 global_symbols = NULL;
191 /* This function is called to discard any pending blocks. */
194 free_pending_blocks ()
196 #if 0 /* Now we make the links in the symbol_obstack, so don't free them. */
197 struct pending_block *bnext, *bnext1;
199 for (bnext = pending_blocks; bnext; bnext = bnext1)
201 bnext1 = bnext->next;
205 pending_blocks = NULL;
208 /* Take one of the lists of symbols and make a block from it.
209 Keep the order the symbols have in the list (reversed from the input file).
210 Put the block on the list of pending blocks. */
213 finish_block (symbol, listhead, old_blocks, start, end, objfile)
214 struct symbol *symbol;
215 struct pending **listhead;
216 struct pending_block *old_blocks;
217 CORE_ADDR start, end;
218 struct objfile *objfile;
220 register struct pending *next, *next1;
221 register struct block *block;
222 register struct pending_block *pblock;
223 struct pending_block *opblock;
227 /* Count the length of the list of symbols. */
229 for (next = *listhead, i = 0;
231 i += next->nsyms, next = next->next)
236 block = (struct block *) obstack_alloc (&objfile -> symbol_obstack,
237 (sizeof (struct block) + ((i - 1) * sizeof (struct symbol *))));
239 /* Copy the symbols into the block. */
241 BLOCK_NSYMS (block) = i;
242 for (next = *listhead; next; next = next->next)
244 for (j = next->nsyms - 1; j >= 0; j--)
246 BLOCK_SYM (block, --i) = next->symbol[j];
250 BLOCK_START (block) = start;
251 BLOCK_END (block) = end;
252 /* Superblock filled in when containing block is made */
253 BLOCK_SUPERBLOCK (block) = NULL;
254 BLOCK_GCC_COMPILED (block) = processing_gcc_compilation;
256 /* Put the block in as the value of the symbol that names it. */
260 struct type *ftype = SYMBOL_TYPE (symbol);
261 SYMBOL_BLOCK_VALUE (symbol) = block;
262 BLOCK_FUNCTION (block) = symbol;
264 if (TYPE_NFIELDS (ftype) <= 0)
266 /* No parameter type information is recorded with the function's
267 type. Set that from the type of the parameter symbols. */
268 int nparams = 0, iparams;
270 for (i = 0; i < BLOCK_NSYMS (block); i++)
272 sym = BLOCK_SYM (block, i);
273 switch (SYMBOL_CLASS (sym))
278 case LOC_REGPARM_ADDR:
279 case LOC_BASEREG_ARG:
291 case LOC_CONST_BYTES:
294 case LOC_OPTIMIZED_OUT:
301 TYPE_NFIELDS (ftype) = nparams;
302 TYPE_FIELDS (ftype) = (struct field *)
303 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
305 for (i = iparams = 0; iparams < nparams; i++)
307 sym = BLOCK_SYM (block, i);
308 switch (SYMBOL_CLASS (sym))
313 case LOC_REGPARM_ADDR:
314 case LOC_BASEREG_ARG:
316 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
327 case LOC_CONST_BYTES:
330 case LOC_OPTIMIZED_OUT:
340 BLOCK_FUNCTION (block) = NULL;
343 /* Now "free" the links of the list, and empty the list. */
345 for (next = *listhead; next; next = next1)
348 next->next = free_pendings;
349 free_pendings = next;
354 /* Check to be sure that the blocks have an end address that is
355 greater than starting address */
357 if (BLOCK_END (block) < BLOCK_START (block))
361 complain (&block_end_complaint, SYMBOL_SOURCE_NAME (symbol));
365 complain (&anon_block_end_complaint, BLOCK_END (block), BLOCK_START (block));
367 /* Better than nothing */
368 BLOCK_END (block) = BLOCK_START (block);
372 /* Install this block as the superblock
373 of all blocks made since the start of this scope
374 that don't have superblocks yet. */
377 for (pblock = pending_blocks; pblock != old_blocks; pblock = pblock->next)
379 if (BLOCK_SUPERBLOCK (pblock->block) == NULL)
382 /* Check to be sure the blocks are nested as we receive them.
383 If the compiler/assembler/linker work, this just burns a small
385 if (BLOCK_START (pblock->block) < BLOCK_START (block) ||
386 BLOCK_END (pblock->block) > BLOCK_END (block))
390 complain (&innerblock_complaint,
391 SYMBOL_SOURCE_NAME (symbol));
395 complain (&innerblock_anon_complaint, BLOCK_START (pblock->block),
396 BLOCK_END (pblock->block), BLOCK_START (block),
399 if (BLOCK_START (pblock->block) < BLOCK_START (block))
400 BLOCK_START (pblock->block) = BLOCK_START (block);
401 if (BLOCK_END (pblock->block) > BLOCK_END (block))
402 BLOCK_END (pblock->block) = BLOCK_END (block);
405 BLOCK_SUPERBLOCK (pblock->block) = block;
410 record_pending_block (objfile, block, opblock);
413 /* Record BLOCK on the list of all blocks in the file. Put it after
414 OPBLOCK, or at the beginning if opblock is NULL. This puts the block
415 in the list after all its subblocks.
417 Allocate the pending block struct in the symbol_obstack to save
418 time. This wastes a little space. FIXME: Is it worth it? */
421 record_pending_block (objfile, block, opblock)
422 struct objfile* objfile;
424 struct pending_block *opblock;
426 register struct pending_block *pblock;
428 pblock = (struct pending_block *)
429 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct pending_block));
430 pblock -> block = block;
433 pblock -> next = opblock -> next;
434 opblock -> next = pblock;
438 pblock -> next = pending_blocks;
439 pending_blocks = pblock;
443 /* Note that this is only used in this file and in dstread.c, which should be
444 fixed to not need direct access to this function. When that is done, it can
445 be made static again. */
448 make_blockvector (objfile)
449 struct objfile *objfile;
451 register struct pending_block *next;
452 register struct blockvector *blockvector;
455 /* Count the length of the list of blocks. */
457 for (next = pending_blocks, i = 0; next; next = next->next, i++) {;}
459 blockvector = (struct blockvector *)
460 obstack_alloc (&objfile -> symbol_obstack,
461 (sizeof (struct blockvector)
462 + (i - 1) * sizeof (struct block *)));
464 /* Copy the blocks into the blockvector.
465 This is done in reverse order, which happens to put
466 the blocks into the proper order (ascending starting address).
467 finish_block has hair to insert each block into the list
468 after its subblocks in order to make sure this is true. */
470 BLOCKVECTOR_NBLOCKS (blockvector) = i;
471 for (next = pending_blocks; next; next = next->next)
473 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
476 #if 0 /* Now we make the links in the obstack, so don't free them. */
477 /* Now free the links of the list, and empty the list. */
479 for (next = pending_blocks; next; next = next1)
485 pending_blocks = NULL;
487 #if 1 /* FIXME, shut this off after a while to speed up symbol reading. */
488 /* Some compilers output blocks in the wrong order, but we depend
489 on their being in the right order so we can binary search.
490 Check the order and moan about it. FIXME. */
491 if (BLOCKVECTOR_NBLOCKS (blockvector) > 1)
493 for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++)
495 if (BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i-1))
496 > BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i)))
499 /* FIXME-32x64: loses if CORE_ADDR doesn't fit in a
500 long. Possible solutions include a version of
501 complain which takes a callback, a
502 sprintf_address_numeric to match
503 print_address_numeric, or a way to set up a GDB_FILE
504 * which causes sprintf rather than fprintf to be
507 complain (&blockvector_complaint,
508 (unsigned long) BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i)));
514 return (blockvector);
518 /* Start recording information about source code that came from an included
519 (or otherwise merged-in) source file with a different name. NAME is
520 the name of the file (cannot be NULL), DIRNAME is the directory in which
521 it resides (or NULL if not known). */
524 start_subfile (name, dirname)
528 register struct subfile *subfile;
530 /* See if this subfile is already known as a subfile of the
531 current main source file. */
533 for (subfile = subfiles; subfile; subfile = subfile->next)
535 if (STREQ (subfile->name, name))
537 current_subfile = subfile;
542 /* This subfile is not known. Add an entry for it.
543 Make an entry for this subfile in the list of all subfiles
544 of the current main source file. */
546 subfile = (struct subfile *) xmalloc (sizeof (struct subfile));
547 subfile->next = subfiles;
549 current_subfile = subfile;
551 /* Save its name and compilation directory name */
552 subfile->name = (name == NULL) ? NULL : savestring (name, strlen (name));
554 (dirname == NULL) ? NULL : savestring (dirname, strlen (dirname));
556 /* Initialize line-number recording for this subfile. */
557 subfile->line_vector = NULL;
559 /* Default the source language to whatever can be deduced from
560 the filename. If nothing can be deduced (such as for a C/C++
561 include file with a ".h" extension), then inherit whatever
562 language the previous subfile had. This kludgery is necessary
563 because there is no standard way in some object formats to
564 record the source language. Also, when symtabs are allocated
565 we try to deduce a language then as well, but it is too late
566 for us to use that information while reading symbols, since
567 symtabs aren't allocated until after all the symbols have
568 been processed for a given source file. */
570 subfile->language = deduce_language_from_filename (subfile->name);
571 if (subfile->language == language_unknown &&
572 subfile->next != NULL)
574 subfile->language = subfile->next->language;
577 /* Initialize the debug format string to NULL. We may supply it
578 later via a call to record_debugformat. */
579 subfile->debugformat = NULL;
581 /* cfront output is a C program, so in most ways it looks like a C
582 program. But to demangle we need to set the language to C++. We
583 can distinguish cfront code by the fact that it has #line
584 directives which specify a file name ending in .C.
586 So if the filename of this subfile ends in .C, then change the language
587 of any pending subfiles from C to C++. We also accept any other C++
588 suffixes accepted by deduce_language_from_filename (in particular,
589 some people use .cxx with cfront). */
590 /* Likewise for f2c. */
595 enum language sublang = deduce_language_from_filename (subfile->name);
597 if (sublang == language_cplus || sublang == language_fortran)
598 for (s = subfiles; s != NULL; s = s->next)
599 if (s->language == language_c)
600 s->language = sublang;
603 /* And patch up this file if necessary. */
604 if (subfile->language == language_c
605 && subfile->next != NULL
606 && (subfile->next->language == language_cplus
607 || subfile->next->language == language_fortran))
609 subfile->language = subfile->next->language;
613 /* For stabs readers, the first N_SO symbol is assumed to be the source
614 file name, and the subfile struct is initialized using that assumption.
615 If another N_SO symbol is later seen, immediately following the first
616 one, then the first one is assumed to be the directory name and the
617 second one is really the source file name.
619 So we have to patch up the subfile struct by moving the old name value to
620 dirname and remembering the new name. Some sanity checking is performed
621 to ensure that the state of the subfile struct is reasonable and that the
622 old name we are assuming to be a directory name actually is (by checking
623 for a trailing '/'). */
626 patch_subfile_names (subfile, name)
627 struct subfile *subfile;
630 if (subfile != NULL && subfile->dirname == NULL && subfile->name != NULL
631 && subfile->name[strlen(subfile->name)-1] == '/')
633 subfile->dirname = subfile->name;
634 subfile->name = savestring (name, strlen (name));
635 last_source_file = name;
637 /* Default the source language to whatever can be deduced from
638 the filename. If nothing can be deduced (such as for a C/C++
639 include file with a ".h" extension), then inherit whatever
640 language the previous subfile had. This kludgery is necessary
641 because there is no standard way in some object formats to
642 record the source language. Also, when symtabs are allocated
643 we try to deduce a language then as well, but it is too late
644 for us to use that information while reading symbols, since
645 symtabs aren't allocated until after all the symbols have
646 been processed for a given source file. */
648 subfile->language = deduce_language_from_filename (subfile->name);
649 if (subfile->language == language_unknown &&
650 subfile->next != NULL)
652 subfile->language = subfile->next->language;
658 /* Handle the N_BINCL and N_EINCL symbol types
659 that act like N_SOL for switching source files
660 (different subfiles, as we call them) within one object file,
661 but using a stack rather than in an arbitrary order. */
666 register struct subfile_stack *tem
667 = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack));
669 tem->next = subfile_stack;
671 if (current_subfile == NULL || current_subfile->name == NULL)
675 tem->name = current_subfile->name;
682 register struct subfile_stack *link = subfile_stack;
689 subfile_stack = link->next;
695 /* Add a linetable entry for line number LINE and address PC to the line
696 vector for SUBFILE. */
699 record_line (subfile, line, pc)
700 register struct subfile *subfile;
704 struct linetable_entry *e;
705 /* Ignore the dummy line number in libg.o */
712 /* Make sure line vector exists and is big enough. */
713 if (!subfile->line_vector)
715 subfile->line_vector_length = INITIAL_LINE_VECTOR_LENGTH;
716 subfile->line_vector = (struct linetable *)
717 xmalloc (sizeof (struct linetable)
718 + subfile->line_vector_length * sizeof (struct linetable_entry));
719 subfile->line_vector->nitems = 0;
720 have_line_numbers = 1;
723 if (subfile->line_vector->nitems + 1 >= subfile->line_vector_length)
725 subfile->line_vector_length *= 2;
726 subfile->line_vector = (struct linetable *)
727 xrealloc ((char *) subfile->line_vector, (sizeof (struct linetable)
728 + subfile->line_vector_length * sizeof (struct linetable_entry)));
731 e = subfile->line_vector->item + subfile->line_vector->nitems++;
732 e->line = line; e->pc = pc;
736 /* Needed in order to sort line tables from IBM xcoff files. Sigh! */
739 compare_line_numbers (ln1p, ln2p)
743 struct linetable_entry *ln1 = (struct linetable_entry *) ln1p;
744 struct linetable_entry *ln2 = (struct linetable_entry *) ln2p;
746 /* Note: this code does not assume that CORE_ADDRs can fit in ints.
747 Please keep it that way. */
748 if (ln1->pc < ln2->pc)
751 if (ln1->pc > ln2->pc)
754 /* If pc equal, sort by line. I'm not sure whether this is optimum
755 behavior (see comment at struct linetable in symtab.h). */
756 return ln1->line - ln2->line;
760 /* Start a new symtab for a new source file.
761 Called, for example, when a stabs symbol of type N_SO is seen, or when
762 a DWARF TAG_compile_unit DIE is seen.
763 It indicates the start of data for one original source file. */
766 start_symtab (name, dirname, start_addr)
769 CORE_ADDR start_addr;
772 last_source_file = name;
773 last_source_start_addr = start_addr;
775 global_symbols = NULL;
777 have_line_numbers = 0;
779 /* Context stack is initially empty. Allocate first one with room for
780 10 levels; reuse it forever afterward. */
781 if (context_stack == NULL)
783 context_stack_size = INITIAL_CONTEXT_STACK_SIZE;
784 context_stack = (struct context_stack *)
785 xmalloc (context_stack_size * sizeof (struct context_stack));
787 context_stack_depth = 0;
789 /* Initialize the list of sub source files with one entry
790 for this file (the top-level source file). */
793 current_subfile = NULL;
794 start_subfile (name, dirname);
797 /* Finish the symbol definitions for one main source file,
798 close off all the lexical contexts for that file
799 (creating struct block's for them), then make the struct symtab
800 for that file and put it in the list of all such.
802 END_ADDR is the address of the end of the file's text.
803 SECTION is the section number (in objfile->section_offsets) of
804 the blockvector and linetable.
806 Note that it is possible for end_symtab() to return NULL. In particular,
807 for the DWARF case at least, it will return NULL when it finds a
808 compilation unit that has exactly one DIE, a TAG_compile_unit DIE. This
809 can happen when we link in an object file that was compiled from an empty
810 source file. Returning NULL is probably not the correct thing to do,
811 because then gdb will never know about this empty file (FIXME). */
814 end_symtab (end_addr, objfile, section)
816 struct objfile *objfile;
819 register struct symtab *symtab = NULL;
820 register struct blockvector *blockvector;
821 register struct subfile *subfile;
822 register struct context_stack *cstk;
823 struct subfile *nextsub;
825 /* Finish the lexical context of the last function in the file;
826 pop the context stack. */
828 if (context_stack_depth > 0)
830 cstk = pop_context();
831 /* Make a block for the local symbols within. */
832 finish_block (cstk->name, &local_symbols, cstk->old_blocks,
833 cstk->start_addr, end_addr, objfile);
835 if (context_stack_depth > 0)
837 /* This is said to happen with SCO. The old coffread.c code
838 simply emptied the context stack, so we do the same. FIXME:
839 Find out why it is happening. This is not believed to happen
840 in most cases (even for coffread.c); it used to be an abort(). */
841 static struct complaint msg =
842 {"Context stack not empty in end_symtab", 0, 0};
844 context_stack_depth = 0;
848 /* Reordered executables may have out of order pending blocks; if
849 OBJF_REORDERED is true, then sort the pending blocks. */
850 if ((objfile->flags & OBJF_REORDERED) && pending_blocks)
852 /* FIXME! Remove this horrid bubble sort and use merge sort!!! */
856 struct pending_block *pb, *pbnext;
864 /* swap blocks if unordered! */
866 if (BLOCK_START(pb->block) < BLOCK_START(pbnext->block))
868 struct block *tmp = pb->block;
869 pb->block = pbnext->block;
874 pbnext = pbnext->next;
879 /* Cleanup any undefined types that have been left hanging around
880 (this needs to be done before the finish_blocks so that
881 file_symbols is still good).
883 Both cleanup_undefined_types and finish_global_stabs are stabs
884 specific, but harmless for other symbol readers, since on gdb
885 startup or when finished reading stabs, the state is set so these
886 are no-ops. FIXME: Is this handled right in case of QUIT? Can
887 we make this cleaner? */
889 cleanup_undefined_types ();
890 finish_global_stabs (objfile);
892 if (pending_blocks == NULL
893 && file_symbols == NULL
894 && global_symbols == NULL
895 && have_line_numbers == 0)
897 /* Ignore symtabs that have no functions with real debugging info */
902 /* Define the STATIC_BLOCK & GLOBAL_BLOCK, and build the blockvector. */
903 finish_block (0, &file_symbols, 0, last_source_start_addr, end_addr,
905 finish_block (0, &global_symbols, 0, last_source_start_addr, end_addr,
907 blockvector = make_blockvector (objfile);
910 #ifdef PROCESS_LINENUMBER_HOOK
911 PROCESS_LINENUMBER_HOOK (); /* Needed for xcoff. */
914 /* Now create the symtab objects proper, one for each subfile. */
915 /* (The main file is the last one on the chain.) */
917 for (subfile = subfiles; subfile; subfile = nextsub)
919 int linetablesize = 0;
920 /* If we have blocks of symbols, make a symtab.
921 Otherwise, just ignore this file and any line number info in it. */
925 if (subfile->line_vector)
927 linetablesize = sizeof (struct linetable) +
928 subfile->line_vector->nitems * sizeof (struct linetable_entry);
930 /* I think this is artifact from before it went on the obstack.
931 I doubt we'll need the memory between now and when we
932 free it later in this function. */
933 /* First, shrink the linetable to make more memory. */
934 subfile->line_vector = (struct linetable *)
935 xrealloc ((char *) subfile->line_vector, linetablesize);
938 /* Like the pending blocks, the line table may be scrambled
939 in reordered executables. Sort it if OBJF_REORDERED is
941 if (objfile->flags & OBJF_REORDERED)
942 qsort (subfile->line_vector->item,
943 subfile->line_vector->nitems,
944 sizeof (struct linetable_entry), compare_line_numbers);
947 /* Now, allocate a symbol table. */
948 symtab = allocate_symtab (subfile->name, objfile);
950 /* Fill in its components. */
951 symtab->blockvector = blockvector;
952 if (subfile->line_vector)
954 /* Reallocate the line table on the symbol obstack */
955 symtab->linetable = (struct linetable *)
956 obstack_alloc (&objfile -> symbol_obstack, linetablesize);
957 memcpy (symtab->linetable, subfile->line_vector, linetablesize);
961 symtab->linetable = NULL;
963 symtab->block_line_section = section;
964 if (subfile->dirname)
966 /* Reallocate the dirname on the symbol obstack */
967 symtab->dirname = (char *)
968 obstack_alloc (&objfile -> symbol_obstack,
969 strlen (subfile -> dirname) + 1);
970 strcpy (symtab->dirname, subfile->dirname);
974 symtab->dirname = NULL;
976 symtab->free_code = free_linetable;
977 symtab->free_ptr = NULL;
979 /* Use whatever language we have been using for this subfile,
980 not the one that was deduced in allocate_symtab from the
981 filename. We already did our own deducing when we created
982 the subfile, and we may have altered our opinion of what
983 language it is from things we found in the symbols. */
984 symtab->language = subfile->language;
986 /* Save the debug format string (if any) in the symtab */
987 if (subfile -> debugformat != NULL)
989 symtab->debugformat = obsavestring (subfile->debugformat,
990 strlen (subfile->debugformat),
991 &objfile -> symbol_obstack);
994 /* All symtabs for the main file and the subfiles share a
995 blockvector, so we need to clear primary for everything but
1000 if (subfile->name != NULL)
1002 free ((PTR) subfile->name);
1004 if (subfile->dirname != NULL)
1006 free ((PTR) subfile->dirname);
1008 if (subfile->line_vector != NULL)
1010 free ((PTR) subfile->line_vector);
1012 if (subfile->debugformat != NULL)
1014 free ((PTR) subfile->debugformat);
1017 nextsub = subfile->next;
1018 free ((PTR)subfile);
1021 /* Set this for the main source file. */
1024 symtab->primary = 1;
1027 last_source_file = NULL;
1028 current_subfile = NULL;
1034 /* Push a context block. Args are an identifying nesting level (checkable
1035 when you pop it), and the starting PC address of this context. */
1037 struct context_stack *
1038 push_context (desc, valu)
1042 register struct context_stack *new;
1044 if (context_stack_depth == context_stack_size)
1046 context_stack_size *= 2;
1047 context_stack = (struct context_stack *)
1048 xrealloc ((char *) context_stack,
1049 (context_stack_size * sizeof (struct context_stack)));
1052 new = &context_stack[context_stack_depth++];
1054 new->locals = local_symbols;
1055 new->old_blocks = pending_blocks;
1056 new->start_addr = valu;
1059 local_symbols = NULL;
1065 /* Compute a small integer hash code for the given name. */
1071 register char *p = name;
1072 register int total = p[0];
1087 /* Ensure result is positive. */
1090 total += (1000 << 6);
1092 return (total % HASHSIZE);
1097 record_debugformat (format)
1100 current_subfile -> debugformat = savestring (format, strlen (format));
1104 /* Initialize anything that needs initializing when starting to read
1105 a fresh piece of a symbol file, e.g. reading in the stuff corresponding
1111 free_pendings = NULL;
1112 file_symbols = NULL;
1113 global_symbols = NULL;
1114 pending_blocks = NULL;
1117 /* Initialize anything that needs initializing when a completely new
1118 symbol file is specified (not just adding some symbols from another
1119 file, e.g. a shared library). */
1122 buildsym_new_init ()
1127 /* Initializer for this module */
1130 _initialize_buildsym ()