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