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