1 /* Simple garbage collection for the GNU compiler.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010 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"
29 #include "ggc-internal.h"
30 #include "diagnostic-core.h"
32 #include "hosthooks.h"
33 #include "hosthooks-def.h"
38 /* When set, ggc_collect will do collection. */
39 bool ggc_force_collect
;
41 /* When true, protect the contents of the identifier hash table. */
42 bool ggc_protect_identifiers
= true;
44 /* Statistics about the allocation. */
45 static ggc_statistics
*ggc_stats
;
47 struct traversal_state
;
49 static int ggc_htab_delete (void **, void *);
50 static hashval_t
saving_htab_hash (const void *);
51 static int saving_htab_eq (const void *, const void *);
52 static int call_count (void **, void *);
53 static int call_alloc (void **, void *);
54 static int compare_ptr_data (const void *, const void *);
55 static void relocate_ptrs (void *, void *);
56 static void write_pch_globals (const struct ggc_root_tab
* const *tab
,
57 struct traversal_state
*state
);
59 /* Maintain global roots that are preserved during GC. */
61 /* Process a slot of an htab by deleting it if it has not been marked. */
64 ggc_htab_delete (void **slot
, void *info
)
66 const struct ggc_cache_tab
*r
= (const struct ggc_cache_tab
*) info
;
68 if (! (*r
->marked_p
) (*slot
))
69 htab_clear_slot (*r
->base
, slot
);
77 /* This extra vector of dynamically registered root_tab-s is used by
78 ggc_mark_roots and gives the ability to dynamically add new GGC root
79 tables, for instance from some plugins; this vector is on the heap
80 since it is used by GGC internally. */
81 typedef const struct ggc_root_tab
*const_ggc_root_tab_t
;
82 static vec
<const_ggc_root_tab_t
> extra_root_vec
;
84 /* Dynamically register a new GGC root table RT. This is useful for
88 ggc_register_root_tab (const struct ggc_root_tab
* rt
)
91 extra_root_vec
.safe_push (rt
);
94 /* This extra vector of dynamically registered cache_tab-s is used by
95 ggc_mark_roots and gives the ability to dynamically add new GGC cache
96 tables, for instance from some plugins; this vector is on the heap
97 since it is used by GGC internally. */
98 typedef const struct ggc_cache_tab
*const_ggc_cache_tab_t
;
99 static vec
<const_ggc_cache_tab_t
> extra_cache_vec
;
101 /* Dynamically register a new GGC cache table CT. This is useful for
105 ggc_register_cache_tab (const struct ggc_cache_tab
* ct
)
108 extra_cache_vec
.safe_push (ct
);
111 /* Scan a hash table that has objects which are to be deleted if they are not
115 ggc_scan_cache_tab (const_ggc_cache_tab_t ctp
)
117 const struct ggc_cache_tab
*cti
;
119 for (cti
= ctp
; cti
->base
!= NULL
; cti
++)
122 ggc_set_mark (*cti
->base
);
123 htab_traverse_noresize (*cti
->base
, ggc_htab_delete
,
124 CONST_CAST (void *, (const void *)cti
));
125 ggc_set_mark ((*cti
->base
)->entries
);
129 /* Mark all the roots in the table RT. */
132 ggc_mark_root_tab (const_ggc_root_tab_t rt
)
136 for ( ; rt
->base
!= NULL
; rt
++)
137 for (i
= 0; i
< rt
->nelt
; i
++)
138 (*rt
->cb
) (*(void **) ((char *)rt
->base
+ rt
->stride
* i
));
141 /* Iterate through all registered roots and mark each element. */
144 ggc_mark_roots (void)
146 const struct ggc_root_tab
*const *rt
;
147 const_ggc_root_tab_t rtp
, rti
;
148 const struct ggc_cache_tab
*const *ct
;
149 const_ggc_cache_tab_t ctp
;
152 for (rt
= gt_ggc_deletable_rtab
; *rt
; rt
++)
153 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
154 memset (rti
->base
, 0, rti
->stride
);
156 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
157 ggc_mark_root_tab (*rt
);
159 FOR_EACH_VEC_ELT (extra_root_vec
, i
, rtp
)
160 ggc_mark_root_tab (rtp
);
162 if (ggc_protect_identifiers
)
163 ggc_mark_stringpool ();
165 /* Now scan all hash tables that have objects which are to be deleted if
166 they are not already marked. */
167 for (ct
= gt_ggc_cache_rtab
; *ct
; ct
++)
168 ggc_scan_cache_tab (*ct
);
170 FOR_EACH_VEC_ELT (extra_cache_vec
, i
, ctp
)
171 ggc_scan_cache_tab (ctp
);
173 if (! ggc_protect_identifiers
)
174 ggc_purge_stringpool ();
176 /* Some plugins may call ggc_set_mark from here. */
177 invoke_plugin_callbacks (PLUGIN_GGC_MARKING
, NULL
);
180 /* Allocate a block of memory, then clear it. */
182 ggc_internal_cleared_alloc_stat (size_t size MEM_STAT_DECL
)
184 void *buf
= ggc_internal_alloc_stat (size PASS_MEM_STAT
);
185 memset (buf
, 0, size
);
189 /* Resize a block of memory, possibly re-allocating it. */
191 ggc_realloc_stat (void *x
, size_t size MEM_STAT_DECL
)
197 return ggc_internal_alloc_stat (size PASS_MEM_STAT
);
199 old_size
= ggc_get_size (x
);
201 if (size
<= old_size
)
203 /* Mark the unwanted memory as unaccessible. We also need to make
204 the "new" size accessible, since ggc_get_size returns the size of
205 the pool, not the size of the individually allocated object, the
206 size which was previously made accessible. Unfortunately, we
207 don't know that previously allocated size. Without that
208 knowledge we have to lose some initialization-tracking for the
209 old parts of the object. An alternative is to mark the whole
210 old_size as reachable, but that would lose tracking of writes
211 after the end of the object (by small offsets). Discard the
212 handle to avoid handle leak. */
213 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_NOACCESS ((char *) x
+ size
,
215 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (x
, size
));
219 r
= ggc_internal_alloc_stat (size PASS_MEM_STAT
);
221 /* Since ggc_get_size returns the size of the pool, not the size of the
222 individually allocated object, we'd access parts of the old object
223 that were marked invalid with the memcpy below. We lose a bit of the
224 initialization-tracking since some of it may be uninitialized. */
225 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_DEFINED (x
, old_size
));
227 memcpy (r
, x
, old_size
);
229 /* The old object is not supposed to be used anymore. */
236 ggc_cleared_alloc_htab_ignore_args (size_t c ATTRIBUTE_UNUSED
,
237 size_t n ATTRIBUTE_UNUSED
)
239 gcc_assert (c
* n
== sizeof (struct htab
));
240 return ggc_alloc_cleared_htab ();
243 /* TODO: once we actually use type information in GGC, create a new tag
244 gt_gcc_ptr_array and use it for pointer arrays. */
246 ggc_cleared_alloc_ptr_array_two_args (size_t c
, size_t n
)
248 gcc_assert (sizeof (PTR
*) == n
);
249 return ggc_internal_cleared_vec_alloc (sizeof (PTR
*), c
);
252 /* These are for splay_tree_new_ggc. */
254 ggc_splay_alloc (enum gt_types_enum obj_type ATTRIBUTE_UNUSED
, int sz
,
258 return ggc_internal_alloc (sz
);
262 ggc_splay_dont_free (void * x ATTRIBUTE_UNUSED
, void *nl
)
267 /* Print statistics that are independent of the collector in use. */
268 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
270 : ((x) < 1024*1024*10 \
272 : (x) / (1024*1024))))
273 #define LABEL(x) ((x) < 1024*10 ? ' ' : ((x) < 1024*1024*10 ? 'k' : 'M'))
276 ggc_print_common_statistics (FILE *stream ATTRIBUTE_UNUSED
,
277 ggc_statistics
*stats
)
279 /* Set the pointer so that during collection we will actually gather
283 /* Then do one collection to fill in the statistics. */
286 /* At present, we don't really gather any interesting statistics. */
288 /* Don't gather statistics any more. */
292 /* Functions for saving and restoring GCable memory to disk. */
294 static htab_t saving_htab
;
299 void *note_ptr_cookie
;
300 gt_note_pointers note_ptr_fn
;
301 gt_handle_reorder reorder_fn
;
304 enum gt_types_enum type
;
307 #define POINTER_HASH(x) (hashval_t)((intptr_t)x >> 3)
309 /* Register an object in the hash table. */
312 gt_pch_note_object (void *obj
, void *note_ptr_cookie
,
313 gt_note_pointers note_ptr_fn
,
314 enum gt_types_enum type
)
316 struct ptr_data
**slot
;
318 if (obj
== NULL
|| obj
== (void *) 1)
321 slot
= (struct ptr_data
**)
322 htab_find_slot_with_hash (saving_htab
, obj
, POINTER_HASH (obj
),
326 gcc_assert ((*slot
)->note_ptr_fn
== note_ptr_fn
327 && (*slot
)->note_ptr_cookie
== note_ptr_cookie
);
331 *slot
= XCNEW (struct ptr_data
);
333 (*slot
)->note_ptr_fn
= note_ptr_fn
;
334 (*slot
)->note_ptr_cookie
= note_ptr_cookie
;
335 if (note_ptr_fn
== gt_pch_p_S
)
336 (*slot
)->size
= strlen ((const char *)obj
) + 1;
338 (*slot
)->size
= ggc_get_size (obj
);
339 (*slot
)->type
= type
;
343 /* Register an object in the hash table. */
346 gt_pch_note_reorder (void *obj
, void *note_ptr_cookie
,
347 gt_handle_reorder reorder_fn
)
349 struct ptr_data
*data
;
351 if (obj
== NULL
|| obj
== (void *) 1)
354 data
= (struct ptr_data
*)
355 htab_find_with_hash (saving_htab
, obj
, POINTER_HASH (obj
));
356 gcc_assert (data
&& data
->note_ptr_cookie
== note_ptr_cookie
);
358 data
->reorder_fn
= reorder_fn
;
361 /* Hash and equality functions for saving_htab, callbacks for htab_create. */
364 saving_htab_hash (const void *p
)
366 return POINTER_HASH (((const struct ptr_data
*)p
)->obj
);
370 saving_htab_eq (const void *p1
, const void *p2
)
372 return ((const struct ptr_data
*)p1
)->obj
== p2
;
375 /* Handy state for the traversal functions. */
377 struct traversal_state
380 struct ggc_pch_data
*d
;
382 struct ptr_data
**ptrs
;
386 /* Callbacks for htab_traverse. */
389 call_count (void **slot
, void *state_p
)
391 struct ptr_data
*d
= (struct ptr_data
*)*slot
;
392 struct traversal_state
*state
= (struct traversal_state
*)state_p
;
394 ggc_pch_count_object (state
->d
, d
->obj
, d
->size
,
395 d
->note_ptr_fn
== gt_pch_p_S
,
402 call_alloc (void **slot
, void *state_p
)
404 struct ptr_data
*d
= (struct ptr_data
*)*slot
;
405 struct traversal_state
*state
= (struct traversal_state
*)state_p
;
407 d
->new_addr
= ggc_pch_alloc_object (state
->d
, d
->obj
, d
->size
,
408 d
->note_ptr_fn
== gt_pch_p_S
,
410 state
->ptrs
[state
->ptrs_i
++] = d
;
414 /* Callback for qsort. */
417 compare_ptr_data (const void *p1_p
, const void *p2_p
)
419 const struct ptr_data
*const p1
= *(const struct ptr_data
*const *)p1_p
;
420 const struct ptr_data
*const p2
= *(const struct ptr_data
*const *)p2_p
;
421 return (((size_t)p1
->new_addr
> (size_t)p2
->new_addr
)
422 - ((size_t)p1
->new_addr
< (size_t)p2
->new_addr
));
425 /* Callbacks for note_ptr_fn. */
428 relocate_ptrs (void *ptr_p
, void *state_p
)
430 void **ptr
= (void **)ptr_p
;
431 struct traversal_state
*state ATTRIBUTE_UNUSED
432 = (struct traversal_state
*)state_p
;
433 struct ptr_data
*result
;
435 if (*ptr
== NULL
|| *ptr
== (void *)1)
438 result
= (struct ptr_data
*)
439 htab_find_with_hash (saving_htab
, *ptr
, POINTER_HASH (*ptr
));
441 *ptr
= result
->new_addr
;
444 /* Write out, after relocation, the pointers in TAB. */
446 write_pch_globals (const struct ggc_root_tab
* const *tab
,
447 struct traversal_state
*state
)
449 const struct ggc_root_tab
*const *rt
;
450 const struct ggc_root_tab
*rti
;
453 for (rt
= tab
; *rt
; rt
++)
454 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
455 for (i
= 0; i
< rti
->nelt
; i
++)
457 void *ptr
= *(void **)((char *)rti
->base
+ rti
->stride
* i
);
458 struct ptr_data
*new_ptr
;
459 if (ptr
== NULL
|| ptr
== (void *)1)
461 if (fwrite (&ptr
, sizeof (void *), 1, state
->f
)
463 fatal_error ("can%'t write PCH file: %m");
467 new_ptr
= (struct ptr_data
*)
468 htab_find_with_hash (saving_htab
, ptr
, POINTER_HASH (ptr
));
469 if (fwrite (&new_ptr
->new_addr
, sizeof (void *), 1, state
->f
)
471 fatal_error ("can%'t write PCH file: %m");
476 /* Hold the information we need to mmap the file back in. */
482 void *preferred_base
;
485 /* Write out the state of the compiler to F. */
488 gt_pch_save (FILE *f
)
490 const struct ggc_root_tab
*const *rt
;
491 const struct ggc_root_tab
*rti
;
493 struct traversal_state state
;
494 char *this_object
= NULL
;
495 size_t this_object_size
= 0;
496 struct mmap_info mmi
;
497 const size_t mmap_offset_alignment
= host_hooks
.gt_pch_alloc_granularity();
499 gt_pch_save_stringpool ();
501 timevar_push (TV_PCH_PTR_REALLOC
);
502 saving_htab
= htab_create (50000, saving_htab_hash
, saving_htab_eq
, free
);
504 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
505 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
506 for (i
= 0; i
< rti
->nelt
; i
++)
507 (*rti
->pchw
)(*(void **)((char *)rti
->base
+ rti
->stride
* i
));
509 for (rt
= gt_pch_cache_rtab
; *rt
; rt
++)
510 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
511 for (i
= 0; i
< rti
->nelt
; i
++)
512 (*rti
->pchw
)(*(void **)((char *)rti
->base
+ rti
->stride
* i
));
514 /* Prepare the objects for writing, determine addresses and such. */
516 state
.d
= init_ggc_pch ();
518 htab_traverse (saving_htab
, call_count
, &state
);
520 mmi
.size
= ggc_pch_total_size (state
.d
);
522 /* Try to arrange things so that no relocation is necessary, but
523 don't try very hard. On most platforms, this will always work,
524 and on the rest it's a lot of work to do better.
525 (The extra work goes in HOST_HOOKS_GT_PCH_GET_ADDRESS and
526 HOST_HOOKS_GT_PCH_USE_ADDRESS.) */
527 mmi
.preferred_base
= host_hooks
.gt_pch_get_address (mmi
.size
, fileno (f
));
529 ggc_pch_this_base (state
.d
, mmi
.preferred_base
);
531 state
.ptrs
= XNEWVEC (struct ptr_data
*, state
.count
);
534 htab_traverse (saving_htab
, call_alloc
, &state
);
535 timevar_pop (TV_PCH_PTR_REALLOC
);
537 timevar_push (TV_PCH_PTR_SORT
);
538 qsort (state
.ptrs
, state
.count
, sizeof (*state
.ptrs
), compare_ptr_data
);
539 timevar_pop (TV_PCH_PTR_SORT
);
541 /* Write out all the scalar variables. */
542 for (rt
= gt_pch_scalar_rtab
; *rt
; rt
++)
543 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
544 if (fwrite (rti
->base
, rti
->stride
, 1, f
) != 1)
545 fatal_error ("can%'t write PCH file: %m");
547 /* Write out all the global pointers, after translation. */
548 write_pch_globals (gt_ggc_rtab
, &state
);
549 write_pch_globals (gt_pch_cache_rtab
, &state
);
551 /* Pad the PCH file so that the mmapped area starts on an allocation
552 granularity (usually page) boundary. */
555 o
= ftell (state
.f
) + sizeof (mmi
);
557 fatal_error ("can%'t get position in PCH file: %m");
558 mmi
.offset
= mmap_offset_alignment
- o
% mmap_offset_alignment
;
559 if (mmi
.offset
== mmap_offset_alignment
)
563 if (fwrite (&mmi
, sizeof (mmi
), 1, state
.f
) != 1)
564 fatal_error ("can%'t write PCH file: %m");
566 && fseek (state
.f
, mmi
.offset
, SEEK_SET
) != 0)
567 fatal_error ("can%'t write padding to PCH file: %m");
569 ggc_pch_prepare_write (state
.d
, state
.f
);
571 /* Actually write out the objects. */
572 for (i
= 0; i
< state
.count
; i
++)
574 if (this_object_size
< state
.ptrs
[i
]->size
)
576 this_object_size
= state
.ptrs
[i
]->size
;
577 this_object
= XRESIZEVAR (char, this_object
, this_object_size
);
579 memcpy (this_object
, state
.ptrs
[i
]->obj
, state
.ptrs
[i
]->size
);
580 if (state
.ptrs
[i
]->reorder_fn
!= NULL
)
581 state
.ptrs
[i
]->reorder_fn (state
.ptrs
[i
]->obj
,
582 state
.ptrs
[i
]->note_ptr_cookie
,
583 relocate_ptrs
, &state
);
584 state
.ptrs
[i
]->note_ptr_fn (state
.ptrs
[i
]->obj
,
585 state
.ptrs
[i
]->note_ptr_cookie
,
586 relocate_ptrs
, &state
);
587 ggc_pch_write_object (state
.d
, state
.f
, state
.ptrs
[i
]->obj
,
588 state
.ptrs
[i
]->new_addr
, state
.ptrs
[i
]->size
,
589 state
.ptrs
[i
]->note_ptr_fn
== gt_pch_p_S
);
590 if (state
.ptrs
[i
]->note_ptr_fn
!= gt_pch_p_S
)
591 memcpy (state
.ptrs
[i
]->obj
, this_object
, state
.ptrs
[i
]->size
);
593 ggc_pch_finish (state
.d
, state
.f
);
594 gt_pch_fixup_stringpool ();
597 htab_delete (saving_htab
);
600 /* Read the state of the compiler back in from F. */
603 gt_pch_restore (FILE *f
)
605 const struct ggc_root_tab
*const *rt
;
606 const struct ggc_root_tab
*rti
;
608 struct mmap_info mmi
;
611 /* Delete any deletable objects. This makes ggc_pch_read much
612 faster, as it can be sure that no GCable objects remain other
613 than the ones just read in. */
614 for (rt
= gt_ggc_deletable_rtab
; *rt
; rt
++)
615 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
616 memset (rti
->base
, 0, rti
->stride
);
618 /* Read in all the scalar variables. */
619 for (rt
= gt_pch_scalar_rtab
; *rt
; rt
++)
620 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
621 if (fread (rti
->base
, rti
->stride
, 1, f
) != 1)
622 fatal_error ("can%'t read PCH file: %m");
624 /* Read in all the global pointers, in 6 easy loops. */
625 for (rt
= gt_ggc_rtab
; *rt
; rt
++)
626 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
627 for (i
= 0; i
< rti
->nelt
; i
++)
628 if (fread ((char *)rti
->base
+ rti
->stride
* i
,
629 sizeof (void *), 1, f
) != 1)
630 fatal_error ("can%'t read PCH file: %m");
632 for (rt
= gt_pch_cache_rtab
; *rt
; rt
++)
633 for (rti
= *rt
; rti
->base
!= NULL
; rti
++)
634 for (i
= 0; i
< rti
->nelt
; i
++)
635 if (fread ((char *)rti
->base
+ rti
->stride
* i
,
636 sizeof (void *), 1, f
) != 1)
637 fatal_error ("can%'t read PCH file: %m");
639 if (fread (&mmi
, sizeof (mmi
), 1, f
) != 1)
640 fatal_error ("can%'t read PCH file: %m");
642 result
= host_hooks
.gt_pch_use_address (mmi
.preferred_base
, mmi
.size
,
643 fileno (f
), mmi
.offset
);
645 fatal_error ("had to relocate PCH");
648 if (fseek (f
, mmi
.offset
, SEEK_SET
) != 0
649 || fread (mmi
.preferred_base
, mmi
.size
, 1, f
) != 1)
650 fatal_error ("can%'t read PCH file: %m");
652 else if (fseek (f
, mmi
.offset
+ mmi
.size
, SEEK_SET
) != 0)
653 fatal_error ("can%'t read PCH file: %m");
655 ggc_pch_read (f
, mmi
.preferred_base
);
657 gt_pch_restore_stringpool ();
660 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is not present.
661 Select no address whatsoever, and let gt_pch_save choose what it will with
662 malloc, presumably. */
665 default_gt_pch_get_address (size_t size ATTRIBUTE_UNUSED
,
666 int fd ATTRIBUTE_UNUSED
)
671 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is not present.
672 Allocate SIZE bytes with malloc. Return 0 if the address we got is the
673 same as base, indicating that the memory has been allocated but needs to
674 be read in from the file. Return -1 if the address differs, to relocation
675 of the PCH file would be required. */
678 default_gt_pch_use_address (void *base
, size_t size
, int fd ATTRIBUTE_UNUSED
,
679 size_t offset ATTRIBUTE_UNUSED
)
681 void *addr
= xmalloc (size
);
682 return (addr
== base
) - 1;
685 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS. Return the
686 alignment required for allocating virtual memory. Usually this is the
690 default_gt_pch_alloc_granularity (void)
692 return getpagesize();
696 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is present.
697 We temporarily allocate SIZE bytes, and let the kernel place the data
698 wherever it will. If it worked, that's our spot, if not we're likely
702 mmap_gt_pch_get_address (size_t size
, int fd
)
706 ret
= mmap (NULL
, size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
, fd
, 0);
707 if (ret
== (void *) MAP_FAILED
)
710 munmap ((caddr_t
) ret
, size
);
715 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is present.
716 Map SIZE bytes of FD+OFFSET at BASE. Return 1 if we succeeded at
717 mapping the data at BASE, -1 if we couldn't.
719 This version assumes that the kernel honors the START operand of mmap
720 even without MAP_FIXED if START through START+SIZE are not currently
721 mapped with something. */
724 mmap_gt_pch_use_address (void *base
, size_t size
, int fd
, size_t offset
)
728 /* We're called with size == 0 if we're not planning to load a PCH
729 file at all. This allows the hook to free any static space that
730 we might have allocated at link time. */
734 addr
= mmap ((caddr_t
) base
, size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
,
737 return addr
== base
? 1 : -1;
739 #endif /* HAVE_MMAP_FILE */
741 #if !defined ENABLE_GC_CHECKING && !defined ENABLE_GC_ALWAYS_COLLECT
743 /* Modify the bound based on rlimits. */
745 ggc_rlimit_bound (double limit
)
747 #if defined(HAVE_GETRLIMIT)
749 # if defined (RLIMIT_AS)
750 /* RLIMIT_AS is what POSIX says is the limit on mmap. Presumably
751 any OS which has RLIMIT_AS also has a working mmap that GCC will use. */
752 if (getrlimit (RLIMIT_AS
, &rlim
) == 0
753 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
754 && rlim
.rlim_cur
< limit
)
755 limit
= rlim
.rlim_cur
;
756 # elif defined (RLIMIT_DATA)
757 /* ... but some older OSs bound mmap based on RLIMIT_DATA, or we
758 might be on an OS that has a broken mmap. (Others don't bound
759 mmap at all, apparently.) */
760 if (getrlimit (RLIMIT_DATA
, &rlim
) == 0
761 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
762 && rlim
.rlim_cur
< limit
763 /* Darwin has this horribly bogus default setting of
764 RLIMIT_DATA, to 6144Kb. No-one notices because RLIMIT_DATA
765 appears to be ignored. Ignore such silliness. If a limit
766 this small was actually effective for mmap, GCC wouldn't even
768 && rlim
.rlim_cur
>= 8 * 1024 * 1024)
769 limit
= rlim
.rlim_cur
;
770 # endif /* RLIMIT_AS or RLIMIT_DATA */
771 #endif /* HAVE_GETRLIMIT */
776 /* Heuristic to set a default for GGC_MIN_EXPAND. */
778 ggc_min_expand_heuristic (void)
780 double min_expand
= physmem_total();
782 /* Adjust for rlimits. */
783 min_expand
= ggc_rlimit_bound (min_expand
);
785 /* The heuristic is a percentage equal to 30% + 70%*(RAM/1GB), yielding
786 a lower bound of 30% and an upper bound of 100% (when RAM >= 1GB). */
787 min_expand
/= 1024*1024*1024;
789 min_expand
= MIN (min_expand
, 70);
795 /* Heuristic to set a default for GGC_MIN_HEAPSIZE. */
797 ggc_min_heapsize_heuristic (void)
799 double phys_kbytes
= physmem_total();
800 double limit_kbytes
= ggc_rlimit_bound (phys_kbytes
* 2);
802 phys_kbytes
/= 1024; /* Convert to Kbytes. */
803 limit_kbytes
/= 1024;
805 /* The heuristic is RAM/8, with a lower bound of 4M and an upper
806 bound of 128M (when RAM >= 1GB). */
809 #if defined(HAVE_GETRLIMIT) && defined (RLIMIT_RSS)
810 /* Try not to overrun the RSS limit while doing garbage collection.
811 The RSS limit is only advisory, so no margin is subtracted. */
814 if (getrlimit (RLIMIT_RSS
, &rlim
) == 0
815 && rlim
.rlim_cur
!= (rlim_t
) RLIM_INFINITY
)
816 phys_kbytes
= MIN (phys_kbytes
, rlim
.rlim_cur
/ 1024);
820 /* Don't blindly run over our data limit; do GC at least when the
821 *next* GC would be within 20Mb of the limit or within a quarter of
822 the limit, whichever is larger. If GCC does hit the data limit,
823 compilation will fail, so this tries to be conservative. */
824 limit_kbytes
= MAX (0, limit_kbytes
- MAX (limit_kbytes
/ 4, 20 * 1024));
825 limit_kbytes
= (limit_kbytes
* 100) / (110 + ggc_min_expand_heuristic ());
826 phys_kbytes
= MIN (phys_kbytes
, limit_kbytes
);
828 phys_kbytes
= MAX (phys_kbytes
, 4 * 1024);
829 phys_kbytes
= MIN (phys_kbytes
, 128 * 1024);
836 init_ggc_heuristics (void)
838 #if !defined ENABLE_GC_CHECKING && !defined ENABLE_GC_ALWAYS_COLLECT
839 set_default_param_value (GGC_MIN_EXPAND
, ggc_min_expand_heuristic ());
840 set_default_param_value (GGC_MIN_HEAPSIZE
, ggc_min_heapsize_heuristic ());
844 /* Datastructure used to store per-call-site statistics. */
845 struct loc_descriptor
849 const char *function
;
857 /* Hashtable used for statistics. */
858 static htab_t loc_hash
;
860 /* Hash table helpers functions. */
862 hash_descriptor (const void *p
)
864 const struct loc_descriptor
*const d
= (const struct loc_descriptor
*) p
;
866 return htab_hash_pointer (d
->function
) | d
->line
;
870 eq_descriptor (const void *p1
, const void *p2
)
872 const struct loc_descriptor
*const d
= (const struct loc_descriptor
*) p1
;
873 const struct loc_descriptor
*const d2
= (const struct loc_descriptor
*) p2
;
875 return (d
->file
== d2
->file
&& d
->line
== d2
->line
876 && d
->function
== d2
->function
);
879 /* Hashtable converting address of allocated field to loc descriptor. */
880 static htab_t ptr_hash
;
881 struct ptr_hash_entry
884 struct loc_descriptor
*loc
;
888 /* Hash table helpers functions. */
890 hash_ptr (const void *p
)
892 const struct ptr_hash_entry
*const d
= (const struct ptr_hash_entry
*) p
;
894 return htab_hash_pointer (d
->ptr
);
898 eq_ptr (const void *p1
, const void *p2
)
900 const struct ptr_hash_entry
*const p
= (const struct ptr_hash_entry
*) p1
;
902 return (p
->ptr
== p2
);
905 /* Return descriptor for given call site, create new one if needed. */
906 static struct loc_descriptor
*
907 loc_descriptor (const char *name
, int line
, const char *function
)
909 struct loc_descriptor loc
;
910 struct loc_descriptor
**slot
;
914 loc
.function
= function
;
916 loc_hash
= htab_create (10, hash_descriptor
, eq_descriptor
, NULL
);
918 slot
= (struct loc_descriptor
**) htab_find_slot (loc_hash
, &loc
, INSERT
);
921 *slot
= XCNEW (struct loc_descriptor
);
922 (*slot
)->file
= name
;
923 (*slot
)->line
= line
;
924 (*slot
)->function
= function
;
928 /* Record ALLOCATED and OVERHEAD bytes to descriptor NAME:LINE (FUNCTION). */
930 ggc_record_overhead (size_t allocated
, size_t overhead
, void *ptr
,
931 const char *name
, int line
, const char *function
)
933 struct loc_descriptor
*loc
= loc_descriptor (name
, line
, function
);
934 struct ptr_hash_entry
*p
= XNEW (struct ptr_hash_entry
);
939 p
->size
= allocated
+ overhead
;
941 ptr_hash
= htab_create (10, hash_ptr
, eq_ptr
, NULL
);
942 slot
= htab_find_slot_with_hash (ptr_hash
, ptr
, htab_hash_pointer (ptr
), INSERT
);
947 loc
->allocated
+=allocated
;
948 loc
->overhead
+=overhead
;
951 /* Helper function for prune_overhead_list. See if SLOT is still marked and
952 remove it from hashtable if it is not. */
954 ggc_prune_ptr (void **slot
, void *b ATTRIBUTE_UNUSED
)
956 struct ptr_hash_entry
*p
= (struct ptr_hash_entry
*) *slot
;
957 if (!ggc_marked_p (p
->ptr
))
959 p
->loc
->collected
+= p
->size
;
960 htab_clear_slot (ptr_hash
, slot
);
966 /* After live values has been marked, walk all recorded pointers and see if
967 they are still live. */
969 ggc_prune_overhead_list (void)
971 htab_traverse (ptr_hash
, ggc_prune_ptr
, NULL
);
974 /* Notice that the pointer has been freed. */
976 ggc_free_overhead (void *ptr
)
978 PTR
*slot
= htab_find_slot_with_hash (ptr_hash
, ptr
, htab_hash_pointer (ptr
),
980 struct ptr_hash_entry
*p
;
981 /* The pointer might be not found if a PCH read happened between allocation
982 and ggc_free () call. FIXME: account memory properly in the presence of
986 p
= (struct ptr_hash_entry
*) *slot
;
987 p
->loc
->freed
+= p
->size
;
988 htab_clear_slot (ptr_hash
, slot
);
992 /* Helper for qsort; sort descriptors by amount of memory consumed. */
994 final_cmp_statistic (const void *loc1
, const void *loc2
)
996 const struct loc_descriptor
*const l1
=
997 *(const struct loc_descriptor
*const *) loc1
;
998 const struct loc_descriptor
*const l2
=
999 *(const struct loc_descriptor
*const *) loc2
;
1001 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
) -
1002 (l2
->allocated
+ l2
->overhead
- l2
->freed
));
1003 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
1006 /* Helper for qsort; sort descriptors by amount of memory consumed. */
1008 cmp_statistic (const void *loc1
, const void *loc2
)
1010 const struct loc_descriptor
*const l1
=
1011 *(const struct loc_descriptor
*const *) loc1
;
1012 const struct loc_descriptor
*const l2
=
1013 *(const struct loc_descriptor
*const *) loc2
;
1016 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
- l1
->collected
) -
1017 (l2
->allocated
+ l2
->overhead
- l2
->freed
- l2
->collected
));
1019 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
1020 diff
= ((long)(l1
->allocated
+ l1
->overhead
- l1
->freed
) -
1021 (l2
->allocated
+ l2
->overhead
- l2
->freed
));
1022 return diff
> 0 ? 1 : diff
< 0 ? -1 : 0;
1025 /* Collect array of the descriptors from hashtable. */
1026 static struct loc_descriptor
**loc_array
;
1028 add_statistics (void **slot
, void *b
)
1031 loc_array
[*n
] = (struct loc_descriptor
*) *slot
;
1036 /* Dump per-site memory statistics. */
1039 dump_ggc_loc_statistics (bool final
)
1043 size_t collected
= 0, freed
= 0, allocated
= 0, overhead
= 0, times
= 0;
1046 if (! GATHER_STATISTICS
)
1049 ggc_force_collect
= true;
1052 loc_array
= XCNEWVEC (struct loc_descriptor
*, loc_hash
->n_elements
);
1053 fprintf (stderr
, "-------------------------------------------------------\n");
1054 fprintf (stderr
, "\n%-48s %10s %10s %10s %10s %10s\n",
1055 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
1056 fprintf (stderr
, "-------------------------------------------------------\n");
1057 htab_traverse (loc_hash
, add_statistics
, &nentries
);
1058 qsort (loc_array
, nentries
, sizeof (*loc_array
),
1059 final
? final_cmp_statistic
: cmp_statistic
);
1060 for (i
= 0; i
< nentries
; i
++)
1062 struct loc_descriptor
*d
= loc_array
[i
];
1063 allocated
+= d
->allocated
;
1066 collected
+= d
->collected
;
1067 overhead
+= d
->overhead
;
1069 for (i
= 0; i
< nentries
; i
++)
1071 struct loc_descriptor
*d
= loc_array
[i
];
1074 const char *s1
= d
->file
;
1076 while ((s2
= strstr (s1
, "gcc/")))
1078 sprintf (s
, "%s:%i (%s)", s1
, d
->line
, d
->function
);
1080 fprintf (stderr
, "%-48s %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li\n", s
,
1082 (d
->collected
) * 100.0 / collected
,
1084 (d
->freed
) * 100.0 / freed
,
1085 (long)(d
->allocated
+ d
->overhead
- d
->freed
- d
->collected
),
1086 (d
->allocated
+ d
->overhead
- d
->freed
- d
->collected
) * 100.0
1087 / (allocated
+ overhead
- freed
- collected
),
1089 d
->overhead
* 100.0 / overhead
,
1093 fprintf (stderr
, "%-48s %10ld %10ld %10ld %10ld %10ld\n",
1094 "Total", (long)collected
, (long)freed
,
1095 (long)(allocated
+ overhead
- freed
- collected
), (long)overhead
,
1097 fprintf (stderr
, "%-48s %10s %10s %10s %10s %10s\n",
1098 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
1099 fprintf (stderr
, "-------------------------------------------------------\n");
1100 ggc_force_collect
= false;