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