* gdb.c++/psmang.exp: Doc fix.
[deliverable/binutils-gdb.git] / gdb / buildsym.c
CommitLineData
c906108c 1/* Support routines for building symbol tables in GDB's internal format.
b6ba6518 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
d7f0b9ce 3 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
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,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22/* This module provides subroutines used for creating and adding to
23 the symbol table. These routines are called from various symbol-
24 file-reading routines.
25
26 Routines to support specific debugging information formats (stabs,
27 DWARF, etc) belong somewhere else. */
28
29#include "defs.h"
30#include "bfd.h"
04ea0df1 31#include "gdb_obstack.h"
c906108c 32#include "symtab.h"
72367fb4 33#include "symfile.h"
c906108c
SS
34#include "objfiles.h"
35#include "gdbtypes.h"
0c5e171a 36#include "gdb_assert.h"
c906108c
SS
37#include "complaints.h"
38#include "gdb_string.h"
91b9ff21 39#include "expression.h" /* For "enum exp_opcode" used by... */
14a5e767 40#include "language.h" /* For "local_hex_string" */
357e46e7 41#include "bcache.h"
d5166ae1 42#include "filenames.h" /* For DOSish file names */
99d9066e 43#include "macrotab.h"
261397f8 44#include "demangle.h" /* Needed by SYMBOL_INIT_DEMANGLED_NAME. */
c906108c 45/* Ask buildsym.h to define the vars it normally declares `extern'. */
c5aa993b
JM
46#define EXTERN
47/**/
c906108c
SS
48#include "buildsym.h" /* Our own declarations */
49#undef EXTERN
50
51/* For cleanup_undefined_types and finish_global_stabs (somewhat
52 questionable--see comment where we call them). */
53
54#include "stabsread.h"
55
56/* List of free `struct pending' structures for reuse. */
57
58static struct pending *free_pendings;
59
60/* Non-zero if symtab has line number info. This prevents an
61 otherwise empty symtab from being tossed. */
62
63static int have_line_numbers;
64\f
65static int compare_line_numbers (const void *ln1p, const void *ln2p);
66\f
67
68/* Initial sizes of data structures. These are realloc'd larger if
69 needed, and realloc'd down to the size actually used, when
70 completed. */
71
72#define INITIAL_CONTEXT_STACK_SIZE 10
73#define INITIAL_LINE_VECTOR_LENGTH 1000
74\f
75
c906108c
SS
76/* maintain the lists of symbols and blocks */
77
59527da0
JB
78/* Add a pending list to free_pendings. */
79void
80add_free_pendings (struct pending *list)
81{
82 register struct pending *link = list;
83
84 if (list)
85 {
86 while (link->next) link = link->next;
87 link->next = free_pendings;
88 free_pendings = list;
89 }
90}
91
c906108c
SS
92/* Add a symbol to one of the lists of symbols. */
93
94void
95add_symbol_to_list (struct symbol *symbol, struct pending **listhead)
96{
97 register struct pending *link;
98
99 /* If this is an alias for another symbol, don't add it. */
100 if (symbol->ginfo.name && symbol->ginfo.name[0] == '#')
101 return;
102
103 /* We keep PENDINGSIZE symbols in each link of the list. If we
104 don't have a link with room in it, add a new link. */
105 if (*listhead == NULL || (*listhead)->nsyms == PENDINGSIZE)
106 {
107 if (free_pendings)
108 {
109 link = free_pendings;
110 free_pendings = link->next;
111 }
112 else
113 {
114 link = (struct pending *) xmalloc (sizeof (struct pending));
115 }
116
117 link->next = *listhead;
118 *listhead = link;
119 link->nsyms = 0;
120 }
121
122 (*listhead)->symbol[(*listhead)->nsyms++] = symbol;
123}
124
125/* Find a symbol named NAME on a LIST. NAME need not be
126 '\0'-terminated; LENGTH is the length of the name. */
127
128struct symbol *
129find_symbol_in_list (struct pending *list, char *name, int length)
130{
131 int j;
132 char *pp;
133
134 while (list != NULL)
135 {
136 for (j = list->nsyms; --j >= 0;)
137 {
138 pp = SYMBOL_NAME (list->symbol[j]);
139 if (*pp == *name && strncmp (pp, name, length) == 0 &&
140 pp[length] == '\0')
141 {
142 return (list->symbol[j]);
143 }
144 }
145 list = list->next;
146 }
147 return (NULL);
148}
149
150/* At end of reading syms, or in case of quit, really free as many
151 `struct pending's as we can easily find. */
152
153/* ARGSUSED */
154void
a0b3c4fd 155really_free_pendings (PTR dummy)
c906108c
SS
156{
157 struct pending *next, *next1;
158
159 for (next = free_pendings; next; next = next1)
160 {
161 next1 = next->next;
b8c9b27d 162 xfree ((void *) next);
c906108c
SS
163 }
164 free_pendings = NULL;
165
166 free_pending_blocks ();
167
168 for (next = file_symbols; next != NULL; next = next1)
169 {
170 next1 = next->next;
b8c9b27d 171 xfree ((void *) next);
c906108c
SS
172 }
173 file_symbols = NULL;
174
175 for (next = global_symbols; next != NULL; next = next1)
176 {
177 next1 = next->next;
b8c9b27d 178 xfree ((void *) next);
c906108c
SS
179 }
180 global_symbols = NULL;
99d9066e
JB
181
182 if (pending_macros)
183 free_macro_table (pending_macros);
c906108c
SS
184}
185
186/* This function is called to discard any pending blocks. */
187
188void
189free_pending_blocks (void)
190{
191#if 0 /* Now we make the links in the
192 symbol_obstack, so don't free
193 them. */
194 struct pending_block *bnext, *bnext1;
195
196 for (bnext = pending_blocks; bnext; bnext = bnext1)
197 {
198 bnext1 = bnext->next;
b8c9b27d 199 xfree ((void *) bnext);
c906108c
SS
200 }
201#endif
202 pending_blocks = NULL;
203}
204
205/* Take one of the lists of symbols and make a block from it. Keep
206 the order the symbols have in the list (reversed from the input
207 file). Put the block on the list of pending blocks. */
208
209void
210finish_block (struct symbol *symbol, struct pending **listhead,
211 struct pending_block *old_blocks,
212 CORE_ADDR start, CORE_ADDR end,
213 struct objfile *objfile)
214{
215 register struct pending *next, *next1;
216 register struct block *block;
217 register struct pending_block *pblock;
218 struct pending_block *opblock;
219 register int i;
220 register int j;
221
222 /* Count the length of the list of symbols. */
223
224 for (next = *listhead, i = 0;
225 next;
226 i += next->nsyms, next = next->next)
227 {
228 /* EMPTY */ ;
229 }
230
c906108c
SS
231 /* Copy the symbols into the block. */
232
261397f8
DJ
233 if (symbol)
234 {
235 block = (struct block *)
236 obstack_alloc (&objfile->symbol_obstack,
237 (sizeof (struct block) +
238 ((i - 1) * sizeof (struct symbol *))));
239 BLOCK_NSYMS (block) = i;
240 for (next = *listhead; next; next = next->next)
241 for (j = next->nsyms - 1; j >= 0; j--)
242 {
243 BLOCK_SYM (block, --i) = next->symbol[j];
244 }
245 }
246 else
c906108c 247 {
261397f8
DJ
248 int htab_size = BLOCK_HASHTABLE_SIZE (i);
249
250 block = (struct block *)
251 obstack_alloc (&objfile->symbol_obstack,
252 (sizeof (struct block) +
253 ((htab_size - 1) * sizeof (struct symbol *))));
254 for (j = 0; j < htab_size; j++)
255 {
256 BLOCK_BUCKET (block, j) = 0;
257 }
258 BLOCK_BUCKETS (block) = htab_size;
259 for (next = *listhead; next; next = next->next)
c906108c 260 {
261397f8
DJ
261 for (j = next->nsyms - 1; j >= 0; j--)
262 {
263 struct symbol *sym;
264 unsigned int hash_index;
265 const char *name = SYMBOL_DEMANGLED_NAME (next->symbol[j]);
266 if (name == NULL)
267 name = SYMBOL_NAME (next->symbol[j]);
268 hash_index = msymbol_hash_iw (name);
269 hash_index = hash_index % BLOCK_BUCKETS (block);
270 sym = BLOCK_BUCKET (block, hash_index);
271 BLOCK_BUCKET (block, hash_index) = next->symbol[j];
272 next->symbol[j]->hash_next = sym;
273 }
c906108c
SS
274 }
275 }
276
277 BLOCK_START (block) = start;
278 BLOCK_END (block) = end;
279 /* Superblock filled in when containing block is made */
280 BLOCK_SUPERBLOCK (block) = NULL;
281
282 BLOCK_GCC_COMPILED (block) = processing_gcc_compilation;
283
284 /* Put the block in as the value of the symbol that names it. */
285
286 if (symbol)
287 {
288 struct type *ftype = SYMBOL_TYPE (symbol);
289 SYMBOL_BLOCK_VALUE (symbol) = block;
290 BLOCK_FUNCTION (block) = symbol;
261397f8 291 BLOCK_HASHTABLE (block) = 0;
c906108c
SS
292
293 if (TYPE_NFIELDS (ftype) <= 0)
294 {
295 /* No parameter type information is recorded with the
296 function's type. Set that from the type of the
297 parameter symbols. */
298 int nparams = 0, iparams;
299 struct symbol *sym;
e88c90f2 300 ALL_BLOCK_SYMBOLS (block, i, sym)
c906108c 301 {
c906108c
SS
302 switch (SYMBOL_CLASS (sym))
303 {
304 case LOC_ARG:
305 case LOC_REF_ARG:
306 case LOC_REGPARM:
307 case LOC_REGPARM_ADDR:
308 case LOC_BASEREG_ARG:
309 case LOC_LOCAL_ARG:
310 nparams++;
311 break;
312 case LOC_UNDEF:
313 case LOC_CONST:
314 case LOC_STATIC:
315 case LOC_INDIRECT:
316 case LOC_REGISTER:
317 case LOC_LOCAL:
318 case LOC_TYPEDEF:
319 case LOC_LABEL:
320 case LOC_BLOCK:
321 case LOC_CONST_BYTES:
322 case LOC_BASEREG:
323 case LOC_UNRESOLVED:
324 case LOC_OPTIMIZED_OUT:
325 default:
326 break;
327 }
328 }
329 if (nparams > 0)
330 {
331 TYPE_NFIELDS (ftype) = nparams;
332 TYPE_FIELDS (ftype) = (struct field *)
333 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
334
335 for (i = iparams = 0; iparams < nparams; i++)
336 {
337 sym = BLOCK_SYM (block, i);
338 switch (SYMBOL_CLASS (sym))
339 {
340 case LOC_ARG:
341 case LOC_REF_ARG:
342 case LOC_REGPARM:
343 case LOC_REGPARM_ADDR:
344 case LOC_BASEREG_ARG:
345 case LOC_LOCAL_ARG:
346 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
8176bb6d 347 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
c906108c
SS
348 iparams++;
349 break;
350 case LOC_UNDEF:
351 case LOC_CONST:
352 case LOC_STATIC:
353 case LOC_INDIRECT:
354 case LOC_REGISTER:
355 case LOC_LOCAL:
356 case LOC_TYPEDEF:
357 case LOC_LABEL:
358 case LOC_BLOCK:
359 case LOC_CONST_BYTES:
360 case LOC_BASEREG:
361 case LOC_UNRESOLVED:
362 case LOC_OPTIMIZED_OUT:
363 default:
364 break;
365 }
366 }
367 }
368 }
369 }
370 else
371 {
372 BLOCK_FUNCTION (block) = NULL;
261397f8 373 BLOCK_HASHTABLE (block) = 1;
c906108c
SS
374 }
375
376 /* Now "free" the links of the list, and empty the list. */
377
378 for (next = *listhead; next; next = next1)
379 {
380 next1 = next->next;
381 next->next = free_pendings;
382 free_pendings = next;
383 }
384 *listhead = NULL;
385
386#if 1
387 /* Check to be sure that the blocks have an end address that is
388 greater than starting address */
389
390 if (BLOCK_END (block) < BLOCK_START (block))
391 {
392 if (symbol)
393 {
23136709
KB
394 complaint (&symfile_complaints,
395 "block end address less than block start address in %s (patched it)",
396 SYMBOL_SOURCE_NAME (symbol));
c906108c
SS
397 }
398 else
399 {
23136709
KB
400 complaint (&symfile_complaints,
401 "block end address 0x%s less than block start address 0x%s (patched it)",
402 paddr_nz (BLOCK_END (block)), paddr_nz (BLOCK_START (block)));
c906108c
SS
403 }
404 /* Better than nothing */
405 BLOCK_END (block) = BLOCK_START (block);
406 }
407#endif
408
409 /* Install this block as the superblock of all blocks made since the
410 start of this scope that don't have superblocks yet. */
411
412 opblock = NULL;
c0219d42
MS
413 for (pblock = pending_blocks;
414 pblock && pblock != old_blocks;
415 pblock = pblock->next)
c906108c
SS
416 {
417 if (BLOCK_SUPERBLOCK (pblock->block) == NULL)
418 {
419#if 1
420 /* Check to be sure the blocks are nested as we receive
421 them. If the compiler/assembler/linker work, this just
422 burns a small amount of time. */
423 if (BLOCK_START (pblock->block) < BLOCK_START (block) ||
424 BLOCK_END (pblock->block) > BLOCK_END (block))
425 {
426 if (symbol)
427 {
23136709
KB
428 complaint (&symfile_complaints,
429 "inner block not inside outer block in %s",
430 SYMBOL_SOURCE_NAME (symbol));
c906108c
SS
431 }
432 else
433 {
23136709
KB
434 complaint (&symfile_complaints,
435 "inner block (0x%s-0x%s) not inside outer block (0x%s-0x%s)",
436 paddr_nz (BLOCK_START (pblock->block)),
437 paddr_nz (BLOCK_END (pblock->block)),
438 paddr_nz (BLOCK_START (block)),
439 paddr_nz (BLOCK_END (block)));
c906108c
SS
440 }
441 if (BLOCK_START (pblock->block) < BLOCK_START (block))
442 BLOCK_START (pblock->block) = BLOCK_START (block);
443 if (BLOCK_END (pblock->block) > BLOCK_END (block))
444 BLOCK_END (pblock->block) = BLOCK_END (block);
445 }
446#endif
447 BLOCK_SUPERBLOCK (pblock->block) = block;
448 }
449 opblock = pblock;
450 }
451
452 record_pending_block (objfile, block, opblock);
453}
454
455/* Record BLOCK on the list of all blocks in the file. Put it after
456 OPBLOCK, or at the beginning if opblock is NULL. This puts the
457 block in the list after all its subblocks.
458
459 Allocate the pending block struct in the symbol_obstack to save
460 time. This wastes a little space. FIXME: Is it worth it? */
461
462void
463record_pending_block (struct objfile *objfile, struct block *block,
464 struct pending_block *opblock)
465{
466 register struct pending_block *pblock;
467
468 pblock = (struct pending_block *)
469 obstack_alloc (&objfile->symbol_obstack, sizeof (struct pending_block));
470 pblock->block = block;
471 if (opblock)
472 {
473 pblock->next = opblock->next;
474 opblock->next = pblock;
475 }
476 else
477 {
478 pblock->next = pending_blocks;
479 pending_blocks = pblock;
480 }
481}
482
822e978b
AC
483/* OBSOLETE Note that this is only used in this file and in dstread.c, which */
484/* OBSOLETE should be fixed to not need direct access to this function. When */
485/* OBSOLETE that is done, it can be made static again. */
c906108c 486
822e978b 487static struct blockvector *
c906108c
SS
488make_blockvector (struct objfile *objfile)
489{
490 register struct pending_block *next;
491 register struct blockvector *blockvector;
492 register int i;
493
494 /* Count the length of the list of blocks. */
495
496 for (next = pending_blocks, i = 0; next; next = next->next, i++)
497 {;
498 }
499
500 blockvector = (struct blockvector *)
501 obstack_alloc (&objfile->symbol_obstack,
502 (sizeof (struct blockvector)
503 + (i - 1) * sizeof (struct block *)));
504
505 /* Copy the blocks into the blockvector. This is done in reverse
506 order, which happens to put the blocks into the proper order
507 (ascending starting address). finish_block has hair to insert
508 each block into the list after its subblocks in order to make
509 sure this is true. */
510
511 BLOCKVECTOR_NBLOCKS (blockvector) = i;
512 for (next = pending_blocks; next; next = next->next)
513 {
514 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
515 }
516
517#if 0 /* Now we make the links in the
518 obstack, so don't free them. */
519 /* Now free the links of the list, and empty the list. */
520
521 for (next = pending_blocks; next; next = next1)
522 {
523 next1 = next->next;
b8c9b27d 524 xfree (next);
c906108c
SS
525 }
526#endif
527 pending_blocks = NULL;
528
529#if 1 /* FIXME, shut this off after a while
530 to speed up symbol reading. */
531 /* Some compilers output blocks in the wrong order, but we depend on
532 their being in the right order so we can binary search. Check the
533 order and moan about it. FIXME. */
534 if (BLOCKVECTOR_NBLOCKS (blockvector) > 1)
535 {
536 for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++)
537 {
538 if (BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i - 1))
539 > BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i)))
540 {
59527da0
JB
541 CORE_ADDR start
542 = BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i));
c906108c 543
23136709
KB
544 complaint (&symfile_complaints, "block at %s out of order",
545 local_hex_string ((LONGEST) start));
c906108c
SS
546 }
547 }
548 }
549#endif
550
551 return (blockvector);
552}
553\f
554/* Start recording information about source code that came from an
555 included (or otherwise merged-in) source file with a different
556 name. NAME is the name of the file (cannot be NULL), DIRNAME is
557 the directory in which it resides (or NULL if not known). */
558
559void
560start_subfile (char *name, char *dirname)
561{
562 register struct subfile *subfile;
563
564 /* See if this subfile is already known as a subfile of the current
565 main source file. */
566
567 for (subfile = subfiles; subfile; subfile = subfile->next)
568 {
d5166ae1 569 if (FILENAME_CMP (subfile->name, name) == 0)
c906108c
SS
570 {
571 current_subfile = subfile;
572 return;
573 }
574 }
575
576 /* This subfile is not known. Add an entry for it. Make an entry
577 for this subfile in the list of all subfiles of the current main
578 source file. */
579
580 subfile = (struct subfile *) xmalloc (sizeof (struct subfile));
59527da0 581 memset ((char *) subfile, 0, sizeof (struct subfile));
c906108c
SS
582 subfile->next = subfiles;
583 subfiles = subfile;
584 current_subfile = subfile;
585
586 /* Save its name and compilation directory name */
587 subfile->name = (name == NULL) ? NULL : savestring (name, strlen (name));
588 subfile->dirname =
589 (dirname == NULL) ? NULL : savestring (dirname, strlen (dirname));
590
591 /* Initialize line-number recording for this subfile. */
592 subfile->line_vector = NULL;
593
594 /* Default the source language to whatever can be deduced from the
595 filename. If nothing can be deduced (such as for a C/C++ include
596 file with a ".h" extension), then inherit whatever language the
597 previous subfile had. This kludgery is necessary because there
598 is no standard way in some object formats to record the source
599 language. Also, when symtabs are allocated we try to deduce a
600 language then as well, but it is too late for us to use that
601 information while reading symbols, since symtabs aren't allocated
602 until after all the symbols have been processed for a given
603 source file. */
604
605 subfile->language = deduce_language_from_filename (subfile->name);
606 if (subfile->language == language_unknown &&
607 subfile->next != NULL)
608 {
609 subfile->language = subfile->next->language;
610 }
611
612 /* Initialize the debug format string to NULL. We may supply it
613 later via a call to record_debugformat. */
614 subfile->debugformat = NULL;
615
616 /* cfront output is a C program, so in most ways it looks like a C
617 program. But to demangle we need to set the language to C++. We
618 can distinguish cfront code by the fact that it has #line
619 directives which specify a file name ending in .C.
c5aa993b 620
c906108c
SS
621 So if the filename of this subfile ends in .C, then change the
622 language of any pending subfiles from C to C++. We also accept
623 any other C++ suffixes accepted by deduce_language_from_filename
624 (in particular, some people use .cxx with cfront). */
625 /* Likewise for f2c. */
626
627 if (subfile->name)
628 {
629 struct subfile *s;
630 enum language sublang = deduce_language_from_filename (subfile->name);
631
632 if (sublang == language_cplus || sublang == language_fortran)
633 for (s = subfiles; s != NULL; s = s->next)
634 if (s->language == language_c)
635 s->language = sublang;
636 }
637
638 /* And patch up this file if necessary. */
639 if (subfile->language == language_c
640 && subfile->next != NULL
641 && (subfile->next->language == language_cplus
642 || subfile->next->language == language_fortran))
643 {
644 subfile->language = subfile->next->language;
645 }
646}
647
648/* For stabs readers, the first N_SO symbol is assumed to be the
649 source file name, and the subfile struct is initialized using that
650 assumption. If another N_SO symbol is later seen, immediately
651 following the first one, then the first one is assumed to be the
652 directory name and the second one is really the source file name.
653
654 So we have to patch up the subfile struct by moving the old name
655 value to dirname and remembering the new name. Some sanity
656 checking is performed to ensure that the state of the subfile
657 struct is reasonable and that the old name we are assuming to be a
658 directory name actually is (by checking for a trailing '/'). */
659
660void
661patch_subfile_names (struct subfile *subfile, char *name)
662{
663 if (subfile != NULL && subfile->dirname == NULL && subfile->name != NULL
664 && subfile->name[strlen (subfile->name) - 1] == '/')
665 {
666 subfile->dirname = subfile->name;
667 subfile->name = savestring (name, strlen (name));
668 last_source_file = name;
669
670 /* Default the source language to whatever can be deduced from
671 the filename. If nothing can be deduced (such as for a C/C++
672 include file with a ".h" extension), then inherit whatever
673 language the previous subfile had. This kludgery is
674 necessary because there is no standard way in some object
675 formats to record the source language. Also, when symtabs
676 are allocated we try to deduce a language then as well, but
677 it is too late for us to use that information while reading
678 symbols, since symtabs aren't allocated until after all the
679 symbols have been processed for a given source file. */
680
681 subfile->language = deduce_language_from_filename (subfile->name);
682 if (subfile->language == language_unknown &&
683 subfile->next != NULL)
684 {
685 subfile->language = subfile->next->language;
686 }
687 }
688}
689\f
690/* Handle the N_BINCL and N_EINCL symbol types that act like N_SOL for
691 switching source files (different subfiles, as we call them) within
692 one object file, but using a stack rather than in an arbitrary
693 order. */
694
695void
696push_subfile (void)
697{
698 register struct subfile_stack *tem
699 = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack));
700
701 tem->next = subfile_stack;
702 subfile_stack = tem;
703 if (current_subfile == NULL || current_subfile->name == NULL)
704 {
e1e9e218 705 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
706 }
707 tem->name = current_subfile->name;
708}
709
710char *
711pop_subfile (void)
712{
713 register char *name;
714 register struct subfile_stack *link = subfile_stack;
715
716 if (link == NULL)
717 {
e1e9e218 718 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
719 }
720 name = link->name;
721 subfile_stack = link->next;
b8c9b27d 722 xfree ((void *) link);
c906108c
SS
723 return (name);
724}
725\f
726/* Add a linetable entry for line number LINE and address PC to the
727 line vector for SUBFILE. */
728
729void
730record_line (register struct subfile *subfile, int line, CORE_ADDR pc)
731{
732 struct linetable_entry *e;
733 /* Ignore the dummy line number in libg.o */
734
735 if (line == 0xffff)
736 {
737 return;
738 }
739
740 /* Make sure line vector exists and is big enough. */
741 if (!subfile->line_vector)
742 {
743 subfile->line_vector_length = INITIAL_LINE_VECTOR_LENGTH;
744 subfile->line_vector = (struct linetable *)
745 xmalloc (sizeof (struct linetable)
c5aa993b 746 + subfile->line_vector_length * sizeof (struct linetable_entry));
c906108c
SS
747 subfile->line_vector->nitems = 0;
748 have_line_numbers = 1;
749 }
750
751 if (subfile->line_vector->nitems + 1 >= subfile->line_vector_length)
752 {
753 subfile->line_vector_length *= 2;
754 subfile->line_vector = (struct linetable *)
755 xrealloc ((char *) subfile->line_vector,
756 (sizeof (struct linetable)
757 + (subfile->line_vector_length
758 * sizeof (struct linetable_entry))));
759 }
760
761 e = subfile->line_vector->item + subfile->line_vector->nitems++;
762 e->line = line;
063fd668 763 e->pc = ADDR_BITS_REMOVE(pc);
c906108c
SS
764}
765
766/* Needed in order to sort line tables from IBM xcoff files. Sigh! */
767
768static int
769compare_line_numbers (const void *ln1p, const void *ln2p)
770{
771 struct linetable_entry *ln1 = (struct linetable_entry *) ln1p;
772 struct linetable_entry *ln2 = (struct linetable_entry *) ln2p;
773
774 /* Note: this code does not assume that CORE_ADDRs can fit in ints.
775 Please keep it that way. */
776 if (ln1->pc < ln2->pc)
777 return -1;
778
779 if (ln1->pc > ln2->pc)
780 return 1;
781
782 /* If pc equal, sort by line. I'm not sure whether this is optimum
783 behavior (see comment at struct linetable in symtab.h). */
784 return ln1->line - ln2->line;
785}
786\f
787/* Start a new symtab for a new source file. Called, for example,
788 when a stabs symbol of type N_SO is seen, or when a DWARF
789 TAG_compile_unit DIE is seen. It indicates the start of data for
790 one original source file. */
791
792void
793start_symtab (char *name, char *dirname, CORE_ADDR start_addr)
794{
795
796 last_source_file = name;
797 last_source_start_addr = start_addr;
798 file_symbols = NULL;
799 global_symbols = NULL;
800 within_function = 0;
801 have_line_numbers = 0;
802
803 /* Context stack is initially empty. Allocate first one with room
804 for 10 levels; reuse it forever afterward. */
805 if (context_stack == NULL)
806 {
807 context_stack_size = INITIAL_CONTEXT_STACK_SIZE;
808 context_stack = (struct context_stack *)
809 xmalloc (context_stack_size * sizeof (struct context_stack));
810 }
811 context_stack_depth = 0;
812
813 /* Initialize the list of sub source files with one entry for this
814 file (the top-level source file). */
815
816 subfiles = NULL;
817 current_subfile = NULL;
818 start_subfile (name, dirname);
819}
820
821/* Finish the symbol definitions for one main source file, close off
822 all the lexical contexts for that file (creating struct block's for
823 them), then make the struct symtab for that file and put it in the
824 list of all such.
825
826 END_ADDR is the address of the end of the file's text. SECTION is
827 the section number (in objfile->section_offsets) of the blockvector
828 and linetable.
829
830 Note that it is possible for end_symtab() to return NULL. In
831 particular, for the DWARF case at least, it will return NULL when
832 it finds a compilation unit that has exactly one DIE, a
833 TAG_compile_unit DIE. This can happen when we link in an object
834 file that was compiled from an empty source file. Returning NULL
835 is probably not the correct thing to do, because then gdb will
836 never know about this empty file (FIXME). */
837
838struct symtab *
839end_symtab (CORE_ADDR end_addr, struct objfile *objfile, int section)
840{
841 register struct symtab *symtab = NULL;
842 register struct blockvector *blockvector;
843 register struct subfile *subfile;
844 register struct context_stack *cstk;
845 struct subfile *nextsub;
846
847 /* Finish the lexical context of the last function in the file; pop
848 the context stack. */
849
850 if (context_stack_depth > 0)
851 {
852 cstk = pop_context ();
853 /* Make a block for the local symbols within. */
854 finish_block (cstk->name, &local_symbols, cstk->old_blocks,
855 cstk->start_addr, end_addr, objfile);
856
857 if (context_stack_depth > 0)
858 {
859 /* This is said to happen with SCO. The old coffread.c
860 code simply emptied the context stack, so we do the
861 same. FIXME: Find out why it is happening. This is not
862 believed to happen in most cases (even for coffread.c);
863 it used to be an abort(). */
23136709
KB
864 complaint (&symfile_complaints,
865 "Context stack not empty in end_symtab");
c906108c
SS
866 context_stack_depth = 0;
867 }
868 }
869
870 /* Reordered executables may have out of order pending blocks; if
871 OBJF_REORDERED is true, then sort the pending blocks. */
872 if ((objfile->flags & OBJF_REORDERED) && pending_blocks)
873 {
874 /* FIXME! Remove this horrid bubble sort and use merge sort!!! */
875 int swapped;
876 do
877 {
878 struct pending_block *pb, *pbnext;
879
880 pb = pending_blocks;
881 pbnext = pb->next;
882 swapped = 0;
883
884 while (pbnext)
885 {
886 /* swap blocks if unordered! */
887
888 if (BLOCK_START (pb->block) < BLOCK_START (pbnext->block))
889 {
890 struct block *tmp = pb->block;
891 pb->block = pbnext->block;
892 pbnext->block = tmp;
893 swapped = 1;
894 }
895 pb = pbnext;
896 pbnext = pbnext->next;
897 }
898 }
899 while (swapped);
900 }
901
902 /* Cleanup any undefined types that have been left hanging around
903 (this needs to be done before the finish_blocks so that
904 file_symbols is still good).
c5aa993b 905
c906108c
SS
906 Both cleanup_undefined_types and finish_global_stabs are stabs
907 specific, but harmless for other symbol readers, since on gdb
908 startup or when finished reading stabs, the state is set so these
909 are no-ops. FIXME: Is this handled right in case of QUIT? Can
910 we make this cleaner? */
911
912 cleanup_undefined_types ();
913 finish_global_stabs (objfile);
914
915 if (pending_blocks == NULL
916 && file_symbols == NULL
917 && global_symbols == NULL
99d9066e
JB
918 && have_line_numbers == 0
919 && pending_macros == NULL)
c906108c
SS
920 {
921 /* Ignore symtabs that have no functions with real debugging
922 info. */
923 blockvector = NULL;
924 }
925 else
926 {
927 /* Define the STATIC_BLOCK & GLOBAL_BLOCK, and build the
928 blockvector. */
929 finish_block (0, &file_symbols, 0, last_source_start_addr, end_addr,
930 objfile);
931 finish_block (0, &global_symbols, 0, last_source_start_addr, end_addr,
932 objfile);
933 blockvector = make_blockvector (objfile);
934 }
935
936#ifndef PROCESS_LINENUMBER_HOOK
937#define PROCESS_LINENUMBER_HOOK()
938#endif
939 PROCESS_LINENUMBER_HOOK (); /* Needed for xcoff. */
940
941 /* Now create the symtab objects proper, one for each subfile. */
942 /* (The main file is the last one on the chain.) */
943
944 for (subfile = subfiles; subfile; subfile = nextsub)
945 {
946 int linetablesize = 0;
947 symtab = NULL;
948
949 /* If we have blocks of symbols, make a symtab. Otherwise, just
950 ignore this file and any line number info in it. */
951 if (blockvector)
952 {
953 if (subfile->line_vector)
954 {
955 linetablesize = sizeof (struct linetable) +
956 subfile->line_vector->nitems * sizeof (struct linetable_entry);
957#if 0
958 /* I think this is artifact from before it went on the
959 obstack. I doubt we'll need the memory between now
960 and when we free it later in this function. */
961 /* First, shrink the linetable to make more memory. */
962 subfile->line_vector = (struct linetable *)
963 xrealloc ((char *) subfile->line_vector, linetablesize);
964#endif
965
966 /* Like the pending blocks, the line table may be
967 scrambled in reordered executables. Sort it if
968 OBJF_REORDERED is true. */
969 if (objfile->flags & OBJF_REORDERED)
970 qsort (subfile->line_vector->item,
971 subfile->line_vector->nitems,
c5aa993b 972 sizeof (struct linetable_entry), compare_line_numbers);
c906108c
SS
973 }
974
975 /* Now, allocate a symbol table. */
976 symtab = allocate_symtab (subfile->name, objfile);
977
978 /* Fill in its components. */
979 symtab->blockvector = blockvector;
99d9066e 980 symtab->macro_table = pending_macros;
c906108c
SS
981 if (subfile->line_vector)
982 {
983 /* Reallocate the line table on the symbol obstack */
984 symtab->linetable = (struct linetable *)
985 obstack_alloc (&objfile->symbol_obstack, linetablesize);
986 memcpy (symtab->linetable, subfile->line_vector, linetablesize);
987 }
988 else
989 {
990 symtab->linetable = NULL;
991 }
992 symtab->block_line_section = section;
993 if (subfile->dirname)
994 {
995 /* Reallocate the dirname on the symbol obstack */
996 symtab->dirname = (char *)
997 obstack_alloc (&objfile->symbol_obstack,
998 strlen (subfile->dirname) + 1);
999 strcpy (symtab->dirname, subfile->dirname);
1000 }
1001 else
1002 {
1003 symtab->dirname = NULL;
1004 }
1005 symtab->free_code = free_linetable;
1006 symtab->free_ptr = NULL;
1007
1008 /* Use whatever language we have been using for this
1009 subfile, not the one that was deduced in allocate_symtab
1010 from the filename. We already did our own deducing when
1011 we created the subfile, and we may have altered our
1012 opinion of what language it is from things we found in
1013 the symbols. */
1014 symtab->language = subfile->language;
1015
1016 /* Save the debug format string (if any) in the symtab */
1017 if (subfile->debugformat != NULL)
1018 {
1019 symtab->debugformat = obsavestring (subfile->debugformat,
c5aa993b
JM
1020 strlen (subfile->debugformat),
1021 &objfile->symbol_obstack);
c906108c
SS
1022 }
1023
1024 /* All symtabs for the main file and the subfiles share a
1025 blockvector, so we need to clear primary for everything
1026 but the main file. */
1027
1028 symtab->primary = 0;
1029 }
1030 if (subfile->name != NULL)
1031 {
b8c9b27d 1032 xfree ((void *) subfile->name);
c906108c
SS
1033 }
1034 if (subfile->dirname != NULL)
1035 {
b8c9b27d 1036 xfree ((void *) subfile->dirname);
c906108c
SS
1037 }
1038 if (subfile->line_vector != NULL)
1039 {
b8c9b27d 1040 xfree ((void *) subfile->line_vector);
c906108c
SS
1041 }
1042 if (subfile->debugformat != NULL)
1043 {
b8c9b27d 1044 xfree ((void *) subfile->debugformat);
c906108c
SS
1045 }
1046
1047 nextsub = subfile->next;
b8c9b27d 1048 xfree ((void *) subfile);
c906108c
SS
1049 }
1050
1051 /* Set this for the main source file. */
1052 if (symtab)
1053 {
1054 symtab->primary = 1;
1055 }
1056
1057 last_source_file = NULL;
1058 current_subfile = NULL;
99d9066e 1059 pending_macros = NULL;
c906108c
SS
1060
1061 return symtab;
1062}
1063
1064/* Push a context block. Args are an identifying nesting level
1065 (checkable when you pop it), and the starting PC address of this
1066 context. */
1067
1068struct context_stack *
1069push_context (int desc, CORE_ADDR valu)
1070{
1071 register struct context_stack *new;
1072
1073 if (context_stack_depth == context_stack_size)
1074 {
1075 context_stack_size *= 2;
1076 context_stack = (struct context_stack *)
1077 xrealloc ((char *) context_stack,
c5aa993b 1078 (context_stack_size * sizeof (struct context_stack)));
c906108c
SS
1079 }
1080
1081 new = &context_stack[context_stack_depth++];
1082 new->depth = desc;
1083 new->locals = local_symbols;
1084 new->params = param_symbols;
1085 new->old_blocks = pending_blocks;
1086 new->start_addr = valu;
1087 new->name = NULL;
1088
1089 local_symbols = NULL;
1090 param_symbols = NULL;
1091
1092 return new;
1093}
0c5e171a 1094
a672ef13
KD
1095/* Pop a context block. Returns the address of the context block just
1096 popped. */
1097
0c5e171a
KD
1098struct context_stack *
1099pop_context (void)
1100{
1101 gdb_assert (context_stack_depth > 0);
1102 return (&context_stack[--context_stack_depth]);
1103}
1104
c906108c 1105\f
357e46e7 1106
c906108c
SS
1107/* Compute a small integer hash code for the given name. */
1108
1109int
1110hashname (char *name)
1111{
357e46e7 1112 return (hash(name,strlen(name)) % HASHSIZE);
c906108c
SS
1113}
1114\f
1115
1116void
1117record_debugformat (char *format)
1118{
1119 current_subfile->debugformat = savestring (format, strlen (format));
1120}
1121
1122/* Merge the first symbol list SRCLIST into the second symbol list
1123 TARGETLIST by repeated calls to add_symbol_to_list(). This
1124 procedure "frees" each link of SRCLIST by adding it to the
1125 free_pendings list. Caller must set SRCLIST to a null list after
1126 calling this function.
1127
1128 Void return. */
1129
1130void
1131merge_symbol_lists (struct pending **srclist, struct pending **targetlist)
1132{
1133 register int i;
1134
1135 if (!srclist || !*srclist)
1136 return;
1137
1138 /* Merge in elements from current link. */
1139 for (i = 0; i < (*srclist)->nsyms; i++)
1140 add_symbol_to_list ((*srclist)->symbol[i], targetlist);
1141
1142 /* Recurse on next. */
1143 merge_symbol_lists (&(*srclist)->next, targetlist);
1144
1145 /* "Free" the current link. */
1146 (*srclist)->next = free_pendings;
1147 free_pendings = (*srclist);
1148}
1149\f
1150/* Initialize anything that needs initializing when starting to read a
1151 fresh piece of a symbol file, e.g. reading in the stuff
1152 corresponding to a psymtab. */
1153
1154void
fba45db2 1155buildsym_init (void)
c906108c
SS
1156{
1157 free_pendings = NULL;
1158 file_symbols = NULL;
1159 global_symbols = NULL;
1160 pending_blocks = NULL;
99d9066e 1161 pending_macros = NULL;
c906108c
SS
1162}
1163
1164/* Initialize anything that needs initializing when a completely new
1165 symbol file is specified (not just adding some symbols from another
1166 file, e.g. a shared library). */
1167
1168void
fba45db2 1169buildsym_new_init (void)
c906108c
SS
1170{
1171 buildsym_init ();
1172}
This page took 0.240126 seconds and 4 git commands to generate.