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