* hppa-hpux-tdep.c: New file.
[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);
db034ac5
AC
1969 /* OBSOLETE add_filename_language (".ch", language_chill); */
1970 /* OBSOLETE add_filename_language (".c186", language_chill); */
1971 /* OBSOLETE add_filename_language (".c286", language_chill); */
da2cf7e0 1972 add_filename_language (".m", language_objc);
c5aa993b
JM
1973 add_filename_language (".f", language_fortran);
1974 add_filename_language (".F", language_fortran);
1975 add_filename_language (".s", language_asm);
1976 add_filename_language (".S", language_asm);
c6fd39cd
PM
1977 add_filename_language (".pas", language_pascal);
1978 add_filename_language (".p", language_pascal);
1979 add_filename_language (".pp", language_pascal);
c906108c
SS
1980 }
1981}
1982
1983enum language
fba45db2 1984deduce_language_from_filename (char *filename)
c906108c
SS
1985{
1986 int i;
1987 char *cp;
1988
1989 if (filename != NULL)
1990 if ((cp = strrchr (filename, '.')) != NULL)
1991 for (i = 0; i < fl_table_next; i++)
1992 if (strcmp (cp, filename_language_table[i].ext) == 0)
1993 return filename_language_table[i].lang;
1994
1995 return language_unknown;
1996}
1997\f
1998/* allocate_symtab:
1999
2000 Allocate and partly initialize a new symbol table. Return a pointer
2001 to it. error() if no space.
2002
2003 Caller must set these fields:
c5aa993b
JM
2004 LINETABLE(symtab)
2005 symtab->blockvector
2006 symtab->dirname
2007 symtab->free_code
2008 symtab->free_ptr
2009 possibly free_named_symtabs (symtab->filename);
c906108c
SS
2010 */
2011
2012struct symtab *
fba45db2 2013allocate_symtab (char *filename, struct objfile *objfile)
c906108c
SS
2014{
2015 register struct symtab *symtab;
2016
2017 symtab = (struct symtab *)
c5aa993b 2018 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symtab));
c906108c 2019 memset (symtab, 0, sizeof (*symtab));
c5aa993b
JM
2020 symtab->filename = obsavestring (filename, strlen (filename),
2021 &objfile->symbol_obstack);
2022 symtab->fullname = NULL;
2023 symtab->language = deduce_language_from_filename (filename);
2024 symtab->debugformat = obsavestring ("unknown", 7,
2025 &objfile->symbol_obstack);
c906108c
SS
2026
2027 /* Hook it to the objfile it comes from */
2028
c5aa993b
JM
2029 symtab->objfile = objfile;
2030 symtab->next = objfile->symtabs;
2031 objfile->symtabs = symtab;
c906108c
SS
2032
2033 /* FIXME: This should go away. It is only defined for the Z8000,
2034 and the Z8000 definition of this macro doesn't have anything to
2035 do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
2036 here for convenience. */
2037#ifdef INIT_EXTRA_SYMTAB_INFO
2038 INIT_EXTRA_SYMTAB_INFO (symtab);
2039#endif
2040
2041 return (symtab);
2042}
2043
2044struct partial_symtab *
fba45db2 2045allocate_psymtab (char *filename, struct objfile *objfile)
c906108c
SS
2046{
2047 struct partial_symtab *psymtab;
2048
c5aa993b 2049 if (objfile->free_psymtabs)
c906108c 2050 {
c5aa993b
JM
2051 psymtab = objfile->free_psymtabs;
2052 objfile->free_psymtabs = psymtab->next;
c906108c
SS
2053 }
2054 else
2055 psymtab = (struct partial_symtab *)
c5aa993b 2056 obstack_alloc (&objfile->psymbol_obstack,
c906108c
SS
2057 sizeof (struct partial_symtab));
2058
2059 memset (psymtab, 0, sizeof (struct partial_symtab));
c5aa993b
JM
2060 psymtab->filename = obsavestring (filename, strlen (filename),
2061 &objfile->psymbol_obstack);
2062 psymtab->symtab = NULL;
c906108c
SS
2063
2064 /* Prepend it to the psymtab list for the objfile it belongs to.
2065 Psymtabs are searched in most recent inserted -> least recent
2066 inserted order. */
2067
c5aa993b
JM
2068 psymtab->objfile = objfile;
2069 psymtab->next = objfile->psymtabs;
2070 objfile->psymtabs = psymtab;
c906108c
SS
2071#if 0
2072 {
2073 struct partial_symtab **prev_pst;
c5aa993b
JM
2074 psymtab->objfile = objfile;
2075 psymtab->next = NULL;
2076 prev_pst = &(objfile->psymtabs);
c906108c 2077 while ((*prev_pst) != NULL)
c5aa993b 2078 prev_pst = &((*prev_pst)->next);
c906108c 2079 (*prev_pst) = psymtab;
c5aa993b 2080 }
c906108c 2081#endif
c5aa993b 2082
c906108c
SS
2083 return (psymtab);
2084}
2085
2086void
fba45db2 2087discard_psymtab (struct partial_symtab *pst)
c906108c
SS
2088{
2089 struct partial_symtab **prev_pst;
2090
2091 /* From dbxread.c:
2092 Empty psymtabs happen as a result of header files which don't
2093 have any symbols in them. There can be a lot of them. But this
2094 check is wrong, in that a psymtab with N_SLINE entries but
2095 nothing else is not empty, but we don't realize that. Fixing
2096 that without slowing things down might be tricky. */
2097
2098 /* First, snip it out of the psymtab chain */
2099
2100 prev_pst = &(pst->objfile->psymtabs);
2101 while ((*prev_pst) != pst)
2102 prev_pst = &((*prev_pst)->next);
2103 (*prev_pst) = pst->next;
2104
2105 /* Next, put it on a free list for recycling */
2106
2107 pst->next = pst->objfile->free_psymtabs;
2108 pst->objfile->free_psymtabs = pst;
2109}
c906108c 2110\f
c5aa993b 2111
c906108c
SS
2112/* Reset all data structures in gdb which may contain references to symbol
2113 table data. */
2114
2115void
fba45db2 2116clear_symtab_users (void)
c906108c
SS
2117{
2118 /* Someday, we should do better than this, by only blowing away
2119 the things that really need to be blown. */
2120 clear_value_history ();
2121 clear_displays ();
2122 clear_internalvars ();
2123 breakpoint_re_set ();
2124 set_default_breakpoint (0, 0, 0, 0);
0378c332 2125 clear_current_source_symtab_and_line ();
c906108c 2126 clear_pc_function_cache ();
11cf8741
JM
2127 if (target_new_objfile_hook)
2128 target_new_objfile_hook (NULL);
c906108c
SS
2129}
2130
74b7792f
AC
2131static void
2132clear_symtab_users_cleanup (void *ignore)
2133{
2134 clear_symtab_users ();
2135}
2136
c906108c
SS
2137/* clear_symtab_users_once:
2138
2139 This function is run after symbol reading, or from a cleanup.
2140 If an old symbol table was obsoleted, the old symbol table
2141 has been blown away, but the other GDB data structures that may
2142 reference it have not yet been cleared or re-directed. (The old
2143 symtab was zapped, and the cleanup queued, in free_named_symtab()
2144 below.)
2145
2146 This function can be queued N times as a cleanup, or called
2147 directly; it will do all the work the first time, and then will be a
2148 no-op until the next time it is queued. This works by bumping a
2149 counter at queueing time. Much later when the cleanup is run, or at
2150 the end of symbol processing (in case the cleanup is discarded), if
2151 the queued count is greater than the "done-count", we do the work
2152 and set the done-count to the queued count. If the queued count is
2153 less than or equal to the done-count, we just ignore the call. This
2154 is needed because reading a single .o file will often replace many
2155 symtabs (one per .h file, for example), and we don't want to reset
2156 the breakpoints N times in the user's face.
2157
2158 The reason we both queue a cleanup, and call it directly after symbol
2159 reading, is because the cleanup protects us in case of errors, but is
2160 discarded if symbol reading is successful. */
2161
2162#if 0
2163/* FIXME: As free_named_symtabs is currently a big noop this function
2164 is no longer needed. */
a14ed312 2165static void clear_symtab_users_once (void);
c906108c
SS
2166
2167static int clear_symtab_users_queued;
2168static int clear_symtab_users_done;
2169
2170static void
fba45db2 2171clear_symtab_users_once (void)
c906108c
SS
2172{
2173 /* Enforce once-per-`do_cleanups'-semantics */
2174 if (clear_symtab_users_queued <= clear_symtab_users_done)
2175 return;
2176 clear_symtab_users_done = clear_symtab_users_queued;
2177
2178 clear_symtab_users ();
2179}
2180#endif
2181
2182/* Delete the specified psymtab, and any others that reference it. */
2183
2184static void
fba45db2 2185cashier_psymtab (struct partial_symtab *pst)
c906108c
SS
2186{
2187 struct partial_symtab *ps, *pprev = NULL;
2188 int i;
2189
2190 /* Find its previous psymtab in the chain */
c5aa993b
JM
2191 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
2192 {
2193 if (ps == pst)
2194 break;
2195 pprev = ps;
2196 }
c906108c 2197
c5aa993b
JM
2198 if (ps)
2199 {
2200 /* Unhook it from the chain. */
2201 if (ps == pst->objfile->psymtabs)
2202 pst->objfile->psymtabs = ps->next;
2203 else
2204 pprev->next = ps->next;
2205
2206 /* FIXME, we can't conveniently deallocate the entries in the
2207 partial_symbol lists (global_psymbols/static_psymbols) that
2208 this psymtab points to. These just take up space until all
2209 the psymtabs are reclaimed. Ditto the dependencies list and
2210 filename, which are all in the psymbol_obstack. */
2211
2212 /* We need to cashier any psymtab that has this one as a dependency... */
2213 again:
2214 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
2215 {
2216 for (i = 0; i < ps->number_of_dependencies; i++)
2217 {
2218 if (ps->dependencies[i] == pst)
2219 {
2220 cashier_psymtab (ps);
2221 goto again; /* Must restart, chain has been munged. */
2222 }
2223 }
c906108c 2224 }
c906108c 2225 }
c906108c
SS
2226}
2227
2228/* If a symtab or psymtab for filename NAME is found, free it along
2229 with any dependent breakpoints, displays, etc.
2230 Used when loading new versions of object modules with the "add-file"
2231 command. This is only called on the top-level symtab or psymtab's name;
2232 it is not called for subsidiary files such as .h files.
2233
2234 Return value is 1 if we blew away the environment, 0 if not.
7e73cedf 2235 FIXME. The return value appears to never be used.
c906108c
SS
2236
2237 FIXME. I think this is not the best way to do this. We should
2238 work on being gentler to the environment while still cleaning up
2239 all stray pointers into the freed symtab. */
2240
2241int
fba45db2 2242free_named_symtabs (char *name)
c906108c
SS
2243{
2244#if 0
2245 /* FIXME: With the new method of each objfile having it's own
2246 psymtab list, this function needs serious rethinking. In particular,
2247 why was it ever necessary to toss psymtabs with specific compilation
2248 unit filenames, as opposed to all psymtabs from a particular symbol
2249 file? -- fnf
2250 Well, the answer is that some systems permit reloading of particular
2251 compilation units. We want to blow away any old info about these
2252 compilation units, regardless of which objfiles they arrived in. --gnu. */
2253
2254 register struct symtab *s;
2255 register struct symtab *prev;
2256 register struct partial_symtab *ps;
2257 struct blockvector *bv;
2258 int blewit = 0;
2259
2260 /* We only wack things if the symbol-reload switch is set. */
2261 if (!symbol_reloading)
2262 return 0;
2263
2264 /* Some symbol formats have trouble providing file names... */
2265 if (name == 0 || *name == '\0')
2266 return 0;
2267
2268 /* Look for a psymtab with the specified name. */
2269
2270again2:
c5aa993b
JM
2271 for (ps = partial_symtab_list; ps; ps = ps->next)
2272 {
2273 if (STREQ (name, ps->filename))
2274 {
2275 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
2276 goto again2; /* Must restart, chain has been munged */
2277 }
c906108c 2278 }
c906108c
SS
2279
2280 /* Look for a symtab with the specified name. */
2281
2282 for (s = symtab_list; s; s = s->next)
2283 {
2284 if (STREQ (name, s->filename))
2285 break;
2286 prev = s;
2287 }
2288
2289 if (s)
2290 {
2291 if (s == symtab_list)
2292 symtab_list = s->next;
2293 else
2294 prev->next = s->next;
2295
2296 /* For now, queue a delete for all breakpoints, displays, etc., whether
c5aa993b
JM
2297 or not they depend on the symtab being freed. This should be
2298 changed so that only those data structures affected are deleted. */
c906108c
SS
2299
2300 /* But don't delete anything if the symtab is empty.
c5aa993b
JM
2301 This test is necessary due to a bug in "dbxread.c" that
2302 causes empty symtabs to be created for N_SO symbols that
2303 contain the pathname of the object file. (This problem
2304 has been fixed in GDB 3.9x). */
c906108c
SS
2305
2306 bv = BLOCKVECTOR (s);
2307 if (BLOCKVECTOR_NBLOCKS (bv) > 2
2308 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
2309 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
2310 {
b9caf505
AC
2311 complaint (&symfile_complaints, "Replacing old symbols for `%s'",
2312 name);
c906108c
SS
2313 clear_symtab_users_queued++;
2314 make_cleanup (clear_symtab_users_once, 0);
2315 blewit = 1;
c5aa993b
JM
2316 }
2317 else
2318 {
b9caf505
AC
2319 complaint (&symfile_complaints, "Empty symbol table found for `%s'",
2320 name);
c906108c
SS
2321 }
2322
2323 free_symtab (s);
2324 }
2325 else
2326 {
2327 /* It is still possible that some breakpoints will be affected
c5aa993b
JM
2328 even though no symtab was found, since the file might have
2329 been compiled without debugging, and hence not be associated
2330 with a symtab. In order to handle this correctly, we would need
2331 to keep a list of text address ranges for undebuggable files.
2332 For now, we do nothing, since this is a fairly obscure case. */
c906108c
SS
2333 ;
2334 }
2335
2336 /* FIXME, what about the minimal symbol table? */
2337 return blewit;
2338#else
2339 return (0);
2340#endif
2341}
2342\f
2343/* Allocate and partially fill a partial symtab. It will be
2344 completely filled at the end of the symbol list.
2345
d4f3574e 2346 FILENAME is the name of the symbol-file we are reading from. */
c906108c
SS
2347
2348struct partial_symtab *
fba45db2
KB
2349start_psymtab_common (struct objfile *objfile,
2350 struct section_offsets *section_offsets, char *filename,
2351 CORE_ADDR textlow, struct partial_symbol **global_syms,
2352 struct partial_symbol **static_syms)
c906108c
SS
2353{
2354 struct partial_symtab *psymtab;
2355
2356 psymtab = allocate_psymtab (filename, objfile);
c5aa993b
JM
2357 psymtab->section_offsets = section_offsets;
2358 psymtab->textlow = textlow;
2359 psymtab->texthigh = psymtab->textlow; /* default */
2360 psymtab->globals_offset = global_syms - objfile->global_psymbols.list;
2361 psymtab->statics_offset = static_syms - objfile->static_psymbols.list;
c906108c
SS
2362 return (psymtab);
2363}
2364\f
2365/* Add a symbol with a long value to a psymtab.
2366 Since one arg is a struct, we pass in a ptr and deref it (sigh). */
2367
2368void
fba45db2
KB
2369add_psymbol_to_list (char *name, int namelength, namespace_enum namespace,
2370 enum address_class class,
2371 struct psymbol_allocation_list *list, long val, /* Value as a long */
2372 CORE_ADDR coreaddr, /* Value as a CORE_ADDR */
2373 enum language language, struct objfile *objfile)
c906108c
SS
2374{
2375 register struct partial_symbol *psym;
2376 char *buf = alloca (namelength + 1);
2377 /* psymbol is static so that there will be no uninitialized gaps in the
2378 structure which might contain random data, causing cache misses in
2379 bcache. */
2380 static struct partial_symbol psymbol;
2381
2382 /* Create local copy of the partial symbol */
2383 memcpy (buf, name, namelength);
2384 buf[namelength] = '\0';
af5f3db6 2385 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, objfile->psymbol_cache);
c906108c
SS
2386 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2387 if (val != 0)
2388 {
2389 SYMBOL_VALUE (&psymbol) = val;
2390 }
2391 else
2392 {
2393 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2394 }
2395 SYMBOL_SECTION (&psymbol) = 0;
2396 SYMBOL_LANGUAGE (&psymbol) = language;
2397 PSYMBOL_NAMESPACE (&psymbol) = namespace;
2398 PSYMBOL_CLASS (&psymbol) = class;
2399 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
2400
2401 /* Stash the partial symbol away in the cache */
af5f3db6 2402 psym = bcache (&psymbol, sizeof (struct partial_symbol), objfile->psymbol_cache);
c906108c
SS
2403
2404 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2405 if (list->next >= list->list + list->size)
2406 {
2407 extend_psymbol_list (list, objfile);
2408 }
2409 *list->next++ = psym;
2410 OBJSTAT (objfile, n_psyms++);
2411}
2412
2413/* Add a symbol with a long value to a psymtab. This differs from
2414 * add_psymbol_to_list above in taking both a mangled and a demangled
2415 * name. */
2416
2417void
fba45db2
KB
2418add_psymbol_with_dem_name_to_list (char *name, int namelength, char *dem_name,
2419 int dem_namelength, namespace_enum namespace,
2420 enum address_class class,
2421 struct psymbol_allocation_list *list, long val, /* Value as a long */
2422 CORE_ADDR coreaddr, /* Value as a CORE_ADDR */
2423 enum language language,
2424 struct objfile *objfile)
c906108c
SS
2425{
2426 register struct partial_symbol *psym;
2427 char *buf = alloca (namelength + 1);
2428 /* psymbol is static so that there will be no uninitialized gaps in the
2429 structure which might contain random data, causing cache misses in
2430 bcache. */
2431 static struct partial_symbol psymbol;
2432
2433 /* Create local copy of the partial symbol */
2434
2435 memcpy (buf, name, namelength);
2436 buf[namelength] = '\0';
af5f3db6 2437 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, objfile->psymbol_cache);
c906108c
SS
2438
2439 buf = alloca (dem_namelength + 1);
2440 memcpy (buf, dem_name, dem_namelength);
2441 buf[dem_namelength] = '\0';
c5aa993b 2442
c906108c
SS
2443 switch (language)
2444 {
c5aa993b
JM
2445 case language_c:
2446 case language_cplus:
2447 SYMBOL_CPLUS_DEMANGLED_NAME (&psymbol) =
af5f3db6 2448 bcache (buf, dem_namelength + 1, objfile->psymbol_cache);
c5aa993b 2449 break;
db034ac5
AC
2450 /* OBSOLETE case language_chill: */
2451 /* OBSOLETE SYMBOL_CHILL_DEMANGLED_NAME (&psymbol) = */
2452 /* OBSOLETE bcache (buf, dem_namelength + 1, objfile->psymbol_cache); */
c5aa993b 2453
c906108c
SS
2454 /* FIXME What should be done for the default case? Ignoring for now. */
2455 }
2456
2457 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2458 if (val != 0)
2459 {
2460 SYMBOL_VALUE (&psymbol) = val;
2461 }
2462 else
2463 {
2464 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2465 }
2466 SYMBOL_SECTION (&psymbol) = 0;
2467 SYMBOL_LANGUAGE (&psymbol) = language;
2468 PSYMBOL_NAMESPACE (&psymbol) = namespace;
2469 PSYMBOL_CLASS (&psymbol) = class;
2470 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
2471
2472 /* Stash the partial symbol away in the cache */
af5f3db6 2473 psym = bcache (&psymbol, sizeof (struct partial_symbol), objfile->psymbol_cache);
c906108c
SS
2474
2475 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2476 if (list->next >= list->list + list->size)
2477 {
2478 extend_psymbol_list (list, objfile);
2479 }
2480 *list->next++ = psym;
2481 OBJSTAT (objfile, n_psyms++);
2482}
2483
2484/* Initialize storage for partial symbols. */
2485
2486void
fba45db2 2487init_psymbol_list (struct objfile *objfile, int total_symbols)
c906108c
SS
2488{
2489 /* Free any previously allocated psymbol lists. */
c5aa993b
JM
2490
2491 if (objfile->global_psymbols.list)
c906108c 2492 {
aac7f4ea 2493 xmfree (objfile->md, (PTR) objfile->global_psymbols.list);
c906108c 2494 }
c5aa993b 2495 if (objfile->static_psymbols.list)
c906108c 2496 {
aac7f4ea 2497 xmfree (objfile->md, (PTR) objfile->static_psymbols.list);
c906108c 2498 }
c5aa993b 2499
c906108c
SS
2500 /* Current best guess is that approximately a twentieth
2501 of the total symbols (in a debugging file) are global or static
2502 oriented symbols */
c906108c 2503
c5aa993b
JM
2504 objfile->global_psymbols.size = total_symbols / 10;
2505 objfile->static_psymbols.size = total_symbols / 10;
2506
2507 if (objfile->global_psymbols.size > 0)
c906108c 2508 {
c5aa993b
JM
2509 objfile->global_psymbols.next =
2510 objfile->global_psymbols.list = (struct partial_symbol **)
2511 xmmalloc (objfile->md, (objfile->global_psymbols.size
2512 * sizeof (struct partial_symbol *)));
c906108c 2513 }
c5aa993b 2514 if (objfile->static_psymbols.size > 0)
c906108c 2515 {
c5aa993b
JM
2516 objfile->static_psymbols.next =
2517 objfile->static_psymbols.list = (struct partial_symbol **)
2518 xmmalloc (objfile->md, (objfile->static_psymbols.size
2519 * sizeof (struct partial_symbol *)));
c906108c
SS
2520 }
2521}
2522
2523/* OVERLAYS:
2524 The following code implements an abstraction for debugging overlay sections.
2525
2526 The target model is as follows:
2527 1) The gnu linker will permit multiple sections to be mapped into the
c5aa993b 2528 same VMA, each with its own unique LMA (or load address).
c906108c 2529 2) It is assumed that some runtime mechanism exists for mapping the
c5aa993b 2530 sections, one by one, from the load address into the VMA address.
c906108c 2531 3) This code provides a mechanism for gdb to keep track of which
c5aa993b
JM
2532 sections should be considered to be mapped from the VMA to the LMA.
2533 This information is used for symbol lookup, and memory read/write.
2534 For instance, if a section has been mapped then its contents
2535 should be read from the VMA, otherwise from the LMA.
c906108c
SS
2536
2537 Two levels of debugger support for overlays are available. One is
2538 "manual", in which the debugger relies on the user to tell it which
2539 overlays are currently mapped. This level of support is
2540 implemented entirely in the core debugger, and the information about
2541 whether a section is mapped is kept in the objfile->obj_section table.
2542
2543 The second level of support is "automatic", and is only available if
2544 the target-specific code provides functionality to read the target's
2545 overlay mapping table, and translate its contents for the debugger
2546 (by updating the mapped state information in the obj_section tables).
2547
2548 The interface is as follows:
c5aa993b
JM
2549 User commands:
2550 overlay map <name> -- tell gdb to consider this section mapped
2551 overlay unmap <name> -- tell gdb to consider this section unmapped
2552 overlay list -- list the sections that GDB thinks are mapped
2553 overlay read-target -- get the target's state of what's mapped
2554 overlay off/manual/auto -- set overlay debugging state
2555 Functional interface:
2556 find_pc_mapped_section(pc): if the pc is in the range of a mapped
2557 section, return that section.
2558 find_pc_overlay(pc): find any overlay section that contains
2559 the pc, either in its VMA or its LMA
2560 overlay_is_mapped(sect): true if overlay is marked as mapped
2561 section_is_overlay(sect): true if section's VMA != LMA
2562 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
2563 pc_in_unmapped_range(...): true if pc belongs to section's LMA
9ec8e6a0 2564 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
c5aa993b
JM
2565 overlay_mapped_address(...): map an address from section's LMA to VMA
2566 overlay_unmapped_address(...): map an address from section's VMA to LMA
2567 symbol_overlayed_address(...): Return a "current" address for symbol:
2568 either in VMA or LMA depending on whether
2569 the symbol's section is currently mapped
c906108c
SS
2570 */
2571
2572/* Overlay debugging state: */
2573
d874f1e2 2574enum overlay_debugging_state overlay_debugging = ovly_off;
c906108c
SS
2575int overlay_cache_invalid = 0; /* True if need to refresh mapped state */
2576
2577/* Target vector for refreshing overlay mapped state */
a14ed312 2578static void simple_overlay_update (struct obj_section *);
507f3c78 2579void (*target_overlay_update) (struct obj_section *) = simple_overlay_update;
c906108c
SS
2580
2581/* Function: section_is_overlay (SECTION)
2582 Returns true if SECTION has VMA not equal to LMA, ie.
2583 SECTION is loaded at an address different from where it will "run". */
2584
2585int
fba45db2 2586section_is_overlay (asection *section)
c906108c 2587{
fbd35540
MS
2588 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2589
c906108c
SS
2590 if (overlay_debugging)
2591 if (section && section->lma != 0 &&
2592 section->vma != section->lma)
2593 return 1;
2594
2595 return 0;
2596}
2597
2598/* Function: overlay_invalidate_all (void)
2599 Invalidate the mapped state of all overlay sections (mark it as stale). */
2600
2601static void
fba45db2 2602overlay_invalidate_all (void)
c906108c 2603{
c5aa993b 2604 struct objfile *objfile;
c906108c
SS
2605 struct obj_section *sect;
2606
2607 ALL_OBJSECTIONS (objfile, sect)
2608 if (section_is_overlay (sect->the_bfd_section))
c5aa993b 2609 sect->ovly_mapped = -1;
c906108c
SS
2610}
2611
2612/* Function: overlay_is_mapped (SECTION)
2613 Returns true if section is an overlay, and is currently mapped.
2614 Private: public access is thru function section_is_mapped.
2615
2616 Access to the ovly_mapped flag is restricted to this function, so
2617 that we can do automatic update. If the global flag
2618 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
2619 overlay_invalidate_all. If the mapped state of the particular
2620 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
2621
c5aa993b 2622static int
fba45db2 2623overlay_is_mapped (struct obj_section *osect)
c906108c
SS
2624{
2625 if (osect == 0 || !section_is_overlay (osect->the_bfd_section))
2626 return 0;
2627
c5aa993b 2628 switch (overlay_debugging)
c906108c
SS
2629 {
2630 default:
d874f1e2 2631 case ovly_off:
c5aa993b 2632 return 0; /* overlay debugging off */
d874f1e2 2633 case ovly_auto: /* overlay debugging automatic */
c906108c 2634 /* Unles there is a target_overlay_update function,
c5aa993b 2635 there's really nothing useful to do here (can't really go auto) */
c906108c
SS
2636 if (target_overlay_update)
2637 {
2638 if (overlay_cache_invalid)
2639 {
2640 overlay_invalidate_all ();
2641 overlay_cache_invalid = 0;
2642 }
2643 if (osect->ovly_mapped == -1)
2644 (*target_overlay_update) (osect);
2645 }
2646 /* fall thru to manual case */
d874f1e2 2647 case ovly_on: /* overlay debugging manual */
c906108c
SS
2648 return osect->ovly_mapped == 1;
2649 }
2650}
2651
2652/* Function: section_is_mapped
2653 Returns true if section is an overlay, and is currently mapped. */
2654
2655int
fba45db2 2656section_is_mapped (asection *section)
c906108c 2657{
c5aa993b 2658 struct objfile *objfile;
c906108c
SS
2659 struct obj_section *osect;
2660
2661 if (overlay_debugging)
2662 if (section && section_is_overlay (section))
2663 ALL_OBJSECTIONS (objfile, osect)
2664 if (osect->the_bfd_section == section)
c5aa993b 2665 return overlay_is_mapped (osect);
c906108c
SS
2666
2667 return 0;
2668}
2669
2670/* Function: pc_in_unmapped_range
2671 If PC falls into the lma range of SECTION, return true, else false. */
2672
2673CORE_ADDR
fba45db2 2674pc_in_unmapped_range (CORE_ADDR pc, asection *section)
c906108c 2675{
fbd35540
MS
2676 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2677
c906108c
SS
2678 int size;
2679
2680 if (overlay_debugging)
2681 if (section && section_is_overlay (section))
2682 {
2683 size = bfd_get_section_size_before_reloc (section);
2684 if (section->lma <= pc && pc < section->lma + size)
2685 return 1;
2686 }
2687 return 0;
2688}
2689
2690/* Function: pc_in_mapped_range
2691 If PC falls into the vma range of SECTION, return true, else false. */
2692
2693CORE_ADDR
fba45db2 2694pc_in_mapped_range (CORE_ADDR pc, asection *section)
c906108c 2695{
fbd35540
MS
2696 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2697
c906108c
SS
2698 int size;
2699
2700 if (overlay_debugging)
2701 if (section && section_is_overlay (section))
2702 {
2703 size = bfd_get_section_size_before_reloc (section);
2704 if (section->vma <= pc && pc < section->vma + size)
2705 return 1;
2706 }
2707 return 0;
2708}
2709
9ec8e6a0
JB
2710
2711/* Return true if the mapped ranges of sections A and B overlap, false
2712 otherwise. */
2713int
2714sections_overlap (asection *a, asection *b)
2715{
fbd35540
MS
2716 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2717
9ec8e6a0
JB
2718 CORE_ADDR a_start = a->vma;
2719 CORE_ADDR a_end = a->vma + bfd_get_section_size_before_reloc (a);
2720 CORE_ADDR b_start = b->vma;
2721 CORE_ADDR b_end = b->vma + bfd_get_section_size_before_reloc (b);
2722
2723 return (a_start < b_end && b_start < a_end);
2724}
2725
c906108c
SS
2726/* Function: overlay_unmapped_address (PC, SECTION)
2727 Returns the address corresponding to PC in the unmapped (load) range.
2728 May be the same as PC. */
2729
2730CORE_ADDR
fba45db2 2731overlay_unmapped_address (CORE_ADDR pc, asection *section)
c906108c 2732{
fbd35540
MS
2733 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2734
c906108c
SS
2735 if (overlay_debugging)
2736 if (section && section_is_overlay (section) &&
2737 pc_in_mapped_range (pc, section))
2738 return pc + section->lma - section->vma;
2739
2740 return pc;
2741}
2742
2743/* Function: overlay_mapped_address (PC, SECTION)
2744 Returns the address corresponding to PC in the mapped (runtime) range.
2745 May be the same as PC. */
2746
2747CORE_ADDR
fba45db2 2748overlay_mapped_address (CORE_ADDR pc, asection *section)
c906108c 2749{
fbd35540
MS
2750 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2751
c906108c
SS
2752 if (overlay_debugging)
2753 if (section && section_is_overlay (section) &&
2754 pc_in_unmapped_range (pc, section))
2755 return pc + section->vma - section->lma;
2756
2757 return pc;
2758}
2759
2760
2761/* Function: symbol_overlayed_address
2762 Return one of two addresses (relative to the VMA or to the LMA),
2763 depending on whether the section is mapped or not. */
2764
c5aa993b 2765CORE_ADDR
fba45db2 2766symbol_overlayed_address (CORE_ADDR address, asection *section)
c906108c
SS
2767{
2768 if (overlay_debugging)
2769 {
2770 /* If the symbol has no section, just return its regular address. */
2771 if (section == 0)
2772 return address;
2773 /* If the symbol's section is not an overlay, just return its address */
2774 if (!section_is_overlay (section))
2775 return address;
2776 /* If the symbol's section is mapped, just return its address */
2777 if (section_is_mapped (section))
2778 return address;
2779 /*
2780 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
2781 * then return its LOADED address rather than its vma address!!
2782 */
2783 return overlay_unmapped_address (address, section);
2784 }
2785 return address;
2786}
2787
2788/* Function: find_pc_overlay (PC)
2789 Return the best-match overlay section for PC:
2790 If PC matches a mapped overlay section's VMA, return that section.
2791 Else if PC matches an unmapped section's VMA, return that section.
2792 Else if PC matches an unmapped section's LMA, return that section. */
2793
2794asection *
fba45db2 2795find_pc_overlay (CORE_ADDR pc)
c906108c 2796{
c5aa993b 2797 struct objfile *objfile;
c906108c
SS
2798 struct obj_section *osect, *best_match = NULL;
2799
2800 if (overlay_debugging)
2801 ALL_OBJSECTIONS (objfile, osect)
2802 if (section_is_overlay (osect->the_bfd_section))
c5aa993b
JM
2803 {
2804 if (pc_in_mapped_range (pc, osect->the_bfd_section))
2805 {
2806 if (overlay_is_mapped (osect))
2807 return osect->the_bfd_section;
2808 else
2809 best_match = osect;
2810 }
2811 else if (pc_in_unmapped_range (pc, osect->the_bfd_section))
2812 best_match = osect;
2813 }
c906108c
SS
2814 return best_match ? best_match->the_bfd_section : NULL;
2815}
2816
2817/* Function: find_pc_mapped_section (PC)
2818 If PC falls into the VMA address range of an overlay section that is
2819 currently marked as MAPPED, return that section. Else return NULL. */
2820
2821asection *
fba45db2 2822find_pc_mapped_section (CORE_ADDR pc)
c906108c 2823{
c5aa993b 2824 struct objfile *objfile;
c906108c
SS
2825 struct obj_section *osect;
2826
2827 if (overlay_debugging)
2828 ALL_OBJSECTIONS (objfile, osect)
2829 if (pc_in_mapped_range (pc, osect->the_bfd_section) &&
2830 overlay_is_mapped (osect))
c5aa993b 2831 return osect->the_bfd_section;
c906108c
SS
2832
2833 return NULL;
2834}
2835
2836/* Function: list_overlays_command
2837 Print a list of mapped sections and their PC ranges */
2838
2839void
fba45db2 2840list_overlays_command (char *args, int from_tty)
c906108c 2841{
c5aa993b
JM
2842 int nmapped = 0;
2843 struct objfile *objfile;
c906108c
SS
2844 struct obj_section *osect;
2845
2846 if (overlay_debugging)
2847 ALL_OBJSECTIONS (objfile, osect)
2848 if (overlay_is_mapped (osect))
c5aa993b
JM
2849 {
2850 const char *name;
2851 bfd_vma lma, vma;
2852 int size;
2853
2854 vma = bfd_section_vma (objfile->obfd, osect->the_bfd_section);
2855 lma = bfd_section_lma (objfile->obfd, osect->the_bfd_section);
2856 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2857 name = bfd_section_name (objfile->obfd, osect->the_bfd_section);
2858
2859 printf_filtered ("Section %s, loaded at ", name);
2860 print_address_numeric (lma, 1, gdb_stdout);
2861 puts_filtered (" - ");
2862 print_address_numeric (lma + size, 1, gdb_stdout);
2863 printf_filtered (", mapped at ");
2864 print_address_numeric (vma, 1, gdb_stdout);
2865 puts_filtered (" - ");
2866 print_address_numeric (vma + size, 1, gdb_stdout);
2867 puts_filtered ("\n");
2868
2869 nmapped++;
2870 }
c906108c
SS
2871 if (nmapped == 0)
2872 printf_filtered ("No sections are mapped.\n");
2873}
2874
2875/* Function: map_overlay_command
2876 Mark the named section as mapped (ie. residing at its VMA address). */
2877
2878void
fba45db2 2879map_overlay_command (char *args, int from_tty)
c906108c 2880{
c5aa993b
JM
2881 struct objfile *objfile, *objfile2;
2882 struct obj_section *sec, *sec2;
2883 asection *bfdsec;
c906108c
SS
2884
2885 if (!overlay_debugging)
515ad16c
EZ
2886 error ("\
2887Overlay debugging not enabled. Use either the 'overlay auto' or\n\
2888the 'overlay manual' command.");
c906108c
SS
2889
2890 if (args == 0 || *args == 0)
2891 error ("Argument required: name of an overlay section");
2892
2893 /* First, find a section matching the user supplied argument */
2894 ALL_OBJSECTIONS (objfile, sec)
2895 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
c5aa993b
JM
2896 {
2897 /* Now, check to see if the section is an overlay. */
2898 bfdsec = sec->the_bfd_section;
2899 if (!section_is_overlay (bfdsec))
2900 continue; /* not an overlay section */
2901
2902 /* Mark the overlay as "mapped" */
2903 sec->ovly_mapped = 1;
2904
2905 /* Next, make a pass and unmap any sections that are
2906 overlapped by this new section: */
2907 ALL_OBJSECTIONS (objfile2, sec2)
9ec8e6a0
JB
2908 if (sec2->ovly_mapped
2909 && sec != sec2
2910 && sec->the_bfd_section != sec2->the_bfd_section
2911 && sections_overlap (sec->the_bfd_section,
2912 sec2->the_bfd_section))
c5aa993b
JM
2913 {
2914 if (info_verbose)
2915 printf_filtered ("Note: section %s unmapped by overlap\n",
2916 bfd_section_name (objfile->obfd,
2917 sec2->the_bfd_section));
2918 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2 */
2919 }
2920 return;
2921 }
c906108c
SS
2922 error ("No overlay section called %s", args);
2923}
2924
2925/* Function: unmap_overlay_command
2926 Mark the overlay section as unmapped
2927 (ie. resident in its LMA address range, rather than the VMA range). */
2928
2929void
fba45db2 2930unmap_overlay_command (char *args, int from_tty)
c906108c 2931{
c5aa993b 2932 struct objfile *objfile;
c906108c
SS
2933 struct obj_section *sec;
2934
2935 if (!overlay_debugging)
515ad16c
EZ
2936 error ("\
2937Overlay debugging not enabled. Use either the 'overlay auto' or\n\
2938the 'overlay manual' command.");
c906108c
SS
2939
2940 if (args == 0 || *args == 0)
2941 error ("Argument required: name of an overlay section");
2942
2943 /* First, find a section matching the user supplied argument */
2944 ALL_OBJSECTIONS (objfile, sec)
2945 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
c5aa993b
JM
2946 {
2947 if (!sec->ovly_mapped)
2948 error ("Section %s is not mapped", args);
2949 sec->ovly_mapped = 0;
2950 return;
2951 }
c906108c
SS
2952 error ("No overlay section called %s", args);
2953}
2954
2955/* Function: overlay_auto_command
2956 A utility command to turn on overlay debugging.
2957 Possibly this should be done via a set/show command. */
2958
2959static void
fba45db2 2960overlay_auto_command (char *args, int from_tty)
c906108c 2961{
d874f1e2 2962 overlay_debugging = ovly_auto;
1900040c 2963 enable_overlay_breakpoints ();
c906108c
SS
2964 if (info_verbose)
2965 printf_filtered ("Automatic overlay debugging enabled.");
2966}
2967
2968/* Function: overlay_manual_command
2969 A utility command to turn on overlay debugging.
2970 Possibly this should be done via a set/show command. */
2971
2972static void
fba45db2 2973overlay_manual_command (char *args, int from_tty)
c906108c 2974{
d874f1e2 2975 overlay_debugging = ovly_on;
1900040c 2976 disable_overlay_breakpoints ();
c906108c
SS
2977 if (info_verbose)
2978 printf_filtered ("Overlay debugging enabled.");
2979}
2980
2981/* Function: overlay_off_command
2982 A utility command to turn on overlay debugging.
2983 Possibly this should be done via a set/show command. */
2984
2985static void
fba45db2 2986overlay_off_command (char *args, int from_tty)
c906108c 2987{
d874f1e2 2988 overlay_debugging = ovly_off;
1900040c 2989 disable_overlay_breakpoints ();
c906108c
SS
2990 if (info_verbose)
2991 printf_filtered ("Overlay debugging disabled.");
2992}
2993
2994static void
fba45db2 2995overlay_load_command (char *args, int from_tty)
c906108c
SS
2996{
2997 if (target_overlay_update)
2998 (*target_overlay_update) (NULL);
2999 else
3000 error ("This target does not know how to read its overlay state.");
3001}
3002
3003/* Function: overlay_command
3004 A place-holder for a mis-typed command */
3005
3006/* Command list chain containing all defined "overlay" subcommands. */
3007struct cmd_list_element *overlaylist;
3008
3009static void
fba45db2 3010overlay_command (char *args, int from_tty)
c906108c 3011{
c5aa993b 3012 printf_unfiltered
c906108c
SS
3013 ("\"overlay\" must be followed by the name of an overlay command.\n");
3014 help_list (overlaylist, "overlay ", -1, gdb_stdout);
3015}
3016
3017
3018/* Target Overlays for the "Simplest" overlay manager:
3019
3020 This is GDB's default target overlay layer. It works with the
3021 minimal overlay manager supplied as an example by Cygnus. The
3022 entry point is via a function pointer "target_overlay_update",
3023 so targets that use a different runtime overlay manager can
3024 substitute their own overlay_update function and take over the
3025 function pointer.
3026
3027 The overlay_update function pokes around in the target's data structures
3028 to see what overlays are mapped, and updates GDB's overlay mapping with
3029 this information.
3030
3031 In this simple implementation, the target data structures are as follows:
c5aa993b
JM
3032 unsigned _novlys; /# number of overlay sections #/
3033 unsigned _ovly_table[_novlys][4] = {
3034 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
3035 {..., ..., ..., ...},
3036 }
3037 unsigned _novly_regions; /# number of overlay regions #/
3038 unsigned _ovly_region_table[_novly_regions][3] = {
3039 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
3040 {..., ..., ...},
3041 }
c906108c
SS
3042 These functions will attempt to update GDB's mappedness state in the
3043 symbol section table, based on the target's mappedness state.
3044
3045 To do this, we keep a cached copy of the target's _ovly_table, and
3046 attempt to detect when the cached copy is invalidated. The main
3047 entry point is "simple_overlay_update(SECT), which looks up SECT in
3048 the cached table and re-reads only the entry for that section from
3049 the target (whenever possible).
3050 */
3051
3052/* Cached, dynamically allocated copies of the target data structures: */
c5aa993b 3053static unsigned (*cache_ovly_table)[4] = 0;
c906108c 3054#if 0
c5aa993b 3055static unsigned (*cache_ovly_region_table)[3] = 0;
c906108c 3056#endif
c5aa993b 3057static unsigned cache_novlys = 0;
c906108c 3058#if 0
c5aa993b 3059static unsigned cache_novly_regions = 0;
c906108c
SS
3060#endif
3061static CORE_ADDR cache_ovly_table_base = 0;
3062#if 0
3063static CORE_ADDR cache_ovly_region_table_base = 0;
3064#endif
c5aa993b
JM
3065enum ovly_index
3066 {
3067 VMA, SIZE, LMA, MAPPED
3068 };
c906108c
SS
3069#define TARGET_LONG_BYTES (TARGET_LONG_BIT / TARGET_CHAR_BIT)
3070
3071/* Throw away the cached copy of _ovly_table */
3072static void
fba45db2 3073simple_free_overlay_table (void)
c906108c
SS
3074{
3075 if (cache_ovly_table)
b8c9b27d 3076 xfree (cache_ovly_table);
c5aa993b 3077 cache_novlys = 0;
c906108c
SS
3078 cache_ovly_table = NULL;
3079 cache_ovly_table_base = 0;
3080}
3081
3082#if 0
3083/* Throw away the cached copy of _ovly_region_table */
3084static void
fba45db2 3085simple_free_overlay_region_table (void)
c906108c
SS
3086{
3087 if (cache_ovly_region_table)
b8c9b27d 3088 xfree (cache_ovly_region_table);
c5aa993b 3089 cache_novly_regions = 0;
c906108c
SS
3090 cache_ovly_region_table = NULL;
3091 cache_ovly_region_table_base = 0;
3092}
3093#endif
3094
3095/* Read an array of ints from the target into a local buffer.
3096 Convert to host order. int LEN is number of ints */
3097static void
fba45db2 3098read_target_long_array (CORE_ADDR memaddr, unsigned int *myaddr, int len)
c906108c 3099{
34c0bd93 3100 /* FIXME (alloca): Not safe if array is very large. */
c906108c 3101 char *buf = alloca (len * TARGET_LONG_BYTES);
c5aa993b 3102 int i;
c906108c
SS
3103
3104 read_memory (memaddr, buf, len * TARGET_LONG_BYTES);
3105 for (i = 0; i < len; i++)
c5aa993b 3106 myaddr[i] = extract_unsigned_integer (TARGET_LONG_BYTES * i + buf,
c906108c
SS
3107 TARGET_LONG_BYTES);
3108}
3109
3110/* Find and grab a copy of the target _ovly_table
3111 (and _novlys, which is needed for the table's size) */
c5aa993b 3112static int
fba45db2 3113simple_read_overlay_table (void)
c906108c 3114{
0d43edd1 3115 struct minimal_symbol *novlys_msym, *ovly_table_msym;
c906108c
SS
3116
3117 simple_free_overlay_table ();
9b27852e 3118 novlys_msym = lookup_minimal_symbol ("_novlys", NULL, NULL);
0d43edd1 3119 if (! novlys_msym)
c906108c 3120 {
0d43edd1
JB
3121 error ("Error reading inferior's overlay table: "
3122 "couldn't find `_novlys' variable\n"
3123 "in inferior. Use `overlay manual' mode.");
3124 return 0;
c906108c 3125 }
0d43edd1 3126
9b27852e 3127 ovly_table_msym = lookup_minimal_symbol ("_ovly_table", NULL, NULL);
0d43edd1
JB
3128 if (! ovly_table_msym)
3129 {
3130 error ("Error reading inferior's overlay table: couldn't find "
3131 "`_ovly_table' array\n"
3132 "in inferior. Use `overlay manual' mode.");
3133 return 0;
3134 }
3135
3136 cache_novlys = read_memory_integer (SYMBOL_VALUE_ADDRESS (novlys_msym), 4);
3137 cache_ovly_table
3138 = (void *) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
3139 cache_ovly_table_base = SYMBOL_VALUE_ADDRESS (ovly_table_msym);
3140 read_target_long_array (cache_ovly_table_base,
3141 (int *) cache_ovly_table,
3142 cache_novlys * 4);
3143
c5aa993b 3144 return 1; /* SUCCESS */
c906108c
SS
3145}
3146
3147#if 0
3148/* Find and grab a copy of the target _ovly_region_table
3149 (and _novly_regions, which is needed for the table's size) */
c5aa993b 3150static int
fba45db2 3151simple_read_overlay_region_table (void)
c906108c
SS
3152{
3153 struct minimal_symbol *msym;
3154
3155 simple_free_overlay_region_table ();
9b27852e 3156 msym = lookup_minimal_symbol ("_novly_regions", NULL, NULL);
c906108c
SS
3157 if (msym != NULL)
3158 cache_novly_regions = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
c5aa993b
JM
3159 else
3160 return 0; /* failure */
c906108c
SS
3161 cache_ovly_region_table = (void *) xmalloc (cache_novly_regions * 12);
3162 if (cache_ovly_region_table != NULL)
3163 {
9b27852e 3164 msym = lookup_minimal_symbol ("_ovly_region_table", NULL, NULL);
c906108c
SS
3165 if (msym != NULL)
3166 {
3167 cache_ovly_region_table_base = SYMBOL_VALUE_ADDRESS (msym);
c5aa993b
JM
3168 read_target_long_array (cache_ovly_region_table_base,
3169 (int *) cache_ovly_region_table,
c906108c
SS
3170 cache_novly_regions * 3);
3171 }
c5aa993b
JM
3172 else
3173 return 0; /* failure */
c906108c 3174 }
c5aa993b
JM
3175 else
3176 return 0; /* failure */
3177 return 1; /* SUCCESS */
c906108c
SS
3178}
3179#endif
3180
3181/* Function: simple_overlay_update_1
3182 A helper function for simple_overlay_update. Assuming a cached copy
3183 of _ovly_table exists, look through it to find an entry whose vma,
3184 lma and size match those of OSECT. Re-read the entry and make sure
3185 it still matches OSECT (else the table may no longer be valid).
3186 Set OSECT's mapped state to match the entry. Return: 1 for
3187 success, 0 for failure. */
3188
3189static int
fba45db2 3190simple_overlay_update_1 (struct obj_section *osect)
c906108c
SS
3191{
3192 int i, size;
fbd35540
MS
3193 bfd *obfd = osect->objfile->obfd;
3194 asection *bsect = osect->the_bfd_section;
c906108c
SS
3195
3196 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
3197 for (i = 0; i < cache_novlys; i++)
fbd35540
MS
3198 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3199 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3200 /* && cache_ovly_table[i][SIZE] == size */ )
c906108c
SS
3201 {
3202 read_target_long_array (cache_ovly_table_base + i * TARGET_LONG_BYTES,
3203 (int *) cache_ovly_table[i], 4);
fbd35540
MS
3204 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3205 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3206 /* && cache_ovly_table[i][SIZE] == size */ )
c906108c
SS
3207 {
3208 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3209 return 1;
3210 }
fbd35540 3211 else /* Warning! Warning! Target's ovly table has changed! */
c906108c
SS
3212 return 0;
3213 }
3214 return 0;
3215}
3216
3217/* Function: simple_overlay_update
3218 If OSECT is NULL, then update all sections' mapped state
3219 (after re-reading the entire target _ovly_table).
3220 If OSECT is non-NULL, then try to find a matching entry in the
3221 cached ovly_table and update only OSECT's mapped state.
3222 If a cached entry can't be found or the cache isn't valid, then
3223 re-read the entire cache, and go ahead and update all sections. */
3224
3225static void
fba45db2 3226simple_overlay_update (struct obj_section *osect)
c906108c 3227{
c5aa993b 3228 struct objfile *objfile;
c906108c
SS
3229
3230 /* Were we given an osect to look up? NULL means do all of them. */
3231 if (osect)
3232 /* Have we got a cached copy of the target's overlay table? */
3233 if (cache_ovly_table != NULL)
3234 /* Does its cached location match what's currently in the symtab? */
c5aa993b 3235 if (cache_ovly_table_base ==
9b27852e 3236 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", NULL, NULL)))
c906108c
SS
3237 /* Then go ahead and try to look up this single section in the cache */
3238 if (simple_overlay_update_1 (osect))
3239 /* Found it! We're done. */
3240 return;
3241
3242 /* Cached table no good: need to read the entire table anew.
3243 Or else we want all the sections, in which case it's actually
3244 more efficient to read the whole table in one block anyway. */
3245
0d43edd1
JB
3246 if (! simple_read_overlay_table ())
3247 return;
3248
c906108c
SS
3249 /* Now may as well update all sections, even if only one was requested. */
3250 ALL_OBJSECTIONS (objfile, osect)
3251 if (section_is_overlay (osect->the_bfd_section))
c5aa993b
JM
3252 {
3253 int i, size;
fbd35540
MS
3254 bfd *obfd = osect->objfile->obfd;
3255 asection *bsect = osect->the_bfd_section;
c5aa993b
JM
3256
3257 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
3258 for (i = 0; i < cache_novlys; i++)
fbd35540
MS
3259 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3260 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3261 /* && cache_ovly_table[i][SIZE] == size */ )
3262 { /* obj_section matches i'th entry in ovly_table */
c5aa993b
JM
3263 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3264 break; /* finished with inner for loop: break out */
3265 }
3266 }
c906108c
SS
3267}
3268
3269
3270void
fba45db2 3271_initialize_symfile (void)
c906108c
SS
3272{
3273 struct cmd_list_element *c;
c5aa993b 3274
c906108c 3275 c = add_cmd ("symbol-file", class_files, symbol_file_command,
c5aa993b 3276 "Load symbol table from executable file FILE.\n\
c906108c
SS
3277The `file' command can also load symbol tables, as well as setting the file\n\
3278to execute.", &cmdlist);
5ba2abeb 3279 set_cmd_completer (c, filename_completer);
c906108c
SS
3280
3281 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command,
db162d44 3282 "Usage: add-symbol-file FILE ADDR [-s <SECT> <SECT_ADDR> -s <SECT> <SECT_ADDR> ...]\n\
c906108c 3283Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
2acceee2 3284ADDR is the starting address of the file's text.\n\
db162d44
EZ
3285The optional arguments are section-name section-address pairs and\n\
3286should be specified if the data and bss segments are not contiguous\n\
d4654627 3287with the text. SECT is a section name to be loaded at SECT_ADDR.",
c906108c 3288 &cmdlist);
5ba2abeb 3289 set_cmd_completer (c, filename_completer);
c906108c
SS
3290
3291 c = add_cmd ("add-shared-symbol-files", class_files,
3292 add_shared_symbol_files_command,
3293 "Load the symbols from shared objects in the dynamic linker's link map.",
c5aa993b 3294 &cmdlist);
c906108c
SS
3295 c = add_alias_cmd ("assf", "add-shared-symbol-files", class_files, 1,
3296 &cmdlist);
3297
3298 c = add_cmd ("load", class_files, load_command,
c5aa993b 3299 "Dynamically load FILE into the running program, and record its symbols\n\
c906108c 3300for access from GDB.", &cmdlist);
5ba2abeb 3301 set_cmd_completer (c, filename_completer);
c906108c
SS
3302
3303 add_show_from_set
3304 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
c5aa993b
JM
3305 (char *) &symbol_reloading,
3306 "Set dynamic symbol table reloading multiple times in one run.",
c906108c
SS
3307 &setlist),
3308 &showlist);
3309
c5aa993b
JM
3310 add_prefix_cmd ("overlay", class_support, overlay_command,
3311 "Commands for debugging overlays.", &overlaylist,
c906108c
SS
3312 "overlay ", 0, &cmdlist);
3313
3314 add_com_alias ("ovly", "overlay", class_alias, 1);
3315 add_com_alias ("ov", "overlay", class_alias, 1);
3316
c5aa993b 3317 add_cmd ("map-overlay", class_support, map_overlay_command,
c906108c
SS
3318 "Assert that an overlay section is mapped.", &overlaylist);
3319
c5aa993b 3320 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
c906108c
SS
3321 "Assert that an overlay section is unmapped.", &overlaylist);
3322
c5aa993b 3323 add_cmd ("list-overlays", class_support, list_overlays_command,
c906108c
SS
3324 "List mappings of overlay sections.", &overlaylist);
3325
c5aa993b 3326 add_cmd ("manual", class_support, overlay_manual_command,
c906108c 3327 "Enable overlay debugging.", &overlaylist);
c5aa993b 3328 add_cmd ("off", class_support, overlay_off_command,
c906108c 3329 "Disable overlay debugging.", &overlaylist);
c5aa993b 3330 add_cmd ("auto", class_support, overlay_auto_command,
c906108c 3331 "Enable automatic overlay debugging.", &overlaylist);
c5aa993b 3332 add_cmd ("load-target", class_support, overlay_load_command,
c906108c
SS
3333 "Read the overlay mapping state from the target.", &overlaylist);
3334
3335 /* Filename extension to source language lookup table: */
3336 init_filename_language_table ();
3337 c = add_set_cmd ("extension-language", class_files, var_string_noescape,
c5aa993b 3338 (char *) &ext_args,
c906108c
SS
3339 "Set mapping between filename extension and source language.\n\
3340Usage: set extension-language .foo bar",
c5aa993b 3341 &setlist);
9f60d481 3342 set_cmd_cfunc (c, set_ext_lang_command);
c906108c 3343
c5aa993b 3344 add_info ("extensions", info_ext_lang_command,
c906108c 3345 "All filename extensions associated with a source language.");
917317f4
JM
3346
3347 add_show_from_set
3348 (add_set_cmd ("download-write-size", class_obscure,
3349 var_integer, (char *) &download_write_size,
3350 "Set the write size used when downloading a program.\n"
3351 "Only used when downloading a program onto a remote\n"
3352 "target. Specify zero, or a negative value, to disable\n"
3353 "blocked writes. The actual size of each transfer is also\n"
3354 "limited by the size of the target packet and the memory\n"
3355 "cache.\n",
3356 &setlist),
3357 &showlist);
c906108c 3358}
This page took 0.484679 seconds and 4 git commands to generate.