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