1 /* Simple garbage collection for the GNU compiler.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Generic garbage collection (GC) functions and data, not specific to
22 any particular GC implementation. */
26 #include "coretypes.h"
31 #include "hosthooks.h"
32 #include "hosthooks-def.h"
34 #ifdef HAVE_SYS_RESOURCE_H
35 # include <sys/resource.h>
39 # include <sys/mman.h>
41 /* This is on Solaris. */
42 # include <sys/types.h>
47 # define MAP_FAILED ((void *)-1)
50 #ifdef ENABLE_VALGRIND_CHECKING
51 # ifdef HAVE_VALGRIND_MEMCHECK_H
52 # include <valgrind/memcheck.h>
53 # elif defined HAVE_MEMCHECK_H
54 # include <memcheck.h>
56 # include <valgrind.h>
59 /* Avoid #ifdef:s when we can help it. */
60 #define VALGRIND_DISCARD(x)
63 /* When set, ggc_collect will do collection. */
64 bool ggc_force_collect
;
66 /* Statistics about the allocation. */
67 static ggc_statistics
*ggc_stats
;
69 struct traversal_state
;
71 static int ggc_htab_delete (void **, void *);
72 static hashval_t
saving_htab_hash (const void *);
73 static int saving_htab_eq (const void *, const void *);
74 static int call_count (void **, void *);
75 static int call_alloc (void **, void *);
76 static int compare_ptr_data (const void *, const void *);
77 static void relocate_ptrs (void *, void *);
78 static void write_pch_globals (const struct ggc_root_tab
* const *tab
,
79 struct traversal_state
*state
);
80 static double ggc_rlimit_bound (double);
82 /* Maintain global roots that are preserved during GC. */
84 /* Process a slot of an htab by deleting it if it has not been marked. */
87 ggc_htab_delete (void **slot
, void *info
)
89 const struct ggc_cache_tab
*r
= (const struct ggc_cache_tab
*) info
;
91 if (! (*r
->marked_p
) (*slot
))
92 htab_clear_slot (*r
->base
, slot
);
99 /* Iterate through all registered roots and mark each element. */
102 ggc_mark_roots (void)
104 const struct ggc_root_tab
*const *rt
;
105 const struct ggc_root_tab
*rti
;
106 const struct ggc_cache_tab
*const *ct
;
107 const struct ggc_cache_tab
*cti
;
110 for (rt
= gt_ggc_deletable_rtab
; *rt
; rt
++)
111 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
112 memset (rti
->base
, 0, rti
->stride
);
114 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
115 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
116 for (i
= 0; i
< rti
->nelt
; i
++)
117 (*rti
->cb
)(*(void **)((char *)rti
->base
+ rti
->stride
* i
));
119 ggc_mark_stringpool ();
121 /* Now scan all hash tables that have objects which are to be deleted if
122 they are not already marked. */
123 for (ct
= gt_ggc_cache_rtab
; *ct
; ct
++)
124 for (cti
= *ct
; cti
->base
!= NULL
; cti
++)
127 ggc_set_mark (*cti
->base
);
128 htab_traverse_noresize (*cti
->base
, ggc_htab_delete
, (void *) cti
);
129 ggc_set_mark ((*cti
->base
)->entries
);
133 /* Allocate a block of memory, then clear it. */
135 ggc_alloc_cleared_stat (size_t size MEM_STAT_DECL
)
137 void *buf
= ggc_alloc_stat (size PASS_MEM_STAT
);
138 memset (buf
, 0, size
);
142 /* Resize a block of memory, possibly re-allocating it. */
144 ggc_realloc_stat (void *x
, size_t size MEM_STAT_DECL
)
150 return ggc_alloc_stat (size PASS_MEM_STAT
);
152 old_size
= ggc_get_size (x
);
154 if (size
<= old_size
)
156 /* Mark the unwanted memory as unaccessible. We also need to make
157 the "new" size accessible, since ggc_get_size returns the size of
158 the pool, not the size of the individually allocated object, the
159 size which was previously made accessible. Unfortunately, we
160 don't know that previously allocated size. Without that
161 knowledge we have to lose some initialization-tracking for the
162 old parts of the object. An alternative is to mark the whole
163 old_size as reachable, but that would lose tracking of writes
164 after the end of the object (by small offsets). Discard the
165 handle to avoid handle leak. */
166 VALGRIND_DISCARD (VALGRIND_MAKE_NOACCESS ((char *) x
+ size
,
168 VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x
, size
));
172 r
= ggc_alloc_stat (size PASS_MEM_STAT
);
174 /* Since ggc_get_size returns the size of the pool, not the size of the
175 individually allocated object, we'd access parts of the old object
176 that were marked invalid with the memcpy below. We lose a bit of the
177 initialization-tracking since some of it may be uninitialized. */
178 VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x
, old_size
));
180 memcpy (r
, x
, old_size
);
182 /* The old object is not supposed to be used anymore. */
188 /* Like ggc_alloc_cleared, but performs a multiplication. */
190 ggc_calloc (size_t s1
, size_t s2
)
192 return ggc_alloc_cleared (s1
* s2
);
195 /* These are for splay_tree_new_ggc. */
197 ggc_splay_alloc (int sz
, void *nl
)
200 return ggc_alloc (sz
);
204 ggc_splay_dont_free (void * x ATTRIBUTE_UNUSED
, void *nl
)
209 /* Print statistics that are independent of the collector in use. */
210 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
212 : ((x) < 1024*1024*10 \
214 : (x) / (1024*1024))))
215 #define LABEL(x) ((x) < 1024*10 ? ' ' : ((x) < 1024*1024*10 ? 'k' : 'M'))
218 ggc_print_common_statistics (FILE *stream ATTRIBUTE_UNUSED
,
219 ggc_statistics
*stats
)
221 /* Set the pointer so that during collection we will actually gather
225 /* Then do one collection to fill in the statistics. */
228 /* At present, we don't really gather any interesting statistics. */
230 /* Don't gather statistics any more. */
234 /* Functions for saving and restoring GCable memory to disk. */
236 static htab_t saving_htab
;
241 void *note_ptr_cookie
;
242 gt_note_pointers note_ptr_fn
;
243 gt_handle_reorder reorder_fn
;
246 enum gt_types_enum type
;
249 #define POINTER_HASH(x) (hashval_t)((long)x >> 3)
251 /* Register an object in the hash table. */
254 gt_pch_note_object (void *obj
, void *note_ptr_cookie
,
255 gt_note_pointers note_ptr_fn
,
256 enum gt_types_enum type
)
258 struct ptr_data
**slot
;
260 if (obj
== NULL
|| obj
== (void *) 1)
263 slot
= (struct ptr_data
**)
264 htab_find_slot_with_hash (saving_htab
, obj
, POINTER_HASH (obj
),
268 gcc_assert ((*slot
)->note_ptr_fn
== note_ptr_fn
269 && (*slot
)->note_ptr_cookie
== note_ptr_cookie
);
273 *slot
= xcalloc (sizeof (struct ptr_data
), 1);
275 (*slot
)->note_ptr_fn
= note_ptr_fn
;
276 (*slot
)->note_ptr_cookie
= note_ptr_cookie
;
277 if (note_ptr_fn
== gt_pch_p_S
)
278 (*slot
)->size
= strlen (obj
) + 1;
280 (*slot
)->size
= ggc_get_size (obj
);
281 (*slot
)->type
= type
;
285 /* Register an object in the hash table. */
288 gt_pch_note_reorder (void *obj
, void *note_ptr_cookie
,
289 gt_handle_reorder reorder_fn
)
291 struct ptr_data
*data
;
293 if (obj
== NULL
|| obj
== (void *) 1)
296 data
= htab_find_with_hash (saving_htab
, obj
, POINTER_HASH (obj
));
297 gcc_assert (data
&& data
->note_ptr_cookie
== note_ptr_cookie
);
299 data
->reorder_fn
= reorder_fn
;
302 /* Hash and equality functions for saving_htab, callbacks for htab_create. */
305 saving_htab_hash (const void *p
)
307 return POINTER_HASH (((const struct ptr_data
*)p
)->obj
);
311 saving_htab_eq (const void *p1
, const void *p2
)
313 return ((const struct ptr_data
*)p1
)->obj
== p2
;
316 /* Handy state for the traversal functions. */
318 struct traversal_state
321 struct ggc_pch_data
*d
;
323 struct ptr_data
**ptrs
;
327 /* Callbacks for htab_traverse. */
330 call_count (void **slot
, void *state_p
)
332 struct ptr_data
*d
= (struct ptr_data
*)*slot
;
333 struct traversal_state
*state
= (struct traversal_state
*)state_p
;
335 ggc_pch_count_object (state
->d
, d
->obj
, d
->size
,
336 d
->note_ptr_fn
== gt_pch_p_S
,
343 call_alloc (void **slot
, void *state_p
)
345 struct ptr_data
*d
= (struct ptr_data
*)*slot
;
346 struct traversal_state
*state
= (struct traversal_state
*)state_p
;
348 d
->new_addr
= ggc_pch_alloc_object (state
->d
, d
->obj
, d
->size
,
349 d
->note_ptr_fn
== gt_pch_p_S
,
351 state
->ptrs
[state
->ptrs_i
++] = d
;
355 /* Callback for qsort. */
358 compare_ptr_data (const void *p1_p
, const void *p2_p
)
360 const struct ptr_data
*const p1
= *(const struct ptr_data
*const *)p1_p
;
361 const struct ptr_data
*const p2
= *(const struct ptr_data
*const *)p2_p
;
362 return (((size_t)p1
->new_addr
> (size_t)p2
->new_addr
)
363 - ((size_t)p1
->new_addr
< (size_t)p2
->new_addr
));
366 /* Callbacks for note_ptr_fn. */
369 relocate_ptrs (void *ptr_p
, void *state_p
)
371 void **ptr
= (void **)ptr_p
;
372 struct traversal_state
*state ATTRIBUTE_UNUSED
373 = (struct traversal_state
*)state_p
;
374 struct ptr_data
*result
;
376 if (*ptr
== NULL
|| *ptr
== (void *)1)
379 result
= htab_find_with_hash (saving_htab
, *ptr
, POINTER_HASH (*ptr
));
381 *ptr
= result
->new_addr
;
384 /* Write out, after relocation, the pointers in TAB. */
386 write_pch_globals (const struct ggc_root_tab
* const *tab
,
387 struct traversal_state
*state
)
389 const struct ggc_root_tab
*const *rt
;
390 const struct ggc_root_tab
*rti
;
393 for (rt
= tab
; *rt
; rt
++)
394 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
395 for (i
= 0; i
< rti
->nelt
; i
++)
397 void *ptr
= *(void **)((char *)rti
->base
+ rti
->stride
* i
);
398 struct ptr_data
*new_ptr
;
399 if (ptr
== NULL
|| ptr
== (void *)1)
401 if (fwrite (&ptr
, sizeof (void *), 1, state
->f
)
403 fatal_error ("can't write PCH file: %m");
407 new_ptr
= htab_find_with_hash (saving_htab
, ptr
,
409 if (fwrite (&new_ptr
->new_addr
, sizeof (void *), 1, state
->f
)
411 fatal_error ("can't write PCH file: %m");
416 /* Hold the information we need to mmap the file back in. */
422 void *preferred_base
;
425 /* Write out the state of the compiler to F. */
428 gt_pch_save (FILE *f
)
430 const struct ggc_root_tab
*const *rt
;
431 const struct ggc_root_tab
*rti
;
433 struct traversal_state state
;
434 char *this_object
= NULL
;
435 size_t this_object_size
= 0;
436 struct mmap_info mmi
;
437 const size_t mmap_offset_alignment
= host_hooks
.gt_pch_alloc_granularity();
439 gt_pch_save_stringpool ();
441 saving_htab
= htab_create (50000, saving_htab_hash
, saving_htab_eq
, free
);
443 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
444 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
445 for (i
= 0; i
< rti
->nelt
; i
++)
446 (*rti
->pchw
)(*(void **)((char *)rti
->base
+ rti
->stride
* i
));
448 for (rt
= gt_pch_cache_rtab
; *rt
; rt
++)
449 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
450 for (i
= 0; i
< rti
->nelt
; i
++)
451 (*rti
->pchw
)(*(void **)((char *)rti
->base
+ rti
->stride
* i
));
453 /* Prepare the objects for writing, determine addresses and such. */
455 state
.d
= init_ggc_pch();
457 htab_traverse (saving_htab
, call_count
, &state
);
459 mmi
.size
= ggc_pch_total_size (state
.d
);
461 /* Try to arrange things so that no relocation is necessary, but
462 don't try very hard. On most platforms, this will always work,
463 and on the rest it's a lot of work to do better.
464 (The extra work goes in HOST_HOOKS_GT_PCH_GET_ADDRESS and
465 HOST_HOOKS_GT_PCH_USE_ADDRESS.) */
466 mmi
.preferred_base
= host_hooks
.gt_pch_get_address (mmi
.size
, fileno (f
));
468 ggc_pch_this_base (state
.d
, mmi
.preferred_base
);
470 state
.ptrs
= XNEWVEC (struct ptr_data
*, state
.count
);
472 htab_traverse (saving_htab
, call_alloc
, &state
);
473 qsort (state
.ptrs
, state
.count
, sizeof (*state
.ptrs
), compare_ptr_data
);
475 /* Write out all the scalar variables. */
476 for (rt
= gt_pch_scalar_rtab
; *rt
; rt
++)
477 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
478 if (fwrite (rti
->base
, rti
->stride
, 1, f
) != 1)
479 fatal_error ("can't write PCH file: %m");
481 /* Write out all the global pointers, after translation. */
482 write_pch_globals (gt_ggc_rtab
, &state
);
483 write_pch_globals (gt_pch_cache_rtab
, &state
);
485 /* Pad the PCH file so that the mmapped area starts on an allocation
486 granularity (usually page) boundary. */
489 o
= ftell (state
.f
) + sizeof (mmi
);
491 fatal_error ("can't get position in PCH file: %m");
492 mmi
.offset
= mmap_offset_alignment
- o
% mmap_offset_alignment
;
493 if (mmi
.offset
== mmap_offset_alignment
)
497 if (fwrite (&mmi
, sizeof (mmi
), 1, state
.f
) != 1)
498 fatal_error ("can't write PCH file: %m");
500 && fseek (state
.f
, mmi
.offset
, SEEK_SET
) != 0)
501 fatal_error ("can't write padding to PCH file: %m");
503 ggc_pch_prepare_write (state
.d
, state
.f
);
505 /* Actually write out the objects. */
506 for (i
= 0; i
< state
.count
; i
++)
508 if (this_object_size
< state
.ptrs
[i
]->size
)
510 this_object_size
= state
.ptrs
[i
]->size
;
511 this_object
= xrealloc (this_object
, this_object_size
);
513 memcpy (this_object
, state
.ptrs
[i
]->obj
, state
.ptrs
[i
]->size
);
514 if (state
.ptrs
[i
]->reorder_fn
!= NULL
)
515 state
.ptrs
[i
]->reorder_fn (state
.ptrs
[i
]->obj
,
516 state
.ptrs
[i
]->note_ptr_cookie
,
517 relocate_ptrs
, &state
);
518 state
.ptrs
[i
]->note_ptr_fn (state
.ptrs
[i
]->obj
,
519 state
.ptrs
[i
]->note_ptr_cookie
,
520 relocate_ptrs
, &state
);
521 ggc_pch_write_object (state
.d
, state
.f
, state
.ptrs
[i
]->obj
,
522 state
.ptrs
[i
]->new_addr
, state
.ptrs
[i
]->size
,
523 state
.ptrs
[i
]->note_ptr_fn
== gt_pch_p_S
);
524 if (state
.ptrs
[i
]->note_ptr_fn
!= gt_pch_p_S
)
525 memcpy (state
.ptrs
[i
]->obj
, this_object
, state
.ptrs
[i
]->size
);
527 ggc_pch_finish (state
.d
, state
.f
);
528 gt_pch_fixup_stringpool ();
531 htab_delete (saving_htab
);
534 /* Read the state of the compiler back in from F. */
537 gt_pch_restore (FILE *f
)
539 const struct ggc_root_tab
*const *rt
;
540 const struct ggc_root_tab
*rti
;
542 struct mmap_info mmi
;
545 /* Delete any deletable objects. This makes ggc_pch_read much
546 faster, as it can be sure that no GCable objects remain other
547 than the ones just read in. */
548 for (rt
= gt_ggc_deletable_rtab
; *rt
; rt
++)
549 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
550 memset (rti
->base
, 0, rti
->stride
);
552 /* Read in all the scalar variables. */
553 for (rt
= gt_pch_scalar_rtab
; *rt
; rt
++)
554 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
555 if (fread (rti
->base
, rti
->stride
, 1, f
) != 1)
556 fatal_error ("can't read PCH file: %m");
558 /* Read in all the global pointers, in 6 easy loops. */
559 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
560 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
561 for (i
= 0; i
< rti
->nelt
; i
++)
562 if (fread ((char *)rti
->base
+ rti
->stride
* i
,
563 sizeof (void *), 1, f
) != 1)
564 fatal_error ("can't read PCH file: %m");
566 for (rt
= gt_pch_cache_rtab
; *rt
; rt
++)
567 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
568 for (i
= 0; i
< rti
->nelt
; i
++)
569 if (fread ((char *)rti
->base
+ rti
->stride
* i
,
570 sizeof (void *), 1, f
) != 1)
571 fatal_error ("can't read PCH file: %m");
573 if (fread (&mmi
, sizeof (mmi
), 1, f
) != 1)
574 fatal_error ("can't read PCH file: %m");
576 result
= host_hooks
.gt_pch_use_address (mmi
.preferred_base
, mmi
.size
,
577 fileno (f
), mmi
.offset
);
579 fatal_error ("had to relocate PCH");
582 if (fseek (f
, mmi
.offset
, SEEK_SET
) != 0
583 || fread (mmi
.preferred_base
, mmi
.size
, 1, f
) != 1)
584 fatal_error ("can't read PCH file: %m");
586 else if (fseek (f
, mmi
.offset
+ mmi
.size
, SEEK_SET
) != 0)
587 fatal_error ("can't read PCH file: %m");
589 ggc_pch_read (f
, mmi
.preferred_base
);
591 gt_pch_restore_stringpool ();
594 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is not present.
595 Select no address whatsoever, and let gt_pch_save choose what it will with
596 malloc, presumably. */
599 default_gt_pch_get_address (size_t size ATTRIBUTE_UNUSED
,
600 int fd ATTRIBUTE_UNUSED
)
605 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is not present.
606 Allocate SIZE bytes with malloc. Return 0 if the address we got is the
607 same as base, indicating that the memory has been allocated but needs to
608 be read in from the file. Return -1 if the address differs, to relocation
609 of the PCH file would be required. */
612 default_gt_pch_use_address (void *base
, size_t size
, int fd ATTRIBUTE_UNUSED
,
613 size_t offset ATTRIBUTE_UNUSED
)
615 void *addr
= xmalloc (size
);
616 return (addr
== base
) - 1;
619 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS. Return the
620 alignment required for allocating virtual memory. Usually this is the
624 default_gt_pch_alloc_granularity (void)
626 return getpagesize();
630 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is present.
631 We temporarily allocate SIZE bytes, and let the kernel place the data
632 wherever it will. If it worked, that's our spot, if not we're likely
636 mmap_gt_pch_get_address (size_t size
, int fd
)
640 ret
= mmap (NULL
, size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
, fd
, 0);
641 if (ret
== (void *) MAP_FAILED
)
649 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is present.
650 Map SIZE bytes of FD+OFFSET at BASE. Return 1 if we succeeded at
651 mapping the data at BASE, -1 if we couldn't.
653 This version assumes that the kernel honors the START operand of mmap
654 even without MAP_FIXED if START through START+SIZE are not currently
655 mapped with something. */
658 mmap_gt_pch_use_address (void *base
, size_t size
, int fd
, size_t offset
)
662 /* We're called with size == 0 if we're not planning to load a PCH
663 file at all. This allows the hook to free any static space that
664 we might have allocated at link time. */
668 addr
= mmap (base
, size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
,
671 return addr
== base
? 1 : -1;
673 #endif /* HAVE_MMAP_FILE */
675 /* Modify the bound based on rlimits. */
677 ggc_rlimit_bound (double limit
)
679 #if defined(HAVE_GETRLIMIT)
681 # if defined (RLIMIT_AS)
682 /* RLIMIT_AS is what POSIX says is the limit on mmap. Presumably
683 any OS which has RLIMIT_AS also has a working mmap that GCC will use. */
684 if (getrlimit (RLIMIT_AS
, &rlim
) == 0
685 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
686 && rlim
.rlim_cur
< limit
)
687 limit
= rlim
.rlim_cur
;
688 # elif defined (RLIMIT_DATA)
689 /* ... but some older OSs bound mmap based on RLIMIT_DATA, or we
690 might be on an OS that has a broken mmap. (Others don't bound
691 mmap at all, apparently.) */
692 if (getrlimit (RLIMIT_DATA
, &rlim
) == 0
693 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
694 && rlim
.rlim_cur
< limit
695 /* Darwin has this horribly bogus default setting of
696 RLIMIT_DATA, to 6144Kb. No-one notices because RLIMIT_DATA
697 appears to be ignored. Ignore such silliness. If a limit
698 this small was actually effective for mmap, GCC wouldn't even
700 && rlim
.rlim_cur
>= 8 * 1024 * 1024)
701 limit
= rlim
.rlim_cur
;
702 # endif /* RLIMIT_AS or RLIMIT_DATA */
703 #endif /* HAVE_GETRLIMIT */
708 /* Heuristic to set a default for GGC_MIN_EXPAND. */
710 ggc_min_expand_heuristic (void)
712 double min_expand
= physmem_total();
714 /* Adjust for rlimits. */
715 min_expand
= ggc_rlimit_bound (min_expand
);
717 /* The heuristic is a percentage equal to 30% + 70%*(RAM/1GB), yielding
718 a lower bound of 30% and an upper bound of 100% (when RAM >= 1GB). */
719 min_expand
/= 1024*1024*1024;
721 min_expand
= MIN (min_expand
, 70);
727 /* Heuristic to set a default for GGC_MIN_HEAPSIZE. */
729 ggc_min_heapsize_heuristic (void)
731 double phys_kbytes
= physmem_total();
732 double limit_kbytes
= ggc_rlimit_bound (phys_kbytes
* 2);
734 phys_kbytes
/= 1024; /* Convert to Kbytes. */
735 limit_kbytes
/= 1024;
737 /* The heuristic is RAM/8, with a lower bound of 4M and an upper
738 bound of 128M (when RAM >= 1GB). */
741 #if defined(HAVE_GETRLIMIT) && defined (RLIMIT_RSS)
742 /* Try not to overrun the RSS limit while doing garbage collection.
743 The RSS limit is only advisory, so no margin is subtracted. */
746 if (getrlimit (RLIMIT_RSS
, &rlim
) == 0
747 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
)
748 phys_kbytes
= MIN (phys_kbytes
, rlim
.rlim_cur
/ 1024);
752 /* Don't blindly run over our data limit; do GC at least when the
753 *next* GC would be within 20Mb of the limit or within a quarter of
754 the limit, whichever is larger. If GCC does hit the data limit,
755 compilation will fail, so this tries to be conservative. */
756 limit_kbytes
= MAX (0, limit_kbytes
- MAX (limit_kbytes
/ 4, 20 * 1024));
757 limit_kbytes
= (limit_kbytes
* 100) / (110 + ggc_min_expand_heuristic());
758 phys_kbytes
= MIN (phys_kbytes
, limit_kbytes
);
760 phys_kbytes
= MAX (phys_kbytes
, 4 * 1024);
761 phys_kbytes
= MIN (phys_kbytes
, 128 * 1024);
767 init_ggc_heuristics (void)
769 #if !defined ENABLE_GC_CHECKING && !defined ENABLE_GC_ALWAYS_COLLECT
770 set_param_value ("ggc-min-expand", ggc_min_expand_heuristic());
771 set_param_value ("ggc-min-heapsize", ggc_min_heapsize_heuristic());
775 #ifdef GATHER_STATISTICS
777 /* Datastructure used to store per-call-site statistics. */
778 struct loc_descriptor
782 const char *function
;
790 /* Hashtable used for statistics. */
791 static htab_t loc_hash
;
793 /* Hash table helpers functions. */
795 hash_descriptor (const void *p
)
797 const struct loc_descriptor
*const d
= p
;
799 return htab_hash_pointer (d
->function
) | d
->line
;
803 eq_descriptor (const void *p1
, const void *p2
)
805 const struct loc_descriptor
*const d
= p1
;
806 const struct loc_descriptor
*const d2
= p2
;
808 return (d
->file
== d2
->file
&& d
->line
== d2
->line
809 && d
->function
== d2
->function
);
812 /* Hashtable converting address of allocated field to loc descriptor. */
813 static htab_t ptr_hash
;
814 struct ptr_hash_entry
817 struct loc_descriptor
*loc
;
821 /* Hash table helpers functions. */
823 hash_ptr (const void *p
)
825 const struct ptr_hash_entry
*const d
= p
;
827 return htab_hash_pointer (d
->ptr
);
831 eq_ptr (const void *p1
, const void *p2
)
833 const struct ptr_hash_entry
*const p
= p1
;
835 return (p
->ptr
== p2
);
838 /* Return descriptor for given call site, create new one if needed. */
839 static struct loc_descriptor
*
840 loc_descriptor (const char *name
, int line
, const char *function
)
842 struct loc_descriptor loc
;
843 struct loc_descriptor
**slot
;
847 loc
.function
= function
;
849 loc_hash
= htab_create (10, hash_descriptor
, eq_descriptor
, NULL
);
851 slot
= (struct loc_descriptor
**) htab_find_slot (loc_hash
, &loc
, 1);
854 *slot
= xcalloc (sizeof (**slot
), 1);
855 (*slot
)->file
= name
;
856 (*slot
)->line
= line
;
857 (*slot
)->function
= function
;
861 /* Record ALLOCATED and OVERHEAD bytes to descriptor NAME:LINE (FUNCTION). */
863 ggc_record_overhead (size_t allocated
, size_t overhead
, void *ptr
,
864 const char *name
, int line
, const char *function
)
866 struct loc_descriptor
*loc
= loc_descriptor (name
, line
, function
);
867 struct ptr_hash_entry
*p
= XNEW (struct ptr_hash_entry
);
872 p
->size
= allocated
+ overhead
;
874 ptr_hash
= htab_create (10, hash_ptr
, eq_ptr
, NULL
);
875 slot
= htab_find_slot_with_hash (ptr_hash
, ptr
, htab_hash_pointer (ptr
), INSERT
);
880 loc
->allocated
+=allocated
;
881 loc
->overhead
+=overhead
;
884 /* Helper function for prune_overhead_list. See if SLOT is still marked and
885 remove it from hashtable if it is not. */
887 ggc_prune_ptr (void **slot
, void *b ATTRIBUTE_UNUSED
)
889 struct ptr_hash_entry
*p
= *slot
;
890 if (!ggc_marked_p (p
->ptr
))
892 p
->loc
->collected
+= p
->size
;
893 htab_clear_slot (ptr_hash
, slot
);
899 /* After live values has been marked, walk all recorded pointers and see if
900 they are still live. */
902 ggc_prune_overhead_list (void)
904 htab_traverse (ptr_hash
, ggc_prune_ptr
, NULL
);
907 /* Notice that the pointer has been freed. */
909 ggc_free_overhead (void *ptr
)
911 PTR
*slot
= htab_find_slot_with_hash (ptr_hash
, ptr
, htab_hash_pointer (ptr
),
913 struct ptr_hash_entry
*p
= *slot
;
914 p
->loc
->freed
+= p
->size
;
915 htab_clear_slot (ptr_hash
, slot
);
919 /* Helper for qsort; sort descriptors by amount of memory consumed. */
921 final_cmp_statistic (const void *loc1
, const void *loc2
)
923 struct loc_descriptor
*l1
= *(struct loc_descriptor
**) loc1
;
924 struct loc_descriptor
*l2
= *(struct loc_descriptor
**) loc2
;
926 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
) -
927 (l2
->allocated
+ l2
->overhead
- l2
->freed
));
928 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
931 /* Helper for qsort; sort descriptors by amount of memory consumed. */
933 cmp_statistic (const void *loc1
, const void *loc2
)
935 struct loc_descriptor
*l1
= *(struct loc_descriptor
**) loc1
;
936 struct loc_descriptor
*l2
= *(struct loc_descriptor
**) loc2
;
939 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
- l1
->collected
) -
940 (l2
->allocated
+ l2
->overhead
- l2
->freed
- l2
->collected
));
942 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
943 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
) -
944 (l2
->allocated
+ l2
->overhead
- l2
->freed
));
945 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
948 /* Collect array of the descriptors from hashtable. */
949 struct loc_descriptor
**loc_array
;
951 add_statistics (void **slot
, void *b
)
954 loc_array
[*n
] = (struct loc_descriptor
*) *slot
;
959 /* Dump per-site memory statistics. */
962 dump_ggc_loc_statistics (bool final ATTRIBUTE_UNUSED
)
964 #ifdef GATHER_STATISTICS
967 size_t collected
= 0, freed
= 0, allocated
= 0, overhead
= 0, times
= 0;
970 ggc_force_collect
= true;
973 loc_array
= xcalloc (sizeof (*loc_array
), loc_hash
->n_elements
);
974 fprintf (stderr
, "-------------------------------------------------------\n");
975 fprintf (stderr
, "\n%-48s %10s %10s %10s %10s %10s\n",
976 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
977 fprintf (stderr
, "-------------------------------------------------------\n");
978 htab_traverse (loc_hash
, add_statistics
, &nentries
);
979 qsort (loc_array
, nentries
, sizeof (*loc_array
),
980 final
? final_cmp_statistic
: cmp_statistic
);
981 for (i
= 0; i
< nentries
; i
++)
983 struct loc_descriptor
*d
= loc_array
[i
];
984 allocated
+= d
->allocated
;
987 collected
+= d
->collected
;
988 overhead
+= d
->overhead
;
990 for (i
= 0; i
< nentries
; i
++)
992 struct loc_descriptor
*d
= loc_array
[i
];
995 const char *s1
= d
->file
;
997 while ((s2
= strstr (s1
, "gcc/")))
999 sprintf (s
, "%s:%i (%s)", s1
, d
->line
, d
->function
);
1001 fprintf (stderr
, "%-48s %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li\n", s
,
1003 (d
->collected
) * 100.0 / collected
,
1005 (d
->freed
) * 100.0 / freed
,
1006 (long)(d
->allocated
+ d
->overhead
- d
->freed
- d
->collected
),
1007 (d
->allocated
+ d
->overhead
- d
->freed
- d
->collected
) * 100.0
1008 / (allocated
+ overhead
- freed
- collected
),
1010 d
->overhead
* 100.0 / overhead
,
1014 fprintf (stderr
, "%-48s %10ld %10ld %10ld %10ld %10ld\n",
1015 "Total", (long)collected
, (long)freed
,
1016 (long)(allocated
+ overhead
- freed
- collected
), (long)overhead
,
1018 fprintf (stderr
, "%-48s %10s %10s %10s %10s %10s\n",
1019 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
1020 fprintf (stderr
, "-------------------------------------------------------\n");