install pthread_atfork handlers for guile's static mutexen
[bpt/guile.git] / libguile / gc.c
CommitLineData
6a97b1f9 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
a00c95d9 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
a00c95d9 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
a00c95d9 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
1bbd0b84 18
37ddcaf6
MD
19/* #define DEBUGINFO */
20
dbb605f5 21#ifdef HAVE_CONFIG_H
aa54a9b0
RB
22# include <config.h>
23#endif
56495472 24
e7bca227
LC
25#include "libguile/gen-scmconfig.h"
26
0f2d19dd 27#include <stdio.h>
e6e2e95a 28#include <errno.h>
783e7774 29#include <string.h>
34cf38c3 30#include <stdlib.h>
6360beb2 31#include <math.h>
e6e2e95a 32
3ec17f28
LC
33#ifdef __ia64__
34#include <ucontext.h>
35extern unsigned long * __libc_ia64_register_backing_store_base;
36#endif
37
a0599745 38#include "libguile/_scm.h"
0a7a7445 39#include "libguile/eval.h"
a0599745
MD
40#include "libguile/stime.h"
41#include "libguile/stackchk.h"
42#include "libguile/struct.h"
a0599745 43#include "libguile/smob.h"
2fa901a5 44#include "libguile/arrays.h"
a0599745
MD
45#include "libguile/async.h"
46#include "libguile/ports.h"
47#include "libguile/root.h"
48#include "libguile/strings.h"
49#include "libguile/vectors.h"
686765af 50#include "libguile/hashtab.h"
ecf470a2 51#include "libguile/tags.h"
a0599745 52
c8a1bdc4 53#include "libguile/private-gc.h"
a0599745 54#include "libguile/validate.h"
1be6b49c 55#include "libguile/deprecation.h"
a0599745 56#include "libguile/gc.h"
9de87eea 57#include "libguile/dynwind.h"
fce59c93 58
1c44468d 59#include "libguile/bdw-gc.h"
a82e7953 60
cc3546b0
AW
61/* For GC_set_start_callback. */
62#include <gc/gc_mark.h>
63
bc9d9bb2 64#ifdef GUILE_DEBUG_MALLOC
a0599745 65#include "libguile/debug-malloc.h"
bc9d9bb2
MD
66#endif
67
0f2d19dd 68#ifdef HAVE_UNISTD_H
95b88819 69#include <unistd.h>
0f2d19dd
JB
70#endif
71
eae33935 72/* Set this to != 0 if every cell that is accessed shall be checked:
61045190 73 */
eab1b259
HWN
74int scm_debug_cell_accesses_p = 0;
75int scm_expensive_debug_cell_accesses_p = 0;
406c7d90 76
e81d98ec
DH
77/* Set this to 0 if no additional gc's shall be performed, otherwise set it to
78 * the number of cell accesses after which a gc shall be called.
79 */
eab1b259 80int scm_debug_cells_gc_interval = 0;
e81d98ec 81
acbccb0c 82/* Hash table that keeps a reference to objects the user wants to protect from
fbe1cb7f
AW
83 garbage collection. */
84static SCM scm_protects;
e7efe8e7
AW
85
86
eab1b259
HWN
87#if (SCM_DEBUG_CELL_ACCESSES == 1)
88
89
90/*
91
92 Assert that the given object is a valid reference to a valid cell. This
93 test involves to determine whether the object is a cell pointer, whether
94 this pointer actually points into a heap segment and whether the cell
95 pointed to is not a free cell. Further, additional garbage collections may
96 get executed after a user defined number of cell accesses. This helps to
97 find places in the C code where references are dropped for extremely short
98 periods.
99
100*/
406c7d90 101void
eab1b259 102scm_i_expensive_validation_check (SCM cell)
406c7d90 103{
eab1b259
HWN
104 /* If desired, perform additional garbage collections after a user
105 * defined number of cell accesses.
106 */
107 if (scm_debug_cells_gc_interval)
108 {
109 static unsigned int counter = 0;
61045190 110
eab1b259
HWN
111 if (counter != 0)
112 {
113 --counter;
114 }
115 else
116 {
117 counter = scm_debug_cells_gc_interval;
b17e0ac3 118 scm_gc ();
eab1b259
HWN
119 }
120 }
121}
122
8c93b597
LC
123/* Whether cell validation is already running. */
124static int scm_i_cell_validation_already_running = 0;
125
eab1b259
HWN
126void
127scm_assert_cell_valid (SCM cell)
128{
129 if (!scm_i_cell_validation_already_running && scm_debug_cell_accesses_p)
406c7d90 130 {
eab1b259 131 scm_i_cell_validation_already_running = 1; /* set to avoid recursion */
406c7d90 132
c8a1bdc4 133 /*
eab1b259
HWN
134 During GC, no user-code should be run, and the guile core
135 should use non-protected accessors.
136 */
c8a1bdc4 137 if (scm_gc_running_p)
eab1b259 138 return;
c8a1bdc4
HWN
139
140 /*
eab1b259
HWN
141 Only scm_in_heap_p and rescanning the heap is wildly
142 expensive.
143 */
144 if (scm_expensive_debug_cell_accesses_p)
145 scm_i_expensive_validation_check (cell);
b4246e5b 146
eab1b259 147 scm_i_cell_validation_already_running = 0; /* re-enable */
406c7d90
DH
148 }
149}
150
151
eab1b259 152
406c7d90
DH
153SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
154 (SCM flag),
1e6808ea 155 "If @var{flag} is @code{#f}, cell access checking is disabled.\n"
eab1b259 156 "If @var{flag} is @code{#t}, cheap cell access checking is enabled,\n"
e81d98ec 157 "but no additional calls to garbage collection are issued.\n"
eab1b259 158 "If @var{flag} is a number, strict cell access checking is enabled,\n"
e81d98ec
DH
159 "with an additional garbage collection after the given\n"
160 "number of cell accesses.\n"
1e6808ea
MG
161 "This procedure only exists when the compile-time flag\n"
162 "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.")
406c7d90
DH
163#define FUNC_NAME s_scm_set_debug_cell_accesses_x
164{
7888309b 165 if (scm_is_false (flag))
eab1b259
HWN
166 {
167 scm_debug_cell_accesses_p = 0;
168 }
bc36d050 169 else if (scm_is_eq (flag, SCM_BOOL_T))
eab1b259
HWN
170 {
171 scm_debug_cells_gc_interval = 0;
172 scm_debug_cell_accesses_p = 1;
173 scm_expensive_debug_cell_accesses_p = 0;
174 }
e11e83f3 175 else
eab1b259 176 {
e11e83f3 177 scm_debug_cells_gc_interval = scm_to_signed_integer (flag, 0, INT_MAX);
eab1b259
HWN
178 scm_debug_cell_accesses_p = 1;
179 scm_expensive_debug_cell_accesses_p = 1;
180 }
406c7d90
DH
181 return SCM_UNSPECIFIED;
182}
183#undef FUNC_NAME
0f2d19dd 184
ecf470a2 185
c8a1bdc4 186#endif /* SCM_DEBUG_CELL_ACCESSES == 1 */
0f2d19dd
JB
187
188\f
14294ce0 189
6360beb2
AW
190/* Compatibility. */
191
14294ce0
AW
192#ifndef HAVE_GC_GET_HEAP_USAGE_SAFE
193static void
194GC_get_heap_usage_safe (GC_word *pheap_size, GC_word *pfree_bytes,
195 GC_word *punmapped_bytes, GC_word *pbytes_since_gc,
196 GC_word *ptotal_bytes)
197{
198 *pheap_size = GC_get_heap_size ();
199 *pfree_bytes = GC_get_free_bytes ();
4eb28612 200#ifdef HAVE_GC_GET_UNMAPPED_BYTES
14294ce0 201 *punmapped_bytes = GC_get_unmapped_bytes ();
4eb28612
CJY
202#else
203 *punmapped_bytes = 0;
204#endif
14294ce0
AW
205 *pbytes_since_gc = GC_get_bytes_since_gc ();
206 *ptotal_bytes = GC_get_total_bytes ();
207}
208#endif
209
6360beb2
AW
210#ifndef HAVE_GC_GET_FREE_SPACE_DIVISOR
211static GC_word
212GC_get_free_space_divisor (void)
213{
214 return GC_free_space_divisor;
215}
216#endif
217
14294ce0 218\f
26224b3f
LC
219/* Hooks. */
220scm_t_c_hook scm_before_gc_c_hook;
221scm_t_c_hook scm_before_mark_c_hook;
222scm_t_c_hook scm_before_sweep_c_hook;
223scm_t_c_hook scm_after_sweep_c_hook;
224scm_t_c_hook scm_after_gc_c_hook;
945fec60 225
0f2d19dd 226
0fbdbe6c
AW
227static void
228run_before_gc_c_hook (void)
229{
e1fbe716
AW
230 if (!SCM_I_CURRENT_THREAD)
231 /* GC while a thread is spinning up; punt. */
232 return;
233
0fbdbe6c
AW
234 scm_c_hook_run (&scm_before_gc_c_hook, NULL);
235}
236
237
0f2d19dd
JB
238/* GC Statistics Keeping
239 */
b74e86cf 240unsigned long scm_gc_ports_collected = 0;
00b6ef23
AW
241static long gc_time_taken = 0;
242static long gc_start_time = 0;
243
6360beb2
AW
244static unsigned long free_space_divisor;
245static unsigned long minimum_free_space_divisor;
246static double target_free_space_divisor;
b74e86cf 247
915b3f9f 248static unsigned long protected_obj_count = 0;
c2cbcc57 249
0f2d19dd 250
17ab1dc3 251SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
915b3f9f
LC
252SCM_SYMBOL (sym_heap_size, "heap-size");
253SCM_SYMBOL (sym_heap_free_size, "heap-free-size");
254SCM_SYMBOL (sym_heap_total_allocated, "heap-total-allocated");
17ab1dc3 255SCM_SYMBOL (sym_heap_allocated_since_gc, "heap-allocated-since-gc");
7eec4c37 256SCM_SYMBOL (sym_protected_objects, "protected-objects");
17ab1dc3 257SCM_SYMBOL (sym_times, "gc-times");
cf2d30f6 258
d3dd80ab 259
0f2d19dd
JB
260/* {Scheme Interface to GC}
261 */
1367aa5e
HWN
262static SCM
263tag_table_to_type_alist (void *closure, SCM key, SCM val, SCM acc)
264{
8fecbb19 265 if (scm_is_integer (key))
8a00ba71 266 {
3e2073bd 267 int c_tag = scm_to_int (key);
8fecbb19
HWN
268
269 char const * name = scm_i_tag_name (c_tag);
270 if (name != NULL)
271 {
272 key = scm_from_locale_string (name);
273 }
274 else
275 {
276 char s[100];
277 sprintf (s, "tag %d", c_tag);
278 key = scm_from_locale_string (s);
279 }
8a00ba71 280 }
8fecbb19 281
1367aa5e
HWN
282 return scm_cons (scm_cons (key, val), acc);
283}
284
285SCM_DEFINE (scm_gc_live_object_stats, "gc-live-object-stats", 0, 0, 0,
286 (),
287 "Return an alist of statistics of the current live objects. ")
288#define FUNC_NAME s_scm_gc_live_object_stats
289{
290 SCM tab = scm_make_hash_table (scm_from_int (57));
b01532af
NJ
291 SCM alist;
292
b01532af 293 alist
1367aa5e
HWN
294 = scm_internal_hash_fold (&tag_table_to_type_alist, NULL, SCM_EOL, tab);
295
296 return alist;
297}
298#undef FUNC_NAME
299
c2cbcc57 300extern int scm_gc_malloc_yield_percentage;
a00c95d9 301SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0,
1bbd0b84 302 (),
1e6808ea 303 "Return an association list of statistics about Guile's current\n"
c8a1bdc4 304 "use of storage.\n")
1bbd0b84 305#define FUNC_NAME s_scm_gc_stats
0f2d19dd 306{
0f2d19dd 307 SCM answer;
14294ce0 308 GC_word heap_size, free_bytes, unmapped_bytes, bytes_since_gc, total_bytes;
915b3f9f 309 size_t gc_times;
4c9419ac 310
14294ce0
AW
311 GC_get_heap_usage_safe (&heap_size, &free_bytes, &unmapped_bytes,
312 &bytes_since_gc, &total_bytes);
313 gc_times = GC_gc_no;
fca43887 314
b9bd8526 315 answer =
00b6ef23 316 scm_list_n (scm_cons (sym_gc_time_taken, scm_from_long (gc_time_taken)),
915b3f9f
LC
317 scm_cons (sym_heap_size, scm_from_size_t (heap_size)),
318 scm_cons (sym_heap_free_size, scm_from_size_t (free_bytes)),
319 scm_cons (sym_heap_total_allocated,
320 scm_from_size_t (total_bytes)),
17ab1dc3
AW
321 scm_cons (sym_heap_allocated_since_gc,
322 scm_from_size_t (bytes_since_gc)),
915b3f9f
LC
323 scm_cons (sym_protected_objects,
324 scm_from_ulong (protected_obj_count)),
325 scm_cons (sym_times, scm_from_size_t (gc_times)),
b9bd8526 326 SCM_UNDEFINED);
fca43887 327
c8a1bdc4 328 return answer;
0f2d19dd 329}
c8a1bdc4 330#undef FUNC_NAME
0f2d19dd 331
539b08a4 332
7f9ec18a
LC
333SCM_DEFINE (scm_gc_dump, "gc-dump", 0, 0, 0,
334 (void),
335 "Dump information about the garbage collector's internal data "
336 "structures and memory usage to the standard output.")
337#define FUNC_NAME s_scm_gc_dump
338{
339 GC_dump ();
340
341 return SCM_UNSPECIFIED;
342}
343#undef FUNC_NAME
344
acf4331f 345
c8a1bdc4
HWN
346SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0,
347 (SCM obj),
348 "Return an integer that for the lifetime of @var{obj} is uniquely\n"
349 "returned by this function for @var{obj}")
350#define FUNC_NAME s_scm_object_address
c68296f8 351{
b9bd8526 352 return scm_from_ulong (SCM_UNPACK (obj));
c68296f8 353}
c8a1bdc4 354#undef FUNC_NAME
c68296f8 355
1be6b49c 356
915b3f9f
LC
357SCM_DEFINE (scm_gc_disable, "gc-disable", 0, 0, 0,
358 (),
359 "Disables the garbage collector. Nested calls are permitted. "
360 "GC is re-enabled once @code{gc-enable} has been called the "
361 "same number of times @code{gc-disable} was called.")
362#define FUNC_NAME s_scm_gc_disable
363{
364 GC_disable ();
365 return SCM_UNSPECIFIED;
366}
367#undef FUNC_NAME
368
369SCM_DEFINE (scm_gc_enable, "gc-enable", 0, 0, 0,
370 (),
371 "Enables the garbage collector.")
372#define FUNC_NAME s_scm_gc_enable
373{
374 GC_enable ();
375 return SCM_UNSPECIFIED;
376}
377#undef FUNC_NAME
378
379
c8a1bdc4
HWN
380SCM_DEFINE (scm_gc, "gc", 0, 0, 0,
381 (),
382 "Scans all of SCM objects and reclaims for further use those that are\n"
383 "no longer accessible.")
384#define FUNC_NAME s_scm_gc
385{
b17e0ac3 386 scm_i_gc ("call");
c8a1bdc4 387 return SCM_UNSPECIFIED;
9d47a1e6 388}
c8a1bdc4 389#undef FUNC_NAME
9d47a1e6 390
c8a1bdc4 391void
b17e0ac3 392scm_i_gc (const char *what)
c8a1bdc4 393{
66b229d5
AW
394#ifndef HAVE_GC_SET_START_CALLBACK
395 run_before_gc_c_hook ();
396#endif
26224b3f 397 GC_gcollect ();
eab1b259 398}
0f2d19dd 399
4c7016dc 400
0f2d19dd
JB
401\f
402/* {GC Protection Helper Functions}
403 */
404
405
5d2b97cd
DH
406/*
407 * If within a function you need to protect one or more scheme objects from
408 * garbage collection, pass them as parameters to one of the
409 * scm_remember_upto_here* functions below. These functions don't do
410 * anything, but since the compiler does not know that they are actually
411 * no-ops, it will generate code that calls these functions with the given
412 * parameters. Therefore, you can be sure that the compiler will keep those
413 * scheme values alive (on the stack or in a register) up to the point where
414 * scm_remember_upto_here* is called. In other words, place the call to
592996c9 415 * scm_remember_upto_here* _behind_ the last code in your function, that
5d2b97cd
DH
416 * depends on the scheme object to exist.
417 *
8c494e99
DH
418 * Example: We want to make sure that the string object str does not get
419 * garbage collected during the execution of 'some_function' in the code
420 * below, because otherwise the characters belonging to str would be freed and
5d2b97cd
DH
421 * 'some_function' might access freed memory. To make sure that the compiler
422 * keeps str alive on the stack or in a register such that it is visible to
423 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
424 * call to 'some_function'. Note that this would not be necessary if str was
425 * used anyway after the call to 'some_function'.
eb01cb64 426 * char *chars = scm_i_string_chars (str);
5d2b97cd
DH
427 * some_function (chars);
428 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
429 */
430
9e1569bd
KR
431/* Remove any macro versions of these while defining the functions.
432 Functions are always included in the library, for upward binary
433 compatibility and in case combinations of GCC and non-GCC are used. */
434#undef scm_remember_upto_here_1
435#undef scm_remember_upto_here_2
436
5d2b97cd 437void
e81d98ec 438scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
5d2b97cd
DH
439{
440 /* Empty. Protects a single object from garbage collection. */
441}
442
443void
e81d98ec 444scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
5d2b97cd
DH
445{
446 /* Empty. Protects two objects from garbage collection. */
447}
448
449void
e81d98ec 450scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
5d2b97cd
DH
451{
452 /* Empty. Protects any number of objects from garbage collection. */
453}
454
c209c88e 455/*
41b0806d
GB
456 These crazy functions prevent garbage collection
457 of arguments after the first argument by
458 ensuring they remain live throughout the
459 function because they are used in the last
460 line of the code block.
461 It'd be better to have a nice compiler hint to
462 aid the conservative stack-scanning GC. --03/09/00 gjb */
0f2d19dd
JB
463SCM
464scm_return_first (SCM elt, ...)
0f2d19dd
JB
465{
466 return elt;
467}
468
41b0806d
GB
469int
470scm_return_first_int (int i, ...)
471{
472 return i;
473}
474
0f2d19dd 475
0f2d19dd 476SCM
6e8d25a6 477scm_permanent_object (SCM obj)
0f2d19dd 478{
8e7b3e98 479 return (scm_gc_protect_object (obj));
0f2d19dd
JB
480}
481
482
7bd4fbe2
MD
483/* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
484 other references are dropped, until the object is unprotected by calling
6b1b030e 485 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
7bd4fbe2
MD
486 i. e. it is possible to protect the same object several times, but it is
487 necessary to unprotect the object the same number of times to actually get
488 the object unprotected. It is an error to unprotect an object more often
489 than it has been protected before. The function scm_protect_object returns
490 OBJ.
491*/
492
493/* Implementation note: For every object X, there is a counter which
1f584400 494 scm_gc_protect_object (X) increments and scm_gc_unprotect_object (X) decrements.
7bd4fbe2 495*/
686765af 496
7eec4c37
HWN
497
498
ef290276 499SCM
6b1b030e 500scm_gc_protect_object (SCM obj)
ef290276 501{
686765af 502 SCM handle;
9d47a1e6 503
686765af 504 /* This critical section barrier will be replaced by a mutex. */
33b320ae
NJ
505 /* njrev: Indeed; if my comment above is correct, there is the same
506 critsec/mutex inconsistency here. */
9de87eea 507 SCM_CRITICAL_SECTION_START;
9d47a1e6 508
acbccb0c 509 handle = scm_hashq_create_handle_x (scm_protects, obj, scm_from_int (0));
e11e83f3 510 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
9d47a1e6 511
7eec4c37
HWN
512 protected_obj_count ++;
513
9de87eea 514 SCM_CRITICAL_SECTION_END;
9d47a1e6 515
ef290276
JB
516 return obj;
517}
518
519
520/* Remove any protection for OBJ established by a prior call to
dab7f566 521 scm_protect_object. This function returns OBJ.
ef290276 522
dab7f566 523 See scm_protect_object for more information. */
ef290276 524SCM
6b1b030e 525scm_gc_unprotect_object (SCM obj)
ef290276 526{
686765af 527 SCM handle;
9d47a1e6 528
686765af 529 /* This critical section barrier will be replaced by a mutex. */
33b320ae 530 /* njrev: and again. */
9de87eea 531 SCM_CRITICAL_SECTION_START;
9d47a1e6 532
0ff7e3ff
HWN
533 if (scm_gc_running_p)
534 {
535 fprintf (stderr, "scm_unprotect_object called during GC.\n");
536 abort ();
537 }
b17e0ac3 538
acbccb0c 539 handle = scm_hashq_get_handle (scm_protects, obj);
9d47a1e6 540
7888309b 541 if (scm_is_false (handle))
686765af 542 {
0f0f0899
MD
543 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
544 abort ();
686765af 545 }
6a199940
DH
546 else
547 {
e11e83f3 548 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
bc36d050 549 if (scm_is_eq (count, scm_from_int (0)))
acbccb0c 550 scm_hashq_remove_x (scm_protects, obj);
6a199940 551 else
1be6b49c 552 SCM_SETCDR (handle, count);
6a199940 553 }
7eec4c37 554 protected_obj_count --;
686765af 555
9de87eea 556 SCM_CRITICAL_SECTION_END;
ef290276
JB
557
558 return obj;
559}
560
6b1b030e
ML
561void
562scm_gc_register_root (SCM *p)
563{
8e7b3e98 564 /* Nothing. */
6b1b030e
ML
565}
566
567void
568scm_gc_unregister_root (SCM *p)
569{
8e7b3e98 570 /* Nothing. */
6b1b030e
ML
571}
572
573void
574scm_gc_register_roots (SCM *b, unsigned long n)
575{
576 SCM *p = b;
577 for (; p < b + n; ++p)
578 scm_gc_register_root (p);
579}
580
581void
582scm_gc_unregister_roots (SCM *b, unsigned long n)
583{
584 SCM *p = b;
585 for (; p < b + n; ++p)
586 scm_gc_unregister_root (p);
587}
588
0f2d19dd 589\f
a00c95d9 590
4c48ba06 591
c8a1bdc4
HWN
592/*
593 MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC.
594 */
85db4a2c
DH
595
596/* Get an integer from an environment variable. */
c8a1bdc4
HWN
597int
598scm_getenv_int (const char *var, int def)
85db4a2c 599{
c8a1bdc4
HWN
600 char *end = 0;
601 char *val = getenv (var);
602 long res = def;
85db4a2c
DH
603 if (!val)
604 return def;
605 res = strtol (val, &end, 10);
606 if (end == val)
607 return def;
608 return res;
609}
610
c35738c1
MD
611void
612scm_storage_prehistory ()
613{
184327a6 614 GC_all_interior_pointers = 0;
6360beb2
AW
615 free_space_divisor = scm_getenv_int ("GC_FREE_SPACE_DIVISOR", 3);
616 minimum_free_space_divisor = free_space_divisor;
617 target_free_space_divisor = free_space_divisor;
618 GC_set_free_space_divisor (free_space_divisor);
184327a6 619
a82e7953 620 GC_INIT ();
e7bca227 621
11d2fc06
LC
622#if (! ((defined GC_VERSION_MAJOR) && (GC_VERSION_MAJOR >= 7))) \
623 && (defined SCM_I_GSC_USE_PTHREAD_THREADS)
e7bca227
LC
624 /* When using GC 6.8, this call is required to initialize thread-local
625 freelists (shouldn't be necessary with GC 7.0). */
626 GC_init ();
627#endif
628
fdab75a1 629 GC_expand_hp (SCM_DEFAULT_INIT_HEAP_SIZE_2);
915b3f9f 630
184327a6
LC
631 /* We only need to register a displacement for those types for which the
632 higher bits of the type tag are used to store a pointer (that is, a
633 pointer to an 8-octet aligned region). For `scm_tc3_struct', this is
634 handled in `scm_alloc_struct ()'. */
635 GC_REGISTER_DISPLACEMENT (scm_tc3_cons);
314b8716 636 /* GC_REGISTER_DISPLACEMENT (scm_tc3_unused); */
184327a6 637
915b3f9f 638 /* Sanity check. */
acbccb0c 639 if (!GC_is_visible (&scm_protects))
915b3f9f 640 abort ();
a82e7953 641
c35738c1
MD
642 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
643 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
644 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
645 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
646 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
647}
85db4a2c 648
9de87eea 649scm_i_pthread_mutex_t scm_i_gc_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
6a97b1f9 650SCM_PTHREAD_ATFORK_LOCK_STATIC_MUTEX (scm_i_gc_admin_mutex);
eb01cb64 651
562cd1b8
AW
652void
653scm_init_gc_protect_object ()
0f2d19dd 654{
acbccb0c 655 scm_protects = scm_c_make_hash_table (31);
4a4c9785 656
9de87eea
MV
657#if 0
658 /* We can't have a cleanup handler since we have no thread to run it
659 in. */
660
a18bcd0e 661#ifdef HAVE_ATEXIT
c45acc34 662 atexit (cleanup);
e52ceaac
MD
663#else
664#ifdef HAVE_ON_EXIT
665 on_exit (cleanup, 0);
666#endif
9de87eea
MV
667#endif
668
a18bcd0e 669#endif
0f2d19dd 670}
939794ce 671
0f2d19dd
JB
672\f
673
939794ce
DH
674SCM scm_after_gc_hook;
675
cc3546b0 676static SCM after_gc_async_cell;
939794ce 677
cc3546b0
AW
678/* The function after_gc_async_thunk causes the execution of the
679 * after-gc-hook. It is run after the gc, as soon as the asynchronous
680 * events are handled by the evaluator.
939794ce
DH
681 */
682static SCM
cc3546b0 683after_gc_async_thunk (void)
939794ce 684{
cc3546b0
AW
685 /* Fun, no? Hook-run *and* run-hook? */
686 scm_c_hook_run (&scm_after_gc_c_hook, NULL);
939794ce 687 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
939794ce
DH
688 return SCM_UNSPECIFIED;
689}
690
691
cc3546b0
AW
692/* The function queue_after_gc_hook is run by the scm_before_gc_c_hook
693 * at the end of the garbage collection. The only purpose of this
694 * function is to mark the after_gc_async (which will eventually lead to
695 * the execution of the after_gc_async_thunk).
939794ce
DH
696 */
697static void *
cc3546b0
AW
698queue_after_gc_hook (void * hook_data SCM_UNUSED,
699 void *fn_data SCM_UNUSED,
700 void *data SCM_UNUSED)
e81d98ec
DH
701{
702 /* If cell access debugging is enabled, the user may choose to perform
703 * additional garbage collections after an arbitrary number of cell
704 * accesses. We don't want the scheme level after-gc-hook to be performed
705 * for each of these garbage collections for the following reason: The
706 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
707 * after-gc-hook was performed with every gc, and if the gc was performed
708 * after a very small number of cell accesses, then the number of cell
709 * accesses during the execution of the after-gc-hook will suffice to cause
710 * the execution of the next gc. Then, guile would keep executing the
711 * after-gc-hook over and over again, and would never come to do other
712 * things.
eae33935 713 *
e81d98ec
DH
714 * To overcome this problem, if cell access debugging with additional
715 * garbage collections is enabled, the after-gc-hook is never run by the
716 * garbage collecter. When running guile with cell access debugging and the
717 * execution of the after-gc-hook is desired, then it is necessary to run
718 * the hook explicitly from the user code. This has the effect, that from
719 * the scheme level point of view it seems that garbage collection is
720 * performed with a much lower frequency than it actually is. Obviously,
721 * this will not work for code that depends on a fixed one to one
722 * relationship between the execution counts of the C level garbage
723 * collection hooks and the execution count of the scheme level
724 * after-gc-hook.
725 */
9de87eea 726
e81d98ec 727#if (SCM_DEBUG_CELL_ACCESSES == 1)
eab1b259 728 if (scm_debug_cells_gc_interval == 0)
e81d98ec 729#endif
cc3546b0
AW
730 {
731 scm_i_thread *t = SCM_I_CURRENT_THREAD;
732
733 if (scm_is_false (SCM_CDR (after_gc_async_cell)))
734 {
735 SCM_SETCDR (after_gc_async_cell, t->active_asyncs);
736 t->active_asyncs = after_gc_async_cell;
737 t->pending_asyncs = 1;
738 }
739 }
e81d98ec 740
939794ce
DH
741 return NULL;
742}
743
00b6ef23
AW
744\f
745
746static void *
747start_gc_timer (void * hook_data SCM_UNUSED,
748 void *fn_data SCM_UNUSED,
749 void *data SCM_UNUSED)
750{
751 if (!gc_start_time)
752 gc_start_time = scm_c_get_internal_run_time ();
753
754 return NULL;
755}
756
757static void *
758accumulate_gc_timer (void * hook_data SCM_UNUSED,
759 void *fn_data SCM_UNUSED,
760 void *data SCM_UNUSED)
761{
762 if (gc_start_time)
6360beb2
AW
763 {
764 long now = scm_c_get_internal_run_time ();
00b6ef23
AW
765 gc_time_taken += now - gc_start_time;
766 gc_start_time = 0;
767 }
768
769 return NULL;
770}
771
6360beb2
AW
772/* Return some idea of the memory footprint of a process, in bytes.
773 Currently only works on Linux systems. */
774static size_t
775get_image_size (void)
776{
777 unsigned long size, resident, share;
8ac70433 778 size_t ret = 0;
6360beb2
AW
779
780 FILE *fp = fopen ("/proc/self/statm", "r");
781
782 if (fp && fscanf (fp, "%lu %lu %lu", &size, &resident, &share) == 3)
783 ret = resident * 4096;
784
785 if (fp)
786 fclose (fp);
787
788 return ret;
789}
790
fd51e661
AW
791/* These are discussed later. */
792static size_t bytes_until_gc;
793static scm_i_pthread_mutex_t bytes_until_gc_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
794
6360beb2
AW
795/* Make GC run more frequently when the process image size is growing,
796 measured against the number of bytes allocated through the GC.
797
798 If Guile is allocating at a GC-managed heap size H, libgc will tend
799 to limit the process image size to H*N. But if at the same time the
800 user program is mallocating at a rate M bytes per GC-allocated byte,
801 then the process stabilizes at H*N*M -- assuming that collecting data
802 will result in malloc'd data being freed. It doesn't take a very
803 large M for this to be a bad situation. To limit the image size,
804 Guile should GC more often -- the bigger the M, the more often.
805
806 Numeric functions that produce bigger and bigger integers are
807 pessimal, because M is an increasing function of time. Here is an
808 example of such a function:
809
810 (define (factorial n)
811 (define (fac n acc)
812 (if (<= n 1)
813 acc
814 (fac (1- n) (* n acc))))
815 (fac n 1))
816
817 It is possible for a process to grow for reasons that will not be
818 solved by faster GC. In that case M will be estimated as
819 artificially high for a while, and so GC will happen more often on
820 the Guile side. But when it stabilizes, Guile can ease back the GC
821 frequency.
822
823 The key is to measure process image growth, not mallocation rate.
824 For maximum effectiveness, Guile reacts quickly to process growth,
825 and exponentially backs down when the process stops growing.
826
827 See http://thread.gmane.org/gmane.lisp.guile.devel/12552/focus=12936
828 for further discussion.
829 */
830static void *
831adjust_gc_frequency (void * hook_data SCM_UNUSED,
832 void *fn_data SCM_UNUSED,
833 void *data SCM_UNUSED)
834{
835 static size_t prev_image_size = 0;
836 static size_t prev_bytes_alloced = 0;
837 size_t image_size;
838 size_t bytes_alloced;
839
fd51e661
AW
840 scm_i_pthread_mutex_lock (&bytes_until_gc_lock);
841 bytes_until_gc = GC_get_heap_size ();
842 scm_i_pthread_mutex_unlock (&bytes_until_gc_lock);
843
6360beb2
AW
844 image_size = get_image_size ();
845 bytes_alloced = GC_get_total_bytes ();
846
d1c03624 847#define HEURISTICS_DEBUG 0
6360beb2
AW
848
849#if HEURISTICS_DEBUG
850 fprintf (stderr, "prev image / alloced: %lu / %lu\n", prev_image_size, prev_bytes_alloced);
851 fprintf (stderr, " image / alloced: %lu / %lu\n", image_size, bytes_alloced);
852 fprintf (stderr, "divisor %lu / %f\n", free_space_divisor, target_free_space_divisor);
853#endif
854
855 if (prev_image_size && bytes_alloced != prev_bytes_alloced)
856 {
857 double growth_rate, new_target_free_space_divisor;
858 double decay_factor = 0.5;
859 double hysteresis = 0.1;
860
861 growth_rate = ((double) image_size - prev_image_size)
862 / ((double)bytes_alloced - prev_bytes_alloced);
863
864#if HEURISTICS_DEBUG
865 fprintf (stderr, "growth rate %f\n", growth_rate);
866#endif
867
868 new_target_free_space_divisor = minimum_free_space_divisor;
869
870 if (growth_rate > 0)
871 new_target_free_space_divisor *= 1.0 + growth_rate;
872
873#if HEURISTICS_DEBUG
874 fprintf (stderr, "new divisor %f\n", new_target_free_space_divisor);
875#endif
876
877 if (new_target_free_space_divisor < target_free_space_divisor)
878 /* Decay down. */
879 target_free_space_divisor =
880 (decay_factor * target_free_space_divisor
881 + (1.0 - decay_factor) * new_target_free_space_divisor);
882 else
883 /* Jump up. */
884 target_free_space_divisor = new_target_free_space_divisor;
885
886#if HEURISTICS_DEBUG
887 fprintf (stderr, "new target divisor %f\n", target_free_space_divisor);
888#endif
889
890 if (free_space_divisor + 0.5 + hysteresis < target_free_space_divisor
891 || free_space_divisor - 0.5 - hysteresis > target_free_space_divisor)
892 {
893 free_space_divisor = lround (target_free_space_divisor);
894#if HEURISTICS_DEBUG
895 fprintf (stderr, "new divisor %lu\n", free_space_divisor);
896#endif
897 GC_set_free_space_divisor (free_space_divisor);
898 }
899 }
900
901 prev_image_size = image_size;
902 prev_bytes_alloced = bytes_alloced;
903
904 return NULL;
905}
906
fd51e661
AW
907/* The adjust_gc_frequency routine handles transients in the process
908 image size. It can't handle instense non-GC-managed steady-state
909 allocation though, as it decays the FSD at steady-state down to its
910 minimum value.
911
912 The only real way to handle continuous, high non-GC allocation is to
913 let the GC know about it. This routine can handle non-GC allocation
914 rates that are similar in size to the GC-managed heap size.
915 */
916
917void
918scm_gc_register_allocation (size_t size)
919{
920 scm_i_pthread_mutex_lock (&bytes_until_gc_lock);
921 if (bytes_until_gc - size > bytes_until_gc)
922 {
923 bytes_until_gc = GC_get_heap_size ();
924 scm_i_pthread_mutex_unlock (&bytes_until_gc_lock);
925 GC_gcollect ();
926 }
927 else
928 {
929 bytes_until_gc -= size;
930 scm_i_pthread_mutex_unlock (&bytes_until_gc_lock);
931 }
932}
933
00b6ef23
AW
934
935\f
936
26224b3f
LC
937char const *
938scm_i_tag_name (scm_t_bits tag)
939{
74ec8d78 940 switch (tag & 0x7f) /* 7 bits */
26224b3f
LC
941 {
942 case scm_tcs_struct:
943 return "struct";
944 case scm_tcs_cons_imcar:
945 return "cons (immediate car)";
946 case scm_tcs_cons_nimcar:
947 return "cons (non-immediate car)";
5b46a8c2 948 case scm_tc7_pointer:
e2c2a699 949 return "foreign";
c99de5aa
AW
950 case scm_tc7_hashtable:
951 return "hashtable";
26b26354
AW
952 case scm_tc7_weak_set:
953 return "weak-set";
7005c60f
AW
954 case scm_tc7_weak_table:
955 return "weak-table";
9ea31741
AW
956 case scm_tc7_fluid:
957 return "fluid";
958 case scm_tc7_dynamic_state:
959 return "dynamic state";
6f3b0cc2
AW
960 case scm_tc7_frame:
961 return "frame";
962 case scm_tc7_objcode:
963 return "objcode";
964 case scm_tc7_vm:
965 return "vm";
966 case scm_tc7_vm_cont:
967 return "vm continuation";
26224b3f
LC
968 case scm_tc7_wvect:
969 return "weak vector";
970 case scm_tc7_vector:
971 return "vector";
26224b3f
LC
972 case scm_tc7_number:
973 switch (tag)
974 {
975 case scm_tc16_real:
976 return "real";
977 break;
978 case scm_tc16_big:
979 return "bignum";
980 break;
981 case scm_tc16_complex:
982 return "complex number";
983 break;
984 case scm_tc16_fraction:
985 return "fraction";
986 break;
987 }
988 break;
989 case scm_tc7_string:
990 return "string";
991 break;
992 case scm_tc7_stringbuf:
993 return "string buffer";
994 break;
995 case scm_tc7_symbol:
996 return "symbol";
997 break;
998 case scm_tc7_variable:
999 return "variable";
1000 break;
26224b3f
LC
1001 case scm_tc7_port:
1002 return "port";
1003 break;
1004 case scm_tc7_smob:
74ec8d78
AW
1005 {
1006 int k = 0xff & (tag >> 8);
1007 return (scm_smobs[k].name);
1008 }
26224b3f
LC
1009 break;
1010 }
1011
1012 return NULL;
1013}
1014
1015
26224b3f
LC
1016
1017\f
0f2d19dd
JB
1018void
1019scm_init_gc ()
0f2d19dd 1020{
a82e7953 1021 /* `GC_INIT ()' was invoked in `scm_storage_prehistory ()'. */
d678e25c 1022
f39448c5 1023 scm_after_gc_hook = scm_make_hook (SCM_INUM0);
fde50407 1024 scm_c_define ("after-gc-hook", scm_after_gc_hook);
939794ce 1025
cc3546b0
AW
1026 /* When the async is to run, the cdr of the gc_async pair gets set to
1027 the asyncs queue of the current thread. */
1028 after_gc_async_cell = scm_cons (scm_c_make_gsubr ("%after-gc-thunk", 0, 0, 0,
1029 after_gc_async_thunk),
1030 SCM_BOOL_F);
939794ce 1031
cc3546b0 1032 scm_c_hook_add (&scm_before_gc_c_hook, queue_after_gc_hook, NULL, 0);
00b6ef23
AW
1033 scm_c_hook_add (&scm_before_gc_c_hook, start_gc_timer, NULL, 0);
1034 scm_c_hook_add (&scm_after_gc_c_hook, accumulate_gc_timer, NULL, 0);
66b229d5 1035
738c899e
AW
1036#if HAVE_GC_GET_HEAP_USAGE_SAFE
1037 /* GC_get_heap_usage does not take a lock, and so can run in the GC
1038 start hook. */
1039 scm_c_hook_add (&scm_before_gc_c_hook, adjust_gc_frequency, NULL, 0);
1040#else
1041 /* GC_get_heap_usage might take a lock (and did from 7.2alpha1 to
1042 7.2alpha7), so call it in the after_gc_hook. */
1043 scm_c_hook_add (&scm_after_gc_c_hook, adjust_gc_frequency, NULL, 0);
1044#endif
1045
66b229d5 1046#ifdef HAVE_GC_SET_START_CALLBACK
cc3546b0 1047 GC_set_start_callback (run_before_gc_c_hook);
66b229d5 1048#endif
939794ce 1049
a0599745 1050#include "libguile/gc.x"
0f2d19dd 1051}
89e00824 1052
c8a1bdc4
HWN
1053
1054void
1055scm_gc_sweep (void)
1056#define FUNC_NAME "scm_gc_sweep"
1057{
26224b3f 1058 /* FIXME */
cd169c5a 1059 fprintf (stderr, "%s: doing nothing\n", FUNC_NAME);
c8a1bdc4 1060}
c8a1bdc4
HWN
1061#undef FUNC_NAME
1062
89e00824
ML
1063/*
1064 Local Variables:
1065 c-file-style: "gnu"
1066 End:
1067*/