]>
Commit | Line | Data |
---|---|---|
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 | |
5 | This file is part of GDB. | |
6 | ||
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. | |
11 | ||
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. | |
16 | ||
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 | |
6c9638b4 | 19 | Foundation, 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 | ||
52 | static struct pending_block *pending_blocks = NULL; | |
53 | ||
54 | /* List of free `struct pending' structures for reuse. */ | |
55 | ||
56 | static struct pending *free_pendings; | |
57 | ||
58 | \f | |
1ab3bf1b JG |
59 | static int |
60 | compare_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 |
72 | struct complaint block_end_complaint = |
73 | {"block end address less than block start address in %s (patched it)", 0, 0}; | |
74 | ||
75 | struct 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 |
78 | struct complaint innerblock_complaint = |
79 | {"inner block not inside outer block in %s", 0, 0}; | |
80 | ||
76512886 | 81 | struct 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 | 84 | struct 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 |
92 | void |
93 | add_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 |
124 | struct symbol * |
125 | find_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 */ | |
153 | void | |
154 | really_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 | ||
185 | void | |
186 | free_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 | ||
204 | void | |
1ab3bf1b | 205 | finish_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: | |
271 | nparams++; | |
6b14af2b FF |
272 | break; |
273 | case LOC_UNDEF: | |
274 | case LOC_CONST: | |
275 | case LOC_STATIC: | |
276 | case LOC_REGISTER: | |
277 | case LOC_LOCAL: | |
278 | case LOC_TYPEDEF: | |
279 | case LOC_LABEL: | |
280 | case LOC_BLOCK: | |
281 | case LOC_CONST_BYTES: | |
282 | case LOC_LOCAL_ARG: | |
283 | case LOC_BASEREG: | |
284 | case LOC_BASEREG_ARG: | |
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: | |
306 | TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym); | |
307 | iparams++; | |
6b14af2b FF |
308 | break; |
309 | case LOC_UNDEF: | |
310 | case LOC_CONST: | |
311 | case LOC_STATIC: | |
312 | case LOC_REGISTER: | |
313 | case LOC_LOCAL: | |
314 | case LOC_TYPEDEF: | |
315 | case LOC_LABEL: | |
316 | case LOC_BLOCK: | |
317 | case LOC_CONST_BYTES: | |
318 | case LOC_LOCAL_ARG: | |
319 | case LOC_BASEREG: | |
320 | case LOC_BASEREG_ARG: | |
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 FF |
390 | } |
391 | BLOCK_START (pblock->block) = BLOCK_START (block); | |
392 | BLOCK_END (pblock->block) = BLOCK_END (block); | |
393 | } | |
c0302457 | 394 | #endif |
d07734e3 FF |
395 | BLOCK_SUPERBLOCK (pblock->block) = block; |
396 | } | |
c0302457 JG |
397 | opblock = pblock; |
398 | } | |
399 | ||
a7f56d5a FF |
400 | record_pending_block (objfile, block, opblock); |
401 | } | |
402 | ||
403 | /* Record BLOCK on the list of all blocks in the file. Put it after | |
404 | OPBLOCK, or at the beginning if opblock is NULL. This puts the block | |
405 | in the list after all its subblocks. | |
406 | ||
407 | Allocate the pending block struct in the symbol_obstack to save | |
408 | time. This wastes a little space. FIXME: Is it worth it? */ | |
409 | ||
410 | void | |
411 | record_pending_block (objfile, block, opblock) | |
412 | struct objfile* objfile; | |
413 | struct block *block; | |
414 | struct pending_block *opblock; | |
415 | { | |
416 | register struct pending_block *pblock; | |
c0302457 | 417 | |
c0302457 | 418 | pblock = (struct pending_block *) |
a7f56d5a FF |
419 | obstack_alloc (&objfile -> symbol_obstack, sizeof (struct pending_block)); |
420 | pblock -> block = block; | |
c0302457 JG |
421 | if (opblock) |
422 | { | |
a7f56d5a FF |
423 | pblock -> next = opblock -> next; |
424 | opblock -> next = pblock; | |
c0302457 JG |
425 | } |
426 | else | |
427 | { | |
a7f56d5a | 428 | pblock -> next = pending_blocks; |
c0302457 JG |
429 | pending_blocks = pblock; |
430 | } | |
431 | } | |
432 | ||
a7f56d5a FF |
433 | /* Note that this is only used in this file and in dstread.c, which should be |
434 | fixed to not need direct access to this function. When that is done, it can | |
435 | be made static again. */ | |
436 | ||
437 | struct blockvector * | |
1ab3bf1b | 438 | make_blockvector (objfile) |
c438b3af | 439 | struct objfile *objfile; |
c0302457 JG |
440 | { |
441 | register struct pending_block *next; | |
442 | register struct blockvector *blockvector; | |
443 | register int i; | |
444 | ||
445 | /* Count the length of the list of blocks. */ | |
446 | ||
d07734e3 | 447 | for (next = pending_blocks, i = 0; next; next = next->next, i++) {;} |
c0302457 JG |
448 | |
449 | blockvector = (struct blockvector *) | |
1ab3bf1b | 450 | obstack_alloc (&objfile -> symbol_obstack, |
c0302457 JG |
451 | (sizeof (struct blockvector) |
452 | + (i - 1) * sizeof (struct block *))); | |
453 | ||
454 | /* Copy the blocks into the blockvector. | |
455 | This is done in reverse order, which happens to put | |
456 | the blocks into the proper order (ascending starting address). | |
457 | finish_block has hair to insert each block into the list | |
458 | after its subblocks in order to make sure this is true. */ | |
459 | ||
460 | BLOCKVECTOR_NBLOCKS (blockvector) = i; | |
d07734e3 FF |
461 | for (next = pending_blocks; next; next = next->next) |
462 | { | |
463 | BLOCKVECTOR_BLOCK (blockvector, --i) = next->block; | |
464 | } | |
c0302457 JG |
465 | |
466 | #if 0 /* Now we make the links in the obstack, so don't free them. */ | |
467 | /* Now free the links of the list, and empty the list. */ | |
468 | ||
469 | for (next = pending_blocks; next; next = next1) | |
470 | { | |
471 | next1 = next->next; | |
472 | free (next); | |
473 | } | |
474 | #endif | |
d07734e3 | 475 | pending_blocks = NULL; |
c0302457 JG |
476 | |
477 | #if 1 /* FIXME, shut this off after a while to speed up symbol reading. */ | |
478 | /* Some compilers output blocks in the wrong order, but we depend | |
479 | on their being in the right order so we can binary search. | |
480 | Check the order and moan about it. FIXME. */ | |
481 | if (BLOCKVECTOR_NBLOCKS (blockvector) > 1) | |
d07734e3 FF |
482 | { |
483 | for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++) | |
484 | { | |
485 | if (BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i-1)) | |
486 | > BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i))) | |
487 | { | |
833e0d94 JK |
488 | |
489 | /* FIXME-32x64: loses if CORE_ADDR doesn't fit in a | |
490 | long. Possible solutions include a version of | |
491 | complain which takes a callback, a | |
492 | sprintf_address_numeric to match | |
493 | print_address_numeric, or a way to set up a GDB_FILE | |
494 | * which causes sprintf rather than fprintf to be | |
495 | called. */ | |
496 | ||
d07734e3 | 497 | complain (&blockvector_complaint, |
5573d7d4 | 498 | (unsigned long) BLOCK_START(BLOCKVECTOR_BLOCK (blockvector, i))); |
d07734e3 FF |
499 | } |
500 | } | |
c0302457 JG |
501 | } |
502 | #endif | |
503 | ||
d07734e3 | 504 | return (blockvector); |
c0302457 | 505 | } |
d07734e3 | 506 | |
c0302457 | 507 | \f |
4137c5fc | 508 | /* Start recording information about source code that came from an included |
c438b3af JK |
509 | (or otherwise merged-in) source file with a different name. NAME is |
510 | the name of the file (cannot be NULL), DIRNAME is the directory in which | |
511 | it resides (or NULL if not known). */ | |
c0302457 JG |
512 | |
513 | void | |
4137c5fc JG |
514 | start_subfile (name, dirname) |
515 | char *name; | |
516 | char *dirname; | |
517 | { | |
518 | register struct subfile *subfile; | |
519 | ||
520 | /* See if this subfile is already known as a subfile of the | |
521 | current main source file. */ | |
522 | ||
523 | for (subfile = subfiles; subfile; subfile = subfile->next) | |
524 | { | |
2e4964ad | 525 | if (STREQ (subfile->name, name)) |
4137c5fc JG |
526 | { |
527 | current_subfile = subfile; | |
528 | return; | |
529 | } | |
530 | } | |
531 | ||
532 | /* This subfile is not known. Add an entry for it. | |
533 | Make an entry for this subfile in the list of all subfiles | |
534 | of the current main source file. */ | |
535 | ||
536 | subfile = (struct subfile *) xmalloc (sizeof (struct subfile)); | |
537 | subfile->next = subfiles; | |
538 | subfiles = subfile; | |
539 | current_subfile = subfile; | |
540 | ||
541 | /* Save its name and compilation directory name */ | |
bb6247c6 JK |
542 | subfile->name = (name == NULL) ? NULL : savestring (name, strlen (name)); |
543 | subfile->dirname = | |
544 | (dirname == NULL) ? NULL : savestring (dirname, strlen (dirname)); | |
4137c5fc JG |
545 | |
546 | /* Initialize line-number recording for this subfile. */ | |
d07734e3 | 547 | subfile->line_vector = NULL; |
2e4964ad FF |
548 | |
549 | /* Default the source language to whatever can be deduced from | |
550 | the filename. If nothing can be deduced (such as for a C/C++ | |
551 | include file with a ".h" extension), then inherit whatever | |
552 | language the previous subfile had. This kludgery is necessary | |
553 | because there is no standard way in some object formats to | |
554 | record the source language. Also, when symtabs are allocated | |
555 | we try to deduce a language then as well, but it is too late | |
556 | for us to use that information while reading symbols, since | |
557 | symtabs aren't allocated until after all the symbols have | |
558 | been processed for a given source file. */ | |
559 | ||
560 | subfile->language = deduce_language_from_filename (subfile->name); | |
561 | if (subfile->language == language_unknown && | |
562 | subfile->next != NULL) | |
563 | { | |
564 | subfile->language = subfile->next->language; | |
565 | } | |
56ad756a JK |
566 | |
567 | /* cfront output is a C program, so in most ways it looks like a C | |
568 | program. But to demangle we need to set the language to C++. We | |
569 | can distinguish cfront code by the fact that it has #line | |
570 | directives which specify a file name ending in .C. | |
571 | ||
572 | So if the filename of this subfile ends in .C, then change the language | |
8b05f64a JK |
573 | of any pending subfiles from C to C++. We also accept any other C++ |
574 | suffixes accepted by deduce_language_from_filename (in particular, | |
575 | some people use .cxx with cfront). */ | |
21af55c9 | 576 | /* Likewise for f2c. */ |
56ad756a JK |
577 | |
578 | if (subfile->name) | |
579 | { | |
56ad756a | 580 | struct subfile *s; |
21af55c9 | 581 | enum language sublang = deduce_language_from_filename (subfile->name); |
56ad756a | 582 | |
21af55c9 | 583 | if (sublang == language_cplus || sublang == language_fortran) |
56ad756a JK |
584 | for (s = subfiles; s != NULL; s = s->next) |
585 | if (s->language == language_c) | |
21af55c9 | 586 | s->language = sublang; |
56ad756a JK |
587 | } |
588 | ||
589 | /* And patch up this file if necessary. */ | |
590 | if (subfile->language == language_c | |
591 | && subfile->next != NULL | |
21af55c9 JK |
592 | && (subfile->next->language == language_cplus |
593 | || subfile->next->language == language_fortran)) | |
56ad756a | 594 | { |
21af55c9 | 595 | subfile->language = subfile->next->language; |
56ad756a | 596 | } |
4137c5fc | 597 | } |
d07734e3 | 598 | |
3416d90b FF |
599 | /* For stabs readers, the first N_SO symbol is assumed to be the source |
600 | file name, and the subfile struct is initialized using that assumption. | |
601 | If another N_SO symbol is later seen, immediately following the first | |
602 | one, then the first one is assumed to be the directory name and the | |
603 | second one is really the source file name. | |
604 | ||
605 | So we have to patch up the subfile struct by moving the old name value to | |
606 | dirname and remembering the new name. Some sanity checking is performed | |
607 | to ensure that the state of the subfile struct is reasonable and that the | |
608 | old name we are assuming to be a directory name actually is (by checking | |
609 | for a trailing '/'). */ | |
610 | ||
611 | void | |
612 | patch_subfile_names (subfile, name) | |
613 | struct subfile *subfile; | |
614 | char *name; | |
615 | { | |
616 | if (subfile != NULL && subfile->dirname == NULL && subfile->name != NULL | |
617 | && subfile->name[strlen(subfile->name)-1] == '/') | |
618 | { | |
619 | subfile->dirname = subfile->name; | |
bb6247c6 | 620 | subfile->name = savestring (name, strlen (name)); |
b9e58503 | 621 | last_source_file = name; |
2e4964ad FF |
622 | |
623 | /* Default the source language to whatever can be deduced from | |
624 | the filename. If nothing can be deduced (such as for a C/C++ | |
625 | include file with a ".h" extension), then inherit whatever | |
626 | language the previous subfile had. This kludgery is necessary | |
627 | because there is no standard way in some object formats to | |
628 | record the source language. Also, when symtabs are allocated | |
629 | we try to deduce a language then as well, but it is too late | |
630 | for us to use that information while reading symbols, since | |
631 | symtabs aren't allocated until after all the symbols have | |
632 | been processed for a given source file. */ | |
633 | ||
634 | subfile->language = deduce_language_from_filename (subfile->name); | |
635 | if (subfile->language == language_unknown && | |
636 | subfile->next != NULL) | |
637 | { | |
638 | subfile->language = subfile->next->language; | |
639 | } | |
3416d90b FF |
640 | } |
641 | } | |
642 | ||
4137c5fc | 643 | \f |
a048c8f5 JG |
644 | /* Handle the N_BINCL and N_EINCL symbol types |
645 | that act like N_SOL for switching source files | |
646 | (different subfiles, as we call them) within one object file, | |
647 | but using a stack rather than in an arbitrary order. */ | |
648 | ||
649 | void | |
650 | push_subfile () | |
651 | { | |
652 | register struct subfile_stack *tem | |
653 | = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack)); | |
654 | ||
655 | tem->next = subfile_stack; | |
656 | subfile_stack = tem; | |
d07734e3 FF |
657 | if (current_subfile == NULL || current_subfile->name == NULL) |
658 | { | |
659 | abort (); | |
660 | } | |
a048c8f5 | 661 | tem->name = current_subfile->name; |
a048c8f5 JG |
662 | } |
663 | ||
664 | char * | |
665 | pop_subfile () | |
666 | { | |
667 | register char *name; | |
668 | register struct subfile_stack *link = subfile_stack; | |
669 | ||
d07734e3 FF |
670 | if (link == NULL) |
671 | { | |
672 | abort (); | |
673 | } | |
a048c8f5 JG |
674 | name = link->name; |
675 | subfile_stack = link->next; | |
84ffdec2 | 676 | free ((PTR)link); |
d07734e3 | 677 | return (name); |
a048c8f5 | 678 | } |
d07734e3 | 679 | |
a048c8f5 | 680 | \f |
be7d4f3f JK |
681 | /* Add a linetable entry for line number LINE and address PC to the line |
682 | vector for SUBFILE. */ | |
4137c5fc JG |
683 | |
684 | void | |
685 | record_line (subfile, line, pc) | |
686 | register struct subfile *subfile; | |
c0302457 JG |
687 | int line; |
688 | CORE_ADDR pc; | |
689 | { | |
690 | struct linetable_entry *e; | |
691 | /* Ignore the dummy line number in libg.o */ | |
692 | ||
693 | if (line == 0xffff) | |
d07734e3 FF |
694 | { |
695 | return; | |
696 | } | |
c0302457 | 697 | |
4137c5fc | 698 | /* Make sure line vector exists and is big enough. */ |
d07734e3 FF |
699 | if (!subfile->line_vector) |
700 | { | |
701 | subfile->line_vector_length = INITIAL_LINE_VECTOR_LENGTH; | |
702 | subfile->line_vector = (struct linetable *) | |
4137c5fc JG |
703 | xmalloc (sizeof (struct linetable) |
704 | + subfile->line_vector_length * sizeof (struct linetable_entry)); | |
d07734e3 FF |
705 | subfile->line_vector->nitems = 0; |
706 | } | |
c0302457 | 707 | |
4137c5fc | 708 | if (subfile->line_vector->nitems + 1 >= subfile->line_vector_length) |
c0302457 | 709 | { |
4137c5fc JG |
710 | subfile->line_vector_length *= 2; |
711 | subfile->line_vector = (struct linetable *) | |
1ab3bf1b | 712 | xrealloc ((char *) subfile->line_vector, (sizeof (struct linetable) |
d07734e3 | 713 | + subfile->line_vector_length * sizeof (struct linetable_entry))); |
c0302457 JG |
714 | } |
715 | ||
4137c5fc | 716 | e = subfile->line_vector->item + subfile->line_vector->nitems++; |
c0302457 JG |
717 | e->line = line; e->pc = pc; |
718 | } | |
4137c5fc JG |
719 | |
720 | ||
721 | /* Needed in order to sort line tables from IBM xcoff files. Sigh! */ | |
722 | ||
1ab3bf1b JG |
723 | static int |
724 | compare_line_numbers (ln1p, ln2p) | |
c1d58bcd FF |
725 | const void *ln1p; |
726 | const void *ln2p; | |
4137c5fc | 727 | { |
c438b3af JK |
728 | struct linetable_entry *ln1 = (struct linetable_entry *) ln1p; |
729 | struct linetable_entry *ln2 = (struct linetable_entry *) ln2p; | |
730 | ||
731 | /* Note: this code does not assume that CORE_ADDRs can fit in ints. | |
732 | Please keep it that way. */ | |
733 | if (ln1->pc < ln2->pc) | |
734 | return -1; | |
735 | ||
736 | if (ln1->pc > ln2->pc) | |
737 | return 1; | |
738 | ||
739 | /* If pc equal, sort by line. I'm not sure whether this is optimum | |
740 | behavior (see comment at struct linetable in symtab.h). */ | |
741 | return ln1->line - ln2->line; | |
4137c5fc | 742 | } |
1ab3bf1b | 743 | |
c0302457 JG |
744 | \f |
745 | /* Start a new symtab for a new source file. | |
d07734e3 FF |
746 | Called, for example, when a stabs symbol of type N_SO is seen, or when |
747 | a DWARF TAG_compile_unit DIE is seen. | |
748 | It indicates the start of data for one original source file. */ | |
c0302457 JG |
749 | |
750 | void | |
751 | start_symtab (name, dirname, start_addr) | |
752 | char *name; | |
753 | char *dirname; | |
754 | CORE_ADDR start_addr; | |
755 | { | |
756 | ||
757 | last_source_file = name; | |
758 | last_source_start_addr = start_addr; | |
d07734e3 FF |
759 | file_symbols = NULL; |
760 | global_symbols = NULL; | |
c0302457 JG |
761 | within_function = 0; |
762 | ||
a048c8f5 JG |
763 | /* Context stack is initially empty. Allocate first one with room for |
764 | 10 levels; reuse it forever afterward. */ | |
d07734e3 FF |
765 | if (context_stack == NULL) |
766 | { | |
767 | context_stack_size = INITIAL_CONTEXT_STACK_SIZE; | |
768 | context_stack = (struct context_stack *) | |
769 | xmalloc (context_stack_size * sizeof (struct context_stack)); | |
770 | } | |
c0302457 JG |
771 | context_stack_depth = 0; |
772 | ||
c0302457 JG |
773 | /* Initialize the list of sub source files with one entry |
774 | for this file (the top-level source file). */ | |
775 | ||
d07734e3 FF |
776 | subfiles = NULL; |
777 | current_subfile = NULL; | |
c0302457 JG |
778 | start_subfile (name, dirname); |
779 | } | |
780 | ||
781 | /* Finish the symbol definitions for one main source file, | |
782 | close off all the lexical contexts for that file | |
783 | (creating struct block's for them), then make the struct symtab | |
784 | for that file and put it in the list of all such. | |
785 | ||
7b5d9650 | 786 | END_ADDR is the address of the end of the file's text. |
3c02636b JK |
787 | SECTION is the section number (in objfile->section_offsets) of |
788 | the blockvector and linetable. | |
7b5d9650 FF |
789 | |
790 | Note that it is possible for end_symtab() to return NULL. In particular, | |
791 | for the DWARF case at least, it will return NULL when it finds a | |
792 | compilation unit that has exactly one DIE, a TAG_compile_unit DIE. This | |
793 | can happen when we link in an object file that was compiled from an empty | |
794 | source file. Returning NULL is probably not the correct thing to do, | |
795 | because then gdb will never know about this empty file (FIXME). */ | |
c0302457 JG |
796 | |
797 | struct symtab * | |
436d4143 | 798 | end_symtab (end_addr, objfile, section) |
c0302457 | 799 | CORE_ADDR end_addr; |
a048c8f5 | 800 | struct objfile *objfile; |
3c02636b | 801 | int section; |
c0302457 | 802 | { |
fee933f1 | 803 | register struct symtab *symtab = NULL; |
c0302457 JG |
804 | register struct blockvector *blockvector; |
805 | register struct subfile *subfile; | |
d07734e3 | 806 | register struct context_stack *cstk; |
c0302457 JG |
807 | struct subfile *nextsub; |
808 | ||
809 | /* Finish the lexical context of the last function in the file; | |
810 | pop the context stack. */ | |
811 | ||
812 | if (context_stack_depth > 0) | |
813 | { | |
c0302457 JG |
814 | context_stack_depth--; |
815 | cstk = &context_stack[context_stack_depth]; | |
816 | /* Make a block for the local symbols within. */ | |
817 | finish_block (cstk->name, &local_symbols, cstk->old_blocks, | |
1ab3bf1b | 818 | cstk->start_addr, end_addr, objfile); |
a048c8f5 | 819 | |
a048c8f5 | 820 | if (context_stack_depth > 0) |
d07734e3 | 821 | { |
f91b837d JK |
822 | /* This is said to happen with SCO. The old coffread.c code |
823 | simply emptied the context stack, so we do the same. FIXME: | |
824 | Find out why it is happening. This is not believed to happen | |
825 | in most cases (even for coffread.c); it used to be an abort(). */ | |
826 | static struct complaint msg = | |
827 | {"Context stack not empty in end_symtab", 0, 0}; | |
828 | complain (&msg); | |
829 | context_stack_depth = 0; | |
d07734e3 | 830 | } |
c0302457 JG |
831 | } |
832 | ||
436d4143 JL |
833 | /* Reordered executables may have out of order pending blocks; if |
834 | OBJF_REORDERED is true, then sort the pending blocks. */ | |
835 | if ((objfile->flags & OBJF_REORDERED) && pending_blocks) | |
d07734e3 | 836 | { |
436d4143 JL |
837 | /* FIXME! Remove this horrid bubble sort and use qsort!!! |
838 | It'd be a whole lot easier if they weren't in a linked list!!! */ | |
d07734e3 FF |
839 | int swapped; |
840 | do | |
841 | { | |
842 | struct pending_block *pb, *pbnext; | |
843 | ||
844 | pb = pending_blocks; | |
845 | pbnext = pb->next; | |
846 | swapped = 0; | |
847 | ||
848 | while (pbnext) | |
849 | { | |
850 | /* swap blocks if unordered! */ | |
851 | ||
852 | if (BLOCK_START(pb->block) < BLOCK_START(pbnext->block)) | |
853 | { | |
854 | struct block *tmp = pb->block; | |
855 | pb->block = pbnext->block; | |
856 | pbnext->block = tmp; | |
857 | swapped = 1; | |
858 | } | |
859 | pb = pbnext; | |
860 | pbnext = pbnext->next; | |
861 | } | |
862 | } while (swapped); | |
863 | } | |
4137c5fc | 864 | |
c0302457 JG |
865 | /* Cleanup any undefined types that have been left hanging around |
866 | (this needs to be done before the finish_blocks so that | |
d07734e3 | 867 | file_symbols is still good). |
c438b3af JK |
868 | |
869 | Both cleanup_undefined_types and finish_global_stabs are stabs | |
870 | specific, but harmless for other symbol readers, since on gdb | |
871 | startup or when finished reading stabs, the state is set so these | |
872 | are no-ops. FIXME: Is this handled right in case of QUIT? Can | |
873 | we make this cleaner? */ | |
874 | ||
c0302457 | 875 | cleanup_undefined_types (); |
d07734e3 | 876 | finish_global_stabs (objfile); |
c0302457 | 877 | |
d07734e3 FF |
878 | if (pending_blocks == NULL |
879 | && file_symbols == NULL | |
880 | && global_symbols == NULL) | |
881 | { | |
882 | /* Ignore symtabs that have no functions with real debugging info */ | |
883 | blockvector = NULL; | |
884 | } | |
885 | else | |
886 | { | |
887 | /* Define the STATIC_BLOCK & GLOBAL_BLOCK, and build the blockvector. */ | |
888 | finish_block (0, &file_symbols, 0, last_source_start_addr, end_addr, | |
889 | objfile); | |
890 | finish_block (0, &global_symbols, 0, last_source_start_addr, end_addr, | |
891 | objfile); | |
892 | blockvector = make_blockvector (objfile); | |
893 | } | |
c0302457 | 894 | |
818de002 | 895 | #ifdef PROCESS_LINENUMBER_HOOK |
9b280a7f | 896 | PROCESS_LINENUMBER_HOOK (); /* Needed for xcoff. */ |
818de002 PB |
897 | #endif |
898 | ||
c0302457 JG |
899 | /* Now create the symtab objects proper, one for each subfile. */ |
900 | /* (The main file is the last one on the chain.) */ | |
901 | ||
902 | for (subfile = subfiles; subfile; subfile = nextsub) | |
903 | { | |
fee933f1 | 904 | int linetablesize = 0; |
a048c8f5 JG |
905 | /* If we have blocks of symbols, make a symtab. |
906 | Otherwise, just ignore this file and any line number info in it. */ | |
d07734e3 FF |
907 | symtab = NULL; |
908 | if (blockvector) | |
909 | { | |
910 | if (subfile->line_vector) | |
911 | { | |
d07734e3 FF |
912 | linetablesize = sizeof (struct linetable) + |
913 | subfile->line_vector->nitems * sizeof (struct linetable_entry); | |
c438b3af JK |
914 | #if 0 |
915 | /* I think this is artifact from before it went on the obstack. | |
916 | I doubt we'll need the memory between now and when we | |
917 | free it later in this function. */ | |
918 | /* First, shrink the linetable to make more memory. */ | |
d07734e3 FF |
919 | subfile->line_vector = (struct linetable *) |
920 | xrealloc ((char *) subfile->line_vector, linetablesize); | |
c438b3af | 921 | #endif |
d07734e3 | 922 | |
436d4143 JL |
923 | /* Like the pending blocks, the line table may be scrambled |
924 | in reordered executables. Sort it if OBJF_REORDERED is | |
925 | true. */ | |
926 | if (objfile->flags & OBJF_REORDERED) | |
d07734e3 FF |
927 | qsort (subfile->line_vector->item, |
928 | subfile->line_vector->nitems, | |
929 | sizeof (struct linetable_entry), compare_line_numbers); | |
930 | } | |
931 | ||
932 | /* Now, allocate a symbol table. */ | |
933 | symtab = allocate_symtab (subfile->name, objfile); | |
4137c5fc | 934 | |
d07734e3 FF |
935 | /* Fill in its components. */ |
936 | symtab->blockvector = blockvector; | |
937 | if (subfile->line_vector) | |
938 | { | |
939 | /* Reallocate the line table on the symbol obstack */ | |
940 | symtab->linetable = (struct linetable *) | |
941 | obstack_alloc (&objfile -> symbol_obstack, linetablesize); | |
942 | memcpy (symtab->linetable, subfile->line_vector, linetablesize); | |
943 | } | |
944 | else | |
945 | { | |
946 | symtab->linetable = NULL; | |
947 | } | |
3c02636b | 948 | symtab->block_line_section = section; |
8275e802 FF |
949 | if (subfile->dirname) |
950 | { | |
951 | /* Reallocate the dirname on the symbol obstack */ | |
952 | symtab->dirname = (char *) | |
953 | obstack_alloc (&objfile -> symbol_obstack, | |
954 | strlen (subfile -> dirname) + 1); | |
955 | strcpy (symtab->dirname, subfile->dirname); | |
956 | } | |
957 | else | |
958 | { | |
959 | symtab->dirname = NULL; | |
960 | } | |
d07734e3 FF |
961 | symtab->free_code = free_linetable; |
962 | symtab->free_ptr = NULL; | |
2b5a8d9c | 963 | |
2e4964ad FF |
964 | /* Use whatever language we have been using for this subfile, |
965 | not the one that was deduced in allocate_symtab from the | |
966 | filename. We already did our own deducing when we created | |
967 | the subfile, and we may have altered our opinion of what | |
968 | language it is from things we found in the symbols. */ | |
969 | symtab->language = subfile->language; | |
970 | ||
3c02636b JK |
971 | /* All symtabs for the main file and the subfiles share a |
972 | blockvector, so we need to clear primary for everything but | |
973 | the main file. */ | |
2b5a8d9c | 974 | |
3c02636b | 975 | symtab->primary = 0; |
d07734e3 | 976 | } |
3416d90b FF |
977 | if (subfile->name != NULL) |
978 | { | |
979 | free ((PTR) subfile->name); | |
980 | } | |
981 | if (subfile->dirname != NULL) | |
982 | { | |
983 | free ((PTR) subfile->dirname); | |
984 | } | |
985 | if (subfile->line_vector != NULL) | |
d07734e3 | 986 | { |
3416d90b | 987 | free ((PTR) subfile->line_vector); |
d07734e3 | 988 | } |
4137c5fc | 989 | |
c0302457 | 990 | nextsub = subfile->next; |
84ffdec2 | 991 | free ((PTR)subfile); |
c0302457 JG |
992 | } |
993 | ||
3c02636b | 994 | /* Set this for the main source file. */ |
1eeba686 | 995 | if (symtab) |
d07734e3 | 996 | { |
3c02636b | 997 | symtab->primary = 1; |
d07734e3 | 998 | } |
2b5a8d9c | 999 | |
d07734e3 FF |
1000 | last_source_file = NULL; |
1001 | current_subfile = NULL; | |
4137c5fc | 1002 | |
d07734e3 | 1003 | return (symtab); |
c0302457 | 1004 | } |
a048c8f5 JG |
1005 | |
1006 | ||
1007 | /* Push a context block. Args are an identifying nesting level (checkable | |
1008 | when you pop it), and the starting PC address of this context. */ | |
1009 | ||
1010 | struct context_stack * | |
1011 | push_context (desc, valu) | |
1012 | int desc; | |
1013 | CORE_ADDR valu; | |
1014 | { | |
1015 | register struct context_stack *new; | |
1016 | ||
1017 | if (context_stack_depth == context_stack_size) | |
1018 | { | |
1019 | context_stack_size *= 2; | |
1020 | context_stack = (struct context_stack *) | |
1ab3bf1b JG |
1021 | xrealloc ((char *) context_stack, |
1022 | (context_stack_size * sizeof (struct context_stack))); | |
a048c8f5 JG |
1023 | } |
1024 | ||
1025 | new = &context_stack[context_stack_depth++]; | |
1026 | new->depth = desc; | |
1027 | new->locals = local_symbols; | |
1028 | new->old_blocks = pending_blocks; | |
1029 | new->start_addr = valu; | |
d07734e3 | 1030 | new->name = NULL; |
a048c8f5 | 1031 | |
d07734e3 | 1032 | local_symbols = NULL; |
a048c8f5 | 1033 | |
d07734e3 | 1034 | return (new); |
a048c8f5 | 1035 | } |
d07734e3 | 1036 | |
48f075eb SS |
1037 | \f |
1038 | /* Compute a small integer hash code for the given name. */ | |
1039 | ||
1040 | int | |
1041 | hashname (name) | |
1042 | char *name; | |
1043 | { | |
1044 | register char *p = name; | |
1045 | register int total = p[0]; | |
1046 | register int c; | |
1047 | ||
1048 | c = p[1]; | |
1049 | total += c << 2; | |
1050 | if (c) | |
1051 | { | |
1052 | c = p[2]; | |
1053 | total += c << 4; | |
1054 | if (c) | |
1055 | { | |
1056 | total += p[3] << 6; | |
1057 | } | |
1058 | } | |
1059 | ||
1060 | /* Ensure result is positive. */ | |
1061 | if (total < 0) | |
1062 | { | |
1063 | total += (1000 << 6); | |
1064 | } | |
1065 | return (total % HASHSIZE); | |
1066 | } | |
1067 | ||
c0302457 JG |
1068 | \f |
1069 | /* Initialize anything that needs initializing when starting to read | |
1070 | a fresh piece of a symbol file, e.g. reading in the stuff corresponding | |
1071 | to a psymtab. */ | |
1072 | ||
1073 | void | |
1074 | buildsym_init () | |
1075 | { | |
d07734e3 FF |
1076 | free_pendings = NULL; |
1077 | file_symbols = NULL; | |
1078 | global_symbols = NULL; | |
1079 | pending_blocks = NULL; | |
c0302457 JG |
1080 | } |
1081 | ||
1082 | /* Initialize anything that needs initializing when a completely new | |
1083 | symbol file is specified (not just adding some symbols from another | |
1084 | file, e.g. a shared library). */ | |
1085 | ||
1086 | void | |
1087 | buildsym_new_init () | |
1088 | { | |
c0302457 JG |
1089 | buildsym_init (); |
1090 | } | |
1091 | ||
d07734e3 | 1092 | /* Initializer for this module */ |
095db7ce | 1093 | |
c0302457 JG |
1094 | void |
1095 | _initialize_buildsym () | |
1096 | { | |
c0302457 | 1097 | } |