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