* ldmain.c (main): Error if --gc-sections and
[deliverable/binutils-gdb.git] / gdb / symfile.c
1 /* Generic symbol file reading for the GNU debugger, GDB.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
3 Free Software Foundation, Inc.
4 Contributed by Cygnus Support, using pieces from other GDB modules.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22 #include "defs.h"
23 #include "symtab.h"
24 #include "gdbtypes.h"
25 #include "gdbcore.h"
26 #include "frame.h"
27 #include "target.h"
28 #include "value.h"
29 #include "symfile.h"
30 #include "objfiles.h"
31 #include "gdbcmd.h"
32 #include "breakpoint.h"
33 #include "language.h"
34 #include "complaints.h"
35 #include "demangle.h"
36 #include "inferior.h" /* for write_pc */
37 #include "gdb-stabs.h"
38 #include "obstack.h"
39
40 #include <assert.h>
41 #include <sys/types.h>
42 #include <fcntl.h>
43 #include "gdb_string.h"
44 #include "gdb_stat.h"
45 #include <ctype.h>
46 #include <time.h>
47 #ifdef HAVE_UNISTD_H
48 #include <unistd.h>
49 #endif
50
51 #ifndef O_BINARY
52 #define O_BINARY 0
53 #endif
54
55 int (*ui_load_progress_hook) PARAMS ((char *, unsigned long));
56 void (*pre_add_symbol_hook) PARAMS ((char *));
57 void (*post_add_symbol_hook) PARAMS ((void));
58
59 /* Global variables owned by this file */
60 int readnow_symbol_files; /* Read full symbols immediately */
61
62 struct complaint oldsyms_complaint = {
63 "Replacing old symbols for `%s'", 0, 0
64 };
65
66 struct complaint empty_symtab_complaint = {
67 "Empty symbol table found for `%s'", 0, 0
68 };
69
70 /* External variables and functions referenced. */
71
72 extern int info_verbose;
73
74 extern void report_transfer_performance PARAMS ((unsigned long,
75 time_t, time_t));
76
77 /* Functions this file defines */
78
79 #if 0
80 static int simple_read_overlay_region_table PARAMS ((void));
81 static void simple_free_overlay_region_table PARAMS ((void));
82 #endif
83
84 static void set_initial_language PARAMS ((void));
85
86 static void load_command PARAMS ((char *, int));
87
88 static void add_symbol_file_command PARAMS ((char *, int));
89
90 static void add_shared_symbol_files_command PARAMS ((char *, int));
91
92 static void cashier_psymtab PARAMS ((struct partial_symtab *));
93
94 static int compare_psymbols PARAMS ((const void *, const void *));
95
96 static int compare_symbols PARAMS ((const void *, const void *));
97
98 static bfd *symfile_bfd_open PARAMS ((char *));
99
100 static void find_sym_fns PARAMS ((struct objfile *));
101
102 static void decrement_reading_symtab PARAMS ((void *));
103
104 /* List of all available sym_fns. On gdb startup, each object file reader
105 calls add_symtab_fns() to register information on each format it is
106 prepared to read. */
107
108 static struct sym_fns *symtab_fns = NULL;
109
110 /* Flag for whether user will be reloading symbols multiple times.
111 Defaults to ON for VxWorks, otherwise OFF. */
112
113 #ifdef SYMBOL_RELOADING_DEFAULT
114 int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
115 #else
116 int symbol_reloading = 0;
117 #endif
118
119 /* If true, then shared library symbols will be added automatically
120 when the inferior is created, new libraries are loaded, or when
121 attaching to the inferior. This is almost always what users
122 will want to have happen; but for very large programs, the startup
123 time will be excessive, and so if this is a problem, the user can
124 clear this flag and then add the shared library symbols as needed.
125 Note that there is a potential for confusion, since if the shared
126 library symbols are not loaded, commands like "info fun" will *not*
127 report all the functions that are actually present. */
128
129 int auto_solib_add = 1;
130
131 \f
132 /* Since this function is called from within qsort, in an ANSI environment
133 it must conform to the prototype for qsort, which specifies that the
134 comparison function takes two "void *" pointers. */
135
136 static int
137 compare_symbols (s1p, s2p)
138 const PTR s1p;
139 const PTR s2p;
140 {
141 register struct symbol **s1, **s2;
142
143 s1 = (struct symbol **) s1p;
144 s2 = (struct symbol **) s2p;
145
146 return (STRCMP (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2)));
147 }
148
149 /*
150
151 LOCAL FUNCTION
152
153 compare_psymbols -- compare two partial symbols by name
154
155 DESCRIPTION
156
157 Given pointers to pointers to two partial symbol table entries,
158 compare them by name and return -N, 0, or +N (ala strcmp).
159 Typically used by sorting routines like qsort().
160
161 NOTES
162
163 Does direct compare of first two characters before punting
164 and passing to strcmp for longer compares. Note that the
165 original version had a bug whereby two null strings or two
166 identically named one character strings would return the
167 comparison of memory following the null byte.
168
169 */
170
171 static int
172 compare_psymbols (s1p, s2p)
173 const PTR s1p;
174 const PTR s2p;
175 {
176 register char *st1 = SYMBOL_NAME (*(struct partial_symbol **) s1p);
177 register char *st2 = SYMBOL_NAME (*(struct partial_symbol **) s2p);
178
179 if ((st1[0] - st2[0]) || !st1[0])
180 {
181 return (st1[0] - st2[0]);
182 }
183 else if ((st1[1] - st2[1]) || !st1[1])
184 {
185 return (st1[1] - st2[1]);
186 }
187 else
188 {
189 return (STRCMP (st1 + 2, st2 + 2));
190 }
191 }
192
193 void
194 sort_pst_symbols (pst)
195 struct partial_symtab *pst;
196 {
197 /* Sort the global list; don't sort the static list */
198
199 qsort (pst -> objfile -> global_psymbols.list + pst -> globals_offset,
200 pst -> n_global_syms, sizeof (struct partial_symbol *),
201 compare_psymbols);
202 }
203
204 /* Call sort_block_syms to sort alphabetically the symbols of one block. */
205
206 void
207 sort_block_syms (b)
208 register struct block *b;
209 {
210 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
211 sizeof (struct symbol *), compare_symbols);
212 }
213
214 /* Call sort_symtab_syms to sort alphabetically
215 the symbols of each block of one symtab. */
216
217 void
218 sort_symtab_syms (s)
219 register struct symtab *s;
220 {
221 register struct blockvector *bv;
222 int nbl;
223 int i;
224 register struct block *b;
225
226 if (s == 0)
227 return;
228 bv = BLOCKVECTOR (s);
229 nbl = BLOCKVECTOR_NBLOCKS (bv);
230 for (i = 0; i < nbl; i++)
231 {
232 b = BLOCKVECTOR_BLOCK (bv, i);
233 if (BLOCK_SHOULD_SORT (b))
234 sort_block_syms (b);
235 }
236 }
237
238 /* Make a null terminated copy of the string at PTR with SIZE characters in
239 the obstack pointed to by OBSTACKP . Returns the address of the copy.
240 Note that the string at PTR does not have to be null terminated, I.E. it
241 may be part of a larger string and we are only saving a substring. */
242
243 char *
244 obsavestring (ptr, size, obstackp)
245 char *ptr;
246 int size;
247 struct obstack *obstackp;
248 {
249 register char *p = (char *) obstack_alloc (obstackp, size + 1);
250 /* Open-coded memcpy--saves function call time. These strings are usually
251 short. FIXME: Is this really still true with a compiler that can
252 inline memcpy? */
253 {
254 register char *p1 = ptr;
255 register char *p2 = p;
256 char *end = ptr + size;
257 while (p1 != end)
258 *p2++ = *p1++;
259 }
260 p[size] = 0;
261 return p;
262 }
263
264 /* Concatenate strings S1, S2 and S3; return the new string. Space is found
265 in the obstack pointed to by OBSTACKP. */
266
267 char *
268 obconcat (obstackp, s1, s2, s3)
269 struct obstack *obstackp;
270 const char *s1, *s2, *s3;
271 {
272 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
273 register char *val = (char *) obstack_alloc (obstackp, len);
274 strcpy (val, s1);
275 strcat (val, s2);
276 strcat (val, s3);
277 return val;
278 }
279
280 /* True if we are nested inside psymtab_to_symtab. */
281
282 int currently_reading_symtab = 0;
283
284 static void
285 decrement_reading_symtab (dummy)
286 void *dummy;
287 {
288 currently_reading_symtab--;
289 }
290
291 /* Get the symbol table that corresponds to a partial_symtab.
292 This is fast after the first time you do it. In fact, there
293 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
294 case inline. */
295
296 struct symtab *
297 psymtab_to_symtab (pst)
298 register struct partial_symtab *pst;
299 {
300 /* If it's been looked up before, return it. */
301 if (pst->symtab)
302 return pst->symtab;
303
304 /* If it has not yet been read in, read it. */
305 if (!pst->readin)
306 {
307 struct cleanup *back_to = make_cleanup (decrement_reading_symtab, NULL);
308 currently_reading_symtab++;
309 (*pst->read_symtab) (pst);
310 do_cleanups (back_to);
311 }
312
313 return pst->symtab;
314 }
315
316 /* Initialize entry point information for this objfile. */
317
318 void
319 init_entry_point_info (objfile)
320 struct objfile *objfile;
321 {
322 /* Save startup file's range of PC addresses to help blockframe.c
323 decide where the bottom of the stack is. */
324
325 if (bfd_get_file_flags (objfile -> obfd) & EXEC_P)
326 {
327 /* Executable file -- record its entry point so we'll recognize
328 the startup file because it contains the entry point. */
329 objfile -> ei.entry_point = bfd_get_start_address (objfile -> obfd);
330 }
331 else
332 {
333 /* Examination of non-executable.o files. Short-circuit this stuff. */
334 objfile -> ei.entry_point = INVALID_ENTRY_POINT;
335 }
336 objfile -> ei.entry_file_lowpc = INVALID_ENTRY_LOWPC;
337 objfile -> ei.entry_file_highpc = INVALID_ENTRY_HIGHPC;
338 objfile -> ei.entry_func_lowpc = INVALID_ENTRY_LOWPC;
339 objfile -> ei.entry_func_highpc = INVALID_ENTRY_HIGHPC;
340 objfile -> ei.main_func_lowpc = INVALID_ENTRY_LOWPC;
341 objfile -> ei.main_func_highpc = INVALID_ENTRY_HIGHPC;
342 }
343
344 /* Get current entry point address. */
345
346 CORE_ADDR
347 entry_point_address()
348 {
349 return symfile_objfile ? symfile_objfile->ei.entry_point : 0;
350 }
351
352 /* Remember the lowest-addressed loadable section we've seen.
353 This function is called via bfd_map_over_sections.
354
355 In case of equal vmas, the section with the largest size becomes the
356 lowest-addressed loadable section.
357
358 If the vmas and sizes are equal, the last section is considered the
359 lowest-addressed loadable section. */
360
361 void
362 find_lowest_section (abfd, sect, obj)
363 bfd *abfd;
364 asection *sect;
365 PTR obj;
366 {
367 asection **lowest = (asection **)obj;
368
369 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
370 return;
371 if (!*lowest)
372 *lowest = sect; /* First loadable section */
373 else if (bfd_section_vma (abfd, *lowest) > bfd_section_vma (abfd, sect))
374 *lowest = sect; /* A lower loadable section */
375 else if (bfd_section_vma (abfd, *lowest) == bfd_section_vma (abfd, sect)
376 && (bfd_section_size (abfd, (*lowest))
377 <= bfd_section_size (abfd, sect)))
378 *lowest = sect;
379 }
380
381 /* Parse the user's idea of an offset for dynamic linking, into our idea
382 of how to represent it for fast symbol reading. This is the default
383 version of the sym_fns.sym_offsets function for symbol readers that
384 don't need to do anything special. It allocates a section_offsets table
385 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
386
387 struct section_offsets *
388 default_symfile_offsets (objfile, addr)
389 struct objfile *objfile;
390 CORE_ADDR addr;
391 {
392 struct section_offsets *section_offsets;
393 int i;
394
395 objfile->num_sections = SECT_OFF_MAX;
396 section_offsets = (struct section_offsets *)
397 obstack_alloc (&objfile -> psymbol_obstack, SIZEOF_SECTION_OFFSETS);
398
399 for (i = 0; i < SECT_OFF_MAX; i++)
400 ANOFFSET (section_offsets, i) = addr;
401
402 return section_offsets;
403 }
404
405
406 /* Process a symbol file, as either the main file or as a dynamically
407 loaded file.
408
409 NAME is the file name (which will be tilde-expanded and made
410 absolute herein) (but we don't free or modify NAME itself).
411 FROM_TTY says how verbose to be. MAINLINE specifies whether this
412 is the main symbol file, or whether it's an extra symbol file such
413 as dynamically loaded code. If !mainline, ADDR is the address
414 where the text segment was loaded. If VERBO, the caller has printed
415 a verbose message about the symbol reading (and complaints can be
416 more terse about it). */
417
418 void
419 syms_from_objfile (objfile, addr, mainline, verbo)
420 struct objfile *objfile;
421 CORE_ADDR addr;
422 int mainline;
423 int verbo;
424 {
425 struct section_offsets *section_offsets;
426 asection *lowest_sect;
427 struct cleanup *old_chain;
428
429 init_entry_point_info (objfile);
430 find_sym_fns (objfile);
431
432 /* Make sure that partially constructed symbol tables will be cleaned up
433 if an error occurs during symbol reading. */
434 old_chain = make_cleanup (free_objfile, objfile);
435
436 if (mainline)
437 {
438 /* We will modify the main symbol table, make sure that all its users
439 will be cleaned up if an error occurs during symbol reading. */
440 make_cleanup (clear_symtab_users, 0);
441
442 /* Since no error yet, throw away the old symbol table. */
443
444 if (symfile_objfile != NULL)
445 {
446 free_objfile (symfile_objfile);
447 symfile_objfile = NULL;
448 }
449
450 /* Currently we keep symbols from the add-symbol-file command.
451 If the user wants to get rid of them, they should do "symbol-file"
452 without arguments first. Not sure this is the best behavior
453 (PR 2207). */
454
455 (*objfile -> sf -> sym_new_init) (objfile);
456 }
457
458 /* Convert addr into an offset rather than an absolute address.
459 We find the lowest address of a loaded segment in the objfile,
460 and assume that <addr> is where that got loaded. Due to historical
461 precedent, we warn if that doesn't happen to be a text segment. */
462
463 if (mainline)
464 {
465 addr = 0; /* No offset from objfile addresses. */
466 }
467 else
468 {
469 lowest_sect = bfd_get_section_by_name (objfile->obfd, ".text");
470 if (lowest_sect == NULL)
471 bfd_map_over_sections (objfile->obfd, find_lowest_section,
472 (PTR) &lowest_sect);
473
474 if (lowest_sect == NULL)
475 warning ("no loadable sections found in added symbol-file %s",
476 objfile->name);
477 else if ((bfd_get_section_flags (objfile->obfd, lowest_sect) & SEC_CODE)
478 == 0)
479 /* FIXME-32x64--assumes bfd_vma fits in long. */
480 warning ("Lowest section in %s is %s at 0x%lx",
481 objfile->name,
482 bfd_section_name (objfile->obfd, lowest_sect),
483 (unsigned long) bfd_section_vma (objfile->obfd, lowest_sect));
484
485 if (lowest_sect)
486 addr -= bfd_section_vma (objfile->obfd, lowest_sect);
487 }
488
489 /* Initialize symbol reading routines for this objfile, allow complaints to
490 appear for this new file, and record how verbose to be, then do the
491 initial symbol reading for this file. */
492
493 (*objfile -> sf -> sym_init) (objfile);
494 clear_complaints (1, verbo);
495
496 section_offsets = (*objfile -> sf -> sym_offsets) (objfile, addr);
497 objfile->section_offsets = section_offsets;
498
499 #ifndef IBM6000_TARGET
500 /* This is a SVR4/SunOS specific hack, I think. In any event, it
501 screws RS/6000. sym_offsets should be doing this sort of thing,
502 because it knows the mapping between bfd sections and
503 section_offsets. */
504 /* This is a hack. As far as I can tell, section offsets are not
505 target dependent. They are all set to addr with a couple of
506 exceptions. The exceptions are sysvr4 shared libraries, whose
507 offsets are kept in solib structures anyway and rs6000 xcoff
508 which handles shared libraries in a completely unique way.
509
510 Section offsets are built similarly, except that they are built
511 by adding addr in all cases because there is no clear mapping
512 from section_offsets into actual sections. Note that solib.c
513 has a different algorythm for finding section offsets.
514
515 These should probably all be collapsed into some target
516 independent form of shared library support. FIXME. */
517
518 if (addr)
519 {
520 struct obj_section *s;
521
522 for (s = objfile->sections; s < objfile->sections_end; ++s)
523 {
524 s->addr -= s->offset;
525 s->addr += addr;
526 s->endaddr -= s->offset;
527 s->endaddr += addr;
528 s->offset += addr;
529 }
530 }
531 #endif /* not IBM6000_TARGET */
532
533 (*objfile -> sf -> sym_read) (objfile, section_offsets, mainline);
534
535 if (!have_partial_symbols () && !have_full_symbols ())
536 {
537 wrap_here ("");
538 printf_filtered ("(no debugging symbols found)...");
539 wrap_here ("");
540 }
541
542 /* Don't allow char * to have a typename (else would get caddr_t).
543 Ditto void *. FIXME: Check whether this is now done by all the
544 symbol readers themselves (many of them now do), and if so remove
545 it from here. */
546
547 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
548 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
549
550 /* Mark the objfile has having had initial symbol read attempted. Note
551 that this does not mean we found any symbols... */
552
553 objfile -> flags |= OBJF_SYMS;
554
555 /* Discard cleanups as symbol reading was successful. */
556
557 discard_cleanups (old_chain);
558
559 /* Call this after reading in a new symbol table to give target dependant code
560 a crack at the new symbols. For instance, this could be used to update the
561 values of target-specific symbols GDB needs to keep track of (such as
562 _sigtramp, or whatever). */
563
564 TARGET_SYMFILE_POSTREAD (objfile);
565 }
566
567 /* Perform required actions after either reading in the initial
568 symbols for a new objfile, or mapping in the symbols from a reusable
569 objfile. */
570
571 void
572 new_symfile_objfile (objfile, mainline, verbo)
573 struct objfile *objfile;
574 int mainline;
575 int verbo;
576 {
577
578 /* If this is the main symbol file we have to clean up all users of the
579 old main symbol file. Otherwise it is sufficient to fixup all the
580 breakpoints that may have been redefined by this symbol file. */
581 if (mainline)
582 {
583 /* OK, make it the "real" symbol file. */
584 symfile_objfile = objfile;
585
586 clear_symtab_users ();
587 }
588 else
589 {
590 breakpoint_re_set ();
591 }
592
593 /* We're done reading the symbol file; finish off complaints. */
594 clear_complaints (0, verbo);
595 }
596
597 /* Process a symbol file, as either the main file or as a dynamically
598 loaded file.
599
600 NAME is the file name (which will be tilde-expanded and made
601 absolute herein) (but we don't free or modify NAME itself).
602 FROM_TTY says how verbose to be. MAINLINE specifies whether this
603 is the main symbol file, or whether it's an extra symbol file such
604 as dynamically loaded code. If !mainline, ADDR is the address
605 where the text segment was loaded.
606
607 Upon success, returns a pointer to the objfile that was added.
608 Upon failure, jumps back to command level (never returns). */
609
610 struct objfile *
611 symbol_file_add (name, from_tty, addr, mainline, mapped, readnow)
612 char *name;
613 int from_tty;
614 CORE_ADDR addr;
615 int mainline;
616 int mapped;
617 int readnow;
618 {
619 struct objfile *objfile;
620 struct partial_symtab *psymtab;
621 bfd *abfd;
622
623 /* Open a bfd for the file, and give user a chance to burp if we'd be
624 interactively wiping out any existing symbols. */
625
626 abfd = symfile_bfd_open (name);
627
628 if ((have_full_symbols () || have_partial_symbols ())
629 && mainline
630 && from_tty
631 && !query ("Load new symbol table from \"%s\"? ", name))
632 error ("Not confirmed.");
633
634 objfile = allocate_objfile (abfd, mapped);
635
636 /* If the objfile uses a mapped symbol file, and we have a psymtab for
637 it, then skip reading any symbols at this time. */
638
639 if ((objfile -> flags & OBJF_MAPPED) && (objfile -> flags & OBJF_SYMS))
640 {
641 /* We mapped in an existing symbol table file that already has had
642 initial symbol reading performed, so we can skip that part. Notify
643 the user that instead of reading the symbols, they have been mapped.
644 */
645 if (from_tty || info_verbose)
646 {
647 printf_filtered ("Mapped symbols for %s...", name);
648 wrap_here ("");
649 gdb_flush (gdb_stdout);
650 }
651 init_entry_point_info (objfile);
652 find_sym_fns (objfile);
653 }
654 else
655 {
656 /* We either created a new mapped symbol table, mapped an existing
657 symbol table file which has not had initial symbol reading
658 performed, or need to read an unmapped symbol table. */
659 if (from_tty || info_verbose)
660 {
661 if (pre_add_symbol_hook)
662 pre_add_symbol_hook (name);
663 else
664 {
665 printf_filtered ("Reading symbols from %s...", name);
666 wrap_here ("");
667 gdb_flush (gdb_stdout);
668 }
669 }
670 syms_from_objfile (objfile, addr, mainline, from_tty);
671 }
672
673 /* We now have at least a partial symbol table. Check to see if the
674 user requested that all symbols be read on initial access via either
675 the gdb startup command line or on a per symbol file basis. Expand
676 all partial symbol tables for this objfile if so. */
677
678 if (readnow || readnow_symbol_files)
679 {
680 if (from_tty || info_verbose)
681 {
682 printf_filtered ("expanding to full symbols...");
683 wrap_here ("");
684 gdb_flush (gdb_stdout);
685 }
686
687 for (psymtab = objfile -> psymtabs;
688 psymtab != NULL;
689 psymtab = psymtab -> next)
690 {
691 psymtab_to_symtab (psymtab);
692 }
693 }
694
695 if (from_tty || info_verbose)
696 {
697 if (post_add_symbol_hook)
698 post_add_symbol_hook ();
699 else
700 {
701 printf_filtered ("done.\n");
702 gdb_flush (gdb_stdout);
703 }
704 }
705
706 new_symfile_objfile (objfile, mainline, from_tty);
707
708 target_new_objfile (objfile);
709
710 return (objfile);
711 }
712
713 /* This is the symbol-file command. Read the file, analyze its
714 symbols, and add a struct symtab to a symtab list. The syntax of
715 the command is rather bizarre--(1) buildargv implements various
716 quoting conventions which are undocumented and have little or
717 nothing in common with the way things are quoted (or not quoted)
718 elsewhere in GDB, (2) options are used, which are not generally
719 used in GDB (perhaps "set mapped on", "set readnow on" would be
720 better), (3) the order of options matters, which is contrary to GNU
721 conventions (because it is confusing and inconvenient). */
722
723 void
724 symbol_file_command (args, from_tty)
725 char *args;
726 int from_tty;
727 {
728 char **argv;
729 char *name = NULL;
730 CORE_ADDR text_relocation = 0; /* text_relocation */
731 struct cleanup *cleanups;
732 int mapped = 0;
733 int readnow = 0;
734
735 dont_repeat ();
736
737 if (args == NULL)
738 {
739 if ((have_full_symbols () || have_partial_symbols ())
740 && from_tty
741 && !query ("Discard symbol table from `%s'? ",
742 symfile_objfile -> name))
743 error ("Not confirmed.");
744 free_all_objfiles ();
745 symfile_objfile = NULL;
746 if (from_tty)
747 {
748 printf_unfiltered ("No symbol file now.\n");
749 }
750 }
751 else
752 {
753 if ((argv = buildargv (args)) == NULL)
754 {
755 nomem (0);
756 }
757 cleanups = make_cleanup (freeargv, (char *) argv);
758 while (*argv != NULL)
759 {
760 if (STREQ (*argv, "-mapped"))
761 {
762 mapped = 1;
763 }
764 else if (STREQ (*argv, "-readnow"))
765 {
766 readnow = 1;
767 }
768 else if (**argv == '-')
769 {
770 error ("unknown option `%s'", *argv);
771 }
772 else
773 {
774 char *p;
775
776 name = *argv;
777
778 /* this is for rombug remote only, to get the text relocation by
779 using link command */
780 p = strrchr(name, '/');
781 if (p != NULL) p++;
782 else p = name;
783
784 target_link(p, &text_relocation);
785
786 if (text_relocation == (CORE_ADDR)0)
787 return;
788 else if (text_relocation == (CORE_ADDR)-1)
789 symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped,
790 readnow);
791 else
792 symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation,
793 0, mapped, readnow);
794
795 /* Getting new symbols may change our opinion about what is
796 frameless. */
797 reinit_frame_cache ();
798
799 set_initial_language ();
800 }
801 argv++;
802 }
803
804 if (name == NULL)
805 {
806 error ("no symbol file name was specified");
807 }
808 do_cleanups (cleanups);
809 }
810 }
811
812 /* Set the initial language.
813
814 A better solution would be to record the language in the psymtab when reading
815 partial symbols, and then use it (if known) to set the language. This would
816 be a win for formats that encode the language in an easily discoverable place,
817 such as DWARF. For stabs, we can jump through hoops looking for specially
818 named symbols or try to intuit the language from the specific type of stabs
819 we find, but we can't do that until later when we read in full symbols.
820 FIXME. */
821
822 static void
823 set_initial_language ()
824 {
825 struct partial_symtab *pst;
826 enum language lang = language_unknown;
827
828 pst = find_main_psymtab ();
829 if (pst != NULL)
830 {
831 if (pst -> filename != NULL)
832 {
833 lang = deduce_language_from_filename (pst -> filename);
834 }
835 if (lang == language_unknown)
836 {
837 /* Make C the default language */
838 lang = language_c;
839 }
840 set_language (lang);
841 expected_language = current_language; /* Don't warn the user */
842 }
843 }
844
845 /* Open file specified by NAME and hand it off to BFD for preliminary
846 analysis. Result is a newly initialized bfd *, which includes a newly
847 malloc'd` copy of NAME (tilde-expanded and made absolute).
848 In case of trouble, error() is called. */
849
850 static bfd *
851 symfile_bfd_open (name)
852 char *name;
853 {
854 bfd *sym_bfd;
855 int desc;
856 char *absolute_name;
857
858 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
859
860 /* Look down path for it, allocate 2nd new malloc'd copy. */
861 desc = openp (getenv ("PATH"), 1, name, O_RDONLY | O_BINARY, 0, &absolute_name);
862 #if defined(__GO32__) || defined(_WIN32)
863 if (desc < 0)
864 {
865 char *exename = alloca (strlen (name) + 5);
866 strcat (strcpy (exename, name), ".exe");
867 desc = openp (getenv ("PATH"), 1, exename, O_RDONLY | O_BINARY,
868 0, &absolute_name);
869 }
870 #endif
871 if (desc < 0)
872 {
873 make_cleanup (free, name);
874 perror_with_name (name);
875 }
876 free (name); /* Free 1st new malloc'd copy */
877 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
878 /* It'll be freed in free_objfile(). */
879
880 sym_bfd = bfd_fdopenr (name, gnutarget, desc);
881 if (!sym_bfd)
882 {
883 close (desc);
884 make_cleanup (free, name);
885 error ("\"%s\": can't open to read symbols: %s.", name,
886 bfd_errmsg (bfd_get_error ()));
887 }
888 sym_bfd->cacheable = true;
889
890 if (!bfd_check_format (sym_bfd, bfd_object))
891 {
892 /* FIXME: should be checking for errors from bfd_close (for one thing,
893 on error it does not free all the storage associated with the
894 bfd). */
895 bfd_close (sym_bfd); /* This also closes desc */
896 make_cleanup (free, name);
897 error ("\"%s\": can't read symbols: %s.", name,
898 bfd_errmsg (bfd_get_error ()));
899 }
900
901 return (sym_bfd);
902 }
903
904 /* Link a new symtab_fns into the global symtab_fns list. Called on gdb
905 startup by the _initialize routine in each object file format reader,
906 to register information about each format the the reader is prepared
907 to handle. */
908
909 void
910 add_symtab_fns (sf)
911 struct sym_fns *sf;
912 {
913 sf->next = symtab_fns;
914 symtab_fns = sf;
915 }
916
917
918 /* Initialize to read symbols from the symbol file sym_bfd. It either
919 returns or calls error(). The result is an initialized struct sym_fns
920 in the objfile structure, that contains cached information about the
921 symbol file. */
922
923 static void
924 find_sym_fns (objfile)
925 struct objfile *objfile;
926 {
927 struct sym_fns *sf;
928 enum bfd_flavour our_flavour = bfd_get_flavour (objfile -> obfd);
929 char *our_target = bfd_get_target (objfile -> obfd);
930
931 /* Special kludge for RS/6000 and PowerMac. See xcoffread.c. */
932 if (STREQ (our_target, "aixcoff-rs6000") ||
933 STREQ (our_target, "xcoff-powermac"))
934 our_flavour = (enum bfd_flavour)-1;
935
936 /* Special kludge for apollo. See dstread.c. */
937 if (STREQN (our_target, "apollo", 6))
938 our_flavour = (enum bfd_flavour)-2;
939
940 for (sf = symtab_fns; sf != NULL; sf = sf -> next)
941 {
942 if (our_flavour == sf -> sym_flavour)
943 {
944 objfile -> sf = sf;
945 return;
946 }
947 }
948 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
949 bfd_get_target (objfile -> obfd));
950 }
951 \f
952 /* This function runs the load command of our current target. */
953
954 static void
955 load_command (arg, from_tty)
956 char *arg;
957 int from_tty;
958 {
959 if (arg == NULL)
960 arg = get_exec_file (1);
961 target_load (arg, from_tty);
962 }
963
964 /* This version of "load" should be usable for any target. Currently
965 it is just used for remote targets, not inftarg.c or core files,
966 on the theory that only in that case is it useful.
967
968 Avoiding xmodem and the like seems like a win (a) because we don't have
969 to worry about finding it, and (b) On VMS, fork() is very slow and so
970 we don't want to run a subprocess. On the other hand, I'm not sure how
971 performance compares. */
972 #define GENERIC_LOAD_CHUNK 256
973 #define VALIDATE_DOWNLOAD 0
974 void
975 generic_load (filename, from_tty)
976 char *filename;
977 int from_tty;
978 {
979 struct cleanup *old_cleanups;
980 asection *s;
981 bfd *loadfile_bfd;
982 time_t start_time, end_time; /* Start and end times of download */
983 unsigned long data_count = 0; /* Number of bytes transferred to memory */
984 int n;
985 unsigned long load_offset = 0; /* offset to add to vma for each section */
986 char buf[GENERIC_LOAD_CHUNK+8];
987 #if VALIDATE_DOWNLOAD
988 char verify_buffer[GENERIC_LOAD_CHUNK+8] ;
989 #endif
990
991 /* enable user to specify address for downloading as 2nd arg to load */
992 n = sscanf(filename, "%s 0x%lx", buf, &load_offset);
993 if (n > 1 )
994 filename = buf;
995 else
996 load_offset = 0;
997
998 loadfile_bfd = bfd_openr (filename, gnutarget);
999 if (loadfile_bfd == NULL)
1000 {
1001 perror_with_name (filename);
1002 return;
1003 }
1004 /* FIXME: should be checking for errors from bfd_close (for one thing,
1005 on error it does not free all the storage associated with the
1006 bfd). */
1007 old_cleanups = make_cleanup (bfd_close, loadfile_bfd);
1008
1009 if (!bfd_check_format (loadfile_bfd, bfd_object))
1010 {
1011 error ("\"%s\" is not an object file: %s", filename,
1012 bfd_errmsg (bfd_get_error ()));
1013 }
1014
1015 start_time = time (NULL);
1016
1017 for (s = loadfile_bfd->sections; s; s = s->next)
1018 {
1019 if (s->flags & SEC_LOAD)
1020 {
1021 bfd_size_type size;
1022
1023 size = bfd_get_section_size_before_reloc (s);
1024 if (size > 0)
1025 {
1026 char *buffer;
1027 struct cleanup *old_chain;
1028 bfd_vma lma;
1029 unsigned long l = size ;
1030 int err;
1031 char *sect;
1032 unsigned long sent;
1033 unsigned long len;
1034
1035 l = l > GENERIC_LOAD_CHUNK ? GENERIC_LOAD_CHUNK : l ;
1036
1037 buffer = xmalloc (size);
1038 old_chain = make_cleanup (free, buffer);
1039
1040 lma = s->lma;
1041 lma += load_offset;
1042
1043 /* Is this really necessary? I guess it gives the user something
1044 to look at during a long download. */
1045 printf_filtered ("Loading section %s, size 0x%lx lma ",
1046 bfd_get_section_name (loadfile_bfd, s),
1047 (unsigned long) size);
1048 print_address_numeric (lma, 1, gdb_stdout);
1049 printf_filtered ("\n");
1050
1051 bfd_get_section_contents (loadfile_bfd, s, buffer, 0, size);
1052
1053 sect = (char *) bfd_get_section_name (loadfile_bfd, s);
1054 sent = 0;
1055 do
1056 {
1057 len = (size - sent) < l ? (size - sent) : l;
1058 sent += len;
1059 err = target_write_memory (lma, buffer, len);
1060 if (ui_load_progress_hook)
1061 if (ui_load_progress_hook (sect, sent))
1062 error ("Canceled the download");
1063 #if VALIDATE_DOWNLOAD
1064 /* Broken memories and broken monitors manifest themselves
1065 here when bring new computers to life.
1066 This doubles already slow downloads.
1067 */
1068 if (err) break ;
1069 {
1070 target_read_memory(lma,verify_buffer,len) ;
1071 if (0 != bcmp(buffer,verify_buffer,len))
1072 error("Download verify failed at %08x",
1073 (unsigned long)lma) ;
1074 }
1075
1076 #endif
1077 data_count += len ;
1078 lma += len;
1079 buffer += len;
1080 } /* od */
1081 while (err == 0 && sent < size);
1082
1083 if (err != 0)
1084 error ("Memory access error while loading section %s.",
1085 bfd_get_section_name (loadfile_bfd, s));
1086
1087 do_cleanups (old_chain);
1088 }
1089 }
1090 }
1091
1092 end_time = time (NULL);
1093 {
1094 unsigned long entry ;
1095 entry = bfd_get_start_address(loadfile_bfd) ;
1096 printf_filtered ("Start address 0x%lx , load size %d\n", entry,data_count);
1097 /* We were doing this in remote-mips.c, I suspect it is right
1098 for other targets too. */
1099 write_pc (entry);
1100 }
1101
1102 /* FIXME: are we supposed to call symbol_file_add or not? According to
1103 a comment from remote-mips.c (where a call to symbol_file_add was
1104 commented out), making the call confuses GDB if more than one file is
1105 loaded in. remote-nindy.c had no call to symbol_file_add, but remote-vx.c
1106 does. */
1107
1108 report_transfer_performance (data_count, start_time, end_time);
1109
1110 do_cleanups (old_cleanups);
1111 }
1112
1113 /* Report how fast the transfer went. */
1114
1115 void
1116 report_transfer_performance (data_count, start_time, end_time)
1117 unsigned long data_count;
1118 time_t start_time, end_time;
1119 {
1120 printf_filtered ("Transfer rate: ");
1121 if (end_time != start_time)
1122 printf_filtered ("%d bits/sec",
1123 (data_count * 8) / (end_time - start_time));
1124 else
1125 printf_filtered ("%d bits in <1 sec", (data_count * 8));
1126 printf_filtered (".\n");
1127 }
1128
1129 /* This function allows the addition of incrementally linked object files.
1130 It does not modify any state in the target, only in the debugger. */
1131
1132 /* ARGSUSED */
1133 static void
1134 add_symbol_file_command (args, from_tty)
1135 char *args;
1136 int from_tty;
1137 {
1138 char *name = NULL;
1139 CORE_ADDR text_addr;
1140 char *arg;
1141 int readnow = 0;
1142 int mapped = 0;
1143
1144 dont_repeat ();
1145
1146 if (args == NULL)
1147 {
1148 error ("add-symbol-file takes a file name and an address");
1149 }
1150
1151 /* Make a copy of the string that we can safely write into. */
1152
1153 args = strdup (args);
1154 make_cleanup (free, args);
1155
1156 /* Pick off any -option args and the file name. */
1157
1158 while ((*args != '\000') && (name == NULL))
1159 {
1160 while (isspace (*args)) {args++;}
1161 arg = args;
1162 while ((*args != '\000') && !isspace (*args)) {args++;}
1163 if (*args != '\000')
1164 {
1165 *args++ = '\000';
1166 }
1167 if (*arg != '-')
1168 {
1169 name = arg;
1170 }
1171 else if (STREQ (arg, "-mapped"))
1172 {
1173 mapped = 1;
1174 }
1175 else if (STREQ (arg, "-readnow"))
1176 {
1177 readnow = 1;
1178 }
1179 else
1180 {
1181 error ("unknown option `%s'", arg);
1182 }
1183 }
1184
1185 /* After picking off any options and the file name, args should be
1186 left pointing at the remainder of the command line, which should
1187 be the address expression to evaluate. */
1188
1189 if (name == NULL)
1190 {
1191 error ("add-symbol-file takes a file name");
1192 }
1193 name = tilde_expand (name);
1194 make_cleanup (free, name);
1195
1196 if (*args != '\000')
1197 {
1198 text_addr = parse_and_eval_address (args);
1199 }
1200 else
1201 {
1202 target_link(name, &text_addr);
1203 if (text_addr == (CORE_ADDR)-1)
1204 error("Don't know how to get text start location for this file");
1205 }
1206
1207 /* FIXME-32x64: Assumes text_addr fits in a long. */
1208 if ((from_tty)
1209 && (!query ("add symbol table from file \"%s\" at text_addr = %s?\n",
1210 name, local_hex_string ((unsigned long)text_addr))))
1211 error ("Not confirmed.");
1212
1213 symbol_file_add (name, from_tty, text_addr, 0, mapped, readnow);
1214
1215 /* Getting new symbols may change our opinion about what is
1216 frameless. */
1217 reinit_frame_cache ();
1218 }
1219 \f
1220 static void
1221 add_shared_symbol_files_command (args, from_tty)
1222 char *args;
1223 int from_tty;
1224 {
1225 #ifdef ADD_SHARED_SYMBOL_FILES
1226 ADD_SHARED_SYMBOL_FILES (args, from_tty);
1227 #else
1228 error ("This command is not available in this configuration of GDB.");
1229 #endif
1230 }
1231 \f
1232 /* Re-read symbols if a symbol-file has changed. */
1233 void
1234 reread_symbols ()
1235 {
1236 struct objfile *objfile;
1237 long new_modtime;
1238 int reread_one = 0;
1239 struct stat new_statbuf;
1240 int res;
1241
1242 /* With the addition of shared libraries, this should be modified,
1243 the load time should be saved in the partial symbol tables, since
1244 different tables may come from different source files. FIXME.
1245 This routine should then walk down each partial symbol table
1246 and see if the symbol table that it originates from has been changed */
1247
1248 for (objfile = object_files; objfile; objfile = objfile->next) {
1249 if (objfile->obfd) {
1250 #ifdef IBM6000_TARGET
1251 /* If this object is from a shared library, then you should
1252 stat on the library name, not member name. */
1253
1254 if (objfile->obfd->my_archive)
1255 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
1256 else
1257 #endif
1258 res = stat (objfile->name, &new_statbuf);
1259 if (res != 0) {
1260 /* FIXME, should use print_sys_errmsg but it's not filtered. */
1261 printf_filtered ("`%s' has disappeared; keeping its symbols.\n",
1262 objfile->name);
1263 continue;
1264 }
1265 new_modtime = new_statbuf.st_mtime;
1266 if (new_modtime != objfile->mtime)
1267 {
1268 struct cleanup *old_cleanups;
1269 struct section_offsets *offsets;
1270 int num_offsets;
1271 int section_offsets_size;
1272 char *obfd_filename;
1273
1274 printf_filtered ("`%s' has changed; re-reading symbols.\n",
1275 objfile->name);
1276
1277 /* There are various functions like symbol_file_add,
1278 symfile_bfd_open, syms_from_objfile, etc., which might
1279 appear to do what we want. But they have various other
1280 effects which we *don't* want. So we just do stuff
1281 ourselves. We don't worry about mapped files (for one thing,
1282 any mapped file will be out of date). */
1283
1284 /* If we get an error, blow away this objfile (not sure if
1285 that is the correct response for things like shared
1286 libraries). */
1287 old_cleanups = make_cleanup (free_objfile, objfile);
1288 /* We need to do this whenever any symbols go away. */
1289 make_cleanup (clear_symtab_users, 0);
1290
1291 /* Clean up any state BFD has sitting around. We don't need
1292 to close the descriptor but BFD lacks a way of closing the
1293 BFD without closing the descriptor. */
1294 obfd_filename = bfd_get_filename (objfile->obfd);
1295 if (!bfd_close (objfile->obfd))
1296 error ("Can't close BFD for %s: %s", objfile->name,
1297 bfd_errmsg (bfd_get_error ()));
1298 objfile->obfd = bfd_openr (obfd_filename, gnutarget);
1299 if (objfile->obfd == NULL)
1300 error ("Can't open %s to read symbols.", objfile->name);
1301 /* bfd_openr sets cacheable to true, which is what we want. */
1302 if (!bfd_check_format (objfile->obfd, bfd_object))
1303 error ("Can't read symbols from %s: %s.", objfile->name,
1304 bfd_errmsg (bfd_get_error ()));
1305
1306 /* Save the offsets, we will nuke them with the rest of the
1307 psymbol_obstack. */
1308 num_offsets = objfile->num_sections;
1309 section_offsets_size =
1310 sizeof (struct section_offsets)
1311 + sizeof (objfile->section_offsets->offsets) * num_offsets;
1312 offsets = (struct section_offsets *) alloca (section_offsets_size);
1313 memcpy (offsets, objfile->section_offsets, section_offsets_size);
1314
1315 /* Nuke all the state that we will re-read. Much of the following
1316 code which sets things to NULL really is necessary to tell
1317 other parts of GDB that there is nothing currently there. */
1318
1319 /* FIXME: Do we have to free a whole linked list, or is this
1320 enough? */
1321 if (objfile->global_psymbols.list)
1322 mfree (objfile->md, objfile->global_psymbols.list);
1323 memset (&objfile -> global_psymbols, 0,
1324 sizeof (objfile -> global_psymbols));
1325 if (objfile->static_psymbols.list)
1326 mfree (objfile->md, objfile->static_psymbols.list);
1327 memset (&objfile -> static_psymbols, 0,
1328 sizeof (objfile -> static_psymbols));
1329
1330 /* Free the obstacks for non-reusable objfiles */
1331 obstack_free (&objfile -> psymbol_cache.cache, 0);
1332 memset (&objfile -> psymbol_cache, 0,
1333 sizeof (objfile -> psymbol_cache));
1334 obstack_free (&objfile -> psymbol_obstack, 0);
1335 obstack_free (&objfile -> symbol_obstack, 0);
1336 obstack_free (&objfile -> type_obstack, 0);
1337 objfile->sections = NULL;
1338 objfile->symtabs = NULL;
1339 objfile->psymtabs = NULL;
1340 objfile->free_psymtabs = NULL;
1341 objfile->msymbols = NULL;
1342 objfile->minimal_symbol_count= 0;
1343 objfile->fundamental_types = NULL;
1344 if (objfile -> sf != NULL)
1345 {
1346 (*objfile -> sf -> sym_finish) (objfile);
1347 }
1348
1349 /* We never make this a mapped file. */
1350 objfile -> md = NULL;
1351 /* obstack_specify_allocation also initializes the obstack so
1352 it is empty. */
1353 obstack_specify_allocation (&objfile -> psymbol_cache.cache, 0, 0,
1354 xmalloc, free);
1355 obstack_specify_allocation (&objfile -> psymbol_obstack, 0, 0,
1356 xmalloc, free);
1357 obstack_specify_allocation (&objfile -> symbol_obstack, 0, 0,
1358 xmalloc, free);
1359 obstack_specify_allocation (&objfile -> type_obstack, 0, 0,
1360 xmalloc, free);
1361 if (build_objfile_section_table (objfile))
1362 {
1363 error ("Can't find the file sections in `%s': %s",
1364 objfile -> name, bfd_errmsg (bfd_get_error ()));
1365 }
1366
1367 /* We use the same section offsets as from last time. I'm not
1368 sure whether that is always correct for shared libraries. */
1369 objfile->section_offsets = (struct section_offsets *)
1370 obstack_alloc (&objfile -> psymbol_obstack, section_offsets_size);
1371 memcpy (objfile->section_offsets, offsets, section_offsets_size);
1372 objfile->num_sections = num_offsets;
1373
1374 /* What the hell is sym_new_init for, anyway? The concept of
1375 distinguishing between the main file and additional files
1376 in this way seems rather dubious. */
1377 if (objfile == symfile_objfile)
1378 (*objfile->sf->sym_new_init) (objfile);
1379
1380 (*objfile->sf->sym_init) (objfile);
1381 clear_complaints (1, 1);
1382 /* The "mainline" parameter is a hideous hack; I think leaving it
1383 zero is OK since dbxread.c also does what it needs to do if
1384 objfile->global_psymbols.size is 0. */
1385 (*objfile->sf->sym_read) (objfile, objfile->section_offsets, 0);
1386 if (!have_partial_symbols () && !have_full_symbols ())
1387 {
1388 wrap_here ("");
1389 printf_filtered ("(no debugging symbols found)\n");
1390 wrap_here ("");
1391 }
1392 objfile -> flags |= OBJF_SYMS;
1393
1394 /* We're done reading the symbol file; finish off complaints. */
1395 clear_complaints (0, 1);
1396
1397 /* Getting new symbols may change our opinion about what is
1398 frameless. */
1399
1400 reinit_frame_cache ();
1401
1402 /* Discard cleanups as symbol reading was successful. */
1403 discard_cleanups (old_cleanups);
1404
1405 /* If the mtime has changed between the time we set new_modtime
1406 and now, we *want* this to be out of date, so don't call stat
1407 again now. */
1408 objfile->mtime = new_modtime;
1409 reread_one = 1;
1410
1411 /* Call this after reading in a new symbol table to give target
1412 dependant code a crack at the new symbols. For instance, this
1413 could be used to update the values of target-specific symbols GDB
1414 needs to keep track of (such as _sigtramp, or whatever). */
1415
1416 TARGET_SYMFILE_POSTREAD (objfile);
1417 }
1418 }
1419 }
1420
1421 if (reread_one)
1422 clear_symtab_users ();
1423 }
1424
1425 \f
1426 enum language
1427 deduce_language_from_filename (filename)
1428 char *filename;
1429 {
1430 char *c;
1431
1432 if (0 == filename)
1433 ; /* Get default */
1434 else if (0 == (c = strrchr (filename, '.')))
1435 ; /* Get default. */
1436 else if (STREQ (c, ".c"))
1437 return language_c;
1438 else if (STREQ (c, ".cc") || STREQ (c, ".C") || STREQ (c, ".cxx")
1439 || STREQ (c, ".cpp") || STREQ (c, ".cp") || STREQ (c, ".c++"))
1440 return language_cplus;
1441 /* start-sanitize-java */
1442 else if (STREQ (c, ".java") || STREQ (c, ".class"))
1443 return language_java;
1444 /* end-sanitize-java */
1445 else if (STREQ (c, ".ch") || STREQ (c, ".c186") || STREQ (c, ".c286"))
1446 return language_chill;
1447 else if (STREQ (c, ".f") || STREQ (c, ".F"))
1448 return language_fortran;
1449 else if (STREQ (c, ".mod"))
1450 return language_m2;
1451 else if (STREQ (c, ".s") || STREQ (c, ".S"))
1452 return language_asm;
1453
1454 return language_unknown; /* default */
1455 }
1456 \f
1457 /* allocate_symtab:
1458
1459 Allocate and partly initialize a new symbol table. Return a pointer
1460 to it. error() if no space.
1461
1462 Caller must set these fields:
1463 LINETABLE(symtab)
1464 symtab->blockvector
1465 symtab->dirname
1466 symtab->free_code
1467 symtab->free_ptr
1468 possibly free_named_symtabs (symtab->filename);
1469 */
1470
1471 struct symtab *
1472 allocate_symtab (filename, objfile)
1473 char *filename;
1474 struct objfile *objfile;
1475 {
1476 register struct symtab *symtab;
1477
1478 symtab = (struct symtab *)
1479 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symtab));
1480 memset (symtab, 0, sizeof (*symtab));
1481 symtab -> filename = obsavestring (filename, strlen (filename),
1482 &objfile -> symbol_obstack);
1483 symtab -> fullname = NULL;
1484 symtab -> language = deduce_language_from_filename (filename);
1485 symtab -> debugformat = obsavestring ("unknown", 7,
1486 &objfile -> symbol_obstack);
1487
1488 /* Hook it to the objfile it comes from */
1489
1490 symtab -> objfile = objfile;
1491 symtab -> next = objfile -> symtabs;
1492 objfile -> symtabs = symtab;
1493
1494 /* FIXME: This should go away. It is only defined for the Z8000,
1495 and the Z8000 definition of this macro doesn't have anything to
1496 do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
1497 here for convenience. */
1498 #ifdef INIT_EXTRA_SYMTAB_INFO
1499 INIT_EXTRA_SYMTAB_INFO (symtab);
1500 #endif
1501
1502 return (symtab);
1503 }
1504
1505 struct partial_symtab *
1506 allocate_psymtab (filename, objfile)
1507 char *filename;
1508 struct objfile *objfile;
1509 {
1510 struct partial_symtab *psymtab;
1511
1512 if (objfile -> free_psymtabs)
1513 {
1514 psymtab = objfile -> free_psymtabs;
1515 objfile -> free_psymtabs = psymtab -> next;
1516 }
1517 else
1518 psymtab = (struct partial_symtab *)
1519 obstack_alloc (&objfile -> psymbol_obstack,
1520 sizeof (struct partial_symtab));
1521
1522 memset (psymtab, 0, sizeof (struct partial_symtab));
1523 psymtab -> filename = obsavestring (filename, strlen (filename),
1524 &objfile -> psymbol_obstack);
1525 psymtab -> symtab = NULL;
1526
1527 /* Prepend it to the psymtab list for the objfile it belongs to.
1528 Psymtabs are searched in most recent inserted -> least recent
1529 inserted order. */
1530
1531 psymtab -> objfile = objfile;
1532 psymtab -> next = objfile -> psymtabs;
1533 objfile -> psymtabs = psymtab;
1534 #if 0
1535 {
1536 struct partial_symtab **prev_pst;
1537 psymtab -> objfile = objfile;
1538 psymtab -> next = NULL;
1539 prev_pst = &(objfile -> psymtabs);
1540 while ((*prev_pst) != NULL)
1541 prev_pst = &((*prev_pst) -> next);
1542 (*prev_pst) = psymtab;
1543 }
1544 #endif
1545
1546 return (psymtab);
1547 }
1548
1549 void
1550 discard_psymtab (pst)
1551 struct partial_symtab *pst;
1552 {
1553 struct partial_symtab **prev_pst;
1554
1555 /* From dbxread.c:
1556 Empty psymtabs happen as a result of header files which don't
1557 have any symbols in them. There can be a lot of them. But this
1558 check is wrong, in that a psymtab with N_SLINE entries but
1559 nothing else is not empty, but we don't realize that. Fixing
1560 that without slowing things down might be tricky. */
1561
1562 /* First, snip it out of the psymtab chain */
1563
1564 prev_pst = &(pst->objfile->psymtabs);
1565 while ((*prev_pst) != pst)
1566 prev_pst = &((*prev_pst)->next);
1567 (*prev_pst) = pst->next;
1568
1569 /* Next, put it on a free list for recycling */
1570
1571 pst->next = pst->objfile->free_psymtabs;
1572 pst->objfile->free_psymtabs = pst;
1573 }
1574
1575 \f
1576 /* Reset all data structures in gdb which may contain references to symbol
1577 table data. */
1578
1579 void
1580 clear_symtab_users ()
1581 {
1582 /* Someday, we should do better than this, by only blowing away
1583 the things that really need to be blown. */
1584 clear_value_history ();
1585 clear_displays ();
1586 clear_internalvars ();
1587 breakpoint_re_set ();
1588 set_default_breakpoint (0, 0, 0, 0);
1589 current_source_symtab = 0;
1590 current_source_line = 0;
1591 clear_pc_function_cache ();
1592 target_new_objfile (NULL);
1593 }
1594
1595 /* clear_symtab_users_once:
1596
1597 This function is run after symbol reading, or from a cleanup.
1598 If an old symbol table was obsoleted, the old symbol table
1599 has been blown away, but the other GDB data structures that may
1600 reference it have not yet been cleared or re-directed. (The old
1601 symtab was zapped, and the cleanup queued, in free_named_symtab()
1602 below.)
1603
1604 This function can be queued N times as a cleanup, or called
1605 directly; it will do all the work the first time, and then will be a
1606 no-op until the next time it is queued. This works by bumping a
1607 counter at queueing time. Much later when the cleanup is run, or at
1608 the end of symbol processing (in case the cleanup is discarded), if
1609 the queued count is greater than the "done-count", we do the work
1610 and set the done-count to the queued count. If the queued count is
1611 less than or equal to the done-count, we just ignore the call. This
1612 is needed because reading a single .o file will often replace many
1613 symtabs (one per .h file, for example), and we don't want to reset
1614 the breakpoints N times in the user's face.
1615
1616 The reason we both queue a cleanup, and call it directly after symbol
1617 reading, is because the cleanup protects us in case of errors, but is
1618 discarded if symbol reading is successful. */
1619
1620 #if 0
1621 /* FIXME: As free_named_symtabs is currently a big noop this function
1622 is no longer needed. */
1623 static void
1624 clear_symtab_users_once PARAMS ((void));
1625
1626 static int clear_symtab_users_queued;
1627 static int clear_symtab_users_done;
1628
1629 static void
1630 clear_symtab_users_once ()
1631 {
1632 /* Enforce once-per-`do_cleanups'-semantics */
1633 if (clear_symtab_users_queued <= clear_symtab_users_done)
1634 return;
1635 clear_symtab_users_done = clear_symtab_users_queued;
1636
1637 clear_symtab_users ();
1638 }
1639 #endif
1640
1641 /* Delete the specified psymtab, and any others that reference it. */
1642
1643 static void
1644 cashier_psymtab (pst)
1645 struct partial_symtab *pst;
1646 {
1647 struct partial_symtab *ps, *pprev = NULL;
1648 int i;
1649
1650 /* Find its previous psymtab in the chain */
1651 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
1652 if (ps == pst)
1653 break;
1654 pprev = ps;
1655 }
1656
1657 if (ps) {
1658 /* Unhook it from the chain. */
1659 if (ps == pst->objfile->psymtabs)
1660 pst->objfile->psymtabs = ps->next;
1661 else
1662 pprev->next = ps->next;
1663
1664 /* FIXME, we can't conveniently deallocate the entries in the
1665 partial_symbol lists (global_psymbols/static_psymbols) that
1666 this psymtab points to. These just take up space until all
1667 the psymtabs are reclaimed. Ditto the dependencies list and
1668 filename, which are all in the psymbol_obstack. */
1669
1670 /* We need to cashier any psymtab that has this one as a dependency... */
1671 again:
1672 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
1673 for (i = 0; i < ps->number_of_dependencies; i++) {
1674 if (ps->dependencies[i] == pst) {
1675 cashier_psymtab (ps);
1676 goto again; /* Must restart, chain has been munged. */
1677 }
1678 }
1679 }
1680 }
1681 }
1682
1683 /* If a symtab or psymtab for filename NAME is found, free it along
1684 with any dependent breakpoints, displays, etc.
1685 Used when loading new versions of object modules with the "add-file"
1686 command. This is only called on the top-level symtab or psymtab's name;
1687 it is not called for subsidiary files such as .h files.
1688
1689 Return value is 1 if we blew away the environment, 0 if not.
1690 FIXME. The return valu appears to never be used.
1691
1692 FIXME. I think this is not the best way to do this. We should
1693 work on being gentler to the environment while still cleaning up
1694 all stray pointers into the freed symtab. */
1695
1696 int
1697 free_named_symtabs (name)
1698 char *name;
1699 {
1700 #if 0
1701 /* FIXME: With the new method of each objfile having it's own
1702 psymtab list, this function needs serious rethinking. In particular,
1703 why was it ever necessary to toss psymtabs with specific compilation
1704 unit filenames, as opposed to all psymtabs from a particular symbol
1705 file? -- fnf
1706 Well, the answer is that some systems permit reloading of particular
1707 compilation units. We want to blow away any old info about these
1708 compilation units, regardless of which objfiles they arrived in. --gnu. */
1709
1710 register struct symtab *s;
1711 register struct symtab *prev;
1712 register struct partial_symtab *ps;
1713 struct blockvector *bv;
1714 int blewit = 0;
1715
1716 /* We only wack things if the symbol-reload switch is set. */
1717 if (!symbol_reloading)
1718 return 0;
1719
1720 /* Some symbol formats have trouble providing file names... */
1721 if (name == 0 || *name == '\0')
1722 return 0;
1723
1724 /* Look for a psymtab with the specified name. */
1725
1726 again2:
1727 for (ps = partial_symtab_list; ps; ps = ps->next) {
1728 if (STREQ (name, ps->filename)) {
1729 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
1730 goto again2; /* Must restart, chain has been munged */
1731 }
1732 }
1733
1734 /* Look for a symtab with the specified name. */
1735
1736 for (s = symtab_list; s; s = s->next)
1737 {
1738 if (STREQ (name, s->filename))
1739 break;
1740 prev = s;
1741 }
1742
1743 if (s)
1744 {
1745 if (s == symtab_list)
1746 symtab_list = s->next;
1747 else
1748 prev->next = s->next;
1749
1750 /* For now, queue a delete for all breakpoints, displays, etc., whether
1751 or not they depend on the symtab being freed. This should be
1752 changed so that only those data structures affected are deleted. */
1753
1754 /* But don't delete anything if the symtab is empty.
1755 This test is necessary due to a bug in "dbxread.c" that
1756 causes empty symtabs to be created for N_SO symbols that
1757 contain the pathname of the object file. (This problem
1758 has been fixed in GDB 3.9x). */
1759
1760 bv = BLOCKVECTOR (s);
1761 if (BLOCKVECTOR_NBLOCKS (bv) > 2
1762 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
1763 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
1764 {
1765 complain (&oldsyms_complaint, name);
1766
1767 clear_symtab_users_queued++;
1768 make_cleanup (clear_symtab_users_once, 0);
1769 blewit = 1;
1770 } else {
1771 complain (&empty_symtab_complaint, name);
1772 }
1773
1774 free_symtab (s);
1775 }
1776 else
1777 {
1778 /* It is still possible that some breakpoints will be affected
1779 even though no symtab was found, since the file might have
1780 been compiled without debugging, and hence not be associated
1781 with a symtab. In order to handle this correctly, we would need
1782 to keep a list of text address ranges for undebuggable files.
1783 For now, we do nothing, since this is a fairly obscure case. */
1784 ;
1785 }
1786
1787 /* FIXME, what about the minimal symbol table? */
1788 return blewit;
1789 #else
1790 return (0);
1791 #endif
1792 }
1793 \f
1794 /* Allocate and partially fill a partial symtab. It will be
1795 completely filled at the end of the symbol list.
1796
1797 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1798 is the address relative to which its symbols are (incremental) or 0
1799 (normal). */
1800
1801
1802 struct partial_symtab *
1803 start_psymtab_common (objfile, section_offsets,
1804 filename, textlow, global_syms, static_syms)
1805 struct objfile *objfile;
1806 struct section_offsets *section_offsets;
1807 char *filename;
1808 CORE_ADDR textlow;
1809 struct partial_symbol **global_syms;
1810 struct partial_symbol **static_syms;
1811 {
1812 struct partial_symtab *psymtab;
1813
1814 psymtab = allocate_psymtab (filename, objfile);
1815 psymtab -> section_offsets = section_offsets;
1816 psymtab -> textlow = textlow;
1817 psymtab -> texthigh = psymtab -> textlow; /* default */
1818 psymtab -> globals_offset = global_syms - objfile -> global_psymbols.list;
1819 psymtab -> statics_offset = static_syms - objfile -> static_psymbols.list;
1820 return (psymtab);
1821 }
1822 \f
1823 /* Add a symbol with a long value to a psymtab.
1824 Since one arg is a struct, we pass in a ptr and deref it (sigh). */
1825
1826 void
1827 add_psymbol_to_list (name, namelength, namespace, class, list, val, coreaddr,
1828 language, objfile)
1829 char *name;
1830 int namelength;
1831 namespace_enum namespace;
1832 enum address_class class;
1833 struct psymbol_allocation_list *list;
1834 long val; /* Value as a long */
1835 CORE_ADDR coreaddr; /* Value as a CORE_ADDR */
1836 enum language language;
1837 struct objfile *objfile;
1838 {
1839 register struct partial_symbol *psym;
1840 char *buf = alloca (namelength + 1);
1841 /* psymbol is static so that there will be no uninitialized gaps in the
1842 structure which might contain random data, causing cache misses in
1843 bcache. */
1844 static struct partial_symbol psymbol;
1845
1846 /* Create local copy of the partial symbol */
1847 memcpy (buf, name, namelength);
1848 buf[namelength] = '\0';
1849 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, &objfile->psymbol_cache);
1850 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
1851 if (val != 0)
1852 {
1853 SYMBOL_VALUE (&psymbol) = val;
1854 }
1855 else
1856 {
1857 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
1858 }
1859 SYMBOL_SECTION (&psymbol) = 0;
1860 SYMBOL_LANGUAGE (&psymbol) = language;
1861 PSYMBOL_NAMESPACE (&psymbol) = namespace;
1862 PSYMBOL_CLASS (&psymbol) = class;
1863 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
1864
1865 /* Stash the partial symbol away in the cache */
1866 psym = bcache (&psymbol, sizeof (struct partial_symbol), &objfile->psymbol_cache);
1867
1868 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
1869 if (list->next >= list->list + list->size)
1870 {
1871 extend_psymbol_list (list, objfile);
1872 }
1873 *list->next++ = psym;
1874 OBJSTAT (objfile, n_psyms++);
1875 }
1876
1877 /* Initialize storage for partial symbols. */
1878
1879 void
1880 init_psymbol_list (objfile, total_symbols)
1881 struct objfile *objfile;
1882 int total_symbols;
1883 {
1884 /* Free any previously allocated psymbol lists. */
1885
1886 if (objfile -> global_psymbols.list)
1887 {
1888 mfree (objfile -> md, (PTR)objfile -> global_psymbols.list);
1889 }
1890 if (objfile -> static_psymbols.list)
1891 {
1892 mfree (objfile -> md, (PTR)objfile -> static_psymbols.list);
1893 }
1894
1895 /* Current best guess is that approximately a twentieth
1896 of the total symbols (in a debugging file) are global or static
1897 oriented symbols */
1898
1899 objfile -> global_psymbols.size = total_symbols / 10;
1900 objfile -> static_psymbols.size = total_symbols / 10;
1901
1902 if (objfile -> global_psymbols.size > 0)
1903 {
1904 objfile -> global_psymbols.next =
1905 objfile -> global_psymbols.list = (struct partial_symbol **)
1906 xmmalloc (objfile -> md, (objfile -> global_psymbols.size
1907 * sizeof (struct partial_symbol *)));
1908 }
1909 if (objfile -> static_psymbols.size > 0)
1910 {
1911 objfile -> static_psymbols.next =
1912 objfile -> static_psymbols.list = (struct partial_symbol **)
1913 xmmalloc (objfile -> md, (objfile -> static_psymbols.size
1914 * sizeof (struct partial_symbol *)));
1915 }
1916 }
1917
1918 /* OVERLAYS:
1919 The following code implements an abstraction for debugging overlay sections.
1920
1921 The target model is as follows:
1922 1) The gnu linker will permit multiple sections to be mapped into the
1923 same VMA, each with its own unique LMA (or load address).
1924 2) It is assumed that some runtime mechanism exists for mapping the
1925 sections, one by one, from the load address into the VMA address.
1926 3) This code provides a mechanism for gdb to keep track of which
1927 sections should be considered to be mapped from the VMA to the LMA.
1928 This information is used for symbol lookup, and memory read/write.
1929 For instance, if a section has been mapped then its contents
1930 should be read from the VMA, otherwise from the LMA.
1931
1932 Two levels of debugger support for overlays are available. One is
1933 "manual", in which the debugger relies on the user to tell it which
1934 overlays are currently mapped. This level of support is
1935 implemented entirely in the core debugger, and the information about
1936 whether a section is mapped is kept in the objfile->obj_section table.
1937
1938 The second level of support is "automatic", and is only available if
1939 the target-specific code provides functionality to read the target's
1940 overlay mapping table, and translate its contents for the debugger
1941 (by updating the mapped state information in the obj_section tables).
1942
1943 The interface is as follows:
1944 User commands:
1945 overlay map <name> -- tell gdb to consider this section mapped
1946 overlay unmap <name> -- tell gdb to consider this section unmapped
1947 overlay list -- list the sections that GDB thinks are mapped
1948 overlay read-target -- get the target's state of what's mapped
1949 overlay off/manual/auto -- set overlay debugging state
1950 Functional interface:
1951 find_pc_mapped_section(pc): if the pc is in the range of a mapped
1952 section, return that section.
1953 find_pc_overlay(pc): find any overlay section that contains
1954 the pc, either in its VMA or its LMA
1955 overlay_is_mapped(sect): true if overlay is marked as mapped
1956 section_is_overlay(sect): true if section's VMA != LMA
1957 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
1958 pc_in_unmapped_range(...): true if pc belongs to section's LMA
1959 overlay_mapped_address(...): map an address from section's LMA to VMA
1960 overlay_unmapped_address(...): map an address from section's VMA to LMA
1961 symbol_overlayed_address(...): Return a "current" address for symbol:
1962 either in VMA or LMA depending on whether
1963 the symbol's section is currently mapped
1964 */
1965
1966 /* Overlay debugging state: */
1967
1968 int overlay_debugging = 0; /* 0 == off, 1 == manual, -1 == auto */
1969 int overlay_cache_invalid = 0; /* True if need to refresh mapped state */
1970
1971 /* Target vector for refreshing overlay mapped state */
1972 static void simple_overlay_update PARAMS ((struct obj_section *));
1973 void (*target_overlay_update) PARAMS ((struct obj_section *))
1974 = simple_overlay_update;
1975
1976 /* Function: section_is_overlay (SECTION)
1977 Returns true if SECTION has VMA not equal to LMA, ie.
1978 SECTION is loaded at an address different from where it will "run". */
1979
1980 int
1981 section_is_overlay (section)
1982 asection *section;
1983 {
1984 if (overlay_debugging)
1985 if (section && section->lma != 0 &&
1986 section->vma != section->lma)
1987 return 1;
1988
1989 return 0;
1990 }
1991
1992 /* Function: overlay_invalidate_all (void)
1993 Invalidate the mapped state of all overlay sections (mark it as stale). */
1994
1995 static void
1996 overlay_invalidate_all ()
1997 {
1998 struct objfile *objfile;
1999 struct obj_section *sect;
2000
2001 ALL_OBJSECTIONS (objfile, sect)
2002 if (section_is_overlay (sect->the_bfd_section))
2003 sect->ovly_mapped = -1;
2004 }
2005
2006 /* Function: overlay_is_mapped (SECTION)
2007 Returns true if section is an overlay, and is currently mapped.
2008 Private: public access is thru function section_is_mapped.
2009
2010 Access to the ovly_mapped flag is restricted to this function, so
2011 that we can do automatic update. If the global flag
2012 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
2013 overlay_invalidate_all. If the mapped state of the particular
2014 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
2015
2016 static int
2017 overlay_is_mapped (osect)
2018 struct obj_section *osect;
2019 {
2020 if (osect == 0 || !section_is_overlay (osect->the_bfd_section))
2021 return 0;
2022
2023 switch (overlay_debugging)
2024 {
2025 default:
2026 case 0: return 0; /* overlay debugging off */
2027 case -1: /* overlay debugging automatic */
2028 /* Unles there is a target_overlay_update function,
2029 there's really nothing useful to do here (can't really go auto) */
2030 if (target_overlay_update)
2031 {
2032 if (overlay_cache_invalid)
2033 {
2034 overlay_invalidate_all ();
2035 overlay_cache_invalid = 0;
2036 }
2037 if (osect->ovly_mapped == -1)
2038 (*target_overlay_update) (osect);
2039 }
2040 /* fall thru to manual case */
2041 case 1: /* overlay debugging manual */
2042 return osect->ovly_mapped == 1;
2043 }
2044 }
2045
2046 /* Function: section_is_mapped
2047 Returns true if section is an overlay, and is currently mapped. */
2048
2049 int
2050 section_is_mapped (section)
2051 asection *section;
2052 {
2053 struct objfile *objfile;
2054 struct obj_section *osect;
2055
2056 if (overlay_debugging)
2057 if (section && section_is_overlay (section))
2058 ALL_OBJSECTIONS (objfile, osect)
2059 if (osect->the_bfd_section == section)
2060 return overlay_is_mapped (osect);
2061
2062 return 0;
2063 }
2064
2065 /* Function: pc_in_unmapped_range
2066 If PC falls into the lma range of SECTION, return true, else false. */
2067
2068 CORE_ADDR
2069 pc_in_unmapped_range (pc, section)
2070 CORE_ADDR pc;
2071 asection *section;
2072 {
2073 int size;
2074
2075 if (overlay_debugging)
2076 if (section && section_is_overlay (section))
2077 {
2078 size = bfd_get_section_size_before_reloc (section);
2079 if (section->lma <= pc && pc < section->lma + size)
2080 return 1;
2081 }
2082 return 0;
2083 }
2084
2085 /* Function: pc_in_mapped_range
2086 If PC falls into the vma range of SECTION, return true, else false. */
2087
2088 CORE_ADDR
2089 pc_in_mapped_range (pc, section)
2090 CORE_ADDR pc;
2091 asection *section;
2092 {
2093 int size;
2094
2095 if (overlay_debugging)
2096 if (section && section_is_overlay (section))
2097 {
2098 size = bfd_get_section_size_before_reloc (section);
2099 if (section->vma <= pc && pc < section->vma + size)
2100 return 1;
2101 }
2102 return 0;
2103 }
2104
2105 /* Function: overlay_unmapped_address (PC, SECTION)
2106 Returns the address corresponding to PC in the unmapped (load) range.
2107 May be the same as PC. */
2108
2109 CORE_ADDR
2110 overlay_unmapped_address (pc, section)
2111 CORE_ADDR pc;
2112 asection *section;
2113 {
2114 if (overlay_debugging)
2115 if (section && section_is_overlay (section) &&
2116 pc_in_mapped_range (pc, section))
2117 return pc + section->lma - section->vma;
2118
2119 return pc;
2120 }
2121
2122 /* Function: overlay_mapped_address (PC, SECTION)
2123 Returns the address corresponding to PC in the mapped (runtime) range.
2124 May be the same as PC. */
2125
2126 CORE_ADDR
2127 overlay_mapped_address (pc, section)
2128 CORE_ADDR pc;
2129 asection *section;
2130 {
2131 if (overlay_debugging)
2132 if (section && section_is_overlay (section) &&
2133 pc_in_unmapped_range (pc, section))
2134 return pc + section->vma - section->lma;
2135
2136 return pc;
2137 }
2138
2139
2140 /* Function: symbol_overlayed_address
2141 Return one of two addresses (relative to the VMA or to the LMA),
2142 depending on whether the section is mapped or not. */
2143
2144 CORE_ADDR
2145 symbol_overlayed_address (address, section)
2146 CORE_ADDR address;
2147 asection *section;
2148 {
2149 if (overlay_debugging)
2150 {
2151 /* If the symbol has no section, just return its regular address. */
2152 if (section == 0)
2153 return address;
2154 /* If the symbol's section is not an overlay, just return its address */
2155 if (!section_is_overlay (section))
2156 return address;
2157 /* If the symbol's section is mapped, just return its address */
2158 if (section_is_mapped (section))
2159 return address;
2160 /*
2161 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
2162 * then return its LOADED address rather than its vma address!!
2163 */
2164 return overlay_unmapped_address (address, section);
2165 }
2166 return address;
2167 }
2168
2169 /* Function: find_pc_overlay (PC)
2170 Return the best-match overlay section for PC:
2171 If PC matches a mapped overlay section's VMA, return that section.
2172 Else if PC matches an unmapped section's VMA, return that section.
2173 Else if PC matches an unmapped section's LMA, return that section. */
2174
2175 asection *
2176 find_pc_overlay (pc)
2177 CORE_ADDR pc;
2178 {
2179 struct objfile *objfile;
2180 struct obj_section *osect, *best_match = NULL;
2181
2182 if (overlay_debugging)
2183 ALL_OBJSECTIONS (objfile, osect)
2184 if (section_is_overlay (osect->the_bfd_section))
2185 {
2186 if (pc_in_mapped_range (pc, osect->the_bfd_section))
2187 {
2188 if (overlay_is_mapped (osect))
2189 return osect->the_bfd_section;
2190 else
2191 best_match = osect;
2192 }
2193 else if (pc_in_unmapped_range (pc, osect->the_bfd_section))
2194 best_match = osect;
2195 }
2196 return best_match ? best_match->the_bfd_section : NULL;
2197 }
2198
2199 /* Function: find_pc_mapped_section (PC)
2200 If PC falls into the VMA address range of an overlay section that is
2201 currently marked as MAPPED, return that section. Else return NULL. */
2202
2203 asection *
2204 find_pc_mapped_section (pc)
2205 CORE_ADDR pc;
2206 {
2207 struct objfile *objfile;
2208 struct obj_section *osect;
2209
2210 if (overlay_debugging)
2211 ALL_OBJSECTIONS (objfile, osect)
2212 if (pc_in_mapped_range (pc, osect->the_bfd_section) &&
2213 overlay_is_mapped (osect))
2214 return osect->the_bfd_section;
2215
2216 return NULL;
2217 }
2218
2219 /* Function: list_overlays_command
2220 Print a list of mapped sections and their PC ranges */
2221
2222 void
2223 list_overlays_command (args, from_tty)
2224 char *args;
2225 int from_tty;
2226 {
2227 int nmapped = 0;
2228 struct objfile *objfile;
2229 struct obj_section *osect;
2230
2231 if (overlay_debugging)
2232 ALL_OBJSECTIONS (objfile, osect)
2233 if (overlay_is_mapped (osect))
2234 {
2235 const char *name;
2236 bfd_vma lma, vma;
2237 int size;
2238
2239 vma = bfd_section_vma (objfile->obfd, osect->the_bfd_section);
2240 lma = bfd_section_lma (objfile->obfd, osect->the_bfd_section);
2241 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2242 name = bfd_section_name (objfile->obfd, osect->the_bfd_section);
2243 printf_filtered ("Section %s, loaded at %08x - %08x, ",
2244 name, lma, lma + size);
2245 printf_filtered ("mapped at %08x - %08x\n",
2246 vma, vma + size);
2247 nmapped ++;
2248 }
2249 if (nmapped == 0)
2250 printf_filtered ("No sections are mapped.\n");
2251 }
2252
2253 /* Function: map_overlay_command
2254 Mark the named section as mapped (ie. residing at its VMA address). */
2255
2256 void
2257 map_overlay_command (args, from_tty)
2258 char *args;
2259 int from_tty;
2260 {
2261 struct objfile *objfile, *objfile2;
2262 struct obj_section *sec, *sec2;
2263 asection *bfdsec;
2264
2265 if (!overlay_debugging)
2266 error ("Overlay debugging not enabled. Use the 'OVERLAY ON' command.");
2267
2268 if (args == 0 || *args == 0)
2269 error ("Argument required: name of an overlay section");
2270
2271 /* First, find a section matching the user supplied argument */
2272 ALL_OBJSECTIONS (objfile, sec)
2273 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
2274 {
2275 /* Now, check to see if the section is an overlay. */
2276 bfdsec = sec->the_bfd_section;
2277 if (!section_is_overlay (bfdsec))
2278 continue; /* not an overlay section */
2279
2280 /* Mark the overlay as "mapped" */
2281 sec->ovly_mapped = 1;
2282
2283 /* Next, make a pass and unmap any sections that are
2284 overlapped by this new section: */
2285 ALL_OBJSECTIONS (objfile2, sec2)
2286 if (sec2->ovly_mapped &&
2287 sec != sec2 &&
2288 sec->the_bfd_section != sec2->the_bfd_section &&
2289 (pc_in_mapped_range (sec2->addr, sec->the_bfd_section) ||
2290 pc_in_mapped_range (sec2->endaddr, sec->the_bfd_section)))
2291 {
2292 if (info_verbose)
2293 printf_filtered ("Note: section %s unmapped by overlap\n",
2294 bfd_section_name (objfile->obfd,
2295 sec2->the_bfd_section));
2296 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2 */
2297 }
2298 return;
2299 }
2300 error ("No overlay section called %s", args);
2301 }
2302
2303 /* Function: unmap_overlay_command
2304 Mark the overlay section as unmapped
2305 (ie. resident in its LMA address range, rather than the VMA range). */
2306
2307 void
2308 unmap_overlay_command (args, from_tty)
2309 char *args;
2310 int from_tty;
2311 {
2312 struct objfile *objfile;
2313 struct obj_section *sec;
2314
2315 if (!overlay_debugging)
2316 error ("Overlay debugging not enabled. Use the 'OVERLAY ON' command.");
2317
2318 if (args == 0 || *args == 0)
2319 error ("Argument required: name of an overlay section");
2320
2321 /* First, find a section matching the user supplied argument */
2322 ALL_OBJSECTIONS (objfile, sec)
2323 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
2324 {
2325 if (!sec->ovly_mapped)
2326 error ("Section %s is not mapped", args);
2327 sec->ovly_mapped = 0;
2328 return;
2329 }
2330 error ("No overlay section called %s", args);
2331 }
2332
2333 /* Function: overlay_auto_command
2334 A utility command to turn on overlay debugging.
2335 Possibly this should be done via a set/show command. */
2336
2337 static void
2338 overlay_auto_command (args, from_tty)
2339 char *args;
2340 int from_tty;
2341 {
2342 overlay_debugging = -1;
2343 if (info_verbose)
2344 printf_filtered ("Automatic overlay debugging enabled.");
2345 }
2346
2347 /* Function: overlay_manual_command
2348 A utility command to turn on overlay debugging.
2349 Possibly this should be done via a set/show command. */
2350
2351 static void
2352 overlay_manual_command (args, from_tty)
2353 char *args;
2354 int from_tty;
2355 {
2356 overlay_debugging = 1;
2357 if (info_verbose)
2358 printf_filtered ("Overlay debugging enabled.");
2359 }
2360
2361 /* Function: overlay_off_command
2362 A utility command to turn on overlay debugging.
2363 Possibly this should be done via a set/show command. */
2364
2365 static void
2366 overlay_off_command (args, from_tty)
2367 char *args;
2368 int from_tty;
2369 {
2370 overlay_debugging = 0;
2371 if (info_verbose)
2372 printf_filtered ("Overlay debugging disabled.");
2373 }
2374
2375 static void
2376 overlay_load_command (args, from_tty)
2377 char *args;
2378 int from_tty;
2379 {
2380 if (target_overlay_update)
2381 (*target_overlay_update) (NULL);
2382 else
2383 error ("This target does not know how to read its overlay state.");
2384 }
2385
2386 /* Function: overlay_command
2387 A place-holder for a mis-typed command */
2388
2389 /* Command list chain containing all defined "overlay" subcommands. */
2390 struct cmd_list_element *overlaylist;
2391
2392 static void
2393 overlay_command (args, from_tty)
2394 char *args;
2395 int from_tty;
2396 {
2397 printf_unfiltered
2398 ("\"overlay\" must be followed by the name of an overlay command.\n");
2399 help_list (overlaylist, "overlay ", -1, gdb_stdout);
2400 }
2401
2402
2403 /* Target Overlays for the "Simplest" overlay manager:
2404
2405 This is GDB's default target overlay layer. It works with the
2406 minimal overlay manager supplied as an example by Cygnus. The
2407 entry point is via a function pointer "target_overlay_update",
2408 so targets that use a different runtime overlay manager can
2409 substitute their own overlay_update function and take over the
2410 function pointer.
2411
2412 The overlay_update function pokes around in the target's data structures
2413 to see what overlays are mapped, and updates GDB's overlay mapping with
2414 this information.
2415
2416 In this simple implementation, the target data structures are as follows:
2417 unsigned _novlys; /# number of overlay sections #/
2418 unsigned _ovly_table[_novlys][4] = {
2419 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
2420 {..., ..., ..., ...},
2421 }
2422 unsigned _novly_regions; /# number of overlay regions #/
2423 unsigned _ovly_region_table[_novly_regions][3] = {
2424 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
2425 {..., ..., ...},
2426 }
2427 These functions will attempt to update GDB's mappedness state in the
2428 symbol section table, based on the target's mappedness state.
2429
2430 To do this, we keep a cached copy of the target's _ovly_table, and
2431 attempt to detect when the cached copy is invalidated. The main
2432 entry point is "simple_overlay_update(SECT), which looks up SECT in
2433 the cached table and re-reads only the entry for that section from
2434 the target (whenever possible).
2435 */
2436
2437 /* Cached, dynamically allocated copies of the target data structures: */
2438 static unsigned (*cache_ovly_table)[4] = 0;
2439 #if 0
2440 static unsigned (*cache_ovly_region_table)[3] = 0;
2441 #endif
2442 static unsigned cache_novlys = 0;
2443 #if 0
2444 static unsigned cache_novly_regions = 0;
2445 #endif
2446 static CORE_ADDR cache_ovly_table_base = 0;
2447 #if 0
2448 static CORE_ADDR cache_ovly_region_table_base = 0;
2449 #endif
2450 enum ovly_index { VMA, SIZE, LMA, MAPPED};
2451 #define TARGET_LONG_BYTES (TARGET_LONG_BIT / TARGET_CHAR_BIT)
2452
2453 /* Throw away the cached copy of _ovly_table */
2454 static void
2455 simple_free_overlay_table ()
2456 {
2457 if (cache_ovly_table)
2458 free(cache_ovly_table);
2459 cache_novlys = 0;
2460 cache_ovly_table = NULL;
2461 cache_ovly_table_base = 0;
2462 }
2463
2464 #if 0
2465 /* Throw away the cached copy of _ovly_region_table */
2466 static void
2467 simple_free_overlay_region_table ()
2468 {
2469 if (cache_ovly_region_table)
2470 free(cache_ovly_region_table);
2471 cache_novly_regions = 0;
2472 cache_ovly_region_table = NULL;
2473 cache_ovly_region_table_base = 0;
2474 }
2475 #endif
2476
2477 /* Read an array of ints from the target into a local buffer.
2478 Convert to host order. int LEN is number of ints */
2479 static void
2480 read_target_long_array (memaddr, myaddr, len)
2481 CORE_ADDR memaddr;
2482 unsigned int *myaddr;
2483 int len;
2484 {
2485 char *buf = alloca (len * TARGET_LONG_BYTES);
2486 int i;
2487
2488 read_memory (memaddr, buf, len * TARGET_LONG_BYTES);
2489 for (i = 0; i < len; i++)
2490 myaddr[i] = extract_unsigned_integer (TARGET_LONG_BYTES * i + buf,
2491 TARGET_LONG_BYTES);
2492 }
2493
2494 /* Find and grab a copy of the target _ovly_table
2495 (and _novlys, which is needed for the table's size) */
2496 static int
2497 simple_read_overlay_table ()
2498 {
2499 struct minimal_symbol *msym;
2500
2501 simple_free_overlay_table ();
2502 msym = lookup_minimal_symbol ("_novlys", 0, 0);
2503 if (msym != NULL)
2504 cache_novlys = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
2505 else
2506 return 0; /* failure */
2507 cache_ovly_table = (void *) xmalloc (cache_novlys * sizeof(*cache_ovly_table));
2508 if (cache_ovly_table != NULL)
2509 {
2510 msym = lookup_minimal_symbol ("_ovly_table", 0, 0);
2511 if (msym != NULL)
2512 {
2513 cache_ovly_table_base = SYMBOL_VALUE_ADDRESS (msym);
2514 read_target_long_array (cache_ovly_table_base,
2515 (int *) cache_ovly_table,
2516 cache_novlys * 4);
2517 }
2518 else
2519 return 0; /* failure */
2520 }
2521 else
2522 return 0; /* failure */
2523 return 1; /* SUCCESS */
2524 }
2525
2526 #if 0
2527 /* Find and grab a copy of the target _ovly_region_table
2528 (and _novly_regions, which is needed for the table's size) */
2529 static int
2530 simple_read_overlay_region_table ()
2531 {
2532 struct minimal_symbol *msym;
2533
2534 simple_free_overlay_region_table ();
2535 msym = lookup_minimal_symbol ("_novly_regions", 0, 0);
2536 if (msym != NULL)
2537 cache_novly_regions = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
2538 else
2539 return 0; /* failure */
2540 cache_ovly_region_table = (void *) xmalloc (cache_novly_regions * 12);
2541 if (cache_ovly_region_table != NULL)
2542 {
2543 msym = lookup_minimal_symbol ("_ovly_region_table", 0, 0);
2544 if (msym != NULL)
2545 {
2546 cache_ovly_region_table_base = SYMBOL_VALUE_ADDRESS (msym);
2547 read_target_long_array (cache_ovly_region_table_base,
2548 (int *) cache_ovly_region_table,
2549 cache_novly_regions * 3);
2550 }
2551 else
2552 return 0; /* failure */
2553 }
2554 else
2555 return 0; /* failure */
2556 return 1; /* SUCCESS */
2557 }
2558 #endif
2559
2560 /* Function: simple_overlay_update_1
2561 A helper function for simple_overlay_update. Assuming a cached copy
2562 of _ovly_table exists, look through it to find an entry whose vma,
2563 lma and size match those of OSECT. Re-read the entry and make sure
2564 it still matches OSECT (else the table may no longer be valid).
2565 Set OSECT's mapped state to match the entry. Return: 1 for
2566 success, 0 for failure. */
2567
2568 static int
2569 simple_overlay_update_1 (osect)
2570 struct obj_section *osect;
2571 {
2572 int i, size;
2573
2574 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2575 for (i = 0; i < cache_novlys; i++)
2576 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2577 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2578 cache_ovly_table[i][SIZE] == size */)
2579 {
2580 read_target_long_array (cache_ovly_table_base + i * TARGET_LONG_BYTES,
2581 (int *) cache_ovly_table[i], 4);
2582 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2583 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2584 cache_ovly_table[i][SIZE] == size */)
2585 {
2586 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
2587 return 1;
2588 }
2589 else /* Warning! Warning! Target's ovly table has changed! */
2590 return 0;
2591 }
2592 return 0;
2593 }
2594
2595 /* Function: simple_overlay_update
2596 If OSECT is NULL, then update all sections' mapped state
2597 (after re-reading the entire target _ovly_table).
2598 If OSECT is non-NULL, then try to find a matching entry in the
2599 cached ovly_table and update only OSECT's mapped state.
2600 If a cached entry can't be found or the cache isn't valid, then
2601 re-read the entire cache, and go ahead and update all sections. */
2602
2603 static void
2604 simple_overlay_update (osect)
2605 struct obj_section *osect;
2606 {
2607 struct objfile *objfile;
2608
2609 /* Were we given an osect to look up? NULL means do all of them. */
2610 if (osect)
2611 /* Have we got a cached copy of the target's overlay table? */
2612 if (cache_ovly_table != NULL)
2613 /* Does its cached location match what's currently in the symtab? */
2614 if (cache_ovly_table_base ==
2615 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", 0, 0)))
2616 /* Then go ahead and try to look up this single section in the cache */
2617 if (simple_overlay_update_1 (osect))
2618 /* Found it! We're done. */
2619 return;
2620
2621 /* Cached table no good: need to read the entire table anew.
2622 Or else we want all the sections, in which case it's actually
2623 more efficient to read the whole table in one block anyway. */
2624
2625 if (simple_read_overlay_table () == 0) /* read failed? No table? */
2626 {
2627 warning ("Failed to read the target overlay mapping table.");
2628 return;
2629 }
2630 /* Now may as well update all sections, even if only one was requested. */
2631 ALL_OBJSECTIONS (objfile, osect)
2632 if (section_is_overlay (osect->the_bfd_section))
2633 {
2634 int i, size;
2635
2636 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2637 for (i = 0; i < cache_novlys; i++)
2638 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2639 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2640 cache_ovly_table[i][SIZE] == size */)
2641 { /* obj_section matches i'th entry in ovly_table */
2642 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
2643 break; /* finished with inner for loop: break out */
2644 }
2645 }
2646 }
2647
2648
2649 void
2650 _initialize_symfile ()
2651 {
2652 struct cmd_list_element *c;
2653
2654 c = add_cmd ("symbol-file", class_files, symbol_file_command,
2655 "Load symbol table from executable file FILE.\n\
2656 The `file' command can also load symbol tables, as well as setting the file\n\
2657 to execute.", &cmdlist);
2658 c->completer = filename_completer;
2659
2660 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command,
2661 "Usage: add-symbol-file FILE ADDR\n\
2662 Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
2663 ADDR is the starting address of the file's text.",
2664 &cmdlist);
2665 c->completer = filename_completer;
2666
2667 c = add_cmd ("add-shared-symbol-files", class_files,
2668 add_shared_symbol_files_command,
2669 "Load the symbols from shared objects in the dynamic linker's link map.",
2670 &cmdlist);
2671 c = add_alias_cmd ("assf", "add-shared-symbol-files", class_files, 1,
2672 &cmdlist);
2673
2674 c = add_cmd ("load", class_files, load_command,
2675 "Dynamically load FILE into the running program, and record its symbols\n\
2676 for access from GDB.", &cmdlist);
2677 c->completer = filename_completer;
2678
2679 add_show_from_set
2680 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
2681 (char *)&symbol_reloading,
2682 "Set dynamic symbol table reloading multiple times in one run.",
2683 &setlist),
2684 &showlist);
2685
2686 add_prefix_cmd ("overlay", class_support, overlay_command,
2687 "Commands for debugging overlays.", &overlaylist,
2688 "overlay ", 0, &cmdlist);
2689
2690 add_com_alias ("ovly", "overlay", class_alias, 1);
2691 add_com_alias ("ov", "overlay", class_alias, 1);
2692
2693 add_cmd ("map-overlay", class_support, map_overlay_command,
2694 "Assert that an overlay section is mapped.", &overlaylist);
2695
2696 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
2697 "Assert that an overlay section is unmapped.", &overlaylist);
2698
2699 add_cmd ("list-overlays", class_support, list_overlays_command,
2700 "List mappings of overlay sections.", &overlaylist);
2701
2702 add_cmd ("manual", class_support, overlay_manual_command,
2703 "Enable overlay debugging.", &overlaylist);
2704 add_cmd ("off", class_support, overlay_off_command,
2705 "Disable overlay debugging.", &overlaylist);
2706 add_cmd ("auto", class_support, overlay_auto_command,
2707 "Enable automatic overlay debugging.", &overlaylist);
2708 add_cmd ("load-target", class_support, overlay_load_command,
2709 "Read the overlay mapping state from the target.", &overlaylist);
2710 }
This page took 0.090079 seconds and 4 git commands to generate.