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