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