1 /* Simple garbage collection for the GNU compiler.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
3 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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 2, or (at your option) any later
10 version.
11
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
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22 /* Generic garbage collection (GC) functions and data, not specific to
23 any particular GC implementation. */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "hashtab.h"
29 #include "ggc.h"
30 #include "toplev.h"
31 #include "params.h"
32 #include "hosthooks.h"
33 #include "hosthooks-def.h"
34
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_MMAP_FILE
40 # include <sys/mman.h>
41 # ifdef HAVE_MINCORE
42 /* This is on Solaris. */
43 # include <sys/types.h>
44 # endif
45 #endif
46
47 #ifndef MAP_FAILED
48 # define MAP_FAILED ((void *)-1)
49 #endif
50
51 #ifdef ENABLE_VALGRIND_CHECKING
52 # ifdef HAVE_VALGRIND_MEMCHECK_H
53 # include <valgrind/memcheck.h>
54 # elif defined HAVE_MEMCHECK_H
55 # include <memcheck.h>
56 # else
57 # include <valgrind.h>
58 # endif
59 #else
60 /* Avoid #ifdef:s when we can help it. */
61 #define VALGRIND_DISCARD(x)
62 #endif
63
64 /* When set, ggc_collect will do collection. */
65 bool ggc_force_collect;
66
67 /* Statistics about the allocation. */
68 static ggc_statistics *ggc_stats;
69
70 struct traversal_state;
71
72 static int ggc_htab_delete (void **, void *);
73 static hashval_t saving_htab_hash (const void *);
74 static int saving_htab_eq (const void *, const void *);
75 static int call_count (void **, void *);
76 static int call_alloc (void **, void *);
77 static int compare_ptr_data (const void *, const void *);
78 static void relocate_ptrs (void *, void *);
79 static void write_pch_globals (const struct ggc_root_tab * const *tab,
80 struct traversal_state *state);
81 static double ggc_rlimit_bound (double);
82
83 /* Maintain global roots that are preserved during GC. */
84
85 /* Process a slot of an htab by deleting it if it has not been marked. */
86
87 static int
ggc_htab_delete(void ** slot,void * info)88 ggc_htab_delete (void **slot, void *info)
89 {
90 const struct ggc_cache_tab *r = (const struct ggc_cache_tab *) info;
91
92 if (! (*r->marked_p) (*slot))
93 htab_clear_slot (*r->base, slot);
94 else
95 (*r->cb) (*slot);
96
97 return 1;
98 }
99
100 /* Iterate through all registered roots and mark each element. */
101
102 void
ggc_mark_roots(void)103 ggc_mark_roots (void)
104 {
105 const struct ggc_root_tab *const *rt;
106 const struct ggc_root_tab *rti;
107 const struct ggc_cache_tab *const *ct;
108 const struct ggc_cache_tab *cti;
109 size_t i;
110
111 for (rt = gt_ggc_deletable_rtab; *rt; rt++)
112 for (rti = *rt; rti->base != NULL; rti++)
113 memset (rti->base, 0, rti->stride);
114
115 for (rt = gt_ggc_rtab; *rt; rt++)
116 for (rti = *rt; rti->base != NULL; rti++)
117 for (i = 0; i < rti->nelt; i++)
118 (*rti->cb)(*(void **)((char *)rti->base + rti->stride * i));
119
120 ggc_mark_stringpool ();
121
122 /* Now scan all hash tables that have objects which are to be deleted if
123 they are not already marked. */
124 for (ct = gt_ggc_cache_rtab; *ct; ct++)
125 for (cti = *ct; cti->base != NULL; cti++)
126 if (*cti->base)
127 {
128 ggc_set_mark (*cti->base);
129 htab_traverse_noresize (*cti->base, ggc_htab_delete, (void *) cti);
130 ggc_set_mark ((*cti->base)->entries);
131 }
132 }
133
134 /* Allocate a block of memory, then clear it. */
135 void *
ggc_alloc_cleared_stat(size_t size MEM_STAT_DECL)136 ggc_alloc_cleared_stat (size_t size MEM_STAT_DECL)
137 {
138 void *buf = ggc_alloc_stat (size PASS_MEM_STAT);
139 memset (buf, 0, size);
140 return buf;
141 }
142
143 /* Resize a block of memory, possibly re-allocating it. */
144 void *
ggc_realloc_stat(void * x,size_t size MEM_STAT_DECL)145 ggc_realloc_stat (void *x, size_t size MEM_STAT_DECL)
146 {
147 void *r;
148 size_t old_size;
149
150 if (x == NULL)
151 return ggc_alloc_stat (size PASS_MEM_STAT);
152
153 old_size = ggc_get_size (x);
154
155 if (size <= old_size)
156 {
157 /* Mark the unwanted memory as unaccessible. We also need to make
158 the "new" size accessible, since ggc_get_size returns the size of
159 the pool, not the size of the individually allocated object, the
160 size which was previously made accessible. Unfortunately, we
161 don't know that previously allocated size. Without that
162 knowledge we have to lose some initialization-tracking for the
163 old parts of the object. An alternative is to mark the whole
164 old_size as reachable, but that would lose tracking of writes
165 after the end of the object (by small offsets). Discard the
166 handle to avoid handle leak. */
167 VALGRIND_DISCARD (VALGRIND_MAKE_NOACCESS ((char *) x + size,
168 old_size - size));
169 VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x, size));
170 return x;
171 }
172
173 r = ggc_alloc_stat (size PASS_MEM_STAT);
174
175 /* Since ggc_get_size returns the size of the pool, not the size of the
176 individually allocated object, we'd access parts of the old object
177 that were marked invalid with the memcpy below. We lose a bit of the
178 initialization-tracking since some of it may be uninitialized. */
179 VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (x, old_size));
180
181 memcpy (r, x, old_size);
182
183 /* The old object is not supposed to be used anymore. */
184 ggc_free (x);
185
186 return r;
187 }
188
189 /* Like ggc_alloc_cleared, but performs a multiplication. */
190 void *
ggc_calloc(size_t s1,size_t s2)191 ggc_calloc (size_t s1, size_t s2)
192 {
193 return ggc_alloc_cleared (s1 * s2);
194 }
195
196 /* These are for splay_tree_new_ggc. */
197 void *
ggc_splay_alloc(int sz,void * nl)198 ggc_splay_alloc (int sz, void *nl)
199 {
200 gcc_assert (!nl);
201 return ggc_alloc (sz);
202 }
203
204 void
ggc_splay_dont_free(void * x ATTRIBUTE_UNUSED,void * nl)205 ggc_splay_dont_free (void * x ATTRIBUTE_UNUSED, void *nl)
206 {
207 gcc_assert (!nl);
208 }
209
210 /* Print statistics that are independent of the collector in use. */
211 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
212 ? (x) \
213 : ((x) < 1024*1024*10 \
214 ? (x) / 1024 \
215 : (x) / (1024*1024))))
216 #define LABEL(x) ((x) < 1024*10 ? ' ' : ((x) < 1024*1024*10 ? 'k' : 'M'))
217
218 void
ggc_print_common_statistics(FILE * stream ATTRIBUTE_UNUSED,ggc_statistics * stats)219 ggc_print_common_statistics (FILE *stream ATTRIBUTE_UNUSED,
220 ggc_statistics *stats)
221 {
222 /* Set the pointer so that during collection we will actually gather
223 the statistics. */
224 ggc_stats = stats;
225
226 /* Then do one collection to fill in the statistics. */
227 ggc_collect ();
228
229 /* At present, we don't really gather any interesting statistics. */
230
231 /* Don't gather statistics any more. */
232 ggc_stats = NULL;
233 }
234
235 /* Functions for saving and restoring GCable memory to disk. */
236
237 static htab_t saving_htab;
238
239 struct ptr_data
240 {
241 void *obj;
242 void *note_ptr_cookie;
243 gt_note_pointers note_ptr_fn;
244 gt_handle_reorder reorder_fn;
245 size_t size;
246 void *new_addr;
247 enum gt_types_enum type;
248 };
249
250 #define POINTER_HASH(x) (hashval_t)((long)x >> 3)
251
252 /* Register an object in the hash table. */
253
254 int
gt_pch_note_object(void * obj,void * note_ptr_cookie,gt_note_pointers note_ptr_fn,enum gt_types_enum type)255 gt_pch_note_object (void *obj, void *note_ptr_cookie,
256 gt_note_pointers note_ptr_fn,
257 enum gt_types_enum type)
258 {
259 struct ptr_data **slot;
260
261 if (obj == NULL || obj == (void *) 1)
262 return 0;
263
264 slot = (struct ptr_data **)
265 htab_find_slot_with_hash (saving_htab, obj, POINTER_HASH (obj),
266 INSERT);
267 if (*slot != NULL)
268 {
269 gcc_assert ((*slot)->note_ptr_fn == note_ptr_fn
270 && (*slot)->note_ptr_cookie == note_ptr_cookie);
271 return 0;
272 }
273
274 *slot = xcalloc (sizeof (struct ptr_data), 1);
275 (*slot)->obj = obj;
276 (*slot)->note_ptr_fn = note_ptr_fn;
277 (*slot)->note_ptr_cookie = note_ptr_cookie;
278 if (note_ptr_fn == gt_pch_p_S)
279 (*slot)->size = strlen (obj) + 1;
280 else
281 (*slot)->size = ggc_get_size (obj);
282 (*slot)->type = type;
283 return 1;
284 }
285
286 /* Register an object in the hash table. */
287
288 void
gt_pch_note_reorder(void * obj,void * note_ptr_cookie,gt_handle_reorder reorder_fn)289 gt_pch_note_reorder (void *obj, void *note_ptr_cookie,
290 gt_handle_reorder reorder_fn)
291 {
292 struct ptr_data *data;
293
294 if (obj == NULL || obj == (void *) 1)
295 return;
296
297 data = htab_find_with_hash (saving_htab, obj, POINTER_HASH (obj));
298 gcc_assert (data && data->note_ptr_cookie == note_ptr_cookie);
299
300 data->reorder_fn = reorder_fn;
301 }
302
303 /* Hash and equality functions for saving_htab, callbacks for htab_create. */
304
305 static hashval_t
saving_htab_hash(const void * p)306 saving_htab_hash (const void *p)
307 {
308 return POINTER_HASH (((struct ptr_data *)p)->obj);
309 }
310
311 static int
saving_htab_eq(const void * p1,const void * p2)312 saving_htab_eq (const void *p1, const void *p2)
313 {
314 return ((struct ptr_data *)p1)->obj == p2;
315 }
316
317 /* Handy state for the traversal functions. */
318
319 struct traversal_state
320 {
321 FILE *f;
322 struct ggc_pch_data *d;
323 size_t count;
324 struct ptr_data **ptrs;
325 size_t ptrs_i;
326 };
327
328 /* Callbacks for htab_traverse. */
329
330 static int
call_count(void ** slot,void * state_p)331 call_count (void **slot, void *state_p)
332 {
333 struct ptr_data *d = (struct ptr_data *)*slot;
334 struct traversal_state *state = (struct traversal_state *)state_p;
335
336 ggc_pch_count_object (state->d, d->obj, d->size,
337 d->note_ptr_fn == gt_pch_p_S,
338 d->type);
339 state->count++;
340 return 1;
341 }
342
343 static int
call_alloc(void ** slot,void * state_p)344 call_alloc (void **slot, void *state_p)
345 {
346 struct ptr_data *d = (struct ptr_data *)*slot;
347 struct traversal_state *state = (struct traversal_state *)state_p;
348
349 d->new_addr = ggc_pch_alloc_object (state->d, d->obj, d->size,
350 d->note_ptr_fn == gt_pch_p_S,
351 d->type);
352 state->ptrs[state->ptrs_i++] = d;
353 return 1;
354 }
355
356 /* Callback for qsort. */
357
358 static int
compare_ptr_data(const void * p1_p,const void * p2_p)359 compare_ptr_data (const void *p1_p, const void *p2_p)
360 {
361 struct ptr_data *p1 = *(struct ptr_data *const *)p1_p;
362 struct ptr_data *p2 = *(struct ptr_data *const *)p2_p;
363 return (((size_t)p1->new_addr > (size_t)p2->new_addr)
364 - ((size_t)p1->new_addr < (size_t)p2->new_addr));
365 }
366
367 /* Callbacks for note_ptr_fn. */
368
369 static void
relocate_ptrs(void * ptr_p,void * state_p)370 relocate_ptrs (void *ptr_p, void *state_p)
371 {
372 void **ptr = (void **)ptr_p;
373 struct traversal_state *state ATTRIBUTE_UNUSED
374 = (struct traversal_state *)state_p;
375 struct ptr_data *result;
376
377 if (*ptr == NULL || *ptr == (void *)1)
378 return;
379
380 result = htab_find_with_hash (saving_htab, *ptr, POINTER_HASH (*ptr));
381 gcc_assert (result);
382 *ptr = result->new_addr;
383 }
384
385 /* Write out, after relocation, the pointers in TAB. */
386 static void
write_pch_globals(const struct ggc_root_tab * const * tab,struct traversal_state * state)387 write_pch_globals (const struct ggc_root_tab * const *tab,
388 struct traversal_state *state)
389 {
390 const struct ggc_root_tab *const *rt;
391 const struct ggc_root_tab *rti;
392 size_t i;
393
394 for (rt = tab; *rt; rt++)
395 for (rti = *rt; rti->base != NULL; rti++)
396 for (i = 0; i < rti->nelt; i++)
397 {
398 void *ptr = *(void **)((char *)rti->base + rti->stride * i);
399 struct ptr_data *new_ptr;
400 if (ptr == NULL || ptr == (void *)1)
401 {
402 if (fwrite (&ptr, sizeof (void *), 1, state->f)
403 != 1)
404 fatal_error ("can't write PCH file: %m");
405 }
406 else
407 {
408 new_ptr = htab_find_with_hash (saving_htab, ptr,
409 POINTER_HASH (ptr));
410 if (fwrite (&new_ptr->new_addr, sizeof (void *), 1, state->f)
411 != 1)
412 fatal_error ("can't write PCH file: %m");
413 }
414 }
415 }
416
417 /* Hold the information we need to mmap the file back in. */
418
419 struct mmap_info
420 {
421 size_t offset;
422 size_t size;
423 void *preferred_base;
424 };
425
426 /* Write out the state of the compiler to F. */
427
428 void
gt_pch_save(FILE * f)429 gt_pch_save (FILE *f)
430 {
431 const struct ggc_root_tab *const *rt;
432 const struct ggc_root_tab *rti;
433 size_t i;
434 struct traversal_state state;
435 char *this_object = NULL;
436 size_t this_object_size = 0;
437 struct mmap_info mmi;
438 const size_t mmap_offset_alignment = host_hooks.gt_pch_alloc_granularity();
439
440 gt_pch_save_stringpool ();
441
442 saving_htab = htab_create (50000, saving_htab_hash, saving_htab_eq, free);
443
444 for (rt = gt_ggc_rtab; *rt; rt++)
445 for (rti = *rt; rti->base != NULL; rti++)
446 for (i = 0; i < rti->nelt; i++)
447 (*rti->pchw)(*(void **)((char *)rti->base + rti->stride * i));
448
449 for (rt = gt_pch_cache_rtab; *rt; rt++)
450 for (rti = *rt; rti->base != NULL; rti++)
451 for (i = 0; i < rti->nelt; i++)
452 (*rti->pchw)(*(void **)((char *)rti->base + rti->stride * i));
453
454 /* Prepare the objects for writing, determine addresses and such. */
455 state.f = f;
456 state.d = init_ggc_pch();
457 state.count = 0;
458 htab_traverse (saving_htab, call_count, &state);
459
460 mmi.size = ggc_pch_total_size (state.d);
461
462 /* Try to arrange things so that no relocation is necessary, but
463 don't try very hard. On most platforms, this will always work,
464 and on the rest it's a lot of work to do better.
465 (The extra work goes in HOST_HOOKS_GT_PCH_GET_ADDRESS and
466 HOST_HOOKS_GT_PCH_USE_ADDRESS.) */
467 mmi.preferred_base = host_hooks.gt_pch_get_address (mmi.size, fileno (f));
468
469 ggc_pch_this_base (state.d, mmi.preferred_base);
470
471 state.ptrs = XNEWVEC (struct ptr_data *, state.count);
472 state.ptrs_i = 0;
473 htab_traverse (saving_htab, call_alloc, &state);
474 qsort (state.ptrs, state.count, sizeof (*state.ptrs), compare_ptr_data);
475
476 /* Write out all the scalar variables. */
477 for (rt = gt_pch_scalar_rtab; *rt; rt++)
478 for (rti = *rt; rti->base != NULL; rti++)
479 if (fwrite (rti->base, rti->stride, 1, f) != 1)
480 fatal_error ("can't write PCH file: %m");
481
482 /* Write out all the global pointers, after translation. */
483 write_pch_globals (gt_ggc_rtab, &state);
484 write_pch_globals (gt_pch_cache_rtab, &state);
485
486 /* Pad the PCH file so that the mmapped area starts on an allocation
487 granularity (usually page) boundary. */
488 {
489 long o;
490 o = ftell (state.f) + sizeof (mmi);
491 if (o == -1)
492 fatal_error ("can't get position in PCH file: %m");
493 mmi.offset = mmap_offset_alignment - o % mmap_offset_alignment;
494 if (mmi.offset == mmap_offset_alignment)
495 mmi.offset = 0;
496 mmi.offset += o;
497 }
498 if (fwrite (&mmi, sizeof (mmi), 1, state.f) != 1)
499 fatal_error ("can't write PCH file: %m");
500 if (mmi.offset != 0
501 && fseek (state.f, mmi.offset, SEEK_SET) != 0)
502 fatal_error ("can't write padding to PCH file: %m");
503
504 ggc_pch_prepare_write (state.d, state.f);
505
506 /* Actually write out the objects. */
507 for (i = 0; i < state.count; i++)
508 {
509 if (this_object_size < state.ptrs[i]->size)
510 {
511 this_object_size = state.ptrs[i]->size;
512 this_object = xrealloc (this_object, this_object_size);
513 }
514 memcpy (this_object, state.ptrs[i]->obj, state.ptrs[i]->size);
515 if (state.ptrs[i]->reorder_fn != NULL)
516 state.ptrs[i]->reorder_fn (state.ptrs[i]->obj,
517 state.ptrs[i]->note_ptr_cookie,
518 relocate_ptrs, &state);
519 state.ptrs[i]->note_ptr_fn (state.ptrs[i]->obj,
520 state.ptrs[i]->note_ptr_cookie,
521 relocate_ptrs, &state);
522 ggc_pch_write_object (state.d, state.f, state.ptrs[i]->obj,
523 state.ptrs[i]->new_addr, state.ptrs[i]->size,
524 state.ptrs[i]->note_ptr_fn == gt_pch_p_S);
525 if (state.ptrs[i]->note_ptr_fn != gt_pch_p_S)
526 memcpy (state.ptrs[i]->obj, this_object, state.ptrs[i]->size);
527 }
528 ggc_pch_finish (state.d, state.f);
529 gt_pch_fixup_stringpool ();
530
531 free (state.ptrs);
532 htab_delete (saving_htab);
533 }
534
535 /* Read the state of the compiler back in from F. */
536
537 void
gt_pch_restore(FILE * f)538 gt_pch_restore (FILE *f)
539 {
540 const struct ggc_root_tab *const *rt;
541 const struct ggc_root_tab *rti;
542 size_t i;
543 struct mmap_info mmi;
544 int result;
545
546 /* Delete any deletable objects. This makes ggc_pch_read much
547 faster, as it can be sure that no GCable objects remain other
548 than the ones just read in. */
549 for (rt = gt_ggc_deletable_rtab; *rt; rt++)
550 for (rti = *rt; rti->base != NULL; rti++)
551 memset (rti->base, 0, rti->stride);
552
553 /* Read in all the scalar variables. */
554 for (rt = gt_pch_scalar_rtab; *rt; rt++)
555 for (rti = *rt; rti->base != NULL; rti++)
556 if (fread (rti->base, rti->stride, 1, f) != 1)
557 fatal_error ("can't read PCH file: %m");
558
559 /* Read in all the global pointers, in 6 easy loops. */
560 for (rt = gt_ggc_rtab; *rt; rt++)
561 for (rti = *rt; rti->base != NULL; rti++)
562 for (i = 0; i < rti->nelt; i++)
563 if (fread ((char *)rti->base + rti->stride * i,
564 sizeof (void *), 1, f) != 1)
565 fatal_error ("can't read PCH file: %m");
566
567 for (rt = gt_pch_cache_rtab; *rt; rt++)
568 for (rti = *rt; rti->base != NULL; rti++)
569 for (i = 0; i < rti->nelt; i++)
570 if (fread ((char *)rti->base + rti->stride * i,
571 sizeof (void *), 1, f) != 1)
572 fatal_error ("can't read PCH file: %m");
573
574 if (fread (&mmi, sizeof (mmi), 1, f) != 1)
575 fatal_error ("can't read PCH file: %m");
576
577 result = host_hooks.gt_pch_use_address (mmi.preferred_base, mmi.size,
578 fileno (f), mmi.offset);
579 if (result < 0)
580 fatal_error ("had to relocate PCH");
581 if (result == 0)
582 {
583 if (fseek (f, mmi.offset, SEEK_SET) != 0
584 || fread (mmi.preferred_base, mmi.size, 1, f) != 1)
585 fatal_error ("can't read PCH file: %m");
586 }
587 else if (fseek (f, mmi.offset + mmi.size, SEEK_SET) != 0)
588 fatal_error ("can't read PCH file: %m");
589
590 ggc_pch_read (f, mmi.preferred_base);
591
592 gt_pch_restore_stringpool ();
593 }
594
595 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is not present.
596 Select no address whatsoever, and let gt_pch_save choose what it will with
597 malloc, presumably. */
598
599 void *
default_gt_pch_get_address(size_t size ATTRIBUTE_UNUSED,int fd ATTRIBUTE_UNUSED)600 default_gt_pch_get_address (size_t size ATTRIBUTE_UNUSED,
601 int fd ATTRIBUTE_UNUSED)
602 {
603 return NULL;
604 }
605
606 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is not present.
607 Allocate SIZE bytes with malloc. Return 0 if the address we got is the
608 same as base, indicating that the memory has been allocated but needs to
609 be read in from the file. Return -1 if the address differs, to relocation
610 of the PCH file would be required. */
611
612 int
default_gt_pch_use_address(void * base,size_t size,int fd ATTRIBUTE_UNUSED,size_t offset ATTRIBUTE_UNUSED)613 default_gt_pch_use_address (void *base, size_t size, int fd ATTRIBUTE_UNUSED,
614 size_t offset ATTRIBUTE_UNUSED)
615 {
616 void *addr = xmalloc (size);
617 return (addr == base) - 1;
618 }
619
620 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS. Return the
621 alignment required for allocating virtual memory. Usually this is the
622 same as pagesize. */
623
624 size_t
default_gt_pch_alloc_granularity(void)625 default_gt_pch_alloc_granularity (void)
626 {
627 return getpagesize();
628 }
629
630 #if HAVE_MMAP_FILE
631 /* Default version of HOST_HOOKS_GT_PCH_GET_ADDRESS when mmap is present.
632 We temporarily allocate SIZE bytes, and let the kernel place the data
633 wherever it will. If it worked, that's our spot, if not we're likely
634 to be in trouble. */
635
636 void *
mmap_gt_pch_get_address(size_t size,int fd)637 mmap_gt_pch_get_address (size_t size, int fd)
638 {
639 void *ret;
640
641 ret = mmap (NULL, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
642 if (ret == (void *) MAP_FAILED)
643 ret = NULL;
644 else
645 munmap (ret, size);
646
647 return ret;
648 }
649
650 /* Default version of HOST_HOOKS_GT_PCH_USE_ADDRESS when mmap is present.
651 Map SIZE bytes of FD+OFFSET at BASE. Return 1 if we succeeded at
652 mapping the data at BASE, -1 if we couldn't.
653
654 This version assumes that the kernel honors the START operand of mmap
655 even without MAP_FIXED if START through START+SIZE are not currently
656 mapped with something. */
657
658 int
mmap_gt_pch_use_address(void * base,size_t size,int fd,size_t offset)659 mmap_gt_pch_use_address (void *base, size_t size, int fd, size_t offset)
660 {
661 void *addr;
662
663 /* We're called with size == 0 if we're not planning to load a PCH
664 file at all. This allows the hook to free any static space that
665 we might have allocated at link time. */
666 if (size == 0)
667 return -1;
668
669 addr = mmap (base, size, PROT_READ | PROT_WRITE, MAP_PRIVATE,
670 fd, offset);
671
672 return addr == base ? 1 : -1;
673 }
674 #endif /* HAVE_MMAP_FILE */
675
676 /* Modify the bound based on rlimits. */
677 static double
ggc_rlimit_bound(double limit)678 ggc_rlimit_bound (double limit)
679 {
680 #if defined(HAVE_GETRLIMIT)
681 struct rlimit rlim;
682 # if defined (RLIMIT_AS)
683 /* RLIMIT_AS is what POSIX says is the limit on mmap. Presumably
684 any OS which has RLIMIT_AS also has a working mmap that GCC will use. */
685 if (getrlimit (RLIMIT_AS, &rlim) == 0
686 && rlim.rlim_cur != (rlim_t) RLIM_INFINITY
687 && rlim.rlim_cur < limit)
688 limit = rlim.rlim_cur;
689 # elif defined (RLIMIT_DATA)
690 /* ... but some older OSs bound mmap based on RLIMIT_DATA, or we
691 might be on an OS that has a broken mmap. (Others don't bound
692 mmap at all, apparently.) */
693 if (getrlimit (RLIMIT_DATA, &rlim) == 0
694 && rlim.rlim_cur != (rlim_t) RLIM_INFINITY
695 && rlim.rlim_cur < limit
696 /* Darwin has this horribly bogus default setting of
697 RLIMIT_DATA, to 6144Kb. No-one notices because RLIMIT_DATA
698 appears to be ignored. Ignore such silliness. If a limit
699 this small was actually effective for mmap, GCC wouldn't even
700 start up. */
701 && rlim.rlim_cur >= 8 * 1024 * 1024)
702 limit = rlim.rlim_cur;
703 # endif /* RLIMIT_AS or RLIMIT_DATA */
704 #endif /* HAVE_GETRLIMIT */
705
706 return limit;
707 }
708
709 /* Heuristic to set a default for GGC_MIN_EXPAND. */
710 int
ggc_min_expand_heuristic(void)711 ggc_min_expand_heuristic (void)
712 {
713 double min_expand = physmem_total();
714
715 /* Adjust for rlimits. */
716 min_expand = ggc_rlimit_bound (min_expand);
717
718 /* The heuristic is a percentage equal to 30% + 70%*(RAM/1GB), yielding
719 APPLE LOCAL retune gc params 6124839
720 a lower bound of 30% and an upper bound of 150% (when RAM >= 1.7GB). */
721 min_expand /= 1024*1024*1024;
722 min_expand *= 70;
723 /* APPLE LOCAL retune gc params 6124839 */
724 min_expand = MIN (min_expand, 120);
725 min_expand += 30;
726
727 return min_expand;
728 }
729
730 /* Heuristic to set a default for GGC_MIN_HEAPSIZE. */
731 int
732 /* APPLE LOCAL retune gc params 6124839 */
ggc_min_heapsize_heuristic(bool optimize)733 ggc_min_heapsize_heuristic (bool optimize)
734 {
735 double phys_kbytes = physmem_total();
736 double limit_kbytes = ggc_rlimit_bound (phys_kbytes * 2);
737
738 phys_kbytes /= 1024; /* Convert to Kbytes. */
739 limit_kbytes /= 1024;
740
741 /* The heuristic is RAM/8, with a lower bound of 4M and an upper
742 bound of 128M (when RAM >= 1GB). */
743 phys_kbytes /= 8;
744
745 /* APPLE LOCAL begin retune gc params 6124839 */
746
747 /* Additionally, on a multicore machine, we assume that we share the
748 memory with others reasonably equally. */
749 phys_kbytes /= (double)ncpu_available() / (2 - optimize);
750 /* APPLE LOCAL end retune gc params 6124839 */
751
752 #if defined(HAVE_GETRLIMIT) && defined (RLIMIT_RSS)
753 /* Try not to overrun the RSS limit while doing garbage collection.
754 The RSS limit is only advisory, so no margin is subtracted. */
755 {
756 struct rlimit rlim;
757 if (getrlimit (RLIMIT_RSS, &rlim) == 0
758 && rlim.rlim_cur != (rlim_t) RLIM_INFINITY)
759 phys_kbytes = MIN (phys_kbytes, rlim.rlim_cur / 1024);
760 }
761 # endif
762
763 /* Don't blindly run over our data limit; do GC at least when the
764 *next* GC would be within 16Mb of the limit. If GCC does hit the
765 data limit, compilation will fail, so this tries to be
766 conservative. */
767 limit_kbytes = MAX (0, limit_kbytes - 16 * 1024);
768 limit_kbytes = (limit_kbytes * 100) / (110 + ggc_min_expand_heuristic());
769 phys_kbytes = MIN (phys_kbytes, limit_kbytes);
770
771 phys_kbytes = MAX (phys_kbytes, 4 * 1024);
772 phys_kbytes = MIN (phys_kbytes, 128 * 1024);
773
774 return phys_kbytes;
775 }
776
777 void
778 /* APPLE LOCAL retune gc params 6124839 */
init_ggc_heuristics(bool optimize ATTRIBUTE_UNUSED)779 init_ggc_heuristics (bool optimize ATTRIBUTE_UNUSED)
780 {
781 #if !defined ENABLE_GC_CHECKING && !defined ENABLE_GC_ALWAYS_COLLECT
782 set_param_value ("ggc-min-expand", ggc_min_expand_heuristic());
783 /* APPLE LOCAL retune gc params 6124839 */
784 set_param_value ("ggc-min-heapsize", ggc_min_heapsize_heuristic(optimize));
785 #endif
786 }
787
788 #ifdef GATHER_STATISTICS
789
790 /* Datastructure used to store per-call-site statistics. */
791 struct loc_descriptor
792 {
793 const char *file;
794 int line;
795 const char *function;
796 int times;
797 size_t allocated;
798 size_t overhead;
799 size_t freed;
800 size_t collected;
801 };
802
803 /* Hashtable used for statistics. */
804 static htab_t loc_hash;
805
806 /* Hash table helpers functions. */
807 static hashval_t
hash_descriptor(const void * p)808 hash_descriptor (const void *p)
809 {
810 const struct loc_descriptor *d = p;
811
812 return htab_hash_pointer (d->function) | d->line;
813 }
814
815 static int
eq_descriptor(const void * p1,const void * p2)816 eq_descriptor (const void *p1, const void *p2)
817 {
818 const struct loc_descriptor *d = p1;
819 const struct loc_descriptor *d2 = p2;
820
821 return (d->file == d2->file && d->line == d2->line
822 && d->function == d2->function);
823 }
824
825 /* Hashtable converting address of allocated field to loc descriptor. */
826 static htab_t ptr_hash;
827 struct ptr_hash_entry
828 {
829 void *ptr;
830 struct loc_descriptor *loc;
831 size_t size;
832 };
833
834 /* Hash table helpers functions. */
835 static hashval_t
hash_ptr(const void * p)836 hash_ptr (const void *p)
837 {
838 const struct ptr_hash_entry *d = p;
839
840 return htab_hash_pointer (d->ptr);
841 }
842
843 static int
eq_ptr(const void * p1,const void * p2)844 eq_ptr (const void *p1, const void *p2)
845 {
846 const struct ptr_hash_entry *p = p1;
847
848 return (p->ptr == p2);
849 }
850
851 /* Return descriptor for given call site, create new one if needed. */
852 static struct loc_descriptor *
loc_descriptor(const char * name,int line,const char * function)853 loc_descriptor (const char *name, int line, const char *function)
854 {
855 struct loc_descriptor loc;
856 struct loc_descriptor **slot;
857
858 loc.file = name;
859 loc.line = line;
860 loc.function = function;
861 if (!loc_hash)
862 loc_hash = htab_create (10, hash_descriptor, eq_descriptor, NULL);
863
864 slot = (struct loc_descriptor **) htab_find_slot (loc_hash, &loc, 1);
865 if (*slot)
866 return *slot;
867 *slot = xcalloc (sizeof (**slot), 1);
868 (*slot)->file = name;
869 (*slot)->line = line;
870 (*slot)->function = function;
871 return *slot;
872 }
873
874 /* Record ALLOCATED and OVERHEAD bytes to descriptor NAME:LINE (FUNCTION). */
875 void
ggc_record_overhead(size_t allocated,size_t overhead,void * ptr,const char * name,int line,const char * function)876 ggc_record_overhead (size_t allocated, size_t overhead, void *ptr,
877 const char *name, int line, const char *function)
878 {
879 struct loc_descriptor *loc = loc_descriptor (name, line, function);
880 struct ptr_hash_entry *p = XNEW (struct ptr_hash_entry);
881 PTR *slot;
882
883 p->ptr = ptr;
884 p->loc = loc;
885 p->size = allocated + overhead;
886 if (!ptr_hash)
887 ptr_hash = htab_create (10, hash_ptr, eq_ptr, NULL);
888 slot = htab_find_slot_with_hash (ptr_hash, ptr, htab_hash_pointer (ptr), INSERT);
889 gcc_assert (!*slot);
890 *slot = p;
891
892 loc->times++;
893 loc->allocated+=allocated;
894 loc->overhead+=overhead;
895 }
896
897 /* Helper function for prune_overhead_list. See if SLOT is still marked and
898 remove it from hashtable if it is not. */
899 static int
ggc_prune_ptr(void ** slot,void * b ATTRIBUTE_UNUSED)900 ggc_prune_ptr (void **slot, void *b ATTRIBUTE_UNUSED)
901 {
902 struct ptr_hash_entry *p = *slot;
903 if (!ggc_marked_p (p->ptr))
904 {
905 p->loc->collected += p->size;
906 htab_clear_slot (ptr_hash, slot);
907 free (p);
908 }
909 return 1;
910 }
911
912 /* After live values has been marked, walk all recorded pointers and see if
913 they are still live. */
914 void
ggc_prune_overhead_list(void)915 ggc_prune_overhead_list (void)
916 {
917 htab_traverse (ptr_hash, ggc_prune_ptr, NULL);
918 }
919
920 /* Notice that the pointer has been freed. */
921 void
ggc_free_overhead(void * ptr)922 ggc_free_overhead (void *ptr)
923 {
924 PTR *slot = htab_find_slot_with_hash (ptr_hash, ptr, htab_hash_pointer (ptr),
925 NO_INSERT);
926 struct ptr_hash_entry *p = *slot;
927 p->loc->freed += p->size;
928 htab_clear_slot (ptr_hash, slot);
929 free (p);
930 }
931
932 /* Helper for qsort; sort descriptors by amount of memory consumed. */
933 static int
cmp_statistic(const void * loc1,const void * loc2)934 cmp_statistic (const void *loc1, const void *loc2)
935 {
936 struct loc_descriptor *l1 = *(struct loc_descriptor **) loc1;
937 struct loc_descriptor *l2 = *(struct loc_descriptor **) loc2;
938 return ((l1->allocated + l1->overhead - l1->freed) -
939 (l2->allocated + l2->overhead - l2->freed));
940 }
941
942 /* Collect array of the descriptors from hashtable. */
943 struct loc_descriptor **loc_array;
944 static int
add_statistics(void ** slot,void * b)945 add_statistics (void **slot, void *b)
946 {
947 int *n = (int *)b;
948 loc_array[*n] = (struct loc_descriptor *) *slot;
949 (*n)++;
950 return 1;
951 }
952
953 /* Dump per-site memory statistics. */
954 #endif
955 void
dump_ggc_loc_statistics(void)956 dump_ggc_loc_statistics (void)
957 {
958 #ifdef GATHER_STATISTICS
959 int nentries = 0;
960 char s[4096];
961 size_t collected = 0, freed = 0, allocated = 0, overhead = 0, times = 0;
962 int i;
963
964 ggc_force_collect = true;
965 ggc_collect ();
966
967 loc_array = xcalloc (sizeof (*loc_array), loc_hash->n_elements);
968 fprintf (stderr, "-------------------------------------------------------\n");
969 fprintf (stderr, "\n%-48s %10s %10s %10s %10s %10s\n",
970 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
971 fprintf (stderr, "-------------------------------------------------------\n");
972 htab_traverse (loc_hash, add_statistics, &nentries);
973 qsort (loc_array, nentries, sizeof (*loc_array), cmp_statistic);
974 for (i = 0; i < nentries; i++)
975 {
976 struct loc_descriptor *d = loc_array[i];
977 allocated += d->allocated;
978 times += d->times;
979 freed += d->freed;
980 collected += d->collected;
981 overhead += d->overhead;
982 }
983 for (i = 0; i < nentries; i++)
984 {
985 struct loc_descriptor *d = loc_array[i];
986 if (d->allocated)
987 {
988 const char *s1 = d->file;
989 const char *s2;
990 while ((s2 = strstr (s1, "gcc/")))
991 s1 = s2 + 4;
992 sprintf (s, "%s:%i (%s)", s1, d->line, d->function);
993 s[48] = 0;
994 fprintf (stderr, "%-48s %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li:%4.1f%% %10li\n", s,
995 (long)d->collected,
996 (d->collected) * 100.0 / collected,
997 (long)d->freed,
998 (d->freed) * 100.0 / freed,
999 (long)(d->allocated + d->overhead - d->freed - d->collected),
1000 (d->allocated + d->overhead - d->freed - d->collected) * 100.0
1001 / (allocated + overhead - freed - collected),
1002 (long)d->overhead,
1003 d->overhead * 100.0 / overhead,
1004 (long)d->times);
1005 }
1006 }
1007 fprintf (stderr, "%-48s %10ld %10ld %10ld %10ld %10ld\n",
1008 "Total", (long)collected, (long)freed,
1009 (long)(allocated + overhead - freed - collected), (long)overhead,
1010 (long)times);
1011 fprintf (stderr, "%-48s %10s %10s %10s %10s %10s\n",
1012 "source location", "Garbage", "Freed", "Leak", "Overhead", "Times");
1013 fprintf (stderr, "-------------------------------------------------------\n");
1014 #endif
1015 }
1016