* defs.h (STRCMP, STREQ, STREQN): New macros.
[deliverable/binutils-gdb.git] / gdb / symfile.c
CommitLineData
bd5635a1 1/* Generic symbol file reading for the GNU debugger, GDB.
30875e1c 2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
bd5635a1
RP
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5This file is part of GDB.
6
61a7292f 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
61a7292f
SG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
61a7292f 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
61a7292f
SG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1 20
bd5635a1
RP
21#include "defs.h"
22#include "symtab.h"
30875e1c 23#include "gdbtypes.h"
bd5635a1
RP
24#include "gdbcore.h"
25#include "frame.h"
26#include "target.h"
27#include "value.h"
28#include "symfile.h"
bf349b77 29#include "objfiles.h"
bd5635a1
RP
30#include "gdbcmd.h"
31#include "breakpoint.h"
e58de8a2 32#include "language.h"
51b80b00 33#include "complaints.h"
2e4964ad 34#include "demangle.h"
bd5635a1
RP
35
36#include <obstack.h>
37#include <assert.h>
38
39#include <sys/types.h>
40#include <fcntl.h>
41#include <string.h>
42#include <sys/stat.h>
9342ecb9 43#include <ctype.h>
bd5635a1 44
30875e1c
SG
45/* Global variables owned by this file */
46
80d68b1d 47int readnow_symbol_files; /* Read full symbols immediately */
d47d5315 48
51b80b00
FF
49struct complaint oldsyms_complaint = {
50 "Replacing old symbols for `%s'", 0, 0
51};
52
53struct complaint empty_symtab_complaint = {
54 "Empty symbol table found for `%s'", 0, 0
55};
56
30875e1c 57/* External variables and functions referenced. */
bd5635a1 58
30875e1c 59extern int info_verbose;
bd5635a1
RP
60
61/* Functions this file defines */
7d9884b9 62
e58de8a2
FF
63static void
64set_initial_language PARAMS ((void));
65
30875e1c
SG
66static void
67load_command PARAMS ((char *, int));
68
69static void
70add_symbol_file_command PARAMS ((char *, int));
71
30875e1c
SG
72static void
73cashier_psymtab PARAMS ((struct partial_symtab *));
bd5635a1 74
30875e1c
SG
75static int
76compare_psymbols PARAMS ((const void *, const void *));
bd5635a1 77
30875e1c
SG
78static int
79compare_symbols PARAMS ((const void *, const void *));
80
b0246b3b
FF
81static bfd *
82symfile_bfd_open PARAMS ((char *));
30875e1c 83
80d68b1d
FF
84static void
85find_sym_fns PARAMS ((struct objfile *));
30875e1c 86
4ed3a9ea 87void
30875e1c 88clear_symtab_users_once PARAMS ((void));
bd5635a1 89
80d68b1d
FF
90/* List of all available sym_fns. On gdb startup, each object file reader
91 calls add_symtab_fns() to register information on each format it is
92 prepared to read. */
bd5635a1 93
80d68b1d 94static struct sym_fns *symtab_fns = NULL;
bd5635a1 95
bd5635a1
RP
96/* Structures with which to manage partial symbol allocation. */
97
98struct psymbol_allocation_list global_psymbols = {0}, static_psymbols = {0};
99
61a7292f
SG
100/* Flag for whether user will be reloading symbols multiple times.
101 Defaults to ON for VxWorks, otherwise OFF. */
102
103#ifdef SYMBOL_RELOADING_DEFAULT
104int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
105#else
106int symbol_reloading = 0;
107#endif
108
bd5635a1
RP
109\f
110/* In the following sort, we always make sure that
111 register debug symbol declarations always come before regular
112 debug symbol declarations (as might happen when parameters are
30875e1c
SG
113 then put into registers by the compiler).
114
115 Since this function is called from within qsort, in an ANSI environment
116 it must conform to the prototype for qsort, which specifies that the
117 comparison function takes two "void *" pointers. */
bd5635a1
RP
118
119static int
30875e1c
SG
120compare_symbols (s1p, s2p)
121 const PTR s1p;
122 const PTR s2p;
bd5635a1 123{
30875e1c 124 register struct symbol **s1, **s2;
bd5635a1
RP
125 register int namediff;
126
30875e1c
SG
127 s1 = (struct symbol **) s1p;
128 s2 = (struct symbol **) s2p;
129
bd5635a1
RP
130 /* Compare the initial characters. */
131 namediff = SYMBOL_NAME (*s1)[0] - SYMBOL_NAME (*s2)[0];
132 if (namediff != 0) return namediff;
133
134 /* If they match, compare the rest of the names. */
2e4964ad 135 namediff = STRCMP (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2));
bd5635a1
RP
136 if (namediff != 0) return namediff;
137
138 /* For symbols of the same name, registers should come first. */
139 return ((SYMBOL_CLASS (*s2) == LOC_REGISTER)
140 - (SYMBOL_CLASS (*s1) == LOC_REGISTER));
141}
142
30875e1c
SG
143/*
144
145LOCAL FUNCTION
146
147 compare_psymbols -- compare two partial symbols by name
148
149DESCRIPTION
150
151 Given pointer to two partial symbol table entries, compare
152 them by name and return -N, 0, or +N (ala strcmp). Typically
153 used by sorting routines like qsort().
154
155NOTES
156
157 Does direct compare of first two characters before punting
158 and passing to strcmp for longer compares. Note that the
159 original version had a bug whereby two null strings or two
160 identically named one character strings would return the
161 comparison of memory following the null byte.
162
163 */
164
165static int
166compare_psymbols (s1p, s2p)
167 const PTR s1p;
168 const PTR s2p;
169{
170 register char *st1 = SYMBOL_NAME ((struct partial_symbol *) s1p);
171 register char *st2 = SYMBOL_NAME ((struct partial_symbol *) s2p);
172
173 if ((st1[0] - st2[0]) || !st1[0])
174 {
175 return (st1[0] - st2[0]);
176 }
177 else if ((st1[1] - st2[1]) || !st1[1])
178 {
179 return (st1[1] - st2[1]);
180 }
181 else
182 {
2e4964ad 183 return (STRCMP (st1 + 2, st2 + 2));
30875e1c
SG
184 }
185}
186
187void
188sort_pst_symbols (pst)
189 struct partial_symtab *pst;
190{
191 /* Sort the global list; don't sort the static list */
192
193 qsort (pst -> objfile -> global_psymbols.list + pst -> globals_offset,
194 pst -> n_global_syms, sizeof (struct partial_symbol),
195 compare_psymbols);
196}
197
bd5635a1
RP
198/* Call sort_block_syms to sort alphabetically the symbols of one block. */
199
200void
201sort_block_syms (b)
202 register struct block *b;
203{
204 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
205 sizeof (struct symbol *), compare_symbols);
206}
207
208/* Call sort_symtab_syms to sort alphabetically
209 the symbols of each block of one symtab. */
210
211void
212sort_symtab_syms (s)
213 register struct symtab *s;
214{
c9bd6710
JG
215 register struct blockvector *bv;
216 int nbl;
bd5635a1
RP
217 int i;
218 register struct block *b;
219
c9bd6710
JG
220 if (s == 0)
221 return;
222 bv = BLOCKVECTOR (s);
223 nbl = BLOCKVECTOR_NBLOCKS (bv);
bd5635a1
RP
224 for (i = 0; i < nbl; i++)
225 {
226 b = BLOCKVECTOR_BLOCK (bv, i);
227 if (BLOCK_SHOULD_SORT (b))
228 sort_block_syms (b);
229 }
230}
231
232void
233sort_all_symtab_syms ()
234{
235 register struct symtab *s;
30875e1c 236 register struct objfile *objfile;
bd5635a1 237
30875e1c 238 for (objfile = object_files; objfile != NULL; objfile = objfile -> next)
bd5635a1 239 {
30875e1c
SG
240 for (s = objfile -> symtabs; s != NULL; s = s -> next)
241 {
242 sort_symtab_syms (s);
243 }
bd5635a1
RP
244 }
245}
246
247/* Make a copy of the string at PTR with SIZE characters in the symbol obstack
248 (and add a null character at the end in the copy).
249 Returns the address of the copy. */
250
251char *
30875e1c 252obsavestring (ptr, size, obstackp)
bd5635a1
RP
253 char *ptr;
254 int size;
30875e1c 255 struct obstack *obstackp;
bd5635a1 256{
30875e1c 257 register char *p = (char *) obstack_alloc (obstackp, size + 1);
bd5635a1
RP
258 /* Open-coded bcopy--saves function call time.
259 These strings are usually short. */
260 {
261 register char *p1 = ptr;
262 register char *p2 = p;
263 char *end = ptr + size;
264 while (p1 != end)
265 *p2++ = *p1++;
266 }
267 p[size] = 0;
268 return p;
269}
270
271/* Concatenate strings S1, S2 and S3; return the new string.
272 Space is found in the symbol_obstack. */
273
274char *
30875e1c
SG
275obconcat (obstackp, s1, s2, s3)
276 struct obstack *obstackp;
277 const char *s1, *s2, *s3;
bd5635a1
RP
278{
279 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
30875e1c 280 register char *val = (char *) obstack_alloc (obstackp, len);
bd5635a1
RP
281 strcpy (val, s1);
282 strcat (val, s2);
283 strcat (val, s3);
284 return val;
285}
bd5635a1
RP
286
287/* Get the symbol table that corresponds to a partial_symtab.
288 This is fast after the first time you do it. In fact, there
289 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
290 case inline. */
291
292struct symtab *
293psymtab_to_symtab (pst)
294 register struct partial_symtab *pst;
295{
bd5635a1
RP
296 /* If it's been looked up before, return it. */
297 if (pst->symtab)
298 return pst->symtab;
299
300 /* If it has not yet been read in, read it. */
301 if (!pst->readin)
302 {
303 (*pst->read_symtab) (pst);
304 }
305
61a7292f 306 return pst->symtab;
bd5635a1
RP
307}
308
bf349b77
FF
309/* Initialize entry point information for this objfile. */
310
311void
312init_entry_point_info (objfile)
313 struct objfile *objfile;
314{
315 /* Save startup file's range of PC addresses to help blockframe.c
316 decide where the bottom of the stack is. */
317
318 if (bfd_get_file_flags (objfile -> obfd) & EXEC_P)
319 {
320 /* Executable file -- record its entry point so we'll recognize
321 the startup file because it contains the entry point. */
322 objfile -> ei.entry_point = bfd_get_start_address (objfile -> obfd);
323 }
324 else
325 {
326 /* Examination of non-executable.o files. Short-circuit this stuff. */
327 /* ~0 will not be in any file, we hope. */
328 objfile -> ei.entry_point = ~0;
329 /* set the startup file to be an empty range. */
330 objfile -> ei.entry_file_lowpc = 0;
331 objfile -> ei.entry_file_highpc = 0;
332 }
333}
334
a8e033f2
SG
335/* Remember the lowest-addressed loadable section we've seen.
336 This function is called via bfd_map_over_sections. */
337
338#if 0 /* Not used yet */
339static void
340find_lowest_section (abfd, sect, obj)
341 bfd *abfd;
342 asection *sect;
343 PTR obj;
344{
345 asection **lowest = (asection **)obj;
346
347 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
348 return;
349 if (!*lowest)
350 *lowest = sect; /* First loadable section */
351 else if (bfd_section_vma (abfd, *lowest) >= bfd_section_vma (abfd, sect))
352 *lowest = sect; /* A lower loadable section */
353}
354#endif
355
bd5635a1
RP
356/* Process a symbol file, as either the main file or as a dynamically
357 loaded file.
358
b3fdaf3d
JK
359 NAME is the file name (which will be tilde-expanded and made
360 absolute herein) (but we don't free or modify NAME itself).
361 FROM_TTY says how verbose to be. MAINLINE specifies whether this
362 is the main symbol file, or whether it's an extra symbol file such
363 as dynamically loaded code. If !mainline, ADDR is the address
4369a140
JG
364 where the text segment was loaded. If VERBO, the caller has printed
365 a verbose message about the symbol reading (and complaints can be
366 more terse about it). */
bd5635a1
RP
367
368void
4369a140 369syms_from_objfile (objfile, addr, mainline, verbo)
7d9884b9 370 struct objfile *objfile;
bd5635a1
RP
371 CORE_ADDR addr;
372 int mainline;
4369a140 373 int verbo;
bd5635a1 374{
a8e033f2
SG
375 struct section_offsets *section_offsets;
376 asection *lowest_sect;
bd5635a1 377
bd5635a1
RP
378 /* There is a distinction between having no symbol table
379 (we refuse to read the file, leaving the old set of symbols around)
380 and having no debugging symbols in your symbol table (we read
bf349b77
FF
381 the file and end up with a mostly empty symbol table).
382
383 FIXME: This strategy works correctly when the debugging symbols are
384 intermixed with "normal" symbols. However, when the debugging symbols
385 are separate, such as with ELF/DWARF, it is perfectly plausible for
386 the symbol table to be missing but still have all the DWARF info
387 intact. Thus in general it is wrong to assume that having no symbol
388 table implies no debugging information. */
bd5635a1 389
b0246b3b 390 if (!(bfd_get_file_flags (objfile -> obfd) & HAS_SYMS))
d47d5315
JG
391 return;
392
bf349b77 393 init_entry_point_info (objfile);
80d68b1d 394 find_sym_fns (objfile);
bd5635a1
RP
395
396 if (mainline)
397 {
398 /* Since no error yet, throw away the old symbol table. */
399
80d68b1d
FF
400 if (symfile_objfile != NULL)
401 {
402 free_objfile (symfile_objfile);
403 symfile_objfile = NULL;
404 }
bd5635a1 405
80d68b1d 406 (*objfile -> sf -> sym_new_init) (objfile);
a8e033f2 407 }
bd5635a1 408
a8e033f2
SG
409 /* Convert addr into an offset rather than an absolute address.
410 We find the lowest address of a loaded segment in the objfile,
411 and assume that <addr> is where that got loaded. Due to historical
412 precedent, we warn if that doesn't happen to be the ".text"
413 segment. */
80d68b1d 414
a8e033f2
SG
415 if (mainline)
416 {
417 addr = 0; /* No offset from objfile addresses. */
418 }
419 else
420 {
421 lowest_sect = bfd_get_section_by_name (objfile->obfd, ".text");
422#if 0
423 lowest_sect = 0;
424 bfd_map_over_sections (objfile->obfd, find_lowest_section,
425 (PTR) &lowest_sect);
426#endif
427
428 if (lowest_sect == 0)
429 warning ("no loadable sections found in added symbol-file %s",
430 objfile->name);
431 else if (0 == bfd_get_section_name (objfile->obfd, lowest_sect)
2e4964ad 432 || !STREQ (".text",
a8e033f2
SG
433 bfd_get_section_name (objfile->obfd, lowest_sect)))
434 warning ("Lowest section in %s is %s at 0x%x",
435 objfile->name,
436 bfd_section_name (objfile->obfd, lowest_sect),
437 bfd_section_vma (objfile->obfd, lowest_sect));
438
439 if (lowest_sect)
440 addr -= bfd_section_vma (objfile->obfd, lowest_sect);
bd5635a1
RP
441 }
442
de9bef49
JG
443 /* Debugging check inserted for testing elimination of NAMES_HAVE_UNDERSCORE.
444 Complain if the dynamic setting of NAMES_HAVE_UNDERSCORE from BFD
445 doesn't match the static setting from the GDB config files.
446 FIXME: Remove this check after a round of testing.
447 -- gnu@cygnus.com, 16dec92 */
448#ifdef NAMES_HAVE_UNDERSCORE
449 if (bfd_get_symbol_leading_char(objfile->obfd) != '_')
450#else
451 if (bfd_get_symbol_leading_char(objfile->obfd) != 0)
452#endif
453 fprintf (stderr,
454 "GDB internal error! NAMES_HAVE_UNDERSCORE set wrong for %s BFD:\n%s\n",
455 objfile->obfd->xvec->name,
456 objfile->obfd->filename);
457 /* End of debugging check. FIXME. */
458
80d68b1d
FF
459 /* Initialize symbol reading routines for this objfile, allow complaints to
460 appear for this new file, and record how verbose to be, then do the
461 initial symbol reading for this file. */
4369a140 462
80d68b1d
FF
463 (*objfile -> sf -> sym_init) (objfile);
464 clear_complaints (1, verbo);
a8e033f2
SG
465 section_offsets = (*objfile -> sf -> sym_offsets) (objfile, addr);
466 (*objfile -> sf -> sym_read) (objfile, section_offsets, mainline);
bd5635a1
RP
467
468 /* Don't allow char * to have a typename (else would get caddr_t.) */
469 /* Ditto void *. FIXME should do this for all the builtin types. */
470
471 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
472 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
473
9342ecb9
JG
474 /* Mark the objfile has having had initial symbol read attempted. Note
475 that this does not mean we found any symbols... */
476
477 objfile -> flags |= OBJF_SYMS;
478}
479
480/* Perform required actions immediately after either reading in the initial
481 symbols for a new objfile, or mapping in the symbols from a reusable
482 objfile. */
483
484void
485new_symfile_objfile (objfile, mainline, verbo)
486 struct objfile *objfile;
487 int mainline;
488 int verbo;
489{
bd5635a1
RP
490 if (mainline)
491 {
492 /* OK, make it the "real" symbol file. */
7d9884b9 493 symfile_objfile = objfile;
bd5635a1
RP
494 }
495
0ef6f019
JG
496 /* If we have wiped out any old symbol tables, clean up. */
497 clear_symtab_users_once ();
4369a140
JG
498
499 /* We're done reading the symbol file; finish off complaints. */
80d68b1d 500 clear_complaints (0, verbo);
30875e1c 501
318bf84f
FF
502 /* Fixup all the breakpoints that may have been redefined by this
503 symbol file. */
30875e1c 504
318bf84f 505 breakpoint_re_set ();
30875e1c 506}
d47d5315
JG
507
508/* Process a symbol file, as either the main file or as a dynamically
509 loaded file.
510
511 NAME is the file name (which will be tilde-expanded and made
512 absolute herein) (but we don't free or modify NAME itself).
513 FROM_TTY says how verbose to be. MAINLINE specifies whether this
514 is the main symbol file, or whether it's an extra symbol file such
515 as dynamically loaded code. If !mainline, ADDR is the address
30875e1c 516 where the text segment was loaded.
d47d5315 517
30875e1c
SG
518 Upon success, returns a pointer to the objfile that was added.
519 Upon failure, jumps back to command level (never returns). */
520
521struct objfile *
b0246b3b 522symbol_file_add (name, from_tty, addr, mainline, mapped, readnow)
d47d5315
JG
523 char *name;
524 int from_tty;
525 CORE_ADDR addr;
526 int mainline;
318bf84f 527 int mapped;
b0246b3b 528 int readnow;
d47d5315 529{
7d9884b9 530 struct objfile *objfile;
b0246b3b 531 struct partial_symtab *psymtab;
80d68b1d 532 bfd *abfd;
d47d5315 533
80d68b1d
FF
534 /* Open a bfd for the file and then check to see if the file has a
535 symbol table. There is a distinction between having no symbol table
d47d5315 536 (we refuse to read the file, leaving the old set of symbols around)
80d68b1d
FF
537 and having no debugging symbols in the symbol table (we read the file
538 and end up with a mostly empty symbol table, but with lots of stuff in
539 the minimal symbol table). We need to make the decision about whether
540 to continue with the file before allocating and building a objfile.
541
542 FIXME: This strategy works correctly when the debugging symbols are
543 intermixed with "normal" symbols. However, when the debugging symbols
544 are separate, such as with ELF/DWARF, it is perfectly plausible for
545 the symbol table to be missing but still have all the DWARF info
546 intact. Thus in general it is wrong to assume that having no symbol
547 table implies no debugging information. */
548
549 abfd = symfile_bfd_open (name);
550 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
d47d5315
JG
551 {
552 error ("%s has no symbol-table", name);
553 }
554
80d68b1d
FF
555 if ((have_full_symbols () || have_partial_symbols ())
556 && mainline
557 && from_tty
558 && !query ("Load new symbol table from \"%s\"? ", name))
559 error ("Not confirmed.");
560
a8e033f2
SG
561 /* Getting new symbols may change our opinion about what is
562 frameless. */
563
564 reinit_frame_cache ();
565
80d68b1d
FF
566 objfile = allocate_objfile (abfd, mapped);
567
318bf84f
FF
568 /* If the objfile uses a mapped symbol file, and we have a psymtab for
569 it, then skip reading any symbols at this time. */
d47d5315 570
bf349b77 571 if ((objfile -> flags & OBJF_MAPPED) && (objfile -> flags & OBJF_SYMS))
d47d5315 572 {
80d68b1d 573 /* We mapped in an existing symbol table file that already has had
bf349b77
FF
574 initial symbol reading performed, so we can skip that part. Notify
575 the user that instead of reading the symbols, they have been mapped.
576 */
318bf84f
FF
577 if (from_tty || info_verbose)
578 {
80d68b1d
FF
579 printf_filtered ("Mapped symbols for %s...", name);
580 wrap_here ("");
318bf84f
FF
581 fflush (stdout);
582 }
9342ecb9
JG
583 init_entry_point_info (objfile);
584 find_sym_fns (objfile);
d47d5315 585 }
318bf84f 586 else
bd5635a1 587 {
80d68b1d 588 /* We either created a new mapped symbol table, mapped an existing
bf349b77
FF
589 symbol table file which has not had initial symbol reading
590 performed, or need to read an unmapped symbol table. */
318bf84f
FF
591 if (from_tty || info_verbose)
592 {
593 printf_filtered ("Reading symbols from %s...", name);
594 wrap_here ("");
595 fflush (stdout);
596 }
318bf84f 597 syms_from_objfile (objfile, addr, mainline, from_tty);
80d68b1d
FF
598 }
599
9342ecb9
JG
600 new_symfile_objfile (objfile, mainline, from_tty);
601
80d68b1d
FF
602 /* We now have at least a partial symbol table. Check to see if the
603 user requested that all symbols be read on initial access via either
604 the gdb startup command line or on a per symbol file basis. Expand
605 all partial symbol tables for this objfile if so. */
b0246b3b 606
bf349b77 607 if (readnow || readnow_symbol_files)
80d68b1d 608 {
318bf84f
FF
609 if (from_tty || info_verbose)
610 {
80d68b1d
FF
611 printf_filtered ("expanding to full symbols...");
612 wrap_here ("");
318bf84f
FF
613 fflush (stdout);
614 }
80d68b1d
FF
615
616 for (psymtab = objfile -> psymtabs;
617 psymtab != NULL;
618 psymtab = psymtab -> next)
619 {
4ed3a9ea 620 psymtab_to_symtab (psymtab);
80d68b1d
FF
621 }
622 }
623
624 if (from_tty || info_verbose)
625 {
626 printf_filtered ("done.\n");
627 fflush (stdout);
bd5635a1 628 }
80d68b1d 629
30875e1c 630 return (objfile);
bd5635a1
RP
631}
632
633/* This is the symbol-file command. Read the file, analyze its symbols,
30875e1c 634 and add a struct symtab to a symtab list. */
bd5635a1
RP
635
636void
30875e1c
SG
637symbol_file_command (args, from_tty)
638 char *args;
bd5635a1
RP
639 int from_tty;
640{
30875e1c 641 char **argv;
b0246b3b 642 char *name = NULL;
30875e1c 643 struct cleanup *cleanups;
318bf84f 644 int mapped = 0;
30875e1c 645 int readnow = 0;
bd5635a1
RP
646
647 dont_repeat ();
648
30875e1c 649 if (args == NULL)
bd5635a1 650 {
cba0d141
JG
651 if ((have_full_symbols () || have_partial_symbols ())
652 && from_tty
653 && !query ("Discard symbol table from `%s'? ",
654 symfile_objfile -> name))
655 error ("Not confirmed.");
656 free_all_objfiles ();
30875e1c 657 symfile_objfile = NULL;
a8e033f2
SG
658 current_source_symtab = NULL;
659 current_source_line = 0;
9342ecb9
JG
660 if (from_tty)
661 {
e58de8a2 662 printf ("No symbol file now.\n");
9342ecb9 663 }
bd5635a1 664 }
30875e1c
SG
665 else
666 {
667 if ((argv = buildargv (args)) == NULL)
668 {
318bf84f 669 nomem (0);
30875e1c
SG
670 }
671 cleanups = make_cleanup (freeargv, (char *) argv);
b0246b3b 672 while (*argv != NULL)
30875e1c 673 {
2e4964ad 674 if (STREQ (*argv, "-mapped"))
30875e1c 675 {
318bf84f 676 mapped = 1;
30875e1c 677 }
2e4964ad 678 else if (STREQ (*argv, "-readnow"))
30875e1c
SG
679 {
680 readnow = 1;
681 }
b0246b3b
FF
682 else if (**argv == '-')
683 {
684 error ("unknown option `%s'", *argv);
685 }
686 else
687 {
688 name = *argv;
689 }
690 argv++;
30875e1c 691 }
2403f49b 692
b0246b3b
FF
693 if (name == NULL)
694 {
695 error ("no symbol file name was specified");
696 }
697 else
30875e1c 698 {
4ed3a9ea 699 symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped, readnow);
e58de8a2 700 set_initial_language ();
30875e1c
SG
701 }
702 do_cleanups (cleanups);
703 }
bd5635a1
RP
704}
705
e58de8a2
FF
706/* Set the initial language.
707
708 A better solution would be to record the language in the psymtab when reading
709 partial symbols, and then use it (if known) to set the language. This would
710 be a win for formats that encode the language in an easily discoverable place,
711 such as DWARF. For stabs, we can jump through hoops looking for specially
712 named symbols or try to intuit the language from the specific type of stabs
713 we find, but we can't do that until later when we read in full symbols.
714 FIXME. */
715
716static void
717set_initial_language ()
718{
719 struct partial_symtab *pst;
720 enum language lang = language_unknown;
721
722 pst = find_main_psymtab ();
723 if (pst != NULL)
724 {
725 if (pst -> filename != NULL)
726 {
727 lang = deduce_language_from_filename (pst -> filename);
728 }
729 if (lang == language_unknown)
730 {
731 /* Make C the default language */
732 lang = language_c;
733 }
734 set_language (lang);
735 expected_language = current_language; /* Don't warn the user */
736 }
737}
738
b0246b3b
FF
739/* Open file specified by NAME and hand it off to BFD for preliminary
740 analysis. Result is a newly initialized bfd *, which includes a newly
741 malloc'd` copy of NAME (tilde-expanded and made absolute).
7d9884b9 742 In case of trouble, error() is called. */
bd5635a1 743
b0246b3b
FF
744static bfd *
745symfile_bfd_open (name)
bd5635a1
RP
746 char *name;
747{
748 bfd *sym_bfd;
749 int desc;
750 char *absolute_name;
751
7d9884b9 752 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
bd5635a1 753
7d9884b9 754 /* Look down path for it, allocate 2nd new malloc'd copy. */
bd5635a1 755 desc = openp (getenv ("PATH"), 1, name, O_RDONLY, 0, &absolute_name);
b0246b3b
FF
756 if (desc < 0)
757 {
758 make_cleanup (free, name);
759 perror_with_name (name);
760 }
7d9884b9 761 free (name); /* Free 1st new malloc'd copy */
30875e1c 762 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
346168a2 763 /* It'll be freed in free_objfile(). */
bd5635a1
RP
764
765 sym_bfd = bfd_fdopenr (name, NULL, desc);
766 if (!sym_bfd)
767 {
768 close (desc);
7d9884b9 769 make_cleanup (free, name);
b0246b3b
FF
770 error ("\"%s\": can't open to read symbols: %s.", name,
771 bfd_errmsg (bfd_error));
bd5635a1 772 }
e58de8a2 773 sym_bfd->cacheable = true;
bd5635a1 774
b0246b3b
FF
775 if (!bfd_check_format (sym_bfd, bfd_object))
776 {
777 bfd_close (sym_bfd); /* This also closes desc */
778 make_cleanup (free, name);
779 error ("\"%s\": can't read symbols: %s.", name,
780 bfd_errmsg (bfd_error));
781 }
7d9884b9 782
b0246b3b 783 return (sym_bfd);
7d9884b9
JG
784}
785
80d68b1d
FF
786/* Link a new symtab_fns into the global symtab_fns list. Called on gdb
787 startup by the _initialize routine in each object file format reader,
788 to register information about each format the the reader is prepared
789 to handle. */
bd5635a1
RP
790
791void
792add_symtab_fns (sf)
793 struct sym_fns *sf;
794{
795 sf->next = symtab_fns;
796 symtab_fns = sf;
797}
798
799
800/* Initialize to read symbols from the symbol file sym_bfd. It either
80d68b1d
FF
801 returns or calls error(). The result is an initialized struct sym_fns
802 in the objfile structure, that contains cached information about the
803 symbol file. */
bd5635a1 804
80d68b1d
FF
805static void
806find_sym_fns (objfile)
7d9884b9 807 struct objfile *objfile;
bd5635a1 808{
ac88ca20 809 struct sym_fns *sf;
bd5635a1 810
80d68b1d 811 for (sf = symtab_fns; sf != NULL; sf = sf -> next)
bd5635a1 812 {
80d68b1d
FF
813 if (strncmp (bfd_get_target (objfile -> obfd),
814 sf -> sym_name, sf -> sym_namelen) == 0)
bd5635a1 815 {
80d68b1d
FF
816 objfile -> sf = sf;
817 return;
bd5635a1
RP
818 }
819 }
c9bd6710 820 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
b0246b3b 821 bfd_get_target (objfile -> obfd));
bd5635a1
RP
822}
823\f
824/* This function runs the load command of our current target. */
825
30875e1c 826static void
bd5635a1
RP
827load_command (arg, from_tty)
828 char *arg;
829 int from_tty;
830{
831 target_load (arg, from_tty);
832}
833
61a7292f
SG
834/* This function allows the addition of incrementally linked object files.
835 It does not modify any state in the target, only in the debugger. */
bd5635a1 836
e1ce8aa5 837/* ARGSUSED */
30875e1c 838static void
b0246b3b
FF
839add_symbol_file_command (args, from_tty)
840 char *args;
bd5635a1
RP
841 int from_tty;
842{
b0246b3b 843 char *name = NULL;
bd5635a1 844 CORE_ADDR text_addr;
b0246b3b 845 char *arg;
ac88ca20
JG
846 int readnow = 0;
847 int mapped = 0;
bd5635a1 848
b0246b3b 849 dont_repeat ();
61a7292f 850
b0246b3b
FF
851 if (args == NULL)
852 {
853 error ("add-symbol-file takes a file name and an address");
854 }
bd5635a1 855
b0246b3b 856 /* Make a copy of the string that we can safely write into. */
bd5635a1 857
b0246b3b
FF
858 args = strdup (args);
859 make_cleanup (free, args);
860
861 /* Pick off any -option args and the file name. */
862
863 while ((*args != '\000') && (name == NULL))
864 {
865 while (isspace (*args)) {args++;}
866 arg = args;
867 while ((*args != '\000') && !isspace (*args)) {args++;}
868 if (*args != '\000')
869 {
870 *args++ = '\000';
871 }
872 if (*arg != '-')
873 {
874 name = arg;
875 }
2e4964ad 876 else if (STREQ (arg, "-mapped"))
b0246b3b
FF
877 {
878 mapped = 1;
879 }
2e4964ad 880 else if (STREQ (arg, "-readnow"))
b0246b3b
FF
881 {
882 readnow = 1;
883 }
884 else
885 {
886 error ("unknown option `%s'", arg);
887 }
888 }
bd5635a1 889
b0246b3b
FF
890 /* After picking off any options and the file name, args should be
891 left pointing at the remainder of the command line, which should
892 be the address expression to evaluate. */
bd5635a1 893
b0246b3b
FF
894 if ((name == NULL) || (*args == '\000') )
895 {
896 error ("add-symbol-file takes a file name and an address");
897 }
898 name = tilde_expand (name);
899 make_cleanup (free, name);
bd5635a1 900
b0246b3b 901 text_addr = parse_and_eval_address (args);
bd5635a1 902
d8ce1326
JG
903 if (!query ("add symbol table from file \"%s\" at text_addr = %s?\n",
904 name, local_hex_string (text_addr)))
bd5635a1
RP
905 error ("Not confirmed.");
906
4ed3a9ea 907 symbol_file_add (name, 0, text_addr, 0, mapped, readnow);
bd5635a1
RP
908}
909\f
7d9884b9 910/* Re-read symbols if a symbol-file has changed. */
bd5635a1
RP
911void
912reread_symbols ()
913{
7d9884b9
JG
914 struct objfile *objfile;
915 long new_modtime;
916 int reread_one = 0;
cba0d141
JG
917 struct stat new_statbuf;
918 int res;
bd5635a1
RP
919
920 /* With the addition of shared libraries, this should be modified,
921 the load time should be saved in the partial symbol tables, since
922 different tables may come from different source files. FIXME.
923 This routine should then walk down each partial symbol table
30875e1c 924 and see if the symbol table that it originates from has been changed */
bd5635a1 925
30875e1c 926the_big_top:
7d9884b9
JG
927 for (objfile = object_files; objfile; objfile = objfile->next) {
928 if (objfile->obfd) {
1eeba686 929#ifdef IBM6000_TARGET
318bf84f
FF
930 /* If this object is from a shared library, then you should
931 stat on the library name, not member name. */
932
933 if (objfile->obfd->my_archive)
934 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
935 else
936#endif
cba0d141
JG
937 res = stat (objfile->name, &new_statbuf);
938 if (res != 0) {
939 /* FIXME, should use print_sys_errmsg but it's not filtered. */
940 printf_filtered ("`%s' has disappeared; keeping its symbols.\n",
941 objfile->name);
942 continue;
943 }
944 new_modtime = new_statbuf.st_mtime;
7d9884b9
JG
945 if (new_modtime != objfile->mtime) {
946 printf_filtered ("`%s' has changed; re-reading symbols.\n",
947 objfile->name);
948 /* FIXME, this should use a different command...that would only
30875e1c
SG
949 affect this objfile's symbols, and would reset objfile->mtime.
950 (objfile->mtime = new_modtime;)
951 HOWEVER, that command isn't written yet -- so call symbol_file_
952 command, and restart the scan from the top, because it munges
953 the object_files list. */
7d9884b9 954 symbol_file_command (objfile->name, 0);
7d9884b9 955 reread_one = 1;
30875e1c 956 goto the_big_top; /* Start over. */
7d9884b9 957 }
bd5635a1 958 }
7d9884b9
JG
959 }
960
961 if (reread_one)
962 breakpoint_re_set ();
bd5635a1 963}
bd5635a1 964
bd5635a1 965\f
7d9884b9
JG
966enum language
967deduce_language_from_filename (filename)
968 char *filename;
969{
30875e1c 970 char *c = strrchr (filename, '.');
7d9884b9
JG
971
972 if (!c) ; /* Get default. */
2e4964ad 973 else if(STREQ(c,".mod"))
7d9884b9 974 return language_m2;
2e4964ad 975 else if(STREQ(c,".c"))
7d9884b9 976 return language_c;
2e4964ad 977 else if(STREQ(c,".cc") || STREQ(c,".C"))
7d9884b9 978 return language_cplus;
51b80b00 979 /* start-sanitize-chill */
2e4964ad 980 else if(STREQ(c,".ch") || STREQ(c,".c186") || STREQ(c,".c286"))
e58de8a2 981 return language_chill;
51b80b00 982 /* end-sanitize-chill */
7d9884b9
JG
983
984 return language_unknown; /* default */
985}
986\f
d8ce1326
JG
987/* allocate_symtab:
988
989 Allocate and partly initialize a new symbol table. Return a pointer
990 to it. error() if no space.
991
992 Caller must set these fields:
993 LINETABLE(symtab)
994 symtab->blockvector
d8ce1326
JG
995 symtab->dirname
996 symtab->free_code
997 symtab->free_ptr
998 initialize any EXTRA_SYMTAB_INFO
999 possibly free_named_symtabs (symtab->filename);
d8ce1326
JG
1000 */
1001
1002struct symtab *
30875e1c
SG
1003allocate_symtab (filename, objfile)
1004 char *filename;
1005 struct objfile *objfile;
d8ce1326
JG
1006{
1007 register struct symtab *symtab;
d8ce1326 1008
30875e1c
SG
1009 symtab = (struct symtab *)
1010 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symtab));
4ed3a9ea 1011 memset (symtab, 0, sizeof (*symtab));
30875e1c
SG
1012 symtab -> filename = obsavestring (filename, strlen (filename),
1013 &objfile -> symbol_obstack);
1014 symtab -> fullname = NULL;
1015 symtab -> language = deduce_language_from_filename (filename);
d8ce1326 1016
7d9884b9 1017 /* Hook it to the objfile it comes from */
30875e1c
SG
1018
1019 symtab -> objfile = objfile;
1020 symtab -> next = objfile -> symtabs;
1021 objfile -> symtabs = symtab;
7d9884b9
JG
1022
1023#ifdef INIT_EXTRA_SYMTAB_INFO
30875e1c 1024 INIT_EXTRA_SYMTAB_INFO (symtab);
7d9884b9 1025#endif
d8ce1326 1026
30875e1c 1027 return (symtab);
d8ce1326 1028}
30875e1c
SG
1029
1030struct partial_symtab *
1031allocate_psymtab (filename, objfile)
1032 char *filename;
1033 struct objfile *objfile;
1034{
1035 struct partial_symtab *psymtab;
1036
cba0d141
JG
1037 if (objfile -> free_psymtabs)
1038 {
1039 psymtab = objfile -> free_psymtabs;
1040 objfile -> free_psymtabs = psymtab -> next;
1041 }
1042 else
1043 psymtab = (struct partial_symtab *)
1044 obstack_alloc (&objfile -> psymbol_obstack,
1045 sizeof (struct partial_symtab));
1046
4ed3a9ea 1047 memset (psymtab, 0, sizeof (struct partial_symtab));
30875e1c
SG
1048 psymtab -> filename = obsavestring (filename, strlen (filename),
1049 &objfile -> psymbol_obstack);
1050 psymtab -> symtab = NULL;
1051
1052 /* Hook it to the objfile it comes from */
1053
1054 psymtab -> objfile = objfile;
1055 psymtab -> next = objfile -> psymtabs;
1056 objfile -> psymtabs = psymtab;
1057
1058 return (psymtab);
1059}
1060
d8ce1326 1061\f
9d199712
JG
1062/* clear_symtab_users_once:
1063
1064 This function is run after symbol reading, or from a cleanup.
1065 If an old symbol table was obsoleted, the old symbol table
1066 has been blown away, but the other GDB data structures that may
1067 reference it have not yet been cleared or re-directed. (The old
1068 symtab was zapped, and the cleanup queued, in free_named_symtab()
1069 below.)
1070
1071 This function can be queued N times as a cleanup, or called
1072 directly; it will do all the work the first time, and then will be a
1073 no-op until the next time it is queued. This works by bumping a
1074 counter at queueing time. Much later when the cleanup is run, or at
1075 the end of symbol processing (in case the cleanup is discarded), if
1076 the queued count is greater than the "done-count", we do the work
1077 and set the done-count to the queued count. If the queued count is
1078 less than or equal to the done-count, we just ignore the call. This
1079 is needed because reading a single .o file will often replace many
1080 symtabs (one per .h file, for example), and we don't want to reset
1081 the breakpoints N times in the user's face.
1082
1083 The reason we both queue a cleanup, and call it directly after symbol
1084 reading, is because the cleanup protects us in case of errors, but is
1085 discarded if symbol reading is successful. */
1086
1087static int clear_symtab_users_queued;
1088static int clear_symtab_users_done;
1089
4ed3a9ea 1090void
9d199712
JG
1091clear_symtab_users_once ()
1092{
1093 /* Enforce once-per-`do_cleanups'-semantics */
1094 if (clear_symtab_users_queued <= clear_symtab_users_done)
1095 return;
1096 clear_symtab_users_done = clear_symtab_users_queued;
1097
e58de8a2 1098 printf ("Resetting debugger state after updating old symbol tables\n");
9d199712
JG
1099
1100 /* Someday, we should do better than this, by only blowing away
1101 the things that really need to be blown. */
1102 clear_value_history ();
1103 clear_displays ();
1104 clear_internalvars ();
1105 breakpoint_re_set ();
1106 set_default_breakpoint (0, 0, 0, 0);
1107 current_source_symtab = 0;
1108}
1109
1110/* Delete the specified psymtab, and any others that reference it. */
1111
e1ce8aa5 1112static void
9d199712
JG
1113cashier_psymtab (pst)
1114 struct partial_symtab *pst;
1115{
1116 struct partial_symtab *ps, *pprev;
1117 int i;
1118
1119 /* Find its previous psymtab in the chain */
30875e1c 1120 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
9d199712
JG
1121 if (ps == pst)
1122 break;
1123 pprev = ps;
1124 }
1125
1126 if (ps) {
1127 /* Unhook it from the chain. */
30875e1c
SG
1128 if (ps == pst->objfile->psymtabs)
1129 pst->objfile->psymtabs = ps->next;
9d199712
JG
1130 else
1131 pprev->next = ps->next;
1132
1133 /* FIXME, we can't conveniently deallocate the entries in the
1134 partial_symbol lists (global_psymbols/static_psymbols) that
1135 this psymtab points to. These just take up space until all
1136 the psymtabs are reclaimed. Ditto the dependencies list and
1137 filename, which are all in the psymbol_obstack. */
1138
1139 /* We need to cashier any psymtab that has this one as a dependency... */
1140again:
30875e1c 1141 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
9d199712
JG
1142 for (i = 0; i < ps->number_of_dependencies; i++) {
1143 if (ps->dependencies[i] == pst) {
1144 cashier_psymtab (ps);
1145 goto again; /* Must restart, chain has been munged. */
1146 }
1147 }
1148 }
1149 }
1150}
1151
1152/* If a symtab or psymtab for filename NAME is found, free it along
1153 with any dependent breakpoints, displays, etc.
1154 Used when loading new versions of object modules with the "add-file"
1155 command. This is only called on the top-level symtab or psymtab's name;
1156 it is not called for subsidiary files such as .h files.
1157
1158 Return value is 1 if we blew away the environment, 0 if not.
30875e1c 1159 FIXME. The return valu appears to never be used.
9d199712
JG
1160
1161 FIXME. I think this is not the best way to do this. We should
1162 work on being gentler to the environment while still cleaning up
1163 all stray pointers into the freed symtab. */
1164
1165int
1166free_named_symtabs (name)
1167 char *name;
1168{
30875e1c
SG
1169#if 0
1170 /* FIXME: With the new method of each objfile having it's own
1171 psymtab list, this function needs serious rethinking. In particular,
1172 why was it ever necessary to toss psymtabs with specific compilation
1173 unit filenames, as opposed to all psymtabs from a particular symbol
ac88ca20
JG
1174 file? -- fnf
1175 Well, the answer is that some systems permit reloading of particular
1176 compilation units. We want to blow away any old info about these
1177 compilation units, regardless of which objfiles they arrived in. --gnu. */
1178
1179 register struct symtab *s;
1180 register struct symtab *prev;
1181 register struct partial_symtab *ps;
1182 struct blockvector *bv;
1183 int blewit = 0;
30875e1c 1184
61a7292f
SG
1185 /* We only wack things if the symbol-reload switch is set. */
1186 if (!symbol_reloading)
1187 return 0;
1188
d11c44f1
JG
1189 /* Some symbol formats have trouble providing file names... */
1190 if (name == 0 || *name == '\0')
1191 return 0;
1192
9d199712
JG
1193 /* Look for a psymtab with the specified name. */
1194
1195again2:
1196 for (ps = partial_symtab_list; ps; ps = ps->next) {
2e4964ad 1197 if (STREQ (name, ps->filename)) {
9d199712
JG
1198 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
1199 goto again2; /* Must restart, chain has been munged */
1200 }
1201 }
1202
1203 /* Look for a symtab with the specified name. */
1204
1205 for (s = symtab_list; s; s = s->next)
1206 {
2e4964ad 1207 if (STREQ (name, s->filename))
9d199712
JG
1208 break;
1209 prev = s;
1210 }
1211
1212 if (s)
1213 {
1214 if (s == symtab_list)
1215 symtab_list = s->next;
1216 else
1217 prev->next = s->next;
1218
1219 /* For now, queue a delete for all breakpoints, displays, etc., whether
1220 or not they depend on the symtab being freed. This should be
1221 changed so that only those data structures affected are deleted. */
1222
1223 /* But don't delete anything if the symtab is empty.
1224 This test is necessary due to a bug in "dbxread.c" that
1225 causes empty symtabs to be created for N_SO symbols that
1226 contain the pathname of the object file. (This problem
1227 has been fixed in GDB 3.9x). */
1228
c9bd6710
JG
1229 bv = BLOCKVECTOR (s);
1230 if (BLOCKVECTOR_NBLOCKS (bv) > 2
9d199712
JG
1231 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
1232 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
1233 {
1234 complain (&oldsyms_complaint, name);
1235
1236 clear_symtab_users_queued++;
1237 make_cleanup (clear_symtab_users_once, 0);
1238 blewit = 1;
1239 } else {
1240 complain (&empty_symtab_complaint, name);
1241 }
1242
1243 free_symtab (s);
1244 }
1245 else
d8ce1326
JG
1246 {
1247 /* It is still possible that some breakpoints will be affected
1248 even though no symtab was found, since the file might have
1249 been compiled without debugging, and hence not be associated
1250 with a symtab. In order to handle this correctly, we would need
1251 to keep a list of text address ranges for undebuggable files.
1252 For now, we do nothing, since this is a fairly obscure case. */
1253 ;
1254 }
9d199712 1255
30875e1c 1256 /* FIXME, what about the minimal symbol table? */
9d199712 1257 return blewit;
30875e1c
SG
1258#else
1259 return (0);
1260#endif
9d199712
JG
1261}
1262\f
d4ea2aba
PB
1263/* Allocate and partially fill a partial symtab. It will be
1264 completely filled at the end of the symbol list.
1265
1266 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1267 is the address relative to which its symbols are (incremental) or 0
1268 (normal). */
1269
1270
1271struct partial_symtab *
a8e033f2 1272start_psymtab_common (objfile, section_offsets,
d4ea2aba
PB
1273 filename, textlow, global_syms, static_syms)
1274 struct objfile *objfile;
a8e033f2 1275 struct section_offsets *section_offsets;
d4ea2aba
PB
1276 char *filename;
1277 CORE_ADDR textlow;
1278 struct partial_symbol *global_syms;
1279 struct partial_symbol *static_syms;
1280{
30875e1c
SG
1281 struct partial_symtab *psymtab;
1282
1283 psymtab = allocate_psymtab (filename, objfile);
a8e033f2 1284 psymtab -> section_offsets = section_offsets;
30875e1c
SG
1285 psymtab -> textlow = textlow;
1286 psymtab -> texthigh = psymtab -> textlow; /* default */
1287 psymtab -> globals_offset = global_syms - objfile -> global_psymbols.list;
1288 psymtab -> statics_offset = static_syms - objfile -> static_psymbols.list;
1289 return (psymtab);
7d9884b9 1290}
9342ecb9
JG
1291\f
1292/* Debugging versions of functions that are usually inline macros
1293 (see symfile.h). */
1294
2e4964ad 1295#if !INLINE_ADD_PSYMBOL
9342ecb9
JG
1296
1297/* Add a symbol with a long value to a psymtab.
1298 Since one arg is a struct, we pass in a ptr and deref it (sigh). */
1299
1300void
2e4964ad
FF
1301add_psymbol_to_list (name, namelength, namespace, class, list, val, language,
1302 objfile)
9342ecb9
JG
1303 char *name;
1304 int namelength;
1305 enum namespace namespace;
1306 enum address_class class;
1307 struct psymbol_allocation_list *list;
1308 long val;
2e4964ad
FF
1309 enum language language;
1310 struct objfile *objfile;
9342ecb9 1311{
2e4964ad
FF
1312 register struct partial_symbol *psym;
1313 register char *demangled_name;
1314
1315 if (list->next >= list->list + list->size)
1316 {
1317 extend_psymbol_list (list,objfile);
1318 }
1319 psym = list->next++;
1320
1321 SYMBOL_NAME (psym) =
1322 (char *) obstack_alloc (&objfile->psymbol_obstack, namelength + 1);
1323 memcpy (SYMBOL_NAME (psym), name, namelength);
1324 SYMBOL_NAME (psym)[namelength] = '\0';
1325 SYMBOL_VALUE (psym) = val;
1326 SYMBOL_LANGUAGE (psym) = language;
1327 PSYMBOL_NAMESPACE (psym) = namespace;
1328 PSYMBOL_CLASS (psym) = class;
1329 if (language == language_cplus)
1330 {
1331 demangled_name =
1332 cplus_demangle (SYMBOL_NAME (psym), DMGL_PARAMS | DMGL_ANSI);
1333 if (demangled_name == NULL)
1334 {
1335 SYMBOL_DEMANGLED_NAME (psym) = NULL;
1336 }
1337 else
1338 {
1339 SYMBOL_DEMANGLED_NAME (psym) =
1340 obsavestring (demangled_name, strlen (demangled_name),
1341 &objfile->psymbol_obstack);
1342 free (demangled_name);
1343 }
1344 }
9342ecb9
JG
1345}
1346
1347/* Add a symbol with a CORE_ADDR value to a psymtab. */
1348
1349void
2e4964ad
FF
1350add_psymbol_addr_to_list (name, namelength, namespace, class, list, val,
1351 language, objfile)
9342ecb9
JG
1352 char *name;
1353 int namelength;
1354 enum namespace namespace;
1355 enum address_class class;
1356 struct psymbol_allocation_list *list;
1357 CORE_ADDR val;
2e4964ad
FF
1358 enum language language;
1359 struct objfile *objfile;
9342ecb9 1360{
2e4964ad
FF
1361 register struct partial_symbol *psym;
1362 register char *demangled_name;
1363
1364 if (list->next >= list->list + list->size)
1365 {
1366 extend_psymbol_list (list,objfile);
1367 }
1368 psym = list->next++;
1369
1370 SYMBOL_NAME (psym) =
1371 (char *) obstack_alloc (&objfile->psymbol_obstack, namelength + 1);
1372 memcpy (SYMBOL_NAME (psym), name, namelength);
1373 SYMBOL_NAME (psym)[namelength] = '\0';
1374 SYMBOL_VALUE_ADDRESS (psym) = val;
1375 SYMBOL_LANGUAGE (psym) = language;
1376 PSYMBOL_NAMESPACE (psym) = namespace;
1377 PSYMBOL_CLASS (psym) = class;
1378 if (language == language_cplus)
1379 {
1380 demangled_name =
1381 cplus_demangle (SYMBOL_NAME (psym), DMGL_PARAMS | DMGL_ANSI);
1382 if (demangled_name == NULL)
1383 {
1384 SYMBOL_DEMANGLED_NAME (psym) = NULL;
1385 }
1386 else
1387 {
1388 SYMBOL_DEMANGLED_NAME (psym) =
1389 obsavestring (demangled_name, strlen (demangled_name),
1390 &objfile->psymbol_obstack);
1391 free (demangled_name);
1392 }
1393 }
9342ecb9 1394}
7d9884b9 1395
2e4964ad
FF
1396#endif /* !INLINE_ADD_PSYMBOL */
1397
7d9884b9 1398\f
bd5635a1
RP
1399void
1400_initialize_symfile ()
1401{
1402
1403 add_com ("symbol-file", class_files, symbol_file_command,
30875e1c 1404 "Load symbol table from executable file FILE.\n\
bd5635a1
RP
1405The `file' command can also load symbol tables, as well as setting the file\n\
1406to execute.");
1407
e74d7b43 1408 add_com ("add-symbol-file", class_files, add_symbol_file_command,
bd5635a1
RP
1409 "Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
1410The second argument provides the starting address of the file's text.");
1411
1412 add_com ("load", class_files, load_command,
1413 "Dynamically load FILE into the running program, and record its symbols\n\
1414for access from GDB.");
1415
61a7292f
SG
1416 add_show_from_set
1417 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
1418 (char *)&symbol_reloading,
1419 "Set dynamic symbol table reloading multiple times in one run.",
1420 &setlist),
1421 &showlist);
1422
bd5635a1 1423}
This page took 0.148135 seconds and 4 git commands to generate.