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