1 /* Support routines for building symbol tables in GDB's internal format.
2 Copyright 1986-1999 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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., 59 Temple Place - Suite 330,
19 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'. */
41 #include "buildsym.h" /* Our own declarations */
44 /* For cleanup_undefined_types and finish_global_stabs (somewhat
45 questionable--see comment where we call them). */
47 #include "stabsread.h"
49 /* List of free `struct pending' structures for reuse. */
51 static struct pending
*free_pendings
;
53 /* Non-zero if symtab has line number info. This prevents an
54 otherwise empty symtab from being tossed. */
56 static int have_line_numbers
;
58 static int compare_line_numbers (const void *ln1p
, const void *ln2p
);
61 /* Initial sizes of data structures. These are realloc'd larger if
62 needed, and realloc'd down to the size actually used, when
65 #define INITIAL_CONTEXT_STACK_SIZE 10
66 #define INITIAL_LINE_VECTOR_LENGTH 1000
69 /* Complaints about the symbols we have encountered. */
71 struct complaint block_end_complaint
=
72 {"block end address less than block start address in %s (patched it)", 0, 0};
74 struct complaint anon_block_end_complaint
=
75 {"block end address 0x%lx less than block start address 0x%lx (patched it)", 0, 0};
77 struct complaint innerblock_complaint
=
78 {"inner block not inside outer block in %s", 0, 0};
80 struct complaint innerblock_anon_complaint
=
81 {"inner block (0x%lx-0x%lx) not inside outer block (0x%lx-0x%lx)", 0, 0};
83 struct complaint blockvector_complaint
=
84 {"block at 0x%lx out of order", 0, 0};
86 /* maintain the lists of symbols and blocks */
88 /* Add a symbol to one of the lists of symbols. */
91 add_symbol_to_list (struct symbol
*symbol
, struct pending
**listhead
)
93 register struct pending
*link
;
95 /* If this is an alias for another symbol, don't add it. */
96 if (symbol
->ginfo
.name
&& symbol
->ginfo
.name
[0] == '#')
99 /* We keep PENDINGSIZE symbols in each link of the list. If we
100 don't have a link with room in it, add a new link. */
101 if (*listhead
== NULL
|| (*listhead
)->nsyms
== PENDINGSIZE
)
105 link
= free_pendings
;
106 free_pendings
= link
->next
;
110 link
= (struct pending
*) xmalloc (sizeof (struct pending
));
113 link
->next
= *listhead
;
118 (*listhead
)->symbol
[(*listhead
)->nsyms
++] = symbol
;
121 /* Find a symbol named NAME on a LIST. NAME need not be
122 '\0'-terminated; LENGTH is the length of the name. */
125 find_symbol_in_list (struct pending
*list
, char *name
, int length
)
132 for (j
= list
->nsyms
; --j
>= 0;)
134 pp
= SYMBOL_NAME (list
->symbol
[j
]);
135 if (*pp
== *name
&& strncmp (pp
, name
, length
) == 0 &&
138 return (list
->symbol
[j
]);
146 /* At end of reading syms, or in case of quit, really free as many
147 `struct pending's as we can easily find. */
151 really_free_pendings (int foo
)
153 struct pending
*next
, *next1
;
155 for (next
= free_pendings
; next
; next
= next1
)
158 free ((void *) next
);
160 free_pendings
= NULL
;
162 free_pending_blocks ();
164 for (next
= file_symbols
; next
!= NULL
; next
= next1
)
167 free ((void *) next
);
171 for (next
= global_symbols
; next
!= NULL
; next
= next1
)
174 free ((void *) next
);
176 global_symbols
= NULL
;
179 /* This function is called to discard any pending blocks. */
182 free_pending_blocks (void)
184 #if 0 /* Now we make the links in the
185 symbol_obstack, so don't free
187 struct pending_block
*bnext
, *bnext1
;
189 for (bnext
= pending_blocks
; bnext
; bnext
= bnext1
)
191 bnext1
= bnext
->next
;
192 free ((void *) bnext
);
195 pending_blocks
= NULL
;
198 /* Take one of the lists of symbols and make a block from it. Keep
199 the order the symbols have in the list (reversed from the input
200 file). Put the block on the list of pending blocks. */
203 finish_block (struct symbol
*symbol
, struct pending
**listhead
,
204 struct pending_block
*old_blocks
,
205 CORE_ADDR start
, CORE_ADDR end
,
206 struct objfile
*objfile
)
208 register struct pending
*next
, *next1
;
209 register struct block
*block
;
210 register struct pending_block
*pblock
;
211 struct pending_block
*opblock
;
215 /* Count the length of the list of symbols. */
217 for (next
= *listhead
, i
= 0;
219 i
+= next
->nsyms
, next
= next
->next
)
224 block
= (struct block
*) obstack_alloc (&objfile
->symbol_obstack
,
225 (sizeof (struct block
) + ((i
- 1) * sizeof (struct symbol
*))));
227 /* Copy the symbols into the block. */
229 BLOCK_NSYMS (block
) = i
;
230 for (next
= *listhead
; next
; next
= next
->next
)
232 for (j
= next
->nsyms
- 1; j
>= 0; j
--)
234 BLOCK_SYM (block
, --i
) = next
->symbol
[j
];
238 BLOCK_START (block
) = start
;
239 BLOCK_END (block
) = end
;
240 /* Superblock filled in when containing block is made */
241 BLOCK_SUPERBLOCK (block
) = NULL
;
243 BLOCK_GCC_COMPILED (block
) = processing_gcc_compilation
;
245 /* Put the block in as the value of the symbol that names it. */
249 struct type
*ftype
= SYMBOL_TYPE (symbol
);
250 SYMBOL_BLOCK_VALUE (symbol
) = block
;
251 BLOCK_FUNCTION (block
) = symbol
;
253 if (TYPE_NFIELDS (ftype
) <= 0)
255 /* No parameter type information is recorded with the
256 function's type. Set that from the type of the
257 parameter symbols. */
258 int nparams
= 0, iparams
;
260 for (i
= 0; i
< BLOCK_NSYMS (block
); i
++)
262 sym
= BLOCK_SYM (block
, i
);
263 switch (SYMBOL_CLASS (sym
))
268 case LOC_REGPARM_ADDR
:
269 case LOC_BASEREG_ARG
:
282 case LOC_CONST_BYTES
:
285 case LOC_OPTIMIZED_OUT
:
292 TYPE_NFIELDS (ftype
) = nparams
;
293 TYPE_FIELDS (ftype
) = (struct field
*)
294 TYPE_ALLOC (ftype
, nparams
* sizeof (struct field
));
296 for (i
= iparams
= 0; iparams
< nparams
; i
++)
298 sym
= BLOCK_SYM (block
, i
);
299 switch (SYMBOL_CLASS (sym
))
304 case LOC_REGPARM_ADDR
:
305 case LOC_BASEREG_ARG
:
307 TYPE_FIELD_TYPE (ftype
, iparams
) = SYMBOL_TYPE (sym
);
319 case LOC_CONST_BYTES
:
322 case LOC_OPTIMIZED_OUT
:
332 BLOCK_FUNCTION (block
) = NULL
;
335 /* Now "free" the links of the list, and empty the list. */
337 for (next
= *listhead
; next
; next
= next1
)
340 next
->next
= free_pendings
;
341 free_pendings
= next
;
346 /* Check to be sure that the blocks have an end address that is
347 greater than starting address */
349 if (BLOCK_END (block
) < BLOCK_START (block
))
353 complain (&block_end_complaint
, SYMBOL_SOURCE_NAME (symbol
));
357 complain (&anon_block_end_complaint
, BLOCK_END (block
), BLOCK_START (block
));
359 /* Better than nothing */
360 BLOCK_END (block
) = BLOCK_START (block
);
364 /* Install this block as the superblock of all blocks made since the
365 start of this scope that don't have superblocks yet. */
368 for (pblock
= pending_blocks
; pblock
!= old_blocks
; pblock
= pblock
->next
)
370 if (BLOCK_SUPERBLOCK (pblock
->block
) == NULL
)
373 /* Check to be sure the blocks are nested as we receive
374 them. If the compiler/assembler/linker work, this just
375 burns a small amount of time. */
376 if (BLOCK_START (pblock
->block
) < BLOCK_START (block
) ||
377 BLOCK_END (pblock
->block
) > BLOCK_END (block
))
381 complain (&innerblock_complaint
,
382 SYMBOL_SOURCE_NAME (symbol
));
386 complain (&innerblock_anon_complaint
, BLOCK_START (pblock
->block
),
387 BLOCK_END (pblock
->block
), BLOCK_START (block
),
390 if (BLOCK_START (pblock
->block
) < BLOCK_START (block
))
391 BLOCK_START (pblock
->block
) = BLOCK_START (block
);
392 if (BLOCK_END (pblock
->block
) > BLOCK_END (block
))
393 BLOCK_END (pblock
->block
) = BLOCK_END (block
);
396 BLOCK_SUPERBLOCK (pblock
->block
) = block
;
401 record_pending_block (objfile
, block
, opblock
);
404 /* Record BLOCK on the list of all blocks in the file. Put it after
405 OPBLOCK, or at the beginning if opblock is NULL. This puts the
406 block in the list after all its subblocks.
408 Allocate the pending block struct in the symbol_obstack to save
409 time. This wastes a little space. FIXME: Is it worth it? */
412 record_pending_block (struct objfile
*objfile
, struct block
*block
,
413 struct pending_block
*opblock
)
415 register struct pending_block
*pblock
;
417 pblock
= (struct pending_block
*)
418 obstack_alloc (&objfile
->symbol_obstack
, sizeof (struct pending_block
));
419 pblock
->block
= block
;
422 pblock
->next
= opblock
->next
;
423 opblock
->next
= pblock
;
427 pblock
->next
= pending_blocks
;
428 pending_blocks
= pblock
;
432 /* Note that this is only used in this file and in dstread.c, which
433 should be fixed to not need direct access to this function. When
434 that is done, it can be made static again. */
437 make_blockvector (struct objfile
*objfile
)
439 register struct pending_block
*next
;
440 register struct blockvector
*blockvector
;
443 /* Count the length of the list of blocks. */
445 for (next
= pending_blocks
, i
= 0; next
; next
= next
->next
, i
++)
449 blockvector
= (struct blockvector
*)
450 obstack_alloc (&objfile
->symbol_obstack
,
451 (sizeof (struct blockvector
)
452 + (i
- 1) * sizeof (struct block
*)));
454 /* Copy the blocks into the blockvector. This is done in reverse
455 order, which happens to put the blocks into the proper order
456 (ascending starting address). finish_block has hair to insert
457 each block into the list after its subblocks in order to make
458 sure this is true. */
460 BLOCKVECTOR_NBLOCKS (blockvector
) = i
;
461 for (next
= pending_blocks
; next
; next
= next
->next
)
463 BLOCKVECTOR_BLOCK (blockvector
, --i
) = next
->block
;
466 #if 0 /* Now we make the links in the
467 obstack, so don't free them. */
468 /* Now free the links of the list, and empty the list. */
470 for (next
= pending_blocks
; next
; next
= next1
)
476 pending_blocks
= NULL
;
478 #if 1 /* FIXME, shut this off after a while
479 to speed up symbol reading. */
480 /* Some compilers output blocks in the wrong order, but we depend on
481 their being in the right order so we can binary search. Check the
482 order and moan about it. FIXME. */
483 if (BLOCKVECTOR_NBLOCKS (blockvector
) > 1)
485 for (i
= 1; i
< BLOCKVECTOR_NBLOCKS (blockvector
); i
++)
487 if (BLOCK_START (BLOCKVECTOR_BLOCK (blockvector
, i
- 1))
488 > BLOCK_START (BLOCKVECTOR_BLOCK (blockvector
, i
)))
491 /* FIXME-32x64: loses if CORE_ADDR doesn't fit in a
492 long. Possible solutions include a version of
493 complain which takes a callback, a
494 sprintf_address_numeric to match
495 print_address_numeric, or a way to set up a GDB_FILE
496 which causes sprintf rather than fprintf to be
499 complain (&blockvector_complaint
,
500 (unsigned long) BLOCK_START (BLOCKVECTOR_BLOCK (blockvector
, i
)));
506 return (blockvector
);
509 /* Start recording information about source code that came from an
510 included (or otherwise merged-in) source file with a different
511 name. NAME is the name of the file (cannot be NULL), DIRNAME is
512 the directory in which it resides (or NULL if not known). */
515 start_subfile (char *name
, char *dirname
)
517 register struct subfile
*subfile
;
519 /* See if this subfile is already known as a subfile of the current
522 for (subfile
= subfiles
; subfile
; subfile
= subfile
->next
)
524 if (STREQ (subfile
->name
, name
))
526 current_subfile
= subfile
;
531 /* This subfile is not known. Add an entry for it. Make an entry
532 for this subfile in the list of all subfiles of the current main
535 subfile
= (struct subfile
*) xmalloc (sizeof (struct subfile
));
536 subfile
->next
= subfiles
;
538 current_subfile
= subfile
;
540 /* Save its name and compilation directory name */
541 subfile
->name
= (name
== NULL
) ? NULL
: savestring (name
, strlen (name
));
543 (dirname
== NULL
) ? NULL
: savestring (dirname
, strlen (dirname
));
545 /* Initialize line-number recording for this subfile. */
546 subfile
->line_vector
= NULL
;
548 /* Default the source language to whatever can be deduced from the
549 filename. If nothing can be deduced (such as for a C/C++ include
550 file with a ".h" extension), then inherit whatever language the
551 previous subfile had. This kludgery is necessary because there
552 is no standard way in some object formats to record the source
553 language. Also, when symtabs are allocated we try to deduce a
554 language then as well, but it is too late for us to use that
555 information while reading symbols, since symtabs aren't allocated
556 until after all the symbols have been processed for a given
559 subfile
->language
= deduce_language_from_filename (subfile
->name
);
560 if (subfile
->language
== language_unknown
&&
561 subfile
->next
!= NULL
)
563 subfile
->language
= subfile
->next
->language
;
566 /* Initialize the debug format string to NULL. We may supply it
567 later via a call to record_debugformat. */
568 subfile
->debugformat
= NULL
;
570 /* cfront output is a C program, so in most ways it looks like a C
571 program. But to demangle we need to set the language to C++. We
572 can distinguish cfront code by the fact that it has #line
573 directives which specify a file name ending in .C.
575 So if the filename of this subfile ends in .C, then change the
576 language of any pending subfiles from C to C++. We also accept
577 any other C++ suffixes accepted by deduce_language_from_filename
578 (in particular, some people use .cxx with cfront). */
579 /* Likewise for f2c. */
584 enum language sublang
= deduce_language_from_filename (subfile
->name
);
586 if (sublang
== language_cplus
|| sublang
== language_fortran
)
587 for (s
= subfiles
; s
!= NULL
; s
= s
->next
)
588 if (s
->language
== language_c
)
589 s
->language
= sublang
;
592 /* And patch up this file if necessary. */
593 if (subfile
->language
== language_c
594 && subfile
->next
!= NULL
595 && (subfile
->next
->language
== language_cplus
596 || subfile
->next
->language
== language_fortran
))
598 subfile
->language
= subfile
->next
->language
;
602 /* For stabs readers, the first N_SO symbol is assumed to be the
603 source file name, and the subfile struct is initialized using that
604 assumption. If another N_SO symbol is later seen, immediately
605 following the first one, then the first one is assumed to be the
606 directory name and the second one is really the source file name.
608 So we have to patch up the subfile struct by moving the old name
609 value to dirname and remembering the new name. Some sanity
610 checking is performed to ensure that the state of the subfile
611 struct is reasonable and that the old name we are assuming to be a
612 directory name actually is (by checking for a trailing '/'). */
615 patch_subfile_names (struct subfile
*subfile
, char *name
)
617 if (subfile
!= NULL
&& subfile
->dirname
== NULL
&& subfile
->name
!= NULL
618 && subfile
->name
[strlen (subfile
->name
) - 1] == '/')
620 subfile
->dirname
= subfile
->name
;
621 subfile
->name
= savestring (name
, strlen (name
));
622 last_source_file
= name
;
624 /* Default the source language to whatever can be deduced from
625 the filename. If nothing can be deduced (such as for a C/C++
626 include file with a ".h" extension), then inherit whatever
627 language the previous subfile had. This kludgery is
628 necessary because there is no standard way in some object
629 formats to record the source language. Also, when symtabs
630 are allocated we try to deduce a language then as well, but
631 it is too late for us to use that information while reading
632 symbols, since symtabs aren't allocated until after all the
633 symbols have been processed for a given source file. */
635 subfile
->language
= deduce_language_from_filename (subfile
->name
);
636 if (subfile
->language
== language_unknown
&&
637 subfile
->next
!= NULL
)
639 subfile
->language
= subfile
->next
->language
;
644 /* Handle the N_BINCL and N_EINCL symbol types that act like N_SOL for
645 switching source files (different subfiles, as we call them) within
646 one object file, but using a stack rather than in an arbitrary
652 register struct subfile_stack
*tem
653 = (struct subfile_stack
*) xmalloc (sizeof (struct subfile_stack
));
655 tem
->next
= subfile_stack
;
657 if (current_subfile
== NULL
|| current_subfile
->name
== NULL
)
661 tem
->name
= current_subfile
->name
;
668 register struct subfile_stack
*link
= subfile_stack
;
675 subfile_stack
= link
->next
;
676 free ((void *) link
);
680 /* Add a linetable entry for line number LINE and address PC to the
681 line vector for SUBFILE. */
684 record_line (register struct subfile
*subfile
, int line
, CORE_ADDR pc
)
686 struct linetable_entry
*e
;
687 /* Ignore the dummy line number in libg.o */
694 /* Make sure line vector exists and is big enough. */
695 if (!subfile
->line_vector
)
697 subfile
->line_vector_length
= INITIAL_LINE_VECTOR_LENGTH
;
698 subfile
->line_vector
= (struct linetable
*)
699 xmalloc (sizeof (struct linetable
)
700 + subfile
->line_vector_length
* sizeof (struct linetable_entry
));
701 subfile
->line_vector
->nitems
= 0;
702 have_line_numbers
= 1;
705 if (subfile
->line_vector
->nitems
+ 1 >= subfile
->line_vector_length
)
707 subfile
->line_vector_length
*= 2;
708 subfile
->line_vector
= (struct linetable
*)
709 xrealloc ((char *) subfile
->line_vector
,
710 (sizeof (struct linetable
)
711 + (subfile
->line_vector_length
712 * sizeof (struct linetable_entry
))));
715 e
= subfile
->line_vector
->item
+ subfile
->line_vector
->nitems
++;
720 /* Needed in order to sort line tables from IBM xcoff files. Sigh! */
723 compare_line_numbers (const void *ln1p
, const void *ln2p
)
725 struct linetable_entry
*ln1
= (struct linetable_entry
*) ln1p
;
726 struct linetable_entry
*ln2
= (struct linetable_entry
*) ln2p
;
728 /* Note: this code does not assume that CORE_ADDRs can fit in ints.
729 Please keep it that way. */
730 if (ln1
->pc
< ln2
->pc
)
733 if (ln1
->pc
> ln2
->pc
)
736 /* If pc equal, sort by line. I'm not sure whether this is optimum
737 behavior (see comment at struct linetable in symtab.h). */
738 return ln1
->line
- ln2
->line
;
741 /* Start a new symtab for a new source file. Called, for example,
742 when a stabs symbol of type N_SO is seen, or when a DWARF
743 TAG_compile_unit DIE is seen. It indicates the start of data for
744 one original source file. */
747 start_symtab (char *name
, char *dirname
, CORE_ADDR start_addr
)
750 last_source_file
= name
;
751 last_source_start_addr
= start_addr
;
753 global_symbols
= NULL
;
755 have_line_numbers
= 0;
757 /* Context stack is initially empty. Allocate first one with room
758 for 10 levels; reuse it forever afterward. */
759 if (context_stack
== NULL
)
761 context_stack_size
= INITIAL_CONTEXT_STACK_SIZE
;
762 context_stack
= (struct context_stack
*)
763 xmalloc (context_stack_size
* sizeof (struct context_stack
));
765 context_stack_depth
= 0;
767 /* Initialize the list of sub source files with one entry for this
768 file (the top-level source file). */
771 current_subfile
= NULL
;
772 start_subfile (name
, dirname
);
775 /* Finish the symbol definitions for one main source file, close off
776 all the lexical contexts for that file (creating struct block's for
777 them), then make the struct symtab for that file and put it in the
780 END_ADDR is the address of the end of the file's text. SECTION is
781 the section number (in objfile->section_offsets) of the blockvector
784 Note that it is possible for end_symtab() to return NULL. In
785 particular, for the DWARF case at least, it will return NULL when
786 it finds a compilation unit that has exactly one DIE, a
787 TAG_compile_unit DIE. This can happen when we link in an object
788 file that was compiled from an empty source file. Returning NULL
789 is probably not the correct thing to do, because then gdb will
790 never know about this empty file (FIXME). */
793 end_symtab (CORE_ADDR end_addr
, struct objfile
*objfile
, int section
)
795 register struct symtab
*symtab
= NULL
;
796 register struct blockvector
*blockvector
;
797 register struct subfile
*subfile
;
798 register struct context_stack
*cstk
;
799 struct subfile
*nextsub
;
801 /* Finish the lexical context of the last function in the file; pop
802 the context stack. */
804 if (context_stack_depth
> 0)
806 cstk
= pop_context ();
807 /* Make a block for the local symbols within. */
808 finish_block (cstk
->name
, &local_symbols
, cstk
->old_blocks
,
809 cstk
->start_addr
, end_addr
, objfile
);
811 if (context_stack_depth
> 0)
813 /* This is said to happen with SCO. The old coffread.c
814 code simply emptied the context stack, so we do the
815 same. FIXME: Find out why it is happening. This is not
816 believed to happen in most cases (even for coffread.c);
817 it used to be an abort(). */
818 static struct complaint msg
=
819 {"Context stack not empty in end_symtab", 0, 0};
821 context_stack_depth
= 0;
825 /* Reordered executables may have out of order pending blocks; if
826 OBJF_REORDERED is true, then sort the pending blocks. */
827 if ((objfile
->flags
& OBJF_REORDERED
) && pending_blocks
)
829 /* FIXME! Remove this horrid bubble sort and use merge sort!!! */
833 struct pending_block
*pb
, *pbnext
;
841 /* swap blocks if unordered! */
843 if (BLOCK_START (pb
->block
) < BLOCK_START (pbnext
->block
))
845 struct block
*tmp
= pb
->block
;
846 pb
->block
= pbnext
->block
;
851 pbnext
= pbnext
->next
;
857 /* Cleanup any undefined types that have been left hanging around
858 (this needs to be done before the finish_blocks so that
859 file_symbols is still good).
861 Both cleanup_undefined_types and finish_global_stabs are stabs
862 specific, but harmless for other symbol readers, since on gdb
863 startup or when finished reading stabs, the state is set so these
864 are no-ops. FIXME: Is this handled right in case of QUIT? Can
865 we make this cleaner? */
867 cleanup_undefined_types ();
868 finish_global_stabs (objfile
);
870 if (pending_blocks
== NULL
871 && file_symbols
== NULL
872 && global_symbols
== NULL
873 && have_line_numbers
== 0)
875 /* Ignore symtabs that have no functions with real debugging
881 /* Define the STATIC_BLOCK & GLOBAL_BLOCK, and build the
883 finish_block (0, &file_symbols
, 0, last_source_start_addr
, end_addr
,
885 finish_block (0, &global_symbols
, 0, last_source_start_addr
, end_addr
,
887 blockvector
= make_blockvector (objfile
);
890 #ifndef PROCESS_LINENUMBER_HOOK
891 #define PROCESS_LINENUMBER_HOOK()
893 PROCESS_LINENUMBER_HOOK (); /* Needed for xcoff. */
895 /* Now create the symtab objects proper, one for each subfile. */
896 /* (The main file is the last one on the chain.) */
898 for (subfile
= subfiles
; subfile
; subfile
= nextsub
)
900 int linetablesize
= 0;
903 /* If we have blocks of symbols, make a symtab. Otherwise, just
904 ignore this file and any line number info in it. */
907 if (subfile
->line_vector
)
909 linetablesize
= sizeof (struct linetable
) +
910 subfile
->line_vector
->nitems
* sizeof (struct linetable_entry
);
912 /* I think this is artifact from before it went on the
913 obstack. I doubt we'll need the memory between now
914 and when we free it later in this function. */
915 /* First, shrink the linetable to make more memory. */
916 subfile
->line_vector
= (struct linetable
*)
917 xrealloc ((char *) subfile
->line_vector
, linetablesize
);
920 /* Like the pending blocks, the line table may be
921 scrambled in reordered executables. Sort it if
922 OBJF_REORDERED is true. */
923 if (objfile
->flags
& OBJF_REORDERED
)
924 qsort (subfile
->line_vector
->item
,
925 subfile
->line_vector
->nitems
,
926 sizeof (struct linetable_entry
), compare_line_numbers
);
929 /* Now, allocate a symbol table. */
930 symtab
= allocate_symtab (subfile
->name
, objfile
);
932 /* Fill in its components. */
933 symtab
->blockvector
= blockvector
;
934 if (subfile
->line_vector
)
936 /* Reallocate the line table on the symbol obstack */
937 symtab
->linetable
= (struct linetable
*)
938 obstack_alloc (&objfile
->symbol_obstack
, linetablesize
);
939 memcpy (symtab
->linetable
, subfile
->line_vector
, linetablesize
);
943 symtab
->linetable
= NULL
;
945 symtab
->block_line_section
= section
;
946 if (subfile
->dirname
)
948 /* Reallocate the dirname on the symbol obstack */
949 symtab
->dirname
= (char *)
950 obstack_alloc (&objfile
->symbol_obstack
,
951 strlen (subfile
->dirname
) + 1);
952 strcpy (symtab
->dirname
, subfile
->dirname
);
956 symtab
->dirname
= NULL
;
958 symtab
->free_code
= free_linetable
;
959 symtab
->free_ptr
= NULL
;
961 /* Use whatever language we have been using for this
962 subfile, not the one that was deduced in allocate_symtab
963 from the filename. We already did our own deducing when
964 we created the subfile, and we may have altered our
965 opinion of what language it is from things we found in
967 symtab
->language
= subfile
->language
;
969 /* Save the debug format string (if any) in the symtab */
970 if (subfile
->debugformat
!= NULL
)
972 symtab
->debugformat
= obsavestring (subfile
->debugformat
,
973 strlen (subfile
->debugformat
),
974 &objfile
->symbol_obstack
);
977 /* All symtabs for the main file and the subfiles share a
978 blockvector, so we need to clear primary for everything
979 but the main file. */
983 if (subfile
->name
!= NULL
)
985 free ((void *) subfile
->name
);
987 if (subfile
->dirname
!= NULL
)
989 free ((void *) subfile
->dirname
);
991 if (subfile
->line_vector
!= NULL
)
993 free ((void *) subfile
->line_vector
);
995 if (subfile
->debugformat
!= NULL
)
997 free ((void *) subfile
->debugformat
);
1000 nextsub
= subfile
->next
;
1001 free ((void *) subfile
);
1004 /* Set this for the main source file. */
1007 symtab
->primary
= 1;
1010 last_source_file
= NULL
;
1011 current_subfile
= NULL
;
1016 /* Push a context block. Args are an identifying nesting level
1017 (checkable when you pop it), and the starting PC address of this
1020 struct context_stack
*
1021 push_context (int desc
, CORE_ADDR valu
)
1023 register struct context_stack
*new;
1025 if (context_stack_depth
== context_stack_size
)
1027 context_stack_size
*= 2;
1028 context_stack
= (struct context_stack
*)
1029 xrealloc ((char *) context_stack
,
1030 (context_stack_size
* sizeof (struct context_stack
)));
1033 new = &context_stack
[context_stack_depth
++];
1035 new->locals
= local_symbols
;
1036 new->params
= param_symbols
;
1037 new->old_blocks
= pending_blocks
;
1038 new->start_addr
= valu
;
1041 local_symbols
= NULL
;
1042 param_symbols
= NULL
;
1047 /* Compute a small integer hash code for the given name. */
1050 hashname (char *name
)
1052 register char *p
= name
;
1053 register int total
= p
[0];
1068 /* Ensure result is positive. */
1071 total
+= (1000 << 6);
1073 return (total
% HASHSIZE
);
1078 record_debugformat (char *format
)
1080 current_subfile
->debugformat
= savestring (format
, strlen (format
));
1083 /* Merge the first symbol list SRCLIST into the second symbol list
1084 TARGETLIST by repeated calls to add_symbol_to_list(). This
1085 procedure "frees" each link of SRCLIST by adding it to the
1086 free_pendings list. Caller must set SRCLIST to a null list after
1087 calling this function.
1092 merge_symbol_lists (struct pending
**srclist
, struct pending
**targetlist
)
1096 if (!srclist
|| !*srclist
)
1099 /* Merge in elements from current link. */
1100 for (i
= 0; i
< (*srclist
)->nsyms
; i
++)
1101 add_symbol_to_list ((*srclist
)->symbol
[i
], targetlist
);
1103 /* Recurse on next. */
1104 merge_symbol_lists (&(*srclist
)->next
, targetlist
);
1106 /* "Free" the current link. */
1107 (*srclist
)->next
= free_pendings
;
1108 free_pendings
= (*srclist
);
1111 /* Initialize anything that needs initializing when starting to read a
1112 fresh piece of a symbol file, e.g. reading in the stuff
1113 corresponding to a psymtab. */
1118 free_pendings
= NULL
;
1119 file_symbols
= NULL
;
1120 global_symbols
= NULL
;
1121 pending_blocks
= NULL
;
1124 /* Initialize anything that needs initializing when a completely new
1125 symbol file is specified (not just adding some symbols from another
1126 file, e.g. a shared library). */
1129 buildsym_new_init ()