fix for PRs 1360 and 1370 -- new v8 patterns for save,inc,dec
[deliverable/binutils-gdb.git] / gdb / objfiles.c
CommitLineData
1ab3bf1b
JG
1/* GDB routines for manipulating objfiles.
2 Copyright 1992 Free Software Foundation, Inc.
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21/* This file contains support routines for creating, manipulating, and
22 destroying objfile structures. */
23
1ab3bf1b
JG
24#include "defs.h"
25#include "bfd.h" /* Binary File Description */
26#include "symtab.h"
27#include "symfile.h"
5e2e79f8 28#include "objfiles.h"
1ab3bf1b 29
318bf84f
FF
30#include <sys/types.h>
31#include <sys/stat.h>
32#include <fcntl.h>
1ab3bf1b
JG
33#include <obstack.h>
34
318bf84f
FF
35/* Prototypes for local functions */
36
1867b3be
FF
37#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
38
39static int
40open_existing_mapped_file PARAMS ((char *, long, int));
41
318bf84f 42static int
b0246b3b 43open_mapped_file PARAMS ((char *filename, long mtime, int mapped));
318bf84f
FF
44
45static CORE_ADDR
46map_to_address PARAMS ((void));
47
1867b3be
FF
48#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
49
50/* Message to be printed before the error message, when an error occurs. */
51
52extern char *error_pre_print;
53
5e2e79f8
FF
54/* Externally visible variables that are owned by this module.
55 See declarations in objfile.h for more info. */
1ab3bf1b
JG
56
57struct objfile *object_files; /* Linked list of all objfiles */
5e2e79f8
FF
58struct objfile *current_objfile; /* For symbol file being read in */
59struct objfile *symfile_objfile; /* Main symbol table loaded from */
60
318bf84f 61int mapped_symbol_files; /* Try to use mapped symbol files */
1ab3bf1b 62
b0246b3b
FF
63/* Given a pointer to an initialized bfd (ABFD) and a flag that indicates
64 whether or not an objfile is to be mapped (MAPPED), allocate a new objfile
65 struct, fill it in as best we can, link it into the list of all known
66 objfiles, and return a pointer to the new objfile struct. */
1ab3bf1b
JG
67
68struct objfile *
b0246b3b 69allocate_objfile (abfd, mapped)
1ab3bf1b 70 bfd *abfd;
318bf84f 71 int mapped;
1ab3bf1b 72{
318bf84f
FF
73 struct objfile *objfile = NULL;
74 int fd;
75 void *md;
76 CORE_ADDR mapto;
77
78 mapped |= mapped_symbol_files;
79
80#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
81
82 /* If we can support mapped symbol files, try to open/reopen the mapped file
83 that corresponds to the file from which we wish to read symbols. If the
84 objfile is to be mapped, we must malloc the structure itself using the
85 mmap version, and arrange that all memory allocation for the objfile uses
86 the mmap routines. If we are reusing an existing mapped file, from which
87 we get our objfile pointer, we have to make sure that we update the
88 pointers to the alloc/free functions in the obstack, in case these
89 functions have moved within the current gdb. */
90
b0246b3b
FF
91 fd = open_mapped_file (bfd_get_filename (abfd), bfd_get_mtime (abfd),
92 mapped);
318bf84f
FF
93 if (fd >= 0)
94 {
b0246b3b 95 if (((mapto = map_to_address ()) == 0) ||
318bf84f
FF
96 ((md = mmalloc_attach (fd, (void *) mapto)) == NULL))
97 {
4ed3a9ea 98 close (fd);
318bf84f
FF
99 }
100 else if ((objfile = (struct objfile *) mmalloc_getkey (md, 0)) != NULL)
101 {
3624c875
FF
102 /* Update memory corruption handler function addresses. */
103 init_malloc (md);
318bf84f 104 objfile -> md = md;
2d6d969c 105 objfile -> mmfd = fd;
318bf84f
FF
106 /* Update pointers to functions to *our* copies */
107 obstack_chunkfun (&objfile -> psymbol_obstack, xmmalloc);
108 obstack_freefun (&objfile -> psymbol_obstack, mfree);
109 obstack_chunkfun (&objfile -> symbol_obstack, xmmalloc);
110 obstack_freefun (&objfile -> symbol_obstack, mfree);
111 obstack_chunkfun (&objfile -> type_obstack, xmmalloc);
112 obstack_freefun (&objfile -> type_obstack, mfree);
6c316cfd
FF
113 /* If already in objfile list, unlink it. */
114 unlink_objfile (objfile);
115 /* Forget things specific to a particular gdb, may have changed. */
116 objfile -> sf = NULL;
318bf84f
FF
117 }
118 else
119 {
3624c875
FF
120 /* Set up to detect internal memory corruption. MUST be done before
121 the first malloc. See comments in init_malloc() and mmcheck(). */
122 init_malloc (md);
318bf84f 123 objfile = (struct objfile *) xmmalloc (md, sizeof (struct objfile));
4ed3a9ea 124 memset (objfile, 0, sizeof (struct objfile));
318bf84f 125 objfile -> md = md;
2d6d969c 126 objfile -> mmfd = fd;
318bf84f
FF
127 objfile -> flags |= OBJF_MAPPED;
128 mmalloc_setkey (objfile -> md, 0, objfile);
c0f1085b
FF
129 obstack_alloc_arg (&objfile -> psymbol_obstack, objfile -> md);
130 obstack_full_begin (&objfile -> psymbol_obstack, 0, 0, xmmalloc,
131 mfree);
132 obstack_alloc_arg (&objfile -> symbol_obstack, objfile -> md);
133 obstack_full_begin (&objfile -> symbol_obstack, 0, 0, xmmalloc,
134 mfree);
135 obstack_alloc_arg (&objfile -> type_obstack, objfile -> md);
136 obstack_full_begin (&objfile -> type_obstack, 0, 0, xmmalloc,
137 mfree);
318bf84f
FF
138 }
139 }
140
141 if (mapped && (objfile == NULL))
142 {
b0246b3b
FF
143 warning ("symbol table for '%s' will not be mapped",
144 bfd_get_filename (abfd));
318bf84f 145 }
1ab3bf1b 146
318bf84f 147#else /* defined(NO_MMALLOC) || !defined(HAVE_MMAP) */
1ab3bf1b 148
318bf84f 149 if (mapped)
1ab3bf1b 150 {
318bf84f
FF
151 warning ("this version of gdb does not support mapped symbol tables.");
152
153 /* Turn off the global flag so we don't try to do mapped symbol tables
154 any more, which shuts up gdb unless the user specifically gives the
155 "mapped" keyword again. */
156
157 mapped_symbol_files = 0;
1ab3bf1b 158 }
318bf84f
FF
159
160#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
161
162 /* If we don't support mapped symbol files, didn't ask for the file to be
163 mapped, or failed to open the mapped file for some reason, then revert
164 back to an unmapped objfile. */
165
166 if (objfile == NULL)
1ab3bf1b
JG
167 {
168 objfile = (struct objfile *) xmalloc (sizeof (struct objfile));
4ed3a9ea 169 memset (objfile, 0, sizeof (struct objfile));
318bf84f 170 objfile -> md = NULL;
c0f1085b
FF
171 obstack_full_begin (&objfile -> psymbol_obstack, 0, 0, xmalloc, free);
172 obstack_full_begin (&objfile -> symbol_obstack, 0, 0, xmalloc, free);
173 obstack_full_begin (&objfile -> type_obstack, 0, 0, xmalloc, free);
1ab3bf1b
JG
174 }
175
b0246b3b
FF
176 /* Update the per-objfile information that comes from the bfd, ensuring
177 that any data that is reference is saved in the per-objfile data
178 region. */
1ab3bf1b
JG
179
180 objfile -> obfd = abfd;
2d6d969c
FF
181 if (objfile -> name != NULL)
182 {
183 mfree (objfile -> md, objfile -> name);
184 }
b0246b3b 185 objfile -> name = mstrsave (objfile -> md, bfd_get_filename (abfd));
1ab3bf1b
JG
186 objfile -> mtime = bfd_get_mtime (abfd);
187
1ab3bf1b
JG
188 /* Push this file onto the head of the linked list of other such files. */
189
190 objfile -> next = object_files;
191 object_files = objfile;
192
193 return (objfile);
194}
195
6c316cfd
FF
196/* Unlink OBJFILE from the list of known objfiles, if it is found in the
197 list.
198
199 It is not a bug, or error, to call this function if OBJFILE is not known
200 to be in the current list. This is done in the case of mapped objfiles,
201 for example, just to ensure that the mapped objfile doesn't appear twice
202 in the list. Since the list is threaded, linking in a mapped objfile
203 twice would create a circular list.
204
205 If OBJFILE turns out to be in the list, we zap it's NEXT pointer after
206 unlinking it, just to ensure that we have completely severed any linkages
207 between the OBJFILE and the list. */
208
209void
210unlink_objfile (objfile)
211 struct objfile *objfile;
212{
213 struct objfile** objpp;
214
215 for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp) -> next))
216 {
217 if (*objpp == objfile)
218 {
219 *objpp = (*objpp) -> next;
220 objfile -> next = NULL;
221 break;
222 }
223 }
224}
225
1ab3bf1b
JG
226
227/* Destroy an objfile and all the symtabs and psymtabs under it. Note
228 that as much as possible is allocated on the symbol_obstack and
80d68b1d
FF
229 psymbol_obstack, so that the memory can be efficiently freed.
230
231 Things which we do NOT free because they are not in malloc'd memory
232 or not in memory specific to the objfile include:
233
234 objfile -> sf
235
2d6d969c
FF
236 FIXME: If the objfile is using reusable symbol information (via mmalloc),
237 then we need to take into account the fact that more than one process
238 may be using the symbol information at the same time (when mmalloc is
239 extended to support cooperative locking). When more than one process
240 is using the mapped symbol info, we need to be more careful about when
241 we free objects in the reusable area. */
1ab3bf1b
JG
242
243void
244free_objfile (objfile)
245 struct objfile *objfile;
246{
2d6d969c
FF
247 int mmfd;
248
249 /* First do any symbol file specific actions required when we are
250 finished with a particular symbol file. Note that if the objfile
251 is using reusable symbol information (via mmalloc) then each of
252 these routines is responsible for doing the correct thing, either
253 freeing things which are valid only during this particular gdb
254 execution, or leaving them to be reused during the next one. */
1ab3bf1b 255
80d68b1d
FF
256 if (objfile -> sf != NULL)
257 {
258 (*objfile -> sf -> sym_finish) (objfile);
259 }
2d6d969c
FF
260
261 /* We always close the bfd. */
262
80d68b1d 263 if (objfile -> obfd != NULL)
1ab3bf1b 264 {
346168a2 265 char *name = bfd_get_filename (objfile->obfd);
1ab3bf1b 266 bfd_close (objfile -> obfd);
346168a2 267 free (name);
1ab3bf1b
JG
268 }
269
2d6d969c 270 /* Remove it from the chain of all objfiles. */
1ab3bf1b 271
6c316cfd 272 unlink_objfile (objfile);
1ab3bf1b 273
1ab3bf1b
JG
274 /* Before the symbol table code was redone to make it easier to
275 selectively load and remove information particular to a specific
276 linkage unit, gdb used to do these things whenever the monolithic
277 symbol table was blown away. How much still needs to be done
278 is unknown, but we play it safe for now and keep each action until
279 it is shown to be no longer needed. */
280
281 clear_symtab_users_once ();
282#if defined (CLEAR_SOLIB)
283 CLEAR_SOLIB ();
284#endif
285 clear_pc_function_cache ();
286
2d6d969c
FF
287 /* The last thing we do is free the objfile struct itself for the
288 non-reusable case, or detach from the mapped file for the reusable
289 case. Note that the mmalloc_detach or the mfree is the last thing
290 we can do with this objfile. */
1ab3bf1b 291
55b3ef9a
FF
292#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
293
2d6d969c
FF
294 if (objfile -> flags & OBJF_MAPPED)
295 {
296 /* Remember the fd so we can close it. We can't close it before
297 doing the detach, and after the detach the objfile is gone. */
298 mmfd = objfile -> mmfd;
299 mmalloc_detach (objfile -> md);
55b3ef9a 300 objfile = NULL;
4ed3a9ea 301 close (mmfd);
2d6d969c 302 }
55b3ef9a
FF
303
304#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
305
306 /* If we still have an objfile, then either we don't support reusable
307 objfiles or this one was not reusable. So free it normally. */
308
309 if (objfile != NULL)
2d6d969c
FF
310 {
311 if (objfile -> name != NULL)
312 {
313 mfree (objfile -> md, objfile -> name);
314 }
346168a2
JG
315 if (objfile->global_psymbols.list)
316 mfree (objfile->md, objfile->global_psymbols.list);
317 if (objfile->static_psymbols.list)
318 mfree (objfile->md, objfile->static_psymbols.list);
2d6d969c
FF
319 /* Free the obstacks for non-reusable objfiles */
320 obstack_free (&objfile -> psymbol_obstack, 0);
321 obstack_free (&objfile -> symbol_obstack, 0);
322 obstack_free (&objfile -> type_obstack, 0);
323 mfree (objfile -> md, objfile);
55b3ef9a 324 objfile = NULL;
2d6d969c 325 }
1ab3bf1b
JG
326}
327
cba0d141
JG
328
329/* Free all the object files at once. */
330
331void
332free_all_objfiles ()
333{
334 struct objfile *objfile, *temp;
335
336 ALL_OBJFILES_SAFE (objfile, temp)
337 {
338 free_objfile (objfile);
339 }
340}
341
1ab3bf1b
JG
342/* Many places in gdb want to test just to see if we have any partial
343 symbols available. This function returns zero if none are currently
344 available, nonzero otherwise. */
345
346int
347have_partial_symbols ()
348{
349 struct objfile *ofp;
1ab3bf1b 350
84ffdec2 351 ALL_OBJFILES (ofp)
1ab3bf1b
JG
352 {
353 if (ofp -> psymtabs != NULL)
354 {
84ffdec2 355 return 1;
1ab3bf1b
JG
356 }
357 }
84ffdec2 358 return 0;
1ab3bf1b
JG
359}
360
361/* Many places in gdb want to test just to see if we have any full
362 symbols available. This function returns zero if none are currently
363 available, nonzero otherwise. */
364
365int
366have_full_symbols ()
367{
368 struct objfile *ofp;
1ab3bf1b 369
84ffdec2 370 ALL_OBJFILES (ofp)
1ab3bf1b
JG
371 {
372 if (ofp -> symtabs != NULL)
373 {
84ffdec2 374 return 1;
1ab3bf1b
JG
375 }
376 }
84ffdec2 377 return 0;
1ab3bf1b
JG
378}
379
380/* Many places in gdb want to test just to see if we have any minimal
381 symbols available. This function returns zero if none are currently
382 available, nonzero otherwise. */
383
384int
385have_minimal_symbols ()
386{
387 struct objfile *ofp;
1ab3bf1b 388
84ffdec2 389 ALL_OBJFILES (ofp)
1ab3bf1b
JG
390 {
391 if (ofp -> msymbols != NULL)
392 {
84ffdec2 393 return 1;
1ab3bf1b
JG
394 }
395 }
84ffdec2 396 return 0;
1ab3bf1b
JG
397}
398
1867b3be
FF
399#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
400
401/* Given the name of a mapped symbol file in SYMSFILENAME, and the timestamp
402 of the corresponding symbol file in MTIME, try to open an existing file
403 with the name SYMSFILENAME and verify it is more recent than the base
404 file by checking it's timestamp against MTIME.
405
406 If SYMSFILENAME does not exist (or can't be stat'd), simply returns -1.
407
408 If SYMSFILENAME does exist, but is out of date, we check to see if the
409 user has specified creation of a mapped file. If so, we don't issue
410 any warning message because we will be creating a new mapped file anyway,
411 overwriting the old one. If not, then we issue a warning message so that
412 the user will know why we aren't using this existing mapped symbol file.
413 In either case, we return -1.
414
415 If SYMSFILENAME does exist and is not out of date, but can't be opened for
416 some reason, then prints an appropriate system error message and returns -1.
417
418 Otherwise, returns the open file descriptor. */
419
420static int
421open_existing_mapped_file (symsfilename, mtime, mapped)
422 char *symsfilename;
423 long mtime;
424 int mapped;
425{
426 int fd = -1;
427 struct stat sbuf;
428
429 if (stat (symsfilename, &sbuf) == 0)
430 {
431 if (sbuf.st_mtime < mtime)
432 {
433 if (!mapped)
434 {
435 warning ("mapped symbol file `%s' is out of date", symsfilename);
436 }
437 }
438 else if ((fd = open (symsfilename, O_RDWR)) < 0)
439 {
440 if (error_pre_print)
441 {
442 printf (error_pre_print);
443 }
444 print_sys_errmsg (symsfilename, errno);
445 }
446 }
447 return (fd);
448}
449
b0246b3b 450/* Look for a mapped symbol file that corresponds to FILENAME and is more
318bf84f 451 recent than MTIME. If MAPPED is nonzero, the user has asked that gdb
b0246b3b
FF
452 use a mapped symbol file for this file, so create a new one if one does
453 not currently exist.
318bf84f
FF
454
455 If found, then return an open file descriptor for the file, otherwise
456 return -1.
457
458 This routine is responsible for implementing the policy that generates
459 the name of the mapped symbol file from the name of a file containing
1867b3be
FF
460 symbols that gdb would like to read. Currently this policy is to append
461 ".syms" to the name of the file.
462
463 This routine is also responsible for implementing the policy that
464 determines where the mapped symbol file is found (the search path).
465 This policy is that when reading an existing mapped file, a file of
466 the correct name in the current directory takes precedence over a
467 file of the correct name in the same directory as the symbol file.
468 When creating a new mapped file, it is always created in the current
469 directory. This helps to minimize the chances of a user unknowingly
470 creating big mapped files in places like /bin and /usr/local/bin, and
471 allows a local copy to override a manually installed global copy (in
472 /bin for example). */
318bf84f
FF
473
474static int
b0246b3b
FF
475open_mapped_file (filename, mtime, mapped)
476 char *filename;
318bf84f
FF
477 long mtime;
478 int mapped;
479{
480 int fd;
1867b3be 481 char *symsfilename;
318bf84f 482
1867b3be
FF
483 /* First try to open an existing file in the current directory, and
484 then try the directory where the symbol file is located. */
318bf84f 485
1867b3be
FF
486 symsfilename = concat ("./", basename (filename), ".syms", (char *) NULL);
487 if ((fd = open_existing_mapped_file (symsfilename, mtime, mapped)) < 0)
318bf84f 488 {
1867b3be
FF
489 free (symsfilename);
490 symsfilename = concat (filename, ".syms", (char *) NULL);
491 fd = open_existing_mapped_file (symsfilename, mtime, mapped);
318bf84f
FF
492 }
493
1867b3be
FF
494 /* If we don't have an open file by now, then either the file does not
495 already exist, or the base file has changed since it was created. In
496 either case, if the user has specified use of a mapped file, then
497 create a new mapped file, truncating any existing one. If we can't
498 create one, print a system error message saying why we can't.
318bf84f
FF
499
500 By default the file is rw for everyone, with the user's umask taking
501 care of turning off the permissions the user wants off. */
502
1867b3be 503 if ((fd < 0) && mapped)
318bf84f 504 {
1867b3be
FF
505 free (symsfilename);
506 symsfilename = concat ("./", basename (filename), ".syms",
507 (char *) NULL);
508 if ((fd = open (symsfilename, O_RDWR | O_CREAT | O_TRUNC, 0666)) < 0)
509 {
510 if (error_pre_print)
511 {
512 printf (error_pre_print);
513 }
514 print_sys_errmsg (symsfilename, errno);
515 }
318bf84f
FF
516 }
517
1867b3be 518 free (symsfilename);
318bf84f
FF
519 return (fd);
520}
521
522/* Return the base address at which we would like the next objfile's
523 mapped data to start.
524
525 For now, we use the kludge that the configuration specifies a base
526 address to which it is safe to map the first mmalloc heap, and an
527 increment to add to this address for each successive heap. There are
528 a lot of issues to deal with here to make this work reasonably, including:
529
530 Avoid memory collisions with existing mapped address spaces
531
532 Reclaim address spaces when their mmalloc heaps are unmapped
533
534 When mmalloc heaps are shared between processes they have to be
535 mapped at the same addresses in each
536
537 Once created, a mmalloc heap that is to be mapped back in must be
538 mapped at the original address. I.E. each objfile will expect to
539 be remapped at it's original address. This becomes a problem if
540 the desired address is already in use.
541
542 etc, etc, etc.
543
544 */
545
546
547static CORE_ADDR
548map_to_address ()
549{
550
551#if defined(MMAP_BASE_ADDRESS) && defined (MMAP_INCREMENT)
552
553 static CORE_ADDR next = MMAP_BASE_ADDRESS;
554 CORE_ADDR mapto = next;
555
556 next += MMAP_INCREMENT;
557 return (mapto);
558
559#else
560
561 return (0);
562
563#endif
564
565}
1867b3be
FF
566
567#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
568
This page took 0.061167 seconds and 4 git commands to generate.