]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/buildsym.c
Remove cleanup from print_mention_exception
[thirdparty/binutils-gdb.git] / gdb / buildsym.c
CommitLineData
c906108c 1/* Support routines for building symbol tables in GDB's internal format.
e2882c85 2 Copyright (C) 1986-2018 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 ();
33c7c59d 29 scoped_free_pendings free_pending;
0ab9ce85
DE
30 cust = start_symtab (...);
31 ... read debug info ...
32 cust = end_symtab (...);
0ab9ce85
DE
33
34 The compunit symtab pointer ("cust") is returned from both start_symtab
35 and end_symtab to simplify the debug info readers.
36
37 There are minor variations on this, e.g., dwarf2read.c splits end_symtab
38 into two calls: end_symtab_get_static_block, end_symtab_from_static_block,
39 but all debug info readers follow this basic flow.
40
41 Reading DWARF Type Units is another variation:
42
43 buildsym_init ();
33c7c59d 44 scoped_free_pendings free_pending;
0ab9ce85
DE
45 cust = start_symtab (...);
46 ... read debug info ...
47 cust = end_expandable_symtab (...);
0ab9ce85
DE
48
49 And then reading subsequent Type Units within the containing "Comp Unit"
50 will use a second flow:
51
52 buildsym_init ();
33c7c59d 53 scoped_free_pendings free_pending;
0ab9ce85
DE
54 cust = restart_symtab (...);
55 ... read debug info ...
56 cust = augment_type_symtab (...);
0ab9ce85
DE
57
58 dbxread.c and xcoffread.c use another variation:
59
60 buildsym_init ();
33c7c59d 61 scoped_free_pendings free_pending;
0ab9ce85
DE
62 cust = start_symtab (...);
63 ... read debug info ...
64 cust = end_symtab (...);
65 ... start_symtab + read + end_symtab repeated ...
0ab9ce85 66*/
c906108c
SS
67
68#include "defs.h"
69#include "bfd.h"
04ea0df1 70#include "gdb_obstack.h"
c906108c 71#include "symtab.h"
72367fb4 72#include "symfile.h"
c906108c
SS
73#include "objfiles.h"
74#include "gdbtypes.h"
75#include "complaints.h"
4a64f543 76#include "expression.h" /* For "enum exp_opcode" used by... */
357e46e7 77#include "bcache.h"
4a64f543 78#include "filenames.h" /* For DOSish file names. */
99d9066e 79#include "macrotab.h"
261397f8 80#include "demangle.h" /* Needed by SYMBOL_INIT_DEMANGLED_NAME. */
fe898f56 81#include "block.h"
9219021c 82#include "cp-support.h"
de4f826b 83#include "dictionary.h"
801e3a5b 84#include "addrmap.h"
b05628f0 85#include <algorithm>
9219021c 86
c906108c 87/* Ask buildsym.h to define the vars it normally declares `extern'. */
c5aa993b
JM
88#define EXTERN
89/**/
4a64f543 90#include "buildsym.h" /* Our own declarations. */
c906108c
SS
91#undef EXTERN
92
0a0edcd5 93/* For cleanup_undefined_stabs_types and finish_global_stabs (somewhat
c906108c
SS
94 questionable--see comment where we call them). */
95
96#include "stabsread.h"
97
43f3e411
DE
98/* Buildsym's counterpart to struct compunit_symtab.
99 TODO(dje): Move all related global state into here. */
4d663531 100
43f3e411
DE
101struct buildsym_compunit
102{
103 /* The objfile we're reading debug info from. */
104 struct objfile *objfile;
105
106 /* List of subfiles (source files).
107 Files are added to the front of the list.
108 This is important mostly for the language determination hacks we use,
109 which iterate over previously added files. */
110 struct subfile *subfiles;
111
112 /* The subfile of the main source file. */
113 struct subfile *main_subfile;
4d663531 114
43f3e411
DE
115 /* E.g., DW_AT_comp_dir if DWARF. Space for this is malloc'd. */
116 char *comp_dir;
4d663531 117
43f3e411
DE
118 /* Space for this is not malloc'd, and is assumed to have at least
119 the same lifetime as objfile. */
120 const char *producer;
4d663531 121
43f3e411
DE
122 /* Space for this is not malloc'd, and is assumed to have at least
123 the same lifetime as objfile. */
124 const char *debugformat;
94d09e04 125
43f3e411
DE
126 /* The compunit we are building. */
127 struct compunit_symtab *compunit_symtab;
5ffa0793
PA
128
129 /* Language of this compunit_symtab. */
130 enum language language;
43f3e411 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 {
8d749320 235 link = XNEW (struct pending);
c906108c
SS
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
33c7c59d
TT
271/* At end of reading syms, or in case of quit, ensure everything
272 associated with building symtabs is freed.
0ab9ce85
DE
273
274 N.B. This is *not* intended to be used when building psymtabs. Some debug
275 info readers call this anyway, which is harmless if confusing. */
c906108c 276
33c7c59d 277scoped_free_pendings::~scoped_free_pendings ()
c906108c
SS
278{
279 struct pending *next, *next1;
280
281 for (next = free_pendings; next; next = next1)
282 {
283 next1 = next->next;
b8c9b27d 284 xfree ((void *) next);
c906108c
SS
285 }
286 free_pendings = NULL;
287
288 free_pending_blocks ();
289
290 for (next = file_symbols; next != NULL; next = next1)
291 {
292 next1 = next->next;
b8c9b27d 293 xfree ((void *) next);
c906108c
SS
294 }
295 file_symbols = NULL;
296
297 for (next = global_symbols; next != NULL; next = next1)
298 {
299 next1 = next->next;
b8c9b27d 300 xfree ((void *) next);
c906108c
SS
301 }
302 global_symbols = NULL;
99d9066e
JB
303
304 if (pending_macros)
305 free_macro_table (pending_macros);
0ab9ce85 306 pending_macros = NULL;
801e3a5b
JB
307
308 if (pending_addrmap)
0ab9ce85
DE
309 obstack_free (&pending_addrmap_obstack, NULL);
310 pending_addrmap = NULL;
311
312 free_buildsym_compunit ();
c906108c
SS
313}
314
4a64f543 315/* This function is called to discard any pending blocks. */
c906108c
SS
316
317void
318free_pending_blocks (void)
319{
93eed41f
TT
320 if (pending_blocks != NULL)
321 {
322 obstack_free (&pending_block_obstack, NULL);
323 pending_blocks = NULL;
324 }
c906108c
SS
325}
326
327/* Take one of the lists of symbols and make a block from it. Keep
328 the order the symbols have in the list (reversed from the input
329 file). Put the block on the list of pending blocks. */
330
84a146c9 331static struct block *
63e43d3a
PMR
332finish_block_internal (struct symbol *symbol,
333 struct pending **listhead,
84a146c9 334 struct pending_block *old_blocks,
63e43d3a 335 const struct dynamic_prop *static_link,
84a146c9 336 CORE_ADDR start, CORE_ADDR end,
6d30eef8 337 int is_global, int expandable)
c906108c 338{
43f3e411 339 struct objfile *objfile = buildsym_compunit->objfile;
5af949e3 340 struct gdbarch *gdbarch = get_objfile_arch (objfile);
52f0bd74
AC
341 struct pending *next, *next1;
342 struct block *block;
343 struct pending_block *pblock;
c906108c 344 struct pending_block *opblock;
c906108c 345
84a146c9
TT
346 block = (is_global
347 ? allocate_global_block (&objfile->objfile_obstack)
348 : allocate_block (&objfile->objfile_obstack));
c906108c 349
261397f8
DJ
350 if (symbol)
351 {
5ffa0793
PA
352 BLOCK_DICT (block)
353 = dict_create_linear (&objfile->objfile_obstack,
354 buildsym_compunit->language, *listhead);
261397f8
DJ
355 }
356 else
c906108c 357 {
6d30eef8
DE
358 if (expandable)
359 {
5ffa0793
PA
360 BLOCK_DICT (block)
361 = dict_create_hashed_expandable (buildsym_compunit->language);
6d30eef8
DE
362 dict_add_pending (BLOCK_DICT (block), *listhead);
363 }
364 else
365 {
366 BLOCK_DICT (block) =
5ffa0793
PA
367 dict_create_hashed (&objfile->objfile_obstack,
368 buildsym_compunit->language, *listhead);
6d30eef8 369 }
c906108c
SS
370 }
371
372 BLOCK_START (block) = start;
373 BLOCK_END (block) = end;
c906108c 374
c906108c
SS
375 /* Put the block in as the value of the symbol that names it. */
376
377 if (symbol)
378 {
379 struct type *ftype = SYMBOL_TYPE (symbol);
de4f826b 380 struct dict_iterator iter;
c906108c
SS
381 SYMBOL_BLOCK_VALUE (symbol) = block;
382 BLOCK_FUNCTION (block) = symbol;
383
384 if (TYPE_NFIELDS (ftype) <= 0)
385 {
386 /* No parameter type information is recorded with the
387 function's type. Set that from the type of the
4a64f543 388 parameter symbols. */
c906108c
SS
389 int nparams = 0, iparams;
390 struct symbol *sym;
8157b174
TT
391
392 /* Here we want to directly access the dictionary, because
393 we haven't fully initialized the block yet. */
394 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
c906108c 395 {
2a2d4dc3
AS
396 if (SYMBOL_IS_ARGUMENT (sym))
397 nparams++;
c906108c
SS
398 }
399 if (nparams > 0)
400 {
401 TYPE_NFIELDS (ftype) = nparams;
402 TYPE_FIELDS (ftype) = (struct field *)
403 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
404
de4f826b 405 iparams = 0;
8157b174
TT
406 /* Here we want to directly access the dictionary, because
407 we haven't fully initialized the block yet. */
408 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
c906108c 409 {
de4f826b
DC
410 if (iparams == nparams)
411 break;
412
2a2d4dc3 413 if (SYMBOL_IS_ARGUMENT (sym))
c906108c 414 {
c906108c 415 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
8176bb6d 416 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
c906108c 417 iparams++;
c906108c
SS
418 }
419 }
420 }
421 }
422 }
423 else
424 {
425 BLOCK_FUNCTION (block) = NULL;
426 }
427
63e43d3a
PMR
428 if (static_link != NULL)
429 objfile_register_static_link (objfile, block, static_link);
430
c906108c
SS
431 /* Now "free" the links of the list, and empty the list. */
432
433 for (next = *listhead; next; next = next1)
434 {
435 next1 = next->next;
436 next->next = free_pendings;
437 free_pendings = next;
438 }
439 *listhead = NULL;
440
c906108c 441 /* Check to be sure that the blocks have an end address that is
4a64f543 442 greater than starting address. */
c906108c
SS
443
444 if (BLOCK_END (block) < BLOCK_START (block))
445 {
446 if (symbol)
447 {
23136709 448 complaint (&symfile_complaints,
3e43a32a
MS
449 _("block end address less than block "
450 "start address in %s (patched it)"),
de5ad195 451 SYMBOL_PRINT_NAME (symbol));
c906108c
SS
452 }
453 else
454 {
23136709 455 complaint (&symfile_complaints,
3e43a32a
MS
456 _("block end address %s less than block "
457 "start address %s (patched it)"),
5af949e3
UW
458 paddress (gdbarch, BLOCK_END (block)),
459 paddress (gdbarch, BLOCK_START (block)));
c906108c 460 }
4a64f543 461 /* Better than nothing. */
c906108c
SS
462 BLOCK_END (block) = BLOCK_START (block);
463 }
c906108c
SS
464
465 /* Install this block as the superblock of all blocks made since the
466 start of this scope that don't have superblocks yet. */
467
468 opblock = NULL;
c0219d42
MS
469 for (pblock = pending_blocks;
470 pblock && pblock != old_blocks;
471 pblock = pblock->next)
c906108c
SS
472 {
473 if (BLOCK_SUPERBLOCK (pblock->block) == NULL)
474 {
c906108c 475 /* Check to be sure the blocks are nested as we receive
4a64f543 476 them. If the compiler/assembler/linker work, this just
14711c82
DJ
477 burns a small amount of time.
478
479 Skip blocks which correspond to a function; they're not
480 physically nested inside this other blocks, only
481 lexically nested. */
482 if (BLOCK_FUNCTION (pblock->block) == NULL
483 && (BLOCK_START (pblock->block) < BLOCK_START (block)
484 || BLOCK_END (pblock->block) > BLOCK_END (block)))
c906108c
SS
485 {
486 if (symbol)
487 {
23136709 488 complaint (&symfile_complaints,
3d263c1d 489 _("inner block not inside outer block in %s"),
de5ad195 490 SYMBOL_PRINT_NAME (symbol));
c906108c
SS
491 }
492 else
493 {
23136709 494 complaint (&symfile_complaints,
3e43a32a
MS
495 _("inner block (%s-%s) not "
496 "inside outer block (%s-%s)"),
5af949e3
UW
497 paddress (gdbarch, BLOCK_START (pblock->block)),
498 paddress (gdbarch, BLOCK_END (pblock->block)),
499 paddress (gdbarch, BLOCK_START (block)),
500 paddress (gdbarch, BLOCK_END (block)));
c906108c
SS
501 }
502 if (BLOCK_START (pblock->block) < BLOCK_START (block))
503 BLOCK_START (pblock->block) = BLOCK_START (block);
504 if (BLOCK_END (pblock->block) > BLOCK_END (block))
505 BLOCK_END (pblock->block) = BLOCK_END (block);
506 }
c906108c
SS
507 BLOCK_SUPERBLOCK (pblock->block) = block;
508 }
509 opblock = pblock;
510 }
511
22cee43f
PMR
512 block_set_using (block,
513 (is_global
514 ? global_using_directives
515 : local_using_directives),
516 &objfile->objfile_obstack);
517 if (is_global)
518 global_using_directives = NULL;
519 else
520 local_using_directives = NULL;
27aa8d6a 521
c906108c 522 record_pending_block (objfile, block, opblock);
801e3a5b
JB
523
524 return block;
c906108c
SS
525}
526
84a146c9 527struct block *
63e43d3a
PMR
528finish_block (struct symbol *symbol,
529 struct pending **listhead,
84a146c9 530 struct pending_block *old_blocks,
63e43d3a 531 const struct dynamic_prop *static_link,
4d663531 532 CORE_ADDR start, CORE_ADDR end)
84a146c9 533{
63e43d3a 534 return finish_block_internal (symbol, listhead, old_blocks, static_link,
4d663531 535 start, end, 0, 0);
84a146c9 536}
de4f826b 537
c906108c
SS
538/* Record BLOCK on the list of all blocks in the file. Put it after
539 OPBLOCK, or at the beginning if opblock is NULL. This puts the
540 block in the list after all its subblocks.
541
4a146b47 542 Allocate the pending block struct in the objfile_obstack to save
c906108c
SS
543 time. This wastes a little space. FIXME: Is it worth it? */
544
0b49e518 545static void
c906108c
SS
546record_pending_block (struct objfile *objfile, struct block *block,
547 struct pending_block *opblock)
548{
52f0bd74 549 struct pending_block *pblock;
c906108c 550
93eed41f
TT
551 if (pending_blocks == NULL)
552 obstack_init (&pending_block_obstack);
553
8d749320 554 pblock = XOBNEW (&pending_block_obstack, 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 707
8d749320 708 subfile = XNEW (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 *
5ffa0793
PA
772start_buildsym_compunit (struct objfile *objfile, const char *comp_dir,
773 enum language language)
43f3e411
DE
774{
775 struct buildsym_compunit *bscu;
776
8d749320 777 bscu = XNEW (struct buildsym_compunit);
43f3e411
DE
778 memset (bscu, 0, sizeof (struct buildsym_compunit));
779
780 bscu->objfile = objfile;
781 bscu->comp_dir = (comp_dir == NULL) ? NULL : xstrdup (comp_dir);
5ffa0793 782 bscu->language = language;
43f3e411
DE
783
784 /* Initialize the debug format string to NULL. We may supply it
785 later via a call to record_debugformat. */
786 bscu->debugformat = NULL;
787
788 /* Similarly for the producer. */
789 bscu->producer = NULL;
790
791 return bscu;
792}
793
794/* Delete the buildsym compunit. */
7bab9b58
DE
795
796static void
43f3e411 797free_buildsym_compunit (void)
7bab9b58
DE
798{
799 struct subfile *subfile, *nextsub;
800
43f3e411
DE
801 if (buildsym_compunit == NULL)
802 return;
803 for (subfile = buildsym_compunit->subfiles;
804 subfile != NULL;
805 subfile = nextsub)
7bab9b58
DE
806 {
807 nextsub = subfile->next;
808 xfree (subfile->name);
7bab9b58
DE
809 xfree (subfile->line_vector);
810 xfree (subfile);
811 }
43f3e411
DE
812 xfree (buildsym_compunit->comp_dir);
813 xfree (buildsym_compunit);
814 buildsym_compunit = NULL;
0ab9ce85 815 current_subfile = NULL;
7bab9b58
DE
816}
817
c906108c
SS
818/* For stabs readers, the first N_SO symbol is assumed to be the
819 source file name, and the subfile struct is initialized using that
820 assumption. If another N_SO symbol is later seen, immediately
821 following the first one, then the first one is assumed to be the
822 directory name and the second one is really the source file name.
823
824 So we have to patch up the subfile struct by moving the old name
825 value to dirname and remembering the new name. Some sanity
826 checking is performed to ensure that the state of the subfile
827 struct is reasonable and that the old name we are assuming to be a
4a64f543 828 directory name actually is (by checking for a trailing '/'). */
c906108c
SS
829
830void
a121b7c1 831patch_subfile_names (struct subfile *subfile, const char *name)
c906108c 832{
43f3e411
DE
833 if (subfile != NULL
834 && buildsym_compunit->comp_dir == NULL
835 && subfile->name != NULL
0ba1096a 836 && IS_DIR_SEPARATOR (subfile->name[strlen (subfile->name) - 1]))
c906108c 837 {
43f3e411 838 buildsym_compunit->comp_dir = subfile->name;
1b36a34b 839 subfile->name = xstrdup (name);
46212e0b 840 set_last_source_file (name);
c906108c
SS
841
842 /* Default the source language to whatever can be deduced from
843 the filename. If nothing can be deduced (such as for a C/C++
844 include file with a ".h" extension), then inherit whatever
845 language the previous subfile had. This kludgery is
846 necessary because there is no standard way in some object
847 formats to record the source language. Also, when symtabs
848 are allocated we try to deduce a language then as well, but
849 it is too late for us to use that information while reading
850 symbols, since symtabs aren't allocated until after all the
4a64f543 851 symbols have been processed for a given source file. */
c906108c
SS
852
853 subfile->language = deduce_language_from_filename (subfile->name);
5aafa1cc
PM
854 if (subfile->language == language_unknown
855 && subfile->next != NULL)
c906108c
SS
856 {
857 subfile->language = subfile->next->language;
858 }
859 }
860}
861\f
862/* Handle the N_BINCL and N_EINCL symbol types that act like N_SOL for
863 switching source files (different subfiles, as we call them) within
864 one object file, but using a stack rather than in an arbitrary
865 order. */
866
867void
868push_subfile (void)
869{
8d749320 870 struct subfile_stack *tem = XNEW (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
33c7c59d 1033 a symtab, or by the scoped_free_pendings destructor. */
0ab9ce85
DE
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
5ffa0793
PA
1047 NAME is the name of the file (cannot be NULL). COMP_DIR is the
1048 directory in which the file was compiled (or NULL if not known).
1049 START_ADDR is the lowest address of objects in the file (or 0 if
1050 not known). LANGUAGE is the language of the source file, or
1051 language_unknown if not known, in which case it'll be deduced from
1052 the filename. */
c906108c 1053
43f3e411 1054struct compunit_symtab *
4d663531 1055start_symtab (struct objfile *objfile, const char *name, const char *comp_dir,
5ffa0793 1056 CORE_ADDR start_addr, enum language language)
c906108c 1057{
0ab9ce85 1058 prepare_for_building (name, start_addr);
43f3e411 1059
5ffa0793 1060 buildsym_compunit = start_buildsym_compunit (objfile, comp_dir, language);
43f3e411 1061
0ab9ce85 1062 /* Allocate the compunit symtab now. The caller needs it to allocate
43f3e411
DE
1063 non-primary symtabs. It is also needed by get_macro_table. */
1064 buildsym_compunit->compunit_symtab = allocate_compunit_symtab (objfile,
1065 name);
1066
1067 /* Build the subfile for NAME (the main source file) so that we can record
1068 a pointer to it for later.
1069 IMPORTANT: Do not allocate a struct symtab for NAME here.
1070 It can happen that the debug info provides a different path to NAME than
1071 DIRNAME,NAME. We cope with this in watch_main_source_file_lossage but
1072 that only works if the main_subfile doesn't have a symtab yet. */
4d663531 1073 start_subfile (name);
7bab9b58
DE
1074 /* Save this so that we don't have to go looking for it at the end
1075 of the subfiles list. */
43f3e411
DE
1076 buildsym_compunit->main_subfile = current_subfile;
1077
43f3e411 1078 return buildsym_compunit->compunit_symtab;
6d30eef8
DE
1079}
1080
1081/* Restart compilation for a symtab.
0ab9ce85
DE
1082 CUST is the result of end_expandable_symtab.
1083 NAME, START_ADDR are the source file we are resuming with.
1084
6d30eef8 1085 This is used when a symtab is built from multiple sources.
0ab9ce85
DE
1086 The symtab is first built with start_symtab/end_expandable_symtab
1087 and then for each additional piece call restart_symtab/augment_*_symtab.
1088 Note: At the moment there is only augment_type_symtab. */
6d30eef8
DE
1089
1090void
0ab9ce85
DE
1091restart_symtab (struct compunit_symtab *cust,
1092 const char *name, CORE_ADDR start_addr)
6d30eef8 1093{
0ab9ce85 1094 prepare_for_building (name, start_addr);
c906108c 1095
0ab9ce85 1096 buildsym_compunit = start_buildsym_compunit (COMPUNIT_OBJFILE (cust),
5ffa0793
PA
1097 COMPUNIT_DIRNAME (cust),
1098 compunit_language (cust));
0ab9ce85 1099 buildsym_compunit->compunit_symtab = cust;
c906108c
SS
1100}
1101
4a64f543
MS
1102/* Subroutine of end_symtab to simplify it. Look for a subfile that
1103 matches the main source file's basename. If there is only one, and
1104 if the main source file doesn't have any symbol or line number
1105 information, then copy this file's symtab and line_vector to the
1106 main source file's subfile and discard the other subfile. This can
1107 happen because of a compiler bug or from the user playing games
1108 with #line or from things like a distributed build system that
43f3e411
DE
1109 manipulates the debug info. This can also happen from an innocent
1110 symlink in the paths, we don't canonicalize paths here. */
4584e32e
DE
1111
1112static void
1113watch_main_source_file_lossage (void)
1114{
43f3e411 1115 struct subfile *mainsub, *subfile;
4584e32e 1116
43f3e411 1117 /* We have to watch for buildsym_compunit == NULL here. It's a quirk of
7bab9b58 1118 end_symtab, it can return NULL so there may not be a main subfile. */
43f3e411 1119 if (buildsym_compunit == NULL)
7bab9b58 1120 return;
4584e32e 1121
43f3e411
DE
1122 /* Get the main source file. */
1123 mainsub = buildsym_compunit->main_subfile;
1124
4a64f543 1125 /* If the main source file doesn't have any line number or symbol
7bab9b58 1126 info, look for an alias in another subfile. */
4584e32e 1127
43f3e411
DE
1128 if (mainsub->line_vector == NULL
1129 && mainsub->symtab == NULL)
4584e32e 1130 {
43f3e411 1131 const char *mainbase = lbasename (mainsub->name);
4584e32e
DE
1132 int nr_matches = 0;
1133 struct subfile *prevsub;
1134 struct subfile *mainsub_alias = NULL;
1135 struct subfile *prev_mainsub_alias = NULL;
1136
1137 prevsub = NULL;
43f3e411
DE
1138 for (subfile = buildsym_compunit->subfiles;
1139 subfile != NULL;
4584e32e
DE
1140 subfile = subfile->next)
1141 {
43f3e411
DE
1142 if (subfile == mainsub)
1143 continue;
0ba1096a 1144 if (filename_cmp (lbasename (subfile->name), mainbase) == 0)
4584e32e
DE
1145 {
1146 ++nr_matches;
1147 mainsub_alias = subfile;
1148 prev_mainsub_alias = prevsub;
1149 }
1150 prevsub = subfile;
1151 }
1152
1153 if (nr_matches == 1)
1154 {
43f3e411 1155 gdb_assert (mainsub_alias != NULL && mainsub_alias != mainsub);
4584e32e
DE
1156
1157 /* Found a match for the main source file.
1158 Copy its line_vector and symtab to the main subfile
1159 and then discard it. */
1160
43f3e411
DE
1161 mainsub->line_vector = mainsub_alias->line_vector;
1162 mainsub->line_vector_length = mainsub_alias->line_vector_length;
1163 mainsub->symtab = mainsub_alias->symtab;
4584e32e
DE
1164
1165 if (prev_mainsub_alias == NULL)
43f3e411 1166 buildsym_compunit->subfiles = mainsub_alias->next;
4584e32e
DE
1167 else
1168 prev_mainsub_alias->next = mainsub_alias->next;
98387a29 1169 xfree (mainsub_alias->name);
4584e32e
DE
1170 xfree (mainsub_alias);
1171 }
1172 }
1173}
1174
0ab9ce85
DE
1175/* Reset state after a successful building of a symtab.
1176 This exists because dbxread.c and xcoffread.c can call
1177 start_symtab+end_symtab multiple times after one call to buildsym_init,
33c7c59d 1178 and before the scoped_free_pendings destructor is called.
0ab9ce85 1179 We keep the free_pendings list around for dbx/xcoff sake. */
6d30eef8
DE
1180
1181static void
1182reset_symtab_globals (void)
1183{
46212e0b 1184 set_last_source_file (NULL);
0ab9ce85
DE
1185
1186 local_symbols = NULL;
22cee43f 1187 local_using_directives = NULL;
0ab9ce85
DE
1188 file_symbols = NULL;
1189 global_symbols = NULL;
22cee43f 1190 global_using_directives = NULL;
0ab9ce85
DE
1191
1192 /* We don't free pending_macros here because if the symtab was successfully
1193 built then ownership was transferred to the symtab. */
6d30eef8 1194 pending_macros = NULL;
0ab9ce85 1195
6d30eef8 1196 if (pending_addrmap)
0ab9ce85
DE
1197 obstack_free (&pending_addrmap_obstack, NULL);
1198 pending_addrmap = NULL;
1199
1200 free_buildsym_compunit ();
6d30eef8
DE
1201}
1202
4359dff1
JK
1203/* Implementation of the first part of end_symtab. It allows modifying
1204 STATIC_BLOCK before it gets finalized by end_symtab_from_static_block.
1205 If the returned value is NULL there is no blockvector created for
1206 this symtab (you still must call end_symtab_from_static_block).
c906108c 1207
4359dff1
JK
1208 END_ADDR is the same as for end_symtab: the address of the end of the
1209 file's text.
c906108c 1210
4359dff1 1211 If EXPANDABLE is non-zero the STATIC_BLOCK dictionary is made
36586728
TT
1212 expandable.
1213
1214 If REQUIRED is non-zero, then a symtab is created even if it does
1215 not contain any symbols. */
6d30eef8 1216
4359dff1 1217struct block *
4d663531 1218end_symtab_get_static_block (CORE_ADDR end_addr, int expandable, int required)
c906108c 1219{
43f3e411 1220 struct objfile *objfile = buildsym_compunit->objfile;
4d663531 1221
c906108c
SS
1222 /* Finish the lexical context of the last function in the file; pop
1223 the context stack. */
1224
1225 if (context_stack_depth > 0)
1226 {
4359dff1
JK
1227 struct context_stack *cstk = pop_context ();
1228
c906108c 1229 /* Make a block for the local symbols within. */
63e43d3a 1230 finish_block (cstk->name, &local_symbols, cstk->old_blocks, NULL,
4d663531 1231 cstk->start_addr, end_addr);
c906108c
SS
1232
1233 if (context_stack_depth > 0)
1234 {
1235 /* This is said to happen with SCO. The old coffread.c
1236 code simply emptied the context stack, so we do the
1237 same. FIXME: Find out why it is happening. This is not
1238 believed to happen in most cases (even for coffread.c);
1239 it used to be an abort(). */
23136709 1240 complaint (&symfile_complaints,
3d263c1d 1241 _("Context stack not empty in end_symtab"));
c906108c
SS
1242 context_stack_depth = 0;
1243 }
1244 }
1245
1246 /* Reordered executables may have out of order pending blocks; if
1247 OBJF_REORDERED is true, then sort the pending blocks. */
6d30eef8 1248
c906108c
SS
1249 if ((objfile->flags & OBJF_REORDERED) && pending_blocks)
1250 {
07e7f39f 1251 struct pending_block *pb;
c906108c 1252
b05628f0 1253 std::vector<block *> barray;
c906108c 1254
07e7f39f 1255 for (pb = pending_blocks; pb != NULL; pb = pb->next)
b05628f0 1256 barray.push_back (pb->block);
07e7f39f 1257
5033013f
UW
1258 /* Sort blocks by start address in descending order. Blocks with the
1259 same start address must remain in the original order to preserve
1260 inline function caller/callee relationships. */
1261 std::stable_sort (barray.begin (), barray.end (),
1262 [] (const block *a, const block *b)
1263 {
1264 return BLOCK_START (a) > BLOCK_START (b);
1265 });
07e7f39f 1266
b05628f0 1267 int i = 0;
07e7f39f 1268 for (pb = pending_blocks; pb != NULL; pb = pb->next)
b05628f0 1269 pb->block = barray[i++];
c906108c
SS
1270 }
1271
1272 /* Cleanup any undefined types that have been left hanging around
1273 (this needs to be done before the finish_blocks so that
1274 file_symbols is still good).
c5aa993b 1275
0a0edcd5 1276 Both cleanup_undefined_stabs_types and finish_global_stabs are stabs
c906108c
SS
1277 specific, but harmless for other symbol readers, since on gdb
1278 startup or when finished reading stabs, the state is set so these
1279 are no-ops. FIXME: Is this handled right in case of QUIT? Can
1280 we make this cleaner? */
1281
0a0edcd5 1282 cleanup_undefined_stabs_types (objfile);
c906108c
SS
1283 finish_global_stabs (objfile);
1284
36586728
TT
1285 if (!required
1286 && pending_blocks == NULL
c906108c
SS
1287 && file_symbols == NULL
1288 && global_symbols == NULL
99d9066e 1289 && have_line_numbers == 0
22cee43f
PMR
1290 && pending_macros == NULL
1291 && global_using_directives == NULL)
c906108c 1292 {
4359dff1
JK
1293 /* Ignore symtabs that have no functions with real debugging info. */
1294 return NULL;
1295 }
1296 else
1297 {
1298 /* Define the STATIC_BLOCK. */
63e43d3a 1299 return finish_block_internal (NULL, &file_symbols, NULL, NULL,
4d663531 1300 last_source_start_addr, end_addr,
4359dff1
JK
1301 0, expandable);
1302 }
1303}
1304
7bab9b58
DE
1305/* Subroutine of end_symtab_from_static_block to simplify it.
1306 Handle the "have blockvector" case.
1307 See end_symtab_from_static_block for a description of the arguments. */
1308
43f3e411 1309static struct compunit_symtab *
7bab9b58 1310end_symtab_with_blockvector (struct block *static_block,
4d663531 1311 int section, int expandable)
4359dff1 1312{
43f3e411
DE
1313 struct objfile *objfile = buildsym_compunit->objfile;
1314 struct compunit_symtab *cu = buildsym_compunit->compunit_symtab;
7bab9b58 1315 struct symtab *symtab;
4359dff1
JK
1316 struct blockvector *blockvector;
1317 struct subfile *subfile;
7bab9b58 1318 CORE_ADDR end_addr;
4359dff1 1319
7bab9b58 1320 gdb_assert (static_block != NULL);
43f3e411
DE
1321 gdb_assert (buildsym_compunit != NULL);
1322 gdb_assert (buildsym_compunit->subfiles != NULL);
7bab9b58
DE
1323
1324 end_addr = BLOCK_END (static_block);
1325
1326 /* Create the GLOBAL_BLOCK and build the blockvector. */
63e43d3a 1327 finish_block_internal (NULL, &global_symbols, NULL, NULL,
4d663531 1328 last_source_start_addr, end_addr,
7bab9b58 1329 1, expandable);
43f3e411 1330 blockvector = make_blockvector ();
c906108c 1331
f56ce883
DE
1332 /* Read the line table if it has to be read separately.
1333 This is only used by xcoffread.c. */
c295b2e5 1334 if (objfile->sf->sym_read_linetable != NULL)
f56ce883 1335 objfile->sf->sym_read_linetable (objfile);
c906108c 1336
4584e32e
DE
1337 /* Handle the case where the debug info specifies a different path
1338 for the main source file. It can cause us to lose track of its
1339 line number information. */
1340 watch_main_source_file_lossage ();
1341
43f3e411
DE
1342 /* Now create the symtab objects proper, if not already done,
1343 one for each subfile. */
c906108c 1344
43f3e411
DE
1345 for (subfile = buildsym_compunit->subfiles;
1346 subfile != NULL;
1347 subfile = subfile->next)
c906108c
SS
1348 {
1349 int linetablesize = 0;
c906108c 1350
7bab9b58 1351 if (subfile->line_vector)
c906108c 1352 {
7bab9b58
DE
1353 linetablesize = sizeof (struct linetable) +
1354 subfile->line_vector->nitems * sizeof (struct linetable_entry);
1355
1356 /* Like the pending blocks, the line table may be
1357 scrambled in reordered executables. Sort it if
1358 OBJF_REORDERED is true. */
1359 if (objfile->flags & OBJF_REORDERED)
1360 qsort (subfile->line_vector->item,
1361 subfile->line_vector->nitems,
1362 sizeof (struct linetable_entry), compare_line_numbers);
1363 }
9182c5bc 1364
7bab9b58
DE
1365 /* Allocate a symbol table if necessary. */
1366 if (subfile->symtab == NULL)
43f3e411 1367 subfile->symtab = allocate_symtab (cu, subfile->name);
7bab9b58 1368 symtab = subfile->symtab;
9182c5bc 1369
7bab9b58 1370 /* Fill in its components. */
43f3e411 1371
7bab9b58
DE
1372 if (subfile->line_vector)
1373 {
1374 /* Reallocate the line table on the symbol obstack. */
8435453b 1375 SYMTAB_LINETABLE (symtab) = (struct linetable *)
7bab9b58 1376 obstack_alloc (&objfile->objfile_obstack, linetablesize);
8435453b
DE
1377 memcpy (SYMTAB_LINETABLE (symtab), subfile->line_vector,
1378 linetablesize);
c906108c 1379 }
24be086d 1380 else
c906108c 1381 {
8435453b 1382 SYMTAB_LINETABLE (symtab) = NULL;
c906108c 1383 }
c906108c 1384
7bab9b58
DE
1385 /* Use whatever language we have been using for this
1386 subfile, not the one that was deduced in allocate_symtab
1387 from the filename. We already did our own deducing when
1388 we created the subfile, and we may have altered our
1389 opinion of what language it is from things we found in
1390 the symbols. */
1391 symtab->language = subfile->language;
43f3e411 1392 }
c906108c 1393
43f3e411
DE
1394 /* Make sure the symtab of main_subfile is the first in its list. */
1395 {
1396 struct symtab *main_symtab, *prev_symtab;
1397
1398 main_symtab = buildsym_compunit->main_subfile->symtab;
1399 prev_symtab = NULL;
1400 ALL_COMPUNIT_FILETABS (cu, symtab)
1401 {
1402 if (symtab == main_symtab)
1403 {
1404 if (prev_symtab != NULL)
1405 {
1406 prev_symtab->next = main_symtab->next;
1407 main_symtab->next = COMPUNIT_FILETABS (cu);
1408 COMPUNIT_FILETABS (cu) = main_symtab;
1409 }
1410 break;
1411 }
1412 prev_symtab = symtab;
1413 }
1414 gdb_assert (main_symtab == COMPUNIT_FILETABS (cu));
1415 }
84a146c9 1416
0ab9ce85 1417 /* Fill out the compunit symtab. */
84a146c9 1418
43f3e411
DE
1419 if (buildsym_compunit->comp_dir != NULL)
1420 {
1421 /* Reallocate the dirname on the symbol obstack. */
1422 COMPUNIT_DIRNAME (cu)
224c3ddb
SM
1423 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
1424 buildsym_compunit->comp_dir,
1425 strlen (buildsym_compunit->comp_dir));
c906108c
SS
1426 }
1427
43f3e411
DE
1428 /* Save the debug format string (if any) in the symtab. */
1429 COMPUNIT_DEBUGFORMAT (cu) = buildsym_compunit->debugformat;
1430
1431 /* Similarly for the producer. */
1432 COMPUNIT_PRODUCER (cu) = buildsym_compunit->producer;
1433
1434 COMPUNIT_BLOCKVECTOR (cu) = blockvector;
7bab9b58 1435 {
43f3e411 1436 struct block *b = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
cb1df416 1437
43f3e411 1438 set_block_compunit_symtab (b, cu);
7bab9b58 1439 }
cb1df416 1440
43f3e411
DE
1441 COMPUNIT_BLOCK_LINE_SECTION (cu) = section;
1442
1443 COMPUNIT_MACRO_TABLE (cu) = pending_macros;
1444
7bab9b58
DE
1445 /* Default any symbols without a specified symtab to the primary symtab. */
1446 {
1447 int block_i;
1448
43f3e411
DE
1449 /* The main source file's symtab. */
1450 symtab = COMPUNIT_FILETABS (cu);
1451
7bab9b58
DE
1452 for (block_i = 0; block_i < BLOCKVECTOR_NBLOCKS (blockvector); block_i++)
1453 {
1454 struct block *block = BLOCKVECTOR_BLOCK (blockvector, block_i);
1455 struct symbol *sym;
1456 struct dict_iterator iter;
1457
1458 /* Inlined functions may have symbols not in the global or
1459 static symbol lists. */
1460 if (BLOCK_FUNCTION (block) != NULL)
08be3fe3
DE
1461 if (symbol_symtab (BLOCK_FUNCTION (block)) == NULL)
1462 symbol_set_symtab (BLOCK_FUNCTION (block), symtab);
7bab9b58
DE
1463
1464 /* Note that we only want to fix up symbols from the local
1465 blocks, not blocks coming from included symtabs. That is why
1466 we use ALL_DICT_SYMBOLS here and not ALL_BLOCK_SYMBOLS. */
1467 ALL_DICT_SYMBOLS (BLOCK_DICT (block), iter, sym)
08be3fe3
DE
1468 if (symbol_symtab (sym) == NULL)
1469 symbol_set_symtab (sym, symtab);
7bab9b58
DE
1470 }
1471 }
edb3359d 1472
43f3e411 1473 add_compunit_symtab_to_objfile (cu);
43f3e411
DE
1474
1475 return cu;
7bab9b58
DE
1476}
1477
1478/* Implementation of the second part of end_symtab. Pass STATIC_BLOCK
1479 as value returned by end_symtab_get_static_block.
1480
1481 SECTION is the same as for end_symtab: the section number
1482 (in objfile->section_offsets) of the blockvector and linetable.
1483
1484 If EXPANDABLE is non-zero the GLOBAL_BLOCK dictionary is made
1485 expandable. */
1486
43f3e411 1487struct compunit_symtab *
7bab9b58 1488end_symtab_from_static_block (struct block *static_block,
4d663531 1489 int section, int expandable)
7bab9b58 1490{
43f3e411 1491 struct compunit_symtab *cu;
7bab9b58
DE
1492
1493 if (static_block == NULL)
1494 {
0ab9ce85
DE
1495 /* Handle the "no blockvector" case.
1496 When this happens there is nothing to record, so there's nothing
1497 to do: memory will be freed up later.
1498
1499 Note: We won't be adding a compunit to the objfile's list of
1500 compunits, so there's nothing to unchain. However, since each symtab
1501 is added to the objfile's obstack we can't free that space.
1502 We could do better, but this is believed to be a sufficiently rare
1503 event. */
43f3e411 1504 cu = NULL;
7bab9b58
DE
1505 }
1506 else
43f3e411 1507 cu = end_symtab_with_blockvector (static_block, section, expandable);
cb1df416 1508
6d30eef8
DE
1509 reset_symtab_globals ();
1510
43f3e411 1511 return cu;
6d30eef8
DE
1512}
1513
4359dff1
JK
1514/* Finish the symbol definitions for one main source file, close off
1515 all the lexical contexts for that file (creating struct block's for
1516 them), then make the struct symtab for that file and put it in the
1517 list of all such.
1518
1519 END_ADDR is the address of the end of the file's text. SECTION is
1520 the section number (in objfile->section_offsets) of the blockvector
1521 and linetable.
1522
1523 Note that it is possible for end_symtab() to return NULL. In
1524 particular, for the DWARF case at least, it will return NULL when
1525 it finds a compilation unit that has exactly one DIE, a
1526 TAG_compile_unit DIE. This can happen when we link in an object
1527 file that was compiled from an empty source file. Returning NULL
1528 is probably not the correct thing to do, because then gdb will
1529 never know about this empty file (FIXME).
1530
1531 If you need to modify STATIC_BLOCK before it is finalized you should
1532 call end_symtab_get_static_block and end_symtab_from_static_block
1533 yourself. */
6d30eef8 1534
43f3e411 1535struct compunit_symtab *
4d663531 1536end_symtab (CORE_ADDR end_addr, int section)
6d30eef8 1537{
4359dff1
JK
1538 struct block *static_block;
1539
4d663531
DE
1540 static_block = end_symtab_get_static_block (end_addr, 0, 0);
1541 return end_symtab_from_static_block (static_block, section, 0);
6d30eef8
DE
1542}
1543
4359dff1 1544/* Same as end_symtab except create a symtab that can be later added to. */
6d30eef8 1545
43f3e411 1546struct compunit_symtab *
4d663531 1547end_expandable_symtab (CORE_ADDR end_addr, int section)
6d30eef8 1548{
4359dff1
JK
1549 struct block *static_block;
1550
4d663531
DE
1551 static_block = end_symtab_get_static_block (end_addr, 1, 0);
1552 return end_symtab_from_static_block (static_block, section, 1);
6d30eef8
DE
1553}
1554
1555/* Subroutine of augment_type_symtab to simplify it.
43f3e411
DE
1556 Attach the main source file's symtab to all symbols in PENDING_LIST that
1557 don't have one. */
6d30eef8
DE
1558
1559static void
43f3e411
DE
1560set_missing_symtab (struct pending *pending_list,
1561 struct compunit_symtab *cu)
6d30eef8
DE
1562{
1563 struct pending *pending;
1564 int i;
1565
1566 for (pending = pending_list; pending != NULL; pending = pending->next)
801e3a5b 1567 {
6d30eef8
DE
1568 for (i = 0; i < pending->nsyms; ++i)
1569 {
08be3fe3
DE
1570 if (symbol_symtab (pending->symbol[i]) == NULL)
1571 symbol_set_symtab (pending->symbol[i], COMPUNIT_FILETABS (cu));
6d30eef8 1572 }
801e3a5b 1573 }
6d30eef8 1574}
c906108c 1575
6d30eef8
DE
1576/* Same as end_symtab, but for the case where we're adding more symbols
1577 to an existing symtab that is known to contain only type information.
1578 This is the case for DWARF4 Type Units. */
1579
1580void
0ab9ce85 1581augment_type_symtab (void)
6d30eef8 1582{
0ab9ce85 1583 struct compunit_symtab *cust = buildsym_compunit->compunit_symtab;
43f3e411 1584 const struct blockvector *blockvector = COMPUNIT_BLOCKVECTOR (cust);
6d30eef8
DE
1585
1586 if (context_stack_depth > 0)
1587 {
1588 complaint (&symfile_complaints,
1589 _("Context stack not empty in augment_type_symtab"));
1590 context_stack_depth = 0;
1591 }
1592 if (pending_blocks != NULL)
1593 complaint (&symfile_complaints, _("Blocks in a type symtab"));
1594 if (pending_macros != NULL)
1595 complaint (&symfile_complaints, _("Macro in a type symtab"));
1596 if (have_line_numbers)
1597 complaint (&symfile_complaints,
1598 _("Line numbers recorded in a type symtab"));
1599
1600 if (file_symbols != NULL)
1601 {
1602 struct block *block = BLOCKVECTOR_BLOCK (blockvector, STATIC_BLOCK);
1603
1604 /* First mark any symbols without a specified symtab as belonging
1605 to the primary symtab. */
43f3e411 1606 set_missing_symtab (file_symbols, cust);
6d30eef8
DE
1607
1608 dict_add_pending (BLOCK_DICT (block), file_symbols);
1609 }
1610
1611 if (global_symbols != NULL)
1612 {
1613 struct block *block = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
1614
1615 /* First mark any symbols without a specified symtab as belonging
1616 to the primary symtab. */
43f3e411 1617 set_missing_symtab (global_symbols, cust);
6d30eef8
DE
1618
1619 dict_add_pending (BLOCK_DICT (block), global_symbols);
1620 }
1621
1622 reset_symtab_globals ();
c906108c
SS
1623}
1624
1625/* Push a context block. Args are an identifying nesting level
1626 (checkable when you pop it), and the starting PC address of this
1627 context. */
1628
1629struct context_stack *
1630push_context (int desc, CORE_ADDR valu)
1631{
fe978cb0 1632 struct context_stack *newobj;
c906108c
SS
1633
1634 if (context_stack_depth == context_stack_size)
1635 {
1636 context_stack_size *= 2;
1637 context_stack = (struct context_stack *)
1638 xrealloc ((char *) context_stack,
c5aa993b 1639 (context_stack_size * sizeof (struct context_stack)));
c906108c
SS
1640 }
1641
fe978cb0
PA
1642 newobj = &context_stack[context_stack_depth++];
1643 newobj->depth = desc;
1644 newobj->locals = local_symbols;
1645 newobj->old_blocks = pending_blocks;
1646 newobj->start_addr = valu;
22cee43f 1647 newobj->local_using_directives = local_using_directives;
fe978cb0 1648 newobj->name = NULL;
c906108c
SS
1649
1650 local_symbols = NULL;
22cee43f 1651 local_using_directives = NULL;
c906108c 1652
fe978cb0 1653 return newobj;
c906108c 1654}
0c5e171a 1655
a672ef13 1656/* Pop a context block. Returns the address of the context block just
4a64f543 1657 popped. */
a672ef13 1658
0c5e171a
KD
1659struct context_stack *
1660pop_context (void)
1661{
1662 gdb_assert (context_stack_depth > 0);
1663 return (&context_stack[--context_stack_depth]);
1664}
1665
c906108c 1666\f
357e46e7 1667
4a64f543 1668/* Compute a small integer hash code for the given name. */
c906108c
SS
1669
1670int
0d5cff50 1671hashname (const char *name)
c906108c 1672{
357e46e7 1673 return (hash(name,strlen(name)) % HASHSIZE);
c906108c
SS
1674}
1675\f
1676
1677void
554d387d 1678record_debugformat (const char *format)
c906108c 1679{
43f3e411 1680 buildsym_compunit->debugformat = format;
c906108c
SS
1681}
1682
303b6f5d
DJ
1683void
1684record_producer (const char *producer)
1685{
43f3e411 1686 buildsym_compunit->producer = producer;
303b6f5d
DJ
1687}
1688
c906108c
SS
1689/* Merge the first symbol list SRCLIST into the second symbol list
1690 TARGETLIST by repeated calls to add_symbol_to_list(). This
1691 procedure "frees" each link of SRCLIST by adding it to the
1692 free_pendings list. Caller must set SRCLIST to a null list after
1693 calling this function.
1694
4a64f543 1695 Void return. */
c906108c
SS
1696
1697void
1698merge_symbol_lists (struct pending **srclist, struct pending **targetlist)
1699{
52f0bd74 1700 int i;
c906108c
SS
1701
1702 if (!srclist || !*srclist)
1703 return;
1704
1705 /* Merge in elements from current link. */
1706 for (i = 0; i < (*srclist)->nsyms; i++)
1707 add_symbol_to_list ((*srclist)->symbol[i], targetlist);
1708
1709 /* Recurse on next. */
1710 merge_symbol_lists (&(*srclist)->next, targetlist);
1711
1712 /* "Free" the current link. */
1713 (*srclist)->next = free_pendings;
1714 free_pendings = (*srclist);
1715}
1716\f
46212e0b
TT
1717
1718/* Name of source file whose symbol data we are now processing. This
1719 comes from a symbol of type N_SO for stabs. For Dwarf it comes
1720 from the DW_AT_name attribute of a DW_TAG_compile_unit DIE. */
1721
1722static char *last_source_file;
1723
1724/* See buildsym.h. */
1725
1726void
1727set_last_source_file (const char *name)
1728{
1729 xfree (last_source_file);
1730 last_source_file = name == NULL ? NULL : xstrdup (name);
1731}
1732
1733/* See buildsym.h. */
1734
1735const char *
1736get_last_source_file (void)
1737{
1738 return last_source_file;
1739}
1740
1741\f
1742
c906108c
SS
1743/* Initialize anything that needs initializing when starting to read a
1744 fresh piece of a symbol file, e.g. reading in the stuff
1745 corresponding to a psymtab. */
1746
1747void
fba45db2 1748buildsym_init (void)
c906108c 1749{
fc474241 1750 subfile_stack = NULL;
801e3a5b 1751
801e3a5b 1752 pending_addrmap_interesting = 0;
0ab9ce85
DE
1753
1754 /* Context stack is initially empty. Allocate first one with room
1755 for a few levels; reuse it forever afterward. */
1756 if (context_stack == NULL)
1757 {
1758 context_stack_size = INITIAL_CONTEXT_STACK_SIZE;
8d749320 1759 context_stack = XNEWVEC (struct context_stack, context_stack_size);
0ab9ce85
DE
1760 }
1761
33c7c59d 1762 /* Ensure the scoped_free_pendings destructor was called after
0ab9ce85
DE
1763 the last time. */
1764 gdb_assert (free_pendings == NULL);
1765 gdb_assert (pending_blocks == NULL);
1766 gdb_assert (file_symbols == NULL);
1767 gdb_assert (global_symbols == NULL);
22cee43f 1768 gdb_assert (global_using_directives == NULL);
0ab9ce85
DE
1769 gdb_assert (pending_macros == NULL);
1770 gdb_assert (pending_addrmap == NULL);
1771 gdb_assert (buildsym_compunit == NULL);
c906108c
SS
1772}
1773
1774/* Initialize anything that needs initializing when a completely new
1775 symbol file is specified (not just adding some symbols from another
1776 file, e.g. a shared library). */
1777
1778void
fba45db2 1779buildsym_new_init (void)
c906108c
SS
1780{
1781 buildsym_init ();
1782}