DWARF: handle non-local references in nested functions
[deliverable/binutils-gdb.git] / gdb / buildsym.c
CommitLineData
c906108c 1/* Support routines for building symbol tables in GDB's internal format.
32d0add0 2 Copyright (C) 1986-2015 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19/* This module provides subroutines used for creating and adding to
20 the symbol table. These routines are called from various symbol-
21 file-reading routines.
22
23 Routines to support specific debugging information formats (stabs,
0ab9ce85
DE
24 DWARF, etc) belong somewhere else.
25
26 The basic way this module is used is as follows:
27
28 buildsym_init ();
29 cleanups = make_cleanup (really_free_pendings, NULL);
30 cust = start_symtab (...);
31 ... read debug info ...
32 cust = end_symtab (...);
33 do_cleanups (cleanups);
34
35 The compunit symtab pointer ("cust") is returned from both start_symtab
36 and end_symtab to simplify the debug info readers.
37
38 There are minor variations on this, e.g., dwarf2read.c splits end_symtab
39 into two calls: end_symtab_get_static_block, end_symtab_from_static_block,
40 but all debug info readers follow this basic flow.
41
42 Reading DWARF Type Units is another variation:
43
44 buildsym_init ();
45 cleanups = make_cleanup (really_free_pendings, NULL);
46 cust = start_symtab (...);
47 ... read debug info ...
48 cust = end_expandable_symtab (...);
49 do_cleanups (cleanups);
50
51 And then reading subsequent Type Units within the containing "Comp Unit"
52 will use a second flow:
53
54 buildsym_init ();
55 cleanups = make_cleanup (really_free_pendings, NULL);
56 cust = restart_symtab (...);
57 ... read debug info ...
58 cust = augment_type_symtab (...);
59 do_cleanups (cleanups);
60
61 dbxread.c and xcoffread.c use another variation:
62
63 buildsym_init ();
64 cleanups = make_cleanup (really_free_pendings, NULL);
65 cust = start_symtab (...);
66 ... read debug info ...
67 cust = end_symtab (...);
68 ... start_symtab + read + end_symtab repeated ...
69 do_cleanups (cleanups);
70*/
c906108c
SS
71
72#include "defs.h"
73#include "bfd.h"
04ea0df1 74#include "gdb_obstack.h"
c906108c 75#include "symtab.h"
72367fb4 76#include "symfile.h"
c906108c
SS
77#include "objfiles.h"
78#include "gdbtypes.h"
79#include "complaints.h"
4a64f543 80#include "expression.h" /* For "enum exp_opcode" used by... */
357e46e7 81#include "bcache.h"
4a64f543 82#include "filenames.h" /* For DOSish file names. */
99d9066e 83#include "macrotab.h"
261397f8 84#include "demangle.h" /* Needed by SYMBOL_INIT_DEMANGLED_NAME. */
fe898f56 85#include "block.h"
9219021c 86#include "cp-support.h"
de4f826b 87#include "dictionary.h"
801e3a5b 88#include "addrmap.h"
9219021c 89
c906108c 90/* Ask buildsym.h to define the vars it normally declares `extern'. */
c5aa993b
JM
91#define EXTERN
92/**/
4a64f543 93#include "buildsym.h" /* Our own declarations. */
c906108c
SS
94#undef EXTERN
95
0a0edcd5 96/* For cleanup_undefined_stabs_types and finish_global_stabs (somewhat
c906108c
SS
97 questionable--see comment where we call them). */
98
99#include "stabsread.h"
100
43f3e411
DE
101/* Buildsym's counterpart to struct compunit_symtab.
102 TODO(dje): Move all related global state into here. */
4d663531 103
43f3e411
DE
104struct buildsym_compunit
105{
106 /* The objfile we're reading debug info from. */
107 struct objfile *objfile;
108
109 /* List of subfiles (source files).
110 Files are added to the front of the list.
111 This is important mostly for the language determination hacks we use,
112 which iterate over previously added files. */
113 struct subfile *subfiles;
114
115 /* The subfile of the main source file. */
116 struct subfile *main_subfile;
4d663531 117
43f3e411
DE
118 /* E.g., DW_AT_comp_dir if DWARF. Space for this is malloc'd. */
119 char *comp_dir;
4d663531 120
43f3e411
DE
121 /* Space for this is not malloc'd, and is assumed to have at least
122 the same lifetime as objfile. */
123 const char *producer;
4d663531 124
43f3e411
DE
125 /* Space for this is not malloc'd, and is assumed to have at least
126 the same lifetime as objfile. */
127 const char *debugformat;
94d09e04 128
43f3e411
DE
129 /* The compunit we are building. */
130 struct compunit_symtab *compunit_symtab;
131};
94d09e04 132
43f3e411
DE
133/* The work-in-progress of the compunit we are building.
134 This is created first, before any subfiles by start_symtab. */
7bab9b58 135
43f3e411 136static struct buildsym_compunit *buildsym_compunit;
7bab9b58 137
c906108c
SS
138/* List of free `struct pending' structures for reuse. */
139
140static struct pending *free_pendings;
141
142/* Non-zero if symtab has line number info. This prevents an
143 otherwise empty symtab from being tossed. */
144
145static int have_line_numbers;
801e3a5b
JB
146
147/* The mutable address map for the compilation unit whose symbols
148 we're currently reading. The symtabs' shared blockvector will
149 point to a fixed copy of this. */
150static struct addrmap *pending_addrmap;
151
152/* The obstack on which we allocate pending_addrmap.
153 If pending_addrmap is NULL, this is uninitialized; otherwise, it is
154 initialized (and holds pending_addrmap). */
155static struct obstack pending_addrmap_obstack;
156
157/* Non-zero if we recorded any ranges in the addrmap that are
158 different from those in the blockvector already. We set this to
159 zero when we start processing a symfile, and if it's still zero at
160 the end, then we just toss the addrmap. */
161static int pending_addrmap_interesting;
162
93eed41f
TT
163/* An obstack used for allocating pending blocks. */
164
165static struct obstack pending_block_obstack;
166
167/* List of blocks already made (lexical contexts already closed).
168 This is used at the end to make the blockvector. */
169
170struct pending_block
171 {
172 struct pending_block *next;
173 struct block *block;
174 };
175
176/* Pointer to the head of a linked list of symbol blocks which have
177 already been finalized (lexical contexts already closed) and which
178 are just waiting to be built into a blockvector when finalizing the
179 associated symtab. */
180
181static struct pending_block *pending_blocks;
fc474241
DE
182
183struct subfile_stack
184 {
185 struct subfile_stack *next;
186 char *name;
187 };
188
189static struct subfile_stack *subfile_stack;
190
191/* The macro table for the compilation unit whose symbols we're
43f3e411 192 currently reading. */
fc474241
DE
193static struct macro_table *pending_macros;
194
0ab9ce85
DE
195static void free_buildsym_compunit (void);
196
c906108c 197static int compare_line_numbers (const void *ln1p, const void *ln2p);
0b49e518
TT
198
199static void record_pending_block (struct objfile *objfile,
200 struct block *block,
201 struct pending_block *opblock);
c906108c
SS
202
203/* Initial sizes of data structures. These are realloc'd larger if
204 needed, and realloc'd down to the size actually used, when
205 completed. */
206
207#define INITIAL_CONTEXT_STACK_SIZE 10
208#define INITIAL_LINE_VECTOR_LENGTH 1000
209\f
210
4a64f543 211/* Maintain the lists of symbols and blocks. */
c906108c 212
93bf33fd 213/* Add a symbol to one of the lists of symbols. */
c906108c
SS
214
215void
216add_symbol_to_list (struct symbol *symbol, struct pending **listhead)
217{
52f0bd74 218 struct pending *link;
c906108c
SS
219
220 /* If this is an alias for another symbol, don't add it. */
221 if (symbol->ginfo.name && symbol->ginfo.name[0] == '#')
222 return;
223
4a64f543 224 /* We keep PENDINGSIZE symbols in each link of the list. If we
c906108c
SS
225 don't have a link with room in it, add a new link. */
226 if (*listhead == NULL || (*listhead)->nsyms == PENDINGSIZE)
227 {
228 if (free_pendings)
229 {
230 link = free_pendings;
231 free_pendings = link->next;
232 }
233 else
234 {
235 link = (struct pending *) xmalloc (sizeof (struct pending));
236 }
237
238 link->next = *listhead;
239 *listhead = link;
240 link->nsyms = 0;
241 }
242
243 (*listhead)->symbol[(*listhead)->nsyms++] = symbol;
244}
245
246/* Find a symbol named NAME on a LIST. NAME need not be
247 '\0'-terminated; LENGTH is the length of the name. */
248
249struct symbol *
250find_symbol_in_list (struct pending *list, char *name, int length)
251{
252 int j;
0d5cff50 253 const char *pp;
c906108c
SS
254
255 while (list != NULL)
256 {
257 for (j = list->nsyms; --j >= 0;)
258 {
3567439c 259 pp = SYMBOL_LINKAGE_NAME (list->symbol[j]);
5aafa1cc
PM
260 if (*pp == *name && strncmp (pp, name, length) == 0
261 && pp[length] == '\0')
c906108c
SS
262 {
263 return (list->symbol[j]);
264 }
265 }
266 list = list->next;
267 }
268 return (NULL);
269}
270
0ab9ce85
DE
271/* At end of reading syms, or in case of quit, ensure everything associated
272 with building symtabs is freed. This is intended to be registered as a
273 cleanup before doing psymtab->symtab expansion.
274
275 N.B. This is *not* intended to be used when building psymtabs. Some debug
276 info readers call this anyway, which is harmless if confusing. */
c906108c 277
c906108c 278void
bde58177 279really_free_pendings (void *dummy)
c906108c
SS
280{
281 struct pending *next, *next1;
282
283 for (next = free_pendings; next; next = next1)
284 {
285 next1 = next->next;
b8c9b27d 286 xfree ((void *) next);
c906108c
SS
287 }
288 free_pendings = NULL;
289
290 free_pending_blocks ();
291
292 for (next = file_symbols; next != NULL; next = next1)
293 {
294 next1 = next->next;
b8c9b27d 295 xfree ((void *) next);
c906108c
SS
296 }
297 file_symbols = NULL;
298
299 for (next = global_symbols; next != NULL; next = next1)
300 {
301 next1 = next->next;
b8c9b27d 302 xfree ((void *) next);
c906108c
SS
303 }
304 global_symbols = NULL;
99d9066e
JB
305
306 if (pending_macros)
307 free_macro_table (pending_macros);
0ab9ce85 308 pending_macros = NULL;
801e3a5b
JB
309
310 if (pending_addrmap)
0ab9ce85
DE
311 obstack_free (&pending_addrmap_obstack, NULL);
312 pending_addrmap = NULL;
313
314 free_buildsym_compunit ();
c906108c
SS
315}
316
4a64f543 317/* This function is called to discard any pending blocks. */
c906108c
SS
318
319void
320free_pending_blocks (void)
321{
93eed41f
TT
322 if (pending_blocks != NULL)
323 {
324 obstack_free (&pending_block_obstack, NULL);
325 pending_blocks = NULL;
326 }
c906108c
SS
327}
328
329/* Take one of the lists of symbols and make a block from it. Keep
330 the order the symbols have in the list (reversed from the input
331 file). Put the block on the list of pending blocks. */
332
84a146c9 333static struct block *
63e43d3a
PMR
334finish_block_internal (struct symbol *symbol,
335 struct pending **listhead,
84a146c9 336 struct pending_block *old_blocks,
63e43d3a 337 const struct dynamic_prop *static_link,
84a146c9 338 CORE_ADDR start, CORE_ADDR end,
6d30eef8 339 int is_global, int expandable)
c906108c 340{
43f3e411 341 struct objfile *objfile = buildsym_compunit->objfile;
5af949e3 342 struct gdbarch *gdbarch = get_objfile_arch (objfile);
52f0bd74
AC
343 struct pending *next, *next1;
344 struct block *block;
345 struct pending_block *pblock;
c906108c 346 struct pending_block *opblock;
c906108c 347
84a146c9
TT
348 block = (is_global
349 ? allocate_global_block (&objfile->objfile_obstack)
350 : allocate_block (&objfile->objfile_obstack));
c906108c 351
261397f8
DJ
352 if (symbol)
353 {
4a146b47 354 BLOCK_DICT (block) = dict_create_linear (&objfile->objfile_obstack,
de4f826b 355 *listhead);
261397f8
DJ
356 }
357 else
c906108c 358 {
6d30eef8
DE
359 if (expandable)
360 {
361 BLOCK_DICT (block) = dict_create_hashed_expandable ();
362 dict_add_pending (BLOCK_DICT (block), *listhead);
363 }
364 else
365 {
366 BLOCK_DICT (block) =
367 dict_create_hashed (&objfile->objfile_obstack, *listhead);
368 }
c906108c
SS
369 }
370
371 BLOCK_START (block) = start;
372 BLOCK_END (block) = end;
c906108c 373
c906108c
SS
374 /* Put the block in as the value of the symbol that names it. */
375
376 if (symbol)
377 {
378 struct type *ftype = SYMBOL_TYPE (symbol);
de4f826b 379 struct dict_iterator iter;
c906108c
SS
380 SYMBOL_BLOCK_VALUE (symbol) = block;
381 BLOCK_FUNCTION (block) = symbol;
382
383 if (TYPE_NFIELDS (ftype) <= 0)
384 {
385 /* No parameter type information is recorded with the
386 function's type. Set that from the type of the
4a64f543 387 parameter symbols. */
c906108c
SS
388 int nparams = 0, iparams;
389 struct symbol *sym;
8157b174
TT
390
391 /* Here we want to directly access the dictionary, because
392 we haven't fully initialized the block yet. */
393 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
c906108c 394 {
2a2d4dc3
AS
395 if (SYMBOL_IS_ARGUMENT (sym))
396 nparams++;
c906108c
SS
397 }
398 if (nparams > 0)
399 {
400 TYPE_NFIELDS (ftype) = nparams;
401 TYPE_FIELDS (ftype) = (struct field *)
402 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
403
de4f826b 404 iparams = 0;
8157b174
TT
405 /* Here we want to directly access the dictionary, because
406 we haven't fully initialized the block yet. */
407 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
c906108c 408 {
de4f826b
DC
409 if (iparams == nparams)
410 break;
411
2a2d4dc3 412 if (SYMBOL_IS_ARGUMENT (sym))
c906108c 413 {
c906108c 414 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
8176bb6d 415 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
c906108c 416 iparams++;
c906108c
SS
417 }
418 }
419 }
420 }
421 }
422 else
423 {
424 BLOCK_FUNCTION (block) = NULL;
425 }
426
63e43d3a
PMR
427 if (static_link != NULL)
428 objfile_register_static_link (objfile, block, static_link);
429
c906108c
SS
430 /* Now "free" the links of the list, and empty the list. */
431
432 for (next = *listhead; next; next = next1)
433 {
434 next1 = next->next;
435 next->next = free_pendings;
436 free_pendings = next;
437 }
438 *listhead = NULL;
439
c906108c 440 /* Check to be sure that the blocks have an end address that is
4a64f543 441 greater than starting address. */
c906108c
SS
442
443 if (BLOCK_END (block) < BLOCK_START (block))
444 {
445 if (symbol)
446 {
23136709 447 complaint (&symfile_complaints,
3e43a32a
MS
448 _("block end address less than block "
449 "start address in %s (patched it)"),
de5ad195 450 SYMBOL_PRINT_NAME (symbol));
c906108c
SS
451 }
452 else
453 {
23136709 454 complaint (&symfile_complaints,
3e43a32a
MS
455 _("block end address %s less than block "
456 "start address %s (patched it)"),
5af949e3
UW
457 paddress (gdbarch, BLOCK_END (block)),
458 paddress (gdbarch, BLOCK_START (block)));
c906108c 459 }
4a64f543 460 /* Better than nothing. */
c906108c
SS
461 BLOCK_END (block) = BLOCK_START (block);
462 }
c906108c
SS
463
464 /* Install this block as the superblock of all blocks made since the
465 start of this scope that don't have superblocks yet. */
466
467 opblock = NULL;
c0219d42
MS
468 for (pblock = pending_blocks;
469 pblock && pblock != old_blocks;
470 pblock = pblock->next)
c906108c
SS
471 {
472 if (BLOCK_SUPERBLOCK (pblock->block) == NULL)
473 {
c906108c 474 /* Check to be sure the blocks are nested as we receive
4a64f543 475 them. If the compiler/assembler/linker work, this just
14711c82
DJ
476 burns a small amount of time.
477
478 Skip blocks which correspond to a function; they're not
479 physically nested inside this other blocks, only
480 lexically nested. */
481 if (BLOCK_FUNCTION (pblock->block) == NULL
482 && (BLOCK_START (pblock->block) < BLOCK_START (block)
483 || BLOCK_END (pblock->block) > BLOCK_END (block)))
c906108c
SS
484 {
485 if (symbol)
486 {
23136709 487 complaint (&symfile_complaints,
3d263c1d 488 _("inner block not inside outer block in %s"),
de5ad195 489 SYMBOL_PRINT_NAME (symbol));
c906108c
SS
490 }
491 else
492 {
23136709 493 complaint (&symfile_complaints,
3e43a32a
MS
494 _("inner block (%s-%s) not "
495 "inside outer block (%s-%s)"),
5af949e3
UW
496 paddress (gdbarch, BLOCK_START (pblock->block)),
497 paddress (gdbarch, BLOCK_END (pblock->block)),
498 paddress (gdbarch, BLOCK_START (block)),
499 paddress (gdbarch, BLOCK_END (block)));
c906108c
SS
500 }
501 if (BLOCK_START (pblock->block) < BLOCK_START (block))
502 BLOCK_START (pblock->block) = BLOCK_START (block);
503 if (BLOCK_END (pblock->block) > BLOCK_END (block))
504 BLOCK_END (pblock->block) = BLOCK_END (block);
505 }
c906108c
SS
506 BLOCK_SUPERBLOCK (pblock->block) = block;
507 }
508 opblock = pblock;
509 }
510
22cee43f
PMR
511 block_set_using (block,
512 (is_global
513 ? global_using_directives
514 : local_using_directives),
515 &objfile->objfile_obstack);
516 if (is_global)
517 global_using_directives = NULL;
518 else
519 local_using_directives = NULL;
27aa8d6a 520
c906108c 521 record_pending_block (objfile, block, opblock);
801e3a5b
JB
522
523 return block;
c906108c
SS
524}
525
84a146c9 526struct block *
63e43d3a
PMR
527finish_block (struct symbol *symbol,
528 struct pending **listhead,
84a146c9 529 struct pending_block *old_blocks,
63e43d3a 530 const struct dynamic_prop *static_link,
4d663531 531 CORE_ADDR start, CORE_ADDR end)
84a146c9 532{
63e43d3a 533 return finish_block_internal (symbol, listhead, old_blocks, static_link,
4d663531 534 start, end, 0, 0);
84a146c9 535}
de4f826b 536
c906108c
SS
537/* Record BLOCK on the list of all blocks in the file. Put it after
538 OPBLOCK, or at the beginning if opblock is NULL. This puts the
539 block in the list after all its subblocks.
540
4a146b47 541 Allocate the pending block struct in the objfile_obstack to save
c906108c
SS
542 time. This wastes a little space. FIXME: Is it worth it? */
543
0b49e518 544static void
c906108c
SS
545record_pending_block (struct objfile *objfile, struct block *block,
546 struct pending_block *opblock)
547{
52f0bd74 548 struct pending_block *pblock;
c906108c 549
93eed41f
TT
550 if (pending_blocks == NULL)
551 obstack_init (&pending_block_obstack);
552
c906108c 553 pblock = (struct pending_block *)
93eed41f 554 obstack_alloc (&pending_block_obstack, sizeof (struct pending_block));
c906108c
SS
555 pblock->block = block;
556 if (opblock)
557 {
558 pblock->next = opblock->next;
559 opblock->next = pblock;
560 }
561 else
562 {
563 pblock->next = pending_blocks;
564 pending_blocks = pblock;
565 }
566}
567
801e3a5b
JB
568
569/* Record that the range of addresses from START to END_INCLUSIVE
570 (inclusive, like it says) belongs to BLOCK. BLOCK's start and end
571 addresses must be set already. You must apply this function to all
572 BLOCK's children before applying it to BLOCK.
573
574 If a call to this function complicates the picture beyond that
575 already provided by BLOCK_START and BLOCK_END, then we create an
576 address map for the block. */
577void
578record_block_range (struct block *block,
579 CORE_ADDR start, CORE_ADDR end_inclusive)
580{
581 /* If this is any different from the range recorded in the block's
582 own BLOCK_START and BLOCK_END, then note that the address map has
583 become interesting. Note that even if this block doesn't have
584 any "interesting" ranges, some later block might, so we still
585 need to record this block in the addrmap. */
586 if (start != BLOCK_START (block)
587 || end_inclusive + 1 != BLOCK_END (block))
588 pending_addrmap_interesting = 1;
589
590 if (! pending_addrmap)
591 {
592 obstack_init (&pending_addrmap_obstack);
593 pending_addrmap = addrmap_create_mutable (&pending_addrmap_obstack);
594 }
595
596 addrmap_set_empty (pending_addrmap, start, end_inclusive, block);
597}
598
822e978b 599static struct blockvector *
43f3e411 600make_blockvector (void)
c906108c 601{
43f3e411 602 struct objfile *objfile = buildsym_compunit->objfile;
52f0bd74
AC
603 struct pending_block *next;
604 struct blockvector *blockvector;
605 int i;
c906108c
SS
606
607 /* Count the length of the list of blocks. */
608
609 for (next = pending_blocks, i = 0; next; next = next->next, i++)
610 {;
611 }
612
613 blockvector = (struct blockvector *)
4a146b47 614 obstack_alloc (&objfile->objfile_obstack,
c906108c
SS
615 (sizeof (struct blockvector)
616 + (i - 1) * sizeof (struct block *)));
617
4a64f543 618 /* Copy the blocks into the blockvector. This is done in reverse
c906108c 619 order, which happens to put the blocks into the proper order
4a64f543 620 (ascending starting address). finish_block has hair to insert
c906108c
SS
621 each block into the list after its subblocks in order to make
622 sure this is true. */
623
624 BLOCKVECTOR_NBLOCKS (blockvector) = i;
625 for (next = pending_blocks; next; next = next->next)
626 {
627 BLOCKVECTOR_BLOCK (blockvector, --i) = next->block;
628 }
629
89ba75b1 630 free_pending_blocks ();
c906108c 631
801e3a5b
JB
632 /* If we needed an address map for this symtab, record it in the
633 blockvector. */
634 if (pending_addrmap && pending_addrmap_interesting)
635 BLOCKVECTOR_MAP (blockvector)
636 = addrmap_create_fixed (pending_addrmap, &objfile->objfile_obstack);
637 else
638 BLOCKVECTOR_MAP (blockvector) = 0;
4aad0dfc 639
c906108c 640 /* Some compilers output blocks in the wrong order, but we depend on
4a64f543 641 their being in the right order so we can binary search. Check the
4aad0dfc
DE
642 order and moan about it.
643 Note: Remember that the first two blocks are the global and static
644 blocks. We could special case that fact and begin checking at block 2.
645 To avoid making that assumption we do not. */
c906108c
SS
646 if (BLOCKVECTOR_NBLOCKS (blockvector) > 1)
647 {
648 for (i = 1; i < BLOCKVECTOR_NBLOCKS (blockvector); i++)
649 {
650 if (BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i - 1))
651 > BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i)))
652 {
59527da0
JB
653 CORE_ADDR start
654 = BLOCK_START (BLOCKVECTOR_BLOCK (blockvector, i));
c906108c 655
3d263c1d 656 complaint (&symfile_complaints, _("block at %s out of order"),
bb599908 657 hex_string ((LONGEST) start));
c906108c
SS
658 }
659 }
660 }
c906108c
SS
661
662 return (blockvector);
663}
664\f
665/* Start recording information about source code that came from an
666 included (or otherwise merged-in) source file with a different
4d663531 667 name. NAME is the name of the file (cannot be NULL). */
c906108c
SS
668
669void
4d663531 670start_subfile (const char *name)
c906108c 671{
43f3e411 672 const char *subfile_dirname;
52f0bd74 673 struct subfile *subfile;
c906108c 674
43f3e411
DE
675 gdb_assert (buildsym_compunit != NULL);
676
677 subfile_dirname = buildsym_compunit->comp_dir;
c906108c 678
43f3e411
DE
679 /* See if this subfile is already registered. */
680
681 for (subfile = buildsym_compunit->subfiles; subfile; subfile = subfile->next)
c906108c 682 {
84ba0adf
DJ
683 char *subfile_name;
684
685 /* If NAME is an absolute path, and this subfile is not, then
686 attempt to create an absolute path to compare. */
687 if (IS_ABSOLUTE_PATH (name)
688 && !IS_ABSOLUTE_PATH (subfile->name)
43f3e411
DE
689 && subfile_dirname != NULL)
690 subfile_name = concat (subfile_dirname, SLASH_STRING,
6eb7ee03 691 subfile->name, (char *) NULL);
84ba0adf
DJ
692 else
693 subfile_name = subfile->name;
694
695 if (FILENAME_CMP (subfile_name, name) == 0)
c906108c
SS
696 {
697 current_subfile = subfile;
84ba0adf
DJ
698 if (subfile_name != subfile->name)
699 xfree (subfile_name);
c906108c
SS
700 return;
701 }
84ba0adf
DJ
702 if (subfile_name != subfile->name)
703 xfree (subfile_name);
c906108c
SS
704 }
705
43f3e411 706 /* This subfile is not known. Add an entry for it. */
c906108c
SS
707
708 subfile = (struct subfile *) xmalloc (sizeof (struct subfile));
43f3e411
DE
709 memset (subfile, 0, sizeof (struct subfile));
710 subfile->buildsym_compunit = buildsym_compunit;
711
712 subfile->next = buildsym_compunit->subfiles;
713 buildsym_compunit->subfiles = subfile;
714
c906108c
SS
715 current_subfile = subfile;
716
b74db436 717 subfile->name = xstrdup (name);
c906108c
SS
718
719 /* Initialize line-number recording for this subfile. */
720 subfile->line_vector = NULL;
721
722 /* Default the source language to whatever can be deduced from the
723 filename. If nothing can be deduced (such as for a C/C++ include
724 file with a ".h" extension), then inherit whatever language the
725 previous subfile had. This kludgery is necessary because there
726 is no standard way in some object formats to record the source
727 language. Also, when symtabs are allocated we try to deduce a
728 language then as well, but it is too late for us to use that
729 information while reading symbols, since symtabs aren't allocated
730 until after all the symbols have been processed for a given
4a64f543 731 source file. */
c906108c
SS
732
733 subfile->language = deduce_language_from_filename (subfile->name);
5aafa1cc
PM
734 if (subfile->language == language_unknown
735 && subfile->next != NULL)
c906108c
SS
736 {
737 subfile->language = subfile->next->language;
738 }
739
25caa7a8 740 /* If the filename of this subfile ends in .C, then change the
c906108c 741 language of any pending subfiles from C to C++. We also accept
25caa7a8 742 any other C++ suffixes accepted by deduce_language_from_filename. */
c906108c
SS
743 /* Likewise for f2c. */
744
745 if (subfile->name)
746 {
747 struct subfile *s;
748 enum language sublang = deduce_language_from_filename (subfile->name);
749
750 if (sublang == language_cplus || sublang == language_fortran)
43f3e411 751 for (s = buildsym_compunit->subfiles; s != NULL; s = s->next)
c906108c
SS
752 if (s->language == language_c)
753 s->language = sublang;
754 }
755
756 /* And patch up this file if necessary. */
757 if (subfile->language == language_c
758 && subfile->next != NULL
759 && (subfile->next->language == language_cplus
760 || subfile->next->language == language_fortran))
761 {
762 subfile->language = subfile->next->language;
763 }
764}
765
43f3e411
DE
766/* Start recording information about a primary source file (IOW, not an
767 included source file).
768 COMP_DIR is the directory in which the compilation unit was compiled
769 (or NULL if not known). */
770
771static struct buildsym_compunit *
772start_buildsym_compunit (struct objfile *objfile, const char *comp_dir)
773{
774 struct buildsym_compunit *bscu;
775
776 bscu = (struct buildsym_compunit *)
777 xmalloc (sizeof (struct buildsym_compunit));
778 memset (bscu, 0, sizeof (struct buildsym_compunit));
779
780 bscu->objfile = objfile;
781 bscu->comp_dir = (comp_dir == NULL) ? NULL : xstrdup (comp_dir);
782
783 /* Initialize the debug format string to NULL. We may supply it
784 later via a call to record_debugformat. */
785 bscu->debugformat = NULL;
786
787 /* Similarly for the producer. */
788 bscu->producer = NULL;
789
790 return bscu;
791}
792
793/* Delete the buildsym compunit. */
7bab9b58
DE
794
795static void
43f3e411 796free_buildsym_compunit (void)
7bab9b58
DE
797{
798 struct subfile *subfile, *nextsub;
799
43f3e411
DE
800 if (buildsym_compunit == NULL)
801 return;
802 for (subfile = buildsym_compunit->subfiles;
803 subfile != NULL;
804 subfile = nextsub)
7bab9b58
DE
805 {
806 nextsub = subfile->next;
807 xfree (subfile->name);
7bab9b58
DE
808 xfree (subfile->line_vector);
809 xfree (subfile);
810 }
43f3e411
DE
811 xfree (buildsym_compunit->comp_dir);
812 xfree (buildsym_compunit);
813 buildsym_compunit = NULL;
0ab9ce85 814 current_subfile = NULL;
7bab9b58
DE
815}
816
c906108c
SS
817/* For stabs readers, the first N_SO symbol is assumed to be the
818 source file name, and the subfile struct is initialized using that
819 assumption. If another N_SO symbol is later seen, immediately
820 following the first one, then the first one is assumed to be the
821 directory name and the second one is really the source file name.
822
823 So we have to patch up the subfile struct by moving the old name
824 value to dirname and remembering the new name. Some sanity
825 checking is performed to ensure that the state of the subfile
826 struct is reasonable and that the old name we are assuming to be a
4a64f543 827 directory name actually is (by checking for a trailing '/'). */
c906108c
SS
828
829void
830patch_subfile_names (struct subfile *subfile, char *name)
831{
43f3e411
DE
832 if (subfile != NULL
833 && buildsym_compunit->comp_dir == NULL
834 && subfile->name != NULL
0ba1096a 835 && IS_DIR_SEPARATOR (subfile->name[strlen (subfile->name) - 1]))
c906108c 836 {
43f3e411 837 buildsym_compunit->comp_dir = subfile->name;
1b36a34b 838 subfile->name = xstrdup (name);
46212e0b 839 set_last_source_file (name);
c906108c
SS
840
841 /* Default the source language to whatever can be deduced from
842 the filename. If nothing can be deduced (such as for a C/C++
843 include file with a ".h" extension), then inherit whatever
844 language the previous subfile had. This kludgery is
845 necessary because there is no standard way in some object
846 formats to record the source language. Also, when symtabs
847 are allocated we try to deduce a language then as well, but
848 it is too late for us to use that information while reading
849 symbols, since symtabs aren't allocated until after all the
4a64f543 850 symbols have been processed for a given source file. */
c906108c
SS
851
852 subfile->language = deduce_language_from_filename (subfile->name);
5aafa1cc
PM
853 if (subfile->language == language_unknown
854 && subfile->next != NULL)
c906108c
SS
855 {
856 subfile->language = subfile->next->language;
857 }
858 }
859}
860\f
861/* Handle the N_BINCL and N_EINCL symbol types that act like N_SOL for
862 switching source files (different subfiles, as we call them) within
863 one object file, but using a stack rather than in an arbitrary
864 order. */
865
866void
867push_subfile (void)
868{
52f0bd74 869 struct subfile_stack *tem
cc59ec59 870 = (struct subfile_stack *) xmalloc (sizeof (struct subfile_stack));
c906108c
SS
871
872 tem->next = subfile_stack;
873 subfile_stack = tem;
874 if (current_subfile == NULL || current_subfile->name == NULL)
875 {
4a64f543
MS
876 internal_error (__FILE__, __LINE__,
877 _("failed internal consistency check"));
c906108c
SS
878 }
879 tem->name = current_subfile->name;
880}
881
882char *
883pop_subfile (void)
884{
52f0bd74
AC
885 char *name;
886 struct subfile_stack *link = subfile_stack;
c906108c
SS
887
888 if (link == NULL)
889 {
3e43a32a
MS
890 internal_error (__FILE__, __LINE__,
891 _("failed internal consistency check"));
c906108c
SS
892 }
893 name = link->name;
894 subfile_stack = link->next;
b8c9b27d 895 xfree ((void *) link);
c906108c
SS
896 return (name);
897}
898\f
899/* Add a linetable entry for line number LINE and address PC to the
900 line vector for SUBFILE. */
901
902void
aa1ee363 903record_line (struct subfile *subfile, int line, CORE_ADDR pc)
c906108c
SS
904{
905 struct linetable_entry *e;
c906108c 906
cc59ec59 907 /* Ignore the dummy line number in libg.o */
c906108c
SS
908 if (line == 0xffff)
909 {
910 return;
911 }
912
913 /* Make sure line vector exists and is big enough. */
914 if (!subfile->line_vector)
915 {
916 subfile->line_vector_length = INITIAL_LINE_VECTOR_LENGTH;
917 subfile->line_vector = (struct linetable *)
918 xmalloc (sizeof (struct linetable)
c5aa993b 919 + subfile->line_vector_length * sizeof (struct linetable_entry));
c906108c
SS
920 subfile->line_vector->nitems = 0;
921 have_line_numbers = 1;
922 }
923
924 if (subfile->line_vector->nitems + 1 >= subfile->line_vector_length)
925 {
926 subfile->line_vector_length *= 2;
927 subfile->line_vector = (struct linetable *)
928 xrealloc ((char *) subfile->line_vector,
929 (sizeof (struct linetable)
930 + (subfile->line_vector_length
931 * sizeof (struct linetable_entry))));
932 }
933
607ae575
DJ
934 /* Normally, we treat lines as unsorted. But the end of sequence
935 marker is special. We sort line markers at the same PC by line
936 number, so end of sequence markers (which have line == 0) appear
937 first. This is right if the marker ends the previous function,
938 and there is no padding before the next function. But it is
939 wrong if the previous line was empty and we are now marking a
940 switch to a different subfile. We must leave the end of sequence
941 marker at the end of this group of lines, not sort the empty line
942 to after the marker. The easiest way to accomplish this is to
943 delete any empty lines from our table, if they are followed by
944 end of sequence markers. All we lose is the ability to set
945 breakpoints at some lines which contain no instructions
946 anyway. */
947 if (line == 0 && subfile->line_vector->nitems > 0)
948 {
949 e = subfile->line_vector->item + subfile->line_vector->nitems - 1;
950 while (subfile->line_vector->nitems > 0 && e->pc == pc)
951 {
952 e--;
953 subfile->line_vector->nitems--;
954 }
955 }
956
c906108c
SS
957 e = subfile->line_vector->item + subfile->line_vector->nitems++;
958 e->line = line;
607ae575 959 e->pc = pc;
c906108c
SS
960}
961
962/* Needed in order to sort line tables from IBM xcoff files. Sigh! */
963
964static int
965compare_line_numbers (const void *ln1p, const void *ln2p)
966{
967 struct linetable_entry *ln1 = (struct linetable_entry *) ln1p;
968 struct linetable_entry *ln2 = (struct linetable_entry *) ln2p;
969
970 /* Note: this code does not assume that CORE_ADDRs can fit in ints.
971 Please keep it that way. */
972 if (ln1->pc < ln2->pc)
973 return -1;
974
975 if (ln1->pc > ln2->pc)
976 return 1;
977
978 /* If pc equal, sort by line. I'm not sure whether this is optimum
979 behavior (see comment at struct linetable in symtab.h). */
980 return ln1->line - ln2->line;
981}
982\f
43f3e411
DE
983/* See buildsym.h. */
984
985struct compunit_symtab *
986buildsym_compunit_symtab (void)
987{
988 gdb_assert (buildsym_compunit != NULL);
989
990 return buildsym_compunit->compunit_symtab;
991}
992
993/* See buildsym.h. */
fc474241
DE
994
995struct macro_table *
43f3e411 996get_macro_table (void)
fc474241 997{
43f3e411
DE
998 struct objfile *objfile;
999
1000 gdb_assert (buildsym_compunit != NULL);
1001
1002 objfile = buildsym_compunit->objfile;
4d663531 1003
fc474241 1004 if (! pending_macros)
43f3e411
DE
1005 {
1006 pending_macros = new_macro_table (&objfile->per_bfd->storage_obstack,
1007 objfile->per_bfd->macro_cache,
1008 buildsym_compunit->compunit_symtab);
1009 }
1010
fc474241
DE
1011 return pending_macros;
1012}
1013\f
0ab9ce85
DE
1014/* Init state to prepare for building a symtab.
1015 Note: This can't be done in buildsym_init because dbxread.c and xcoffread.c
1016 can call start_symtab+end_symtab multiple times after one call to
1017 buildsym_init. */
1018
1019static void
1020prepare_for_building (const char *name, CORE_ADDR start_addr)
1021{
1022 set_last_source_file (name);
1023 last_source_start_addr = start_addr;
1024
1025 local_symbols = NULL;
22cee43f 1026 local_using_directives = NULL;
0ab9ce85
DE
1027 within_function = 0;
1028 have_line_numbers = 0;
1029
1030 context_stack_depth = 0;
1031
1032 /* These should have been reset either by successful completion of building
1033 a symtab, or by the really_free_pendings cleanup. */
1034 gdb_assert (file_symbols == NULL);
1035 gdb_assert (global_symbols == NULL);
22cee43f 1036 gdb_assert (global_using_directives == NULL);
0ab9ce85
DE
1037 gdb_assert (pending_macros == NULL);
1038 gdb_assert (pending_addrmap == NULL);
1039 gdb_assert (current_subfile == NULL);
1040}
1041
4d663531 1042/* Start a new symtab for a new source file in OBJFILE. Called, for example,
c906108c
SS
1043 when a stabs symbol of type N_SO is seen, or when a DWARF
1044 TAG_compile_unit DIE is seen. It indicates the start of data for
0b0287a1
DE
1045 one original source file.
1046
4d663531 1047 NAME is the name of the file (cannot be NULL). COMP_DIR is the directory in
0b0287a1
DE
1048 which the file was compiled (or NULL if not known). START_ADDR is the
1049 lowest address of objects in the file (or 0 if not known). */
c906108c 1050
43f3e411 1051struct compunit_symtab *
4d663531
DE
1052start_symtab (struct objfile *objfile, const char *name, const char *comp_dir,
1053 CORE_ADDR start_addr)
c906108c 1054{
0ab9ce85 1055 prepare_for_building (name, start_addr);
43f3e411
DE
1056
1057 buildsym_compunit = start_buildsym_compunit (objfile, comp_dir);
1058
0ab9ce85 1059 /* Allocate the compunit symtab now. The caller needs it to allocate
43f3e411
DE
1060 non-primary symtabs. It is also needed by get_macro_table. */
1061 buildsym_compunit->compunit_symtab = allocate_compunit_symtab (objfile,
1062 name);
1063
1064 /* Build the subfile for NAME (the main source file) so that we can record
1065 a pointer to it for later.
1066 IMPORTANT: Do not allocate a struct symtab for NAME here.
1067 It can happen that the debug info provides a different path to NAME than
1068 DIRNAME,NAME. We cope with this in watch_main_source_file_lossage but
1069 that only works if the main_subfile doesn't have a symtab yet. */
4d663531 1070 start_subfile (name);
7bab9b58
DE
1071 /* Save this so that we don't have to go looking for it at the end
1072 of the subfiles list. */
43f3e411
DE
1073 buildsym_compunit->main_subfile = current_subfile;
1074
43f3e411 1075 return buildsym_compunit->compunit_symtab;
6d30eef8
DE
1076}
1077
1078/* Restart compilation for a symtab.
0ab9ce85
DE
1079 CUST is the result of end_expandable_symtab.
1080 NAME, START_ADDR are the source file we are resuming with.
1081
6d30eef8 1082 This is used when a symtab is built from multiple sources.
0ab9ce85
DE
1083 The symtab is first built with start_symtab/end_expandable_symtab
1084 and then for each additional piece call restart_symtab/augment_*_symtab.
1085 Note: At the moment there is only augment_type_symtab. */
6d30eef8
DE
1086
1087void
0ab9ce85
DE
1088restart_symtab (struct compunit_symtab *cust,
1089 const char *name, CORE_ADDR start_addr)
6d30eef8 1090{
0ab9ce85 1091 prepare_for_building (name, start_addr);
c906108c 1092
0ab9ce85
DE
1093 buildsym_compunit = start_buildsym_compunit (COMPUNIT_OBJFILE (cust),
1094 COMPUNIT_DIRNAME (cust));
1095 buildsym_compunit->compunit_symtab = cust;
c906108c
SS
1096}
1097
4a64f543
MS
1098/* Subroutine of end_symtab to simplify it. Look for a subfile that
1099 matches the main source file's basename. If there is only one, and
1100 if the main source file doesn't have any symbol or line number
1101 information, then copy this file's symtab and line_vector to the
1102 main source file's subfile and discard the other subfile. This can
1103 happen because of a compiler bug or from the user playing games
1104 with #line or from things like a distributed build system that
43f3e411
DE
1105 manipulates the debug info. This can also happen from an innocent
1106 symlink in the paths, we don't canonicalize paths here. */
4584e32e
DE
1107
1108static void
1109watch_main_source_file_lossage (void)
1110{
43f3e411 1111 struct subfile *mainsub, *subfile;
4584e32e 1112
43f3e411 1113 /* We have to watch for buildsym_compunit == NULL here. It's a quirk of
7bab9b58 1114 end_symtab, it can return NULL so there may not be a main subfile. */
43f3e411 1115 if (buildsym_compunit == NULL)
7bab9b58 1116 return;
4584e32e 1117
43f3e411
DE
1118 /* Get the main source file. */
1119 mainsub = buildsym_compunit->main_subfile;
1120
4a64f543 1121 /* If the main source file doesn't have any line number or symbol
7bab9b58 1122 info, look for an alias in another subfile. */
4584e32e 1123
43f3e411
DE
1124 if (mainsub->line_vector == NULL
1125 && mainsub->symtab == NULL)
4584e32e 1126 {
43f3e411 1127 const char *mainbase = lbasename (mainsub->name);
4584e32e
DE
1128 int nr_matches = 0;
1129 struct subfile *prevsub;
1130 struct subfile *mainsub_alias = NULL;
1131 struct subfile *prev_mainsub_alias = NULL;
1132
1133 prevsub = NULL;
43f3e411
DE
1134 for (subfile = buildsym_compunit->subfiles;
1135 subfile != NULL;
4584e32e
DE
1136 subfile = subfile->next)
1137 {
43f3e411
DE
1138 if (subfile == mainsub)
1139 continue;
0ba1096a 1140 if (filename_cmp (lbasename (subfile->name), mainbase) == 0)
4584e32e
DE
1141 {
1142 ++nr_matches;
1143 mainsub_alias = subfile;
1144 prev_mainsub_alias = prevsub;
1145 }
1146 prevsub = subfile;
1147 }
1148
1149 if (nr_matches == 1)
1150 {
43f3e411 1151 gdb_assert (mainsub_alias != NULL && mainsub_alias != mainsub);
4584e32e
DE
1152
1153 /* Found a match for the main source file.
1154 Copy its line_vector and symtab to the main subfile
1155 and then discard it. */
1156
43f3e411
DE
1157 mainsub->line_vector = mainsub_alias->line_vector;
1158 mainsub->line_vector_length = mainsub_alias->line_vector_length;
1159 mainsub->symtab = mainsub_alias->symtab;
4584e32e
DE
1160
1161 if (prev_mainsub_alias == NULL)
43f3e411 1162 buildsym_compunit->subfiles = mainsub_alias->next;
4584e32e
DE
1163 else
1164 prev_mainsub_alias->next = mainsub_alias->next;
98387a29 1165 xfree (mainsub_alias->name);
4584e32e
DE
1166 xfree (mainsub_alias);
1167 }
1168 }
1169}
1170
98cc87bd 1171/* Helper function for qsort. Parameters are `struct block *' pointers,
07e7f39f
JK
1172 function sorts them in descending order by their BLOCK_START. */
1173
1174static int
1175block_compar (const void *ap, const void *bp)
1176{
1177 const struct block *a = *(const struct block **) ap;
1178 const struct block *b = *(const struct block **) bp;
1179
1180 return ((BLOCK_START (b) > BLOCK_START (a))
1181 - (BLOCK_START (b) < BLOCK_START (a)));
1182}
1183
0ab9ce85
DE
1184/* Reset state after a successful building of a symtab.
1185 This exists because dbxread.c and xcoffread.c can call
1186 start_symtab+end_symtab multiple times after one call to buildsym_init,
1187 and before the really_free_pendings cleanup is called.
1188 We keep the free_pendings list around for dbx/xcoff sake. */
6d30eef8
DE
1189
1190static void
1191reset_symtab_globals (void)
1192{
46212e0b 1193 set_last_source_file (NULL);
0ab9ce85
DE
1194
1195 local_symbols = NULL;
22cee43f 1196 local_using_directives = NULL;
0ab9ce85
DE
1197 file_symbols = NULL;
1198 global_symbols = NULL;
22cee43f 1199 global_using_directives = NULL;
0ab9ce85
DE
1200
1201 /* We don't free pending_macros here because if the symtab was successfully
1202 built then ownership was transferred to the symtab. */
6d30eef8 1203 pending_macros = NULL;
0ab9ce85 1204
6d30eef8 1205 if (pending_addrmap)
0ab9ce85
DE
1206 obstack_free (&pending_addrmap_obstack, NULL);
1207 pending_addrmap = NULL;
1208
1209 free_buildsym_compunit ();
6d30eef8
DE
1210}
1211
4359dff1
JK
1212/* Implementation of the first part of end_symtab. It allows modifying
1213 STATIC_BLOCK before it gets finalized by end_symtab_from_static_block.
1214 If the returned value is NULL there is no blockvector created for
1215 this symtab (you still must call end_symtab_from_static_block).
c906108c 1216
4359dff1
JK
1217 END_ADDR is the same as for end_symtab: the address of the end of the
1218 file's text.
c906108c 1219
4359dff1 1220 If EXPANDABLE is non-zero the STATIC_BLOCK dictionary is made
36586728
TT
1221 expandable.
1222
1223 If REQUIRED is non-zero, then a symtab is created even if it does
1224 not contain any symbols. */
6d30eef8 1225
4359dff1 1226struct block *
4d663531 1227end_symtab_get_static_block (CORE_ADDR end_addr, int expandable, int required)
c906108c 1228{
43f3e411 1229 struct objfile *objfile = buildsym_compunit->objfile;
4d663531 1230
c906108c
SS
1231 /* Finish the lexical context of the last function in the file; pop
1232 the context stack. */
1233
1234 if (context_stack_depth > 0)
1235 {
4359dff1
JK
1236 struct context_stack *cstk = pop_context ();
1237
c906108c 1238 /* Make a block for the local symbols within. */
63e43d3a 1239 finish_block (cstk->name, &local_symbols, cstk->old_blocks, NULL,
4d663531 1240 cstk->start_addr, end_addr);
c906108c
SS
1241
1242 if (context_stack_depth > 0)
1243 {
1244 /* This is said to happen with SCO. The old coffread.c
1245 code simply emptied the context stack, so we do the
1246 same. FIXME: Find out why it is happening. This is not
1247 believed to happen in most cases (even for coffread.c);
1248 it used to be an abort(). */
23136709 1249 complaint (&symfile_complaints,
3d263c1d 1250 _("Context stack not empty in end_symtab"));
c906108c
SS
1251 context_stack_depth = 0;
1252 }
1253 }
1254
1255 /* Reordered executables may have out of order pending blocks; if
1256 OBJF_REORDERED is true, then sort the pending blocks. */
6d30eef8 1257
c906108c
SS
1258 if ((objfile->flags & OBJF_REORDERED) && pending_blocks)
1259 {
07e7f39f
JK
1260 unsigned count = 0;
1261 struct pending_block *pb;
1262 struct block **barray, **bp;
1263 struct cleanup *back_to;
c906108c 1264
07e7f39f
JK
1265 for (pb = pending_blocks; pb != NULL; pb = pb->next)
1266 count++;
c906108c 1267
07e7f39f
JK
1268 barray = xmalloc (sizeof (*barray) * count);
1269 back_to = make_cleanup (xfree, barray);
c906108c 1270
07e7f39f
JK
1271 bp = barray;
1272 for (pb = pending_blocks; pb != NULL; pb = pb->next)
1273 *bp++ = pb->block;
1274
1275 qsort (barray, count, sizeof (*barray), block_compar);
1276
1277 bp = barray;
1278 for (pb = pending_blocks; pb != NULL; pb = pb->next)
1279 pb->block = *bp++;
1280
1281 do_cleanups (back_to);
c906108c
SS
1282 }
1283
1284 /* Cleanup any undefined types that have been left hanging around
1285 (this needs to be done before the finish_blocks so that
1286 file_symbols is still good).
c5aa993b 1287
0a0edcd5 1288 Both cleanup_undefined_stabs_types and finish_global_stabs are stabs
c906108c
SS
1289 specific, but harmless for other symbol readers, since on gdb
1290 startup or when finished reading stabs, the state is set so these
1291 are no-ops. FIXME: Is this handled right in case of QUIT? Can
1292 we make this cleaner? */
1293
0a0edcd5 1294 cleanup_undefined_stabs_types (objfile);
c906108c
SS
1295 finish_global_stabs (objfile);
1296
36586728
TT
1297 if (!required
1298 && pending_blocks == NULL
c906108c
SS
1299 && file_symbols == NULL
1300 && global_symbols == NULL
99d9066e 1301 && have_line_numbers == 0
22cee43f
PMR
1302 && pending_macros == NULL
1303 && global_using_directives == NULL)
c906108c 1304 {
4359dff1
JK
1305 /* Ignore symtabs that have no functions with real debugging info. */
1306 return NULL;
1307 }
1308 else
1309 {
1310 /* Define the STATIC_BLOCK. */
63e43d3a 1311 return finish_block_internal (NULL, &file_symbols, NULL, NULL,
4d663531 1312 last_source_start_addr, end_addr,
4359dff1
JK
1313 0, expandable);
1314 }
1315}
1316
7bab9b58
DE
1317/* Subroutine of end_symtab_from_static_block to simplify it.
1318 Handle the "have blockvector" case.
1319 See end_symtab_from_static_block for a description of the arguments. */
1320
43f3e411 1321static struct compunit_symtab *
7bab9b58 1322end_symtab_with_blockvector (struct block *static_block,
4d663531 1323 int section, int expandable)
4359dff1 1324{
43f3e411
DE
1325 struct objfile *objfile = buildsym_compunit->objfile;
1326 struct compunit_symtab *cu = buildsym_compunit->compunit_symtab;
7bab9b58 1327 struct symtab *symtab;
4359dff1
JK
1328 struct blockvector *blockvector;
1329 struct subfile *subfile;
7bab9b58 1330 CORE_ADDR end_addr;
4359dff1 1331
7bab9b58 1332 gdb_assert (static_block != NULL);
43f3e411
DE
1333 gdb_assert (buildsym_compunit != NULL);
1334 gdb_assert (buildsym_compunit->subfiles != NULL);
7bab9b58
DE
1335
1336 end_addr = BLOCK_END (static_block);
1337
1338 /* Create the GLOBAL_BLOCK and build the blockvector. */
63e43d3a 1339 finish_block_internal (NULL, &global_symbols, NULL, NULL,
4d663531 1340 last_source_start_addr, end_addr,
7bab9b58 1341 1, expandable);
43f3e411 1342 blockvector = make_blockvector ();
c906108c 1343
f56ce883
DE
1344 /* Read the line table if it has to be read separately.
1345 This is only used by xcoffread.c. */
c295b2e5 1346 if (objfile->sf->sym_read_linetable != NULL)
f56ce883 1347 objfile->sf->sym_read_linetable (objfile);
c906108c 1348
4584e32e
DE
1349 /* Handle the case where the debug info specifies a different path
1350 for the main source file. It can cause us to lose track of its
1351 line number information. */
1352 watch_main_source_file_lossage ();
1353
43f3e411
DE
1354 /* Now create the symtab objects proper, if not already done,
1355 one for each subfile. */
c906108c 1356
43f3e411
DE
1357 for (subfile = buildsym_compunit->subfiles;
1358 subfile != NULL;
1359 subfile = subfile->next)
c906108c
SS
1360 {
1361 int linetablesize = 0;
c906108c 1362
7bab9b58 1363 if (subfile->line_vector)
c906108c 1364 {
7bab9b58
DE
1365 linetablesize = sizeof (struct linetable) +
1366 subfile->line_vector->nitems * sizeof (struct linetable_entry);
1367
1368 /* Like the pending blocks, the line table may be
1369 scrambled in reordered executables. Sort it if
1370 OBJF_REORDERED is true. */
1371 if (objfile->flags & OBJF_REORDERED)
1372 qsort (subfile->line_vector->item,
1373 subfile->line_vector->nitems,
1374 sizeof (struct linetable_entry), compare_line_numbers);
1375 }
9182c5bc 1376
7bab9b58
DE
1377 /* Allocate a symbol table if necessary. */
1378 if (subfile->symtab == NULL)
43f3e411 1379 subfile->symtab = allocate_symtab (cu, subfile->name);
7bab9b58 1380 symtab = subfile->symtab;
9182c5bc 1381
7bab9b58 1382 /* Fill in its components. */
43f3e411 1383
7bab9b58
DE
1384 if (subfile->line_vector)
1385 {
1386 /* Reallocate the line table on the symbol obstack. */
8435453b 1387 SYMTAB_LINETABLE (symtab) = (struct linetable *)
7bab9b58 1388 obstack_alloc (&objfile->objfile_obstack, linetablesize);
8435453b
DE
1389 memcpy (SYMTAB_LINETABLE (symtab), subfile->line_vector,
1390 linetablesize);
c906108c 1391 }
24be086d 1392 else
c906108c 1393 {
8435453b 1394 SYMTAB_LINETABLE (symtab) = NULL;
c906108c 1395 }
c906108c 1396
7bab9b58
DE
1397 /* Use whatever language we have been using for this
1398 subfile, not the one that was deduced in allocate_symtab
1399 from the filename. We already did our own deducing when
1400 we created the subfile, and we may have altered our
1401 opinion of what language it is from things we found in
1402 the symbols. */
1403 symtab->language = subfile->language;
43f3e411 1404 }
c906108c 1405
43f3e411
DE
1406 /* Make sure the symtab of main_subfile is the first in its list. */
1407 {
1408 struct symtab *main_symtab, *prev_symtab;
1409
1410 main_symtab = buildsym_compunit->main_subfile->symtab;
1411 prev_symtab = NULL;
1412 ALL_COMPUNIT_FILETABS (cu, symtab)
1413 {
1414 if (symtab == main_symtab)
1415 {
1416 if (prev_symtab != NULL)
1417 {
1418 prev_symtab->next = main_symtab->next;
1419 main_symtab->next = COMPUNIT_FILETABS (cu);
1420 COMPUNIT_FILETABS (cu) = main_symtab;
1421 }
1422 break;
1423 }
1424 prev_symtab = symtab;
1425 }
1426 gdb_assert (main_symtab == COMPUNIT_FILETABS (cu));
1427 }
84a146c9 1428
0ab9ce85 1429 /* Fill out the compunit symtab. */
84a146c9 1430
43f3e411
DE
1431 if (buildsym_compunit->comp_dir != NULL)
1432 {
1433 /* Reallocate the dirname on the symbol obstack. */
1434 COMPUNIT_DIRNAME (cu)
1435 = obstack_copy0 (&objfile->objfile_obstack,
1436 buildsym_compunit->comp_dir,
1437 strlen (buildsym_compunit->comp_dir));
c906108c
SS
1438 }
1439
43f3e411
DE
1440 /* Save the debug format string (if any) in the symtab. */
1441 COMPUNIT_DEBUGFORMAT (cu) = buildsym_compunit->debugformat;
1442
1443 /* Similarly for the producer. */
1444 COMPUNIT_PRODUCER (cu) = buildsym_compunit->producer;
1445
1446 COMPUNIT_BLOCKVECTOR (cu) = blockvector;
7bab9b58 1447 {
43f3e411 1448 struct block *b = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
cb1df416 1449
43f3e411 1450 set_block_compunit_symtab (b, cu);
7bab9b58 1451 }
cb1df416 1452
43f3e411
DE
1453 COMPUNIT_BLOCK_LINE_SECTION (cu) = section;
1454
1455 COMPUNIT_MACRO_TABLE (cu) = pending_macros;
1456
7bab9b58
DE
1457 /* Default any symbols without a specified symtab to the primary symtab. */
1458 {
1459 int block_i;
1460
43f3e411
DE
1461 /* The main source file's symtab. */
1462 symtab = COMPUNIT_FILETABS (cu);
1463
7bab9b58
DE
1464 for (block_i = 0; block_i < BLOCKVECTOR_NBLOCKS (blockvector); block_i++)
1465 {
1466 struct block *block = BLOCKVECTOR_BLOCK (blockvector, block_i);
1467 struct symbol *sym;
1468 struct dict_iterator iter;
1469
1470 /* Inlined functions may have symbols not in the global or
1471 static symbol lists. */
1472 if (BLOCK_FUNCTION (block) != NULL)
08be3fe3
DE
1473 if (symbol_symtab (BLOCK_FUNCTION (block)) == NULL)
1474 symbol_set_symtab (BLOCK_FUNCTION (block), symtab);
7bab9b58
DE
1475
1476 /* Note that we only want to fix up symbols from the local
1477 blocks, not blocks coming from included symtabs. That is why
1478 we use ALL_DICT_SYMBOLS here and not ALL_BLOCK_SYMBOLS. */
1479 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
08be3fe3
DE
1480 if (symbol_symtab (sym) == NULL)
1481 symbol_set_symtab (sym, symtab);
7bab9b58
DE
1482 }
1483 }
edb3359d 1484
43f3e411 1485 add_compunit_symtab_to_objfile (cu);
43f3e411
DE
1486
1487 return cu;
7bab9b58
DE
1488}
1489
1490/* Implementation of the second part of end_symtab. Pass STATIC_BLOCK
1491 as value returned by end_symtab_get_static_block.
1492
1493 SECTION is the same as for end_symtab: the section number
1494 (in objfile->section_offsets) of the blockvector and linetable.
1495
1496 If EXPANDABLE is non-zero the GLOBAL_BLOCK dictionary is made
1497 expandable. */
1498
43f3e411 1499struct compunit_symtab *
7bab9b58 1500end_symtab_from_static_block (struct block *static_block,
4d663531 1501 int section, int expandable)
7bab9b58 1502{
43f3e411 1503 struct compunit_symtab *cu;
7bab9b58
DE
1504
1505 if (static_block == NULL)
1506 {
0ab9ce85
DE
1507 /* Handle the "no blockvector" case.
1508 When this happens there is nothing to record, so there's nothing
1509 to do: memory will be freed up later.
1510
1511 Note: We won't be adding a compunit to the objfile's list of
1512 compunits, so there's nothing to unchain. However, since each symtab
1513 is added to the objfile's obstack we can't free that space.
1514 We could do better, but this is believed to be a sufficiently rare
1515 event. */
43f3e411 1516 cu = NULL;
7bab9b58
DE
1517 }
1518 else
43f3e411 1519 cu = end_symtab_with_blockvector (static_block, section, expandable);
cb1df416 1520
6d30eef8
DE
1521 reset_symtab_globals ();
1522
43f3e411 1523 return cu;
6d30eef8
DE
1524}
1525
4359dff1
JK
1526/* Finish the symbol definitions for one main source file, close off
1527 all the lexical contexts for that file (creating struct block's for
1528 them), then make the struct symtab for that file and put it in the
1529 list of all such.
1530
1531 END_ADDR is the address of the end of the file's text. SECTION is
1532 the section number (in objfile->section_offsets) of the blockvector
1533 and linetable.
1534
1535 Note that it is possible for end_symtab() to return NULL. In
1536 particular, for the DWARF case at least, it will return NULL when
1537 it finds a compilation unit that has exactly one DIE, a
1538 TAG_compile_unit DIE. This can happen when we link in an object
1539 file that was compiled from an empty source file. Returning NULL
1540 is probably not the correct thing to do, because then gdb will
1541 never know about this empty file (FIXME).
1542
1543 If you need to modify STATIC_BLOCK before it is finalized you should
1544 call end_symtab_get_static_block and end_symtab_from_static_block
1545 yourself. */
6d30eef8 1546
43f3e411 1547struct compunit_symtab *
4d663531 1548end_symtab (CORE_ADDR end_addr, int section)
6d30eef8 1549{
4359dff1
JK
1550 struct block *static_block;
1551
4d663531
DE
1552 static_block = end_symtab_get_static_block (end_addr, 0, 0);
1553 return end_symtab_from_static_block (static_block, section, 0);
6d30eef8
DE
1554}
1555
4359dff1 1556/* Same as end_symtab except create a symtab that can be later added to. */
6d30eef8 1557
43f3e411 1558struct compunit_symtab *
4d663531 1559end_expandable_symtab (CORE_ADDR end_addr, int section)
6d30eef8 1560{
4359dff1
JK
1561 struct block *static_block;
1562
4d663531
DE
1563 static_block = end_symtab_get_static_block (end_addr, 1, 0);
1564 return end_symtab_from_static_block (static_block, section, 1);
6d30eef8
DE
1565}
1566
1567/* Subroutine of augment_type_symtab to simplify it.
43f3e411
DE
1568 Attach the main source file's symtab to all symbols in PENDING_LIST that
1569 don't have one. */
6d30eef8
DE
1570
1571static void
43f3e411
DE
1572set_missing_symtab (struct pending *pending_list,
1573 struct compunit_symtab *cu)
6d30eef8
DE
1574{
1575 struct pending *pending;
1576 int i;
1577
1578 for (pending = pending_list; pending != NULL; pending = pending->next)
801e3a5b 1579 {
6d30eef8
DE
1580 for (i = 0; i < pending->nsyms; ++i)
1581 {
08be3fe3
DE
1582 if (symbol_symtab (pending->symbol[i]) == NULL)
1583 symbol_set_symtab (pending->symbol[i], COMPUNIT_FILETABS (cu));
6d30eef8 1584 }
801e3a5b 1585 }
6d30eef8 1586}
c906108c 1587
6d30eef8
DE
1588/* Same as end_symtab, but for the case where we're adding more symbols
1589 to an existing symtab that is known to contain only type information.
1590 This is the case for DWARF4 Type Units. */
1591
1592void
0ab9ce85 1593augment_type_symtab (void)
6d30eef8 1594{
0ab9ce85 1595 struct compunit_symtab *cust = buildsym_compunit->compunit_symtab;
43f3e411 1596 const struct blockvector *blockvector = COMPUNIT_BLOCKVECTOR (cust);
6d30eef8
DE
1597
1598 if (context_stack_depth > 0)
1599 {
1600 complaint (&symfile_complaints,
1601 _("Context stack not empty in augment_type_symtab"));
1602 context_stack_depth = 0;
1603 }
1604 if (pending_blocks != NULL)
1605 complaint (&symfile_complaints, _("Blocks in a type symtab"));
1606 if (pending_macros != NULL)
1607 complaint (&symfile_complaints, _("Macro in a type symtab"));
1608 if (have_line_numbers)
1609 complaint (&symfile_complaints,
1610 _("Line numbers recorded in a type symtab"));
1611
1612 if (file_symbols != NULL)
1613 {
1614 struct block *block = BLOCKVECTOR_BLOCK (blockvector, STATIC_BLOCK);
1615
1616 /* First mark any symbols without a specified symtab as belonging
1617 to the primary symtab. */
43f3e411 1618 set_missing_symtab (file_symbols, cust);
6d30eef8
DE
1619
1620 dict_add_pending (BLOCK_DICT (block), file_symbols);
1621 }
1622
1623 if (global_symbols != NULL)
1624 {
1625 struct block *block = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
1626
1627 /* First mark any symbols without a specified symtab as belonging
1628 to the primary symtab. */
43f3e411 1629 set_missing_symtab (global_symbols, cust);
6d30eef8
DE
1630
1631 dict_add_pending (BLOCK_DICT (block), global_symbols);
1632 }
1633
1634 reset_symtab_globals ();
c906108c
SS
1635}
1636
1637/* Push a context block. Args are an identifying nesting level
1638 (checkable when you pop it), and the starting PC address of this
1639 context. */
1640
1641struct context_stack *
1642push_context (int desc, CORE_ADDR valu)
1643{
fe978cb0 1644 struct context_stack *newobj;
c906108c
SS
1645
1646 if (context_stack_depth == context_stack_size)
1647 {
1648 context_stack_size *= 2;
1649 context_stack = (struct context_stack *)
1650 xrealloc ((char *) context_stack,
c5aa993b 1651 (context_stack_size * sizeof (struct context_stack)));
c906108c
SS
1652 }
1653
fe978cb0
PA
1654 newobj = &context_stack[context_stack_depth++];
1655 newobj->depth = desc;
1656 newobj->locals = local_symbols;
1657 newobj->old_blocks = pending_blocks;
1658 newobj->start_addr = valu;
22cee43f 1659 newobj->local_using_directives = local_using_directives;
fe978cb0 1660 newobj->name = NULL;
c906108c
SS
1661
1662 local_symbols = NULL;
22cee43f 1663 local_using_directives = NULL;
c906108c 1664
fe978cb0 1665 return newobj;
c906108c 1666}
0c5e171a 1667
a672ef13 1668/* Pop a context block. Returns the address of the context block just
4a64f543 1669 popped. */
a672ef13 1670
0c5e171a
KD
1671struct context_stack *
1672pop_context (void)
1673{
1674 gdb_assert (context_stack_depth > 0);
1675 return (&context_stack[--context_stack_depth]);
1676}
1677
c906108c 1678\f
357e46e7 1679
4a64f543 1680/* Compute a small integer hash code for the given name. */
c906108c
SS
1681
1682int
0d5cff50 1683hashname (const char *name)
c906108c 1684{
357e46e7 1685 return (hash(name,strlen(name)) % HASHSIZE);
c906108c
SS
1686}
1687\f
1688
1689void
554d387d 1690record_debugformat (const char *format)
c906108c 1691{
43f3e411 1692 buildsym_compunit->debugformat = format;
c906108c
SS
1693}
1694
303b6f5d
DJ
1695void
1696record_producer (const char *producer)
1697{
43f3e411 1698 buildsym_compunit->producer = producer;
303b6f5d
DJ
1699}
1700
c906108c
SS
1701/* Merge the first symbol list SRCLIST into the second symbol list
1702 TARGETLIST by repeated calls to add_symbol_to_list(). This
1703 procedure "frees" each link of SRCLIST by adding it to the
1704 free_pendings list. Caller must set SRCLIST to a null list after
1705 calling this function.
1706
4a64f543 1707 Void return. */
c906108c
SS
1708
1709void
1710merge_symbol_lists (struct pending **srclist, struct pending **targetlist)
1711{
52f0bd74 1712 int i;
c906108c
SS
1713
1714 if (!srclist || !*srclist)
1715 return;
1716
1717 /* Merge in elements from current link. */
1718 for (i = 0; i < (*srclist)->nsyms; i++)
1719 add_symbol_to_list ((*srclist)->symbol[i], targetlist);
1720
1721 /* Recurse on next. */
1722 merge_symbol_lists (&(*srclist)->next, targetlist);
1723
1724 /* "Free" the current link. */
1725 (*srclist)->next = free_pendings;
1726 free_pendings = (*srclist);
1727}
1728\f
46212e0b
TT
1729
1730/* Name of source file whose symbol data we are now processing. This
1731 comes from a symbol of type N_SO for stabs. For Dwarf it comes
1732 from the DW_AT_name attribute of a DW_TAG_compile_unit DIE. */
1733
1734static char *last_source_file;
1735
1736/* See buildsym.h. */
1737
1738void
1739set_last_source_file (const char *name)
1740{
1741 xfree (last_source_file);
1742 last_source_file = name == NULL ? NULL : xstrdup (name);
1743}
1744
1745/* See buildsym.h. */
1746
1747const char *
1748get_last_source_file (void)
1749{
1750 return last_source_file;
1751}
1752
1753\f
1754
c906108c
SS
1755/* Initialize anything that needs initializing when starting to read a
1756 fresh piece of a symbol file, e.g. reading in the stuff
1757 corresponding to a psymtab. */
1758
1759void
fba45db2 1760buildsym_init (void)
c906108c 1761{
fc474241 1762 subfile_stack = NULL;
801e3a5b 1763
801e3a5b 1764 pending_addrmap_interesting = 0;
0ab9ce85
DE
1765
1766 /* Context stack is initially empty. Allocate first one with room
1767 for a few levels; reuse it forever afterward. */
1768 if (context_stack == NULL)
1769 {
1770 context_stack_size = INITIAL_CONTEXT_STACK_SIZE;
1771 context_stack = (struct context_stack *)
1772 xmalloc (context_stack_size * sizeof (struct context_stack));
1773 }
1774
1775 /* Ensure the really_free_pendings cleanup was called after
1776 the last time. */
1777 gdb_assert (free_pendings == NULL);
1778 gdb_assert (pending_blocks == NULL);
1779 gdb_assert (file_symbols == NULL);
1780 gdb_assert (global_symbols == NULL);
22cee43f 1781 gdb_assert (global_using_directives == NULL);
0ab9ce85
DE
1782 gdb_assert (pending_macros == NULL);
1783 gdb_assert (pending_addrmap == NULL);
1784 gdb_assert (buildsym_compunit == NULL);
c906108c
SS
1785}
1786
1787/* Initialize anything that needs initializing when a completely new
1788 symbol file is specified (not just adding some symbols from another
1789 file, e.g. a shared library). */
1790
1791void
fba45db2 1792buildsym_new_init (void)
c906108c
SS
1793{
1794 buildsym_init ();
1795}
This page took 1.537172 seconds and 4 git commands to generate.