/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA * * As a special exception, the Free Software Foundation gives permission * for additional uses of the text contained in its release of GUILE. * * The exception is that, if you link the GUILE library with other files * to produce an executable, this does not by itself cause the * resulting executable to be covered by the GNU General Public License. * Your use of that executable is in no way restricted on account of * linking the GUILE library code into it. * * This exception does not however invalidate any other reasons why * the executable file might be covered by the GNU General Public License. * * This exception applies only to the code released by the * Free Software Foundation under the name GUILE. If you copy * code from other Free Software Foundation releases into a copy of * GUILE, as the General Public License permits, the exception does * not apply to the code that you add in this way. To avoid misleading * anyone as to the status of such modified files, you must delete * this exception notice from them. * * If you write modifications of your own for GUILE, it is your choice * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. */ /* #define DEBUGINFO */ #include #include #include #include #ifdef __ia64__ #include extern unsigned long * __libc_ia64_register_backing_store_base; #endif #include "libguile/_scm.h" #include "libguile/eval.h" #include "libguile/stime.h" #include "libguile/stackchk.h" #include "libguile/struct.h" #include "libguile/smob.h" #include "libguile/unif.h" #include "libguile/async.h" #include "libguile/ports.h" #include "libguile/root.h" #include "libguile/strings.h" #include "libguile/vectors.h" #include "libguile/weaks.h" #include "libguile/hashtab.h" #include "libguile/tags.h" #include "libguile/private-gc.h" #include "libguile/validate.h" #include "libguile/deprecation.h" #include "libguile/gc.h" #ifdef GUILE_DEBUG_MALLOC #include "libguile/debug-malloc.h" #endif #ifdef HAVE_MALLOC_H #include #endif #ifdef HAVE_UNISTD_H #include #endif unsigned int scm_gc_running_p = 0; /* Lock this mutex before doing lazy sweeping. */ scm_t_rec_mutex scm_i_sweep_mutex; /* Set this to != 0 if every cell that is accessed shall be checked: */ int scm_debug_cell_accesses_p = 0; int scm_expensive_debug_cell_accesses_p = 0; /* Set this to 0 if no additional gc's shall be performed, otherwise set it to * the number of cell accesses after which a gc shall be called. */ int scm_debug_cells_gc_interval = 0; /* Global variable, so you can switch it off at runtime by setting scm_i_cell_validation_already_running. */ int scm_i_cell_validation_already_running ; #if (SCM_DEBUG_CELL_ACCESSES == 1) /* Assert that the given object is a valid reference to a valid cell. This test involves to determine whether the object is a cell pointer, whether this pointer actually points into a heap segment and whether the cell pointed to is not a free cell. Further, additional garbage collections may get executed after a user defined number of cell accesses. This helps to find places in the C code where references are dropped for extremely short periods. */ void scm_i_expensive_validation_check (SCM cell) { if (!scm_in_heap_p (cell)) { fprintf (stderr, "scm_assert_cell_valid: this object does not live in the heap: %lux\n", (unsigned long) SCM_UNPACK (cell)); abort (); } /* If desired, perform additional garbage collections after a user * defined number of cell accesses. */ if (scm_debug_cells_gc_interval) { static unsigned int counter = 0; if (counter != 0) { --counter; } else { counter = scm_debug_cells_gc_interval; scm_igc ("scm_assert_cell_valid"); } } } void scm_assert_cell_valid (SCM cell) { if (!scm_i_cell_validation_already_running && scm_debug_cell_accesses_p) { scm_i_cell_validation_already_running = 1; /* set to avoid recursion */ /* During GC, no user-code should be run, and the guile core should use non-protected accessors. */ if (scm_gc_running_p) return; /* Only scm_in_heap_p and rescanning the heap is wildly expensive. */ if (scm_expensive_debug_cell_accesses_p) scm_i_expensive_validation_check (cell); if (!SCM_GC_MARK_P (cell)) { fprintf (stderr, "scm_assert_cell_valid: this object is unmarked. \n" "It has been garbage-collected in the last GC run: " "%lux\n", (unsigned long) SCM_UNPACK (cell)); abort (); } scm_i_cell_validation_already_running = 0; /* re-enable */ } } SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0, (SCM flag), "If @var{flag} is @code{#f}, cell access checking is disabled.\n" "If @var{flag} is @code{#t}, cheap cell access checking is enabled,\n" "but no additional calls to garbage collection are issued.\n" "If @var{flag} is a number, strict cell access checking is enabled,\n" "with an additional garbage collection after the given\n" "number of cell accesses.\n" "This procedure only exists when the compile-time flag\n" "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.") #define FUNC_NAME s_scm_set_debug_cell_accesses_x { if (SCM_FALSEP (flag)) { scm_debug_cell_accesses_p = 0; } else if (SCM_EQ_P (flag, SCM_BOOL_T)) { scm_debug_cells_gc_interval = 0; scm_debug_cell_accesses_p = 1; scm_expensive_debug_cell_accesses_p = 0; } else if (SCM_INUMP (flag)) { long int f = SCM_INUM (flag); if (f <= 0) SCM_OUT_OF_RANGE (1, flag); scm_debug_cells_gc_interval = f; scm_debug_cell_accesses_p = 1; scm_expensive_debug_cell_accesses_p = 1; } else { SCM_WRONG_TYPE_ARG (1, flag); } return SCM_UNSPECIFIED; } #undef FUNC_NAME #else /* Provide a stub, so people can use their Scheme code on non-debug versions of GUILE as well. */ SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0, (SCM flag), "This function is used to turn on checking for a debug version of GUILE. This version does not support this functionality\n") #define FUNC_NAME s_scm_set_debug_cell_accesses_x { /* do nothing */ fprintf (stderr, "\nWARNING: GUILE was not compiled with SCM_DEBUG_CELL_ACCESSES"); scm_remember_upto_here (flag); return SCM_UNSPECIFIED; } #undef FUNC_NAME #endif /* SCM_DEBUG_CELL_ACCESSES == 1 */ scm_t_key scm_i_freelist; scm_t_key scm_i_freelist2; /* scm_mtrigger * is the number of bytes of malloc allocation needed to trigger gc. */ unsigned long scm_mtrigger; /* scm_gc_heap_lock * If set, don't expand the heap. Set only during gc, during which no allocation * is supposed to take place anyway. */ int scm_gc_heap_lock = 0; /* GC Blocking * Don't pause for collection if this is set -- just * expand the heap. */ int scm_block_gc = 1; /* During collection, this accumulates objects holding * weak references. */ SCM scm_weak_vectors; /* GC Statistics Keeping */ unsigned long scm_cells_allocated = 0; unsigned long scm_mallocated = 0; unsigned long scm_gc_cells_collected; unsigned long scm_gc_cells_collected_1 = 0; /* previous GC yield */ unsigned long scm_gc_malloc_collected; unsigned long scm_gc_ports_collected; unsigned long scm_gc_time_taken = 0; static unsigned long t_before_gc; unsigned long scm_gc_mark_time_taken = 0; unsigned long scm_gc_times = 0; unsigned long scm_gc_cells_swept = 0; double scm_gc_cells_marked_acc = 0.; double scm_gc_cells_swept_acc = 0.; int scm_gc_cell_yield_percentage =0; int scm_gc_malloc_yield_percentage = 0; SCM_SYMBOL (sym_cells_allocated, "cells-allocated"); SCM_SYMBOL (sym_heap_size, "cell-heap-size"); SCM_SYMBOL (sym_mallocated, "bytes-malloced"); SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold"); SCM_SYMBOL (sym_heap_segments, "cell-heap-segments"); SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken"); SCM_SYMBOL (sym_gc_mark_time_taken, "gc-mark-time-taken"); SCM_SYMBOL (sym_times, "gc-times"); SCM_SYMBOL (sym_cells_marked, "cells-marked"); SCM_SYMBOL (sym_cells_swept, "cells-swept"); SCM_SYMBOL (sym_malloc_yield, "malloc-yield"); SCM_SYMBOL (sym_cell_yield, "cell-yield"); /* Number of calls to SCM_NEWCELL since startup. */ unsigned scm_newcell_count; unsigned scm_newcell2_count; /* {Scheme Interface to GC} */ extern int scm_gc_malloc_yield_percentage; SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0, (), "Return an association list of statistics about Guile's current\n" "use of storage.\n") #define FUNC_NAME s_scm_gc_stats { long i = 0; SCM heap_segs = SCM_EOL ; unsigned long int local_scm_mtrigger; unsigned long int local_scm_mallocated; unsigned long int local_scm_heap_size; int local_scm_gc_cell_yield_percentage; int local_scm_gc_malloc_yield_percentage; unsigned long int local_scm_cells_allocated; unsigned long int local_scm_gc_time_taken; unsigned long int local_scm_gc_times; unsigned long int local_scm_gc_mark_time_taken; double local_scm_gc_cells_swept; double local_scm_gc_cells_marked; SCM answer; unsigned long *bounds = 0; int table_size = scm_i_heap_segment_table_size; SCM_DEFER_INTS; /* temporarily store the numbers, so as not to cause GC. */ bounds = malloc (sizeof (int) * table_size * 2); if (!bounds) abort(); for (i = table_size; i--; ) { bounds[2*i] = (unsigned long)scm_i_heap_segment_table[i]->bounds[0]; bounds[2*i+1] = (unsigned long)scm_i_heap_segment_table[i]->bounds[1]; } /* Below, we cons to produce the resulting list. We want a snapshot of * the heap situation before consing. */ local_scm_mtrigger = scm_mtrigger; local_scm_mallocated = scm_mallocated; local_scm_heap_size = SCM_HEAP_SIZE; local_scm_cells_allocated = scm_cells_allocated; local_scm_gc_time_taken = scm_gc_time_taken; local_scm_gc_mark_time_taken = scm_gc_mark_time_taken; local_scm_gc_times = scm_gc_times; local_scm_gc_malloc_yield_percentage = scm_gc_malloc_yield_percentage; local_scm_gc_cell_yield_percentage= scm_gc_cell_yield_percentage; local_scm_gc_cells_swept = (double) scm_gc_cells_swept_acc + (double) scm_gc_cells_swept; local_scm_gc_cells_marked = scm_gc_cells_marked_acc +(double) scm_gc_cells_swept -(double) scm_gc_cells_collected; for (i = table_size; i--;) { heap_segs = scm_cons (scm_cons (scm_ulong2num (bounds[2*i]), scm_ulong2num (bounds[2*i+1])), heap_segs); } answer = scm_list_n (scm_cons (sym_gc_time_taken, scm_ulong2num (local_scm_gc_time_taken)), scm_cons (sym_cells_allocated, scm_ulong2num (local_scm_cells_allocated)), scm_cons (sym_heap_size, scm_ulong2num (local_scm_heap_size)), scm_cons (sym_mallocated, scm_ulong2num (local_scm_mallocated)), scm_cons (sym_mtrigger, scm_ulong2num (local_scm_mtrigger)), scm_cons (sym_times, scm_ulong2num (local_scm_gc_times)), scm_cons (sym_gc_mark_time_taken, scm_ulong2num (local_scm_gc_mark_time_taken)), scm_cons (sym_cells_marked, scm_i_dbl2big (local_scm_gc_cells_marked)), scm_cons (sym_cells_swept, scm_i_dbl2big (local_scm_gc_cells_swept)), scm_cons (sym_malloc_yield, scm_long2num (local_scm_gc_malloc_yield_percentage)), scm_cons (sym_cell_yield, scm_long2num (local_scm_gc_cell_yield_percentage)), scm_cons (sym_heap_segments, heap_segs), SCM_UNDEFINED); SCM_ALLOW_INTS; free (bounds); return answer; } #undef FUNC_NAME static void gc_start_stats (const char *what SCM_UNUSED) { t_before_gc = scm_c_get_internal_run_time (); scm_gc_cells_marked_acc += (double) scm_gc_cells_swept - (double) scm_gc_cells_collected; scm_gc_cells_swept_acc += (double) scm_gc_cells_swept; scm_gc_cell_yield_percentage = ( scm_gc_cells_collected * 100 ) / SCM_HEAP_SIZE; scm_gc_cells_swept = 0; scm_gc_cells_collected_1 = scm_gc_cells_collected; /* CELLS SWEPT is another word for the number of cells that were examined during GC. YIELD is the number that we cleaned out. MARKED is the number that weren't cleaned. */ scm_gc_cells_collected = 0; scm_gc_malloc_collected = 0; scm_gc_ports_collected = 0; } static void gc_end_stats () { unsigned long t = scm_c_get_internal_run_time (); scm_gc_time_taken += (t - t_before_gc); ++scm_gc_times; } SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0, (SCM obj), "Return an integer that for the lifetime of @var{obj} is uniquely\n" "returned by this function for @var{obj}") #define FUNC_NAME s_scm_object_address { return scm_ulong2num ((unsigned long) SCM_UNPACK (obj)); } #undef FUNC_NAME SCM_DEFINE (scm_gc, "gc", 0, 0, 0, (), "Scans all of SCM objects and reclaims for further use those that are\n" "no longer accessible.") #define FUNC_NAME s_scm_gc { scm_igc ("call"); return SCM_UNSPECIFIED; } #undef FUNC_NAME /* When we get POSIX threads support, the master will be global and * common while the freelist will be individual for each thread. */ SCM scm_gc_for_newcell (scm_t_cell_type_statistics *freelist, SCM *free_cells) { SCM cell; scm_rec_mutex_lock (&scm_i_sweep_mutex); *free_cells = scm_i_sweep_some_segments (freelist); if (*free_cells == SCM_EOL && scm_i_gc_grow_heap_p (freelist)) { freelist->heap_segment_idx = scm_i_get_new_heap_segment (freelist, abort_on_error); *free_cells = scm_i_sweep_some_segments (freelist); } if (*free_cells == SCM_EOL && !scm_block_gc) { /* with the advent of lazy sweep, GC yield is only know just before doing the GC. */ scm_i_adjust_min_yield (freelist); /* out of fresh cells. Try to get some new ones. */ scm_igc ("cells"); *free_cells = scm_i_sweep_some_segments (freelist); } if (*free_cells == SCM_EOL) { /* failed getting new cells. Get new juice or die. */ freelist->heap_segment_idx = scm_i_get_new_heap_segment (freelist, abort_on_error); *free_cells = scm_i_sweep_some_segments (freelist); } if (*free_cells == SCM_EOL) abort (); cell = *free_cells; *free_cells = SCM_FREE_CELL_CDR (cell); scm_rec_mutex_unlock (&scm_i_sweep_mutex); return cell; } scm_t_c_hook scm_before_gc_c_hook; scm_t_c_hook scm_before_mark_c_hook; scm_t_c_hook scm_before_sweep_c_hook; scm_t_c_hook scm_after_sweep_c_hook; scm_t_c_hook scm_after_gc_c_hook; void scm_igc (const char *what) { scm_rec_mutex_lock (&scm_i_sweep_mutex); ++scm_gc_running_p; scm_c_hook_run (&scm_before_gc_c_hook, 0); #ifdef DEBUGINFO fprintf (stderr,"gc reason %s\n", what); fprintf (stderr, SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist)) ? "*" : (SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m")); #endif /* During the critical section, only the current thread may run. */ scm_i_thread_put_to_sleep (); if (!scm_root || !scm_stack_base || scm_block_gc) { --scm_gc_running_p; return; } gc_start_stats (what); if (scm_gc_heap_lock) /* We've invoked the collector while a GC is already in progress. That should never happen. */ abort (); ++scm_gc_heap_lock; /* Let's finish the sweep. The conservative GC might point into the garbage, and marking that would create a mess. */ scm_i_sweep_all_segments("GC"); if (scm_mallocated < scm_i_deprecated_memory_return) { /* The byte count of allocated objects has underflowed. This is probably because you forgot to report the sizes of objects you have allocated, by calling scm_done_malloc or some such. When the GC freed them, it subtracted their size from scm_mallocated, which underflowed. */ fprintf (stderr, "scm_gc_sweep: Byte count of allocated objects has underflowed.\n" "This is probably because the GC hasn't been correctly informed\n" "about object sizes\n"); abort (); } scm_mallocated -= scm_i_deprecated_memory_return; scm_c_hook_run (&scm_before_mark_c_hook, 0); scm_mark_all (); scm_gc_mark_time_taken += (scm_c_get_internal_run_time () - t_before_gc); scm_c_hook_run (&scm_before_sweep_c_hook, 0); /* Moved this lock upwards so that we can alloc new heap at the end of a sweep. DOCME: why should the heap be locked anyway? */ --scm_gc_heap_lock; scm_gc_sweep (); /* TODO: this hook should probably be moved to just before the mark, since that's where the sweep is finished in lazy sweeping. MDJ 030219 : No, probably not. The original meaning implied at least two things: that it would be called when 1. the freelist is re-initialized (no evaluation possible, though) and 2. the heap is "fresh" (it is well-defined what data is used and what is not) Neither of these conditions would hold just before the mark phase. Of course, the lazy sweeping has muddled the distinction between scm_before_sweep_c_hook and scm_after_sweep_c_hook, but even if there were no difference, it would still be useful to have two distinct classes of hook functions since this can prevent some bad interference when several modules adds gc hooks. */ scm_c_hook_run (&scm_after_sweep_c_hook, 0); gc_end_stats (); scm_i_thread_wake_up (); /* See above. */ scm_c_hook_run (&scm_after_gc_c_hook, 0); --scm_gc_running_p; scm_rec_mutex_unlock (&scm_i_sweep_mutex); /* For debugging purposes, you could do scm_i_sweep_all_segments("debug"), but then the remains of the cell aren't left to analyse. */ } /* {GC Protection Helper Functions} */ /* * If within a function you need to protect one or more scheme objects from * garbage collection, pass them as parameters to one of the * scm_remember_upto_here* functions below. These functions don't do * anything, but since the compiler does not know that they are actually * no-ops, it will generate code that calls these functions with the given * parameters. Therefore, you can be sure that the compiler will keep those * scheme values alive (on the stack or in a register) up to the point where * scm_remember_upto_here* is called. In other words, place the call to * scm_remember_upto_here* _behind_ the last code in your function, that * depends on the scheme object to exist. * * Example: We want to make sure that the string object str does not get * garbage collected during the execution of 'some_function' in the code * below, because otherwise the characters belonging to str would be freed and * 'some_function' might access freed memory. To make sure that the compiler * keeps str alive on the stack or in a register such that it is visible to * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the * call to 'some_function'. Note that this would not be necessary if str was * used anyway after the call to 'some_function'. * char *chars = SCM_STRING_CHARS (str); * some_function (chars); * scm_remember_upto_here_1 (str); // str will be alive up to this point. */ void scm_remember_upto_here_1 (SCM obj SCM_UNUSED) { /* Empty. Protects a single object from garbage collection. */ } void scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED) { /* Empty. Protects two objects from garbage collection. */ } void scm_remember_upto_here (SCM obj SCM_UNUSED, ...) { /* Empty. Protects any number of objects from garbage collection. */ } /* These crazy functions prevent garbage collection of arguments after the first argument by ensuring they remain live throughout the function because they are used in the last line of the code block. It'd be better to have a nice compiler hint to aid the conservative stack-scanning GC. --03/09/00 gjb */ SCM scm_return_first (SCM elt, ...) { return elt; } int scm_return_first_int (int i, ...) { return i; } SCM scm_permanent_object (SCM obj) { SCM_REDEFER_INTS; scm_permobjs = scm_cons (obj, scm_permobjs); SCM_REALLOW_INTS; return obj; } /* Protect OBJ from the garbage collector. OBJ will not be freed, even if all other references are dropped, until the object is unprotected by calling scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest, i. e. it is possible to protect the same object several times, but it is necessary to unprotect the object the same number of times to actually get the object unprotected. It is an error to unprotect an object more often than it has been protected before. The function scm_protect_object returns OBJ. */ /* Implementation note: For every object X, there is a counter which scm_gc_protect_object(X) increments and scm_gc_unprotect_object(X) decrements. */ SCM scm_gc_protect_object (SCM obj) { SCM handle; /* This critical section barrier will be replaced by a mutex. */ SCM_REDEFER_INTS; handle = scm_hashq_create_handle_x (scm_protects, obj, SCM_MAKINUM (0)); SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1))); SCM_REALLOW_INTS; return obj; } /* Remove any protection for OBJ established by a prior call to scm_protect_object. This function returns OBJ. See scm_protect_object for more information. */ SCM scm_gc_unprotect_object (SCM obj) { SCM handle; /* This critical section barrier will be replaced by a mutex. */ SCM_REDEFER_INTS; handle = scm_hashq_get_handle (scm_protects, obj); if (SCM_FALSEP (handle)) { fprintf (stderr, "scm_unprotect_object called on unprotected object\n"); abort (); } else { SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1)); if (SCM_EQ_P (count, SCM_MAKINUM (0))) scm_hashq_remove_x (scm_protects, obj); else SCM_SETCDR (handle, count); } SCM_REALLOW_INTS; return obj; } void scm_gc_register_root (SCM *p) { SCM handle; SCM key = scm_long2num ((long) p); /* This critical section barrier will be replaced by a mutex. */ SCM_REDEFER_INTS; handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key, SCM_MAKINUM (0)); SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1))); SCM_REALLOW_INTS; } void scm_gc_unregister_root (SCM *p) { SCM handle; SCM key = scm_long2num ((long) p); /* This critical section barrier will be replaced by a mutex. */ SCM_REDEFER_INTS; handle = scm_hashv_get_handle (scm_gc_registered_roots, key); if (SCM_FALSEP (handle)) { fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n"); abort (); } else { SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1)); if (SCM_EQ_P (count, SCM_MAKINUM (0))) scm_hashv_remove_x (scm_gc_registered_roots, key); else SCM_SETCDR (handle, count); } SCM_REALLOW_INTS; } void scm_gc_register_roots (SCM *b, unsigned long n) { SCM *p = b; for (; p < b + n; ++p) scm_gc_register_root (p); } void scm_gc_unregister_roots (SCM *b, unsigned long n) { SCM *p = b; for (; p < b + n; ++p) scm_gc_unregister_root (p); } int scm_i_terminating; /* called on process termination. */ #ifdef HAVE_ATEXIT static void cleanup (void) #else #ifdef HAVE_ON_EXIT extern int on_exit (void (*procp) (), int arg); static void cleanup (int status, void *arg) #else #error Dont know how to setup a cleanup handler on your system. #endif #endif { scm_i_terminating = 1; scm_flush_all_ports (); } /* MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC. */ /* Get an integer from an environment variable. */ int scm_getenv_int (const char *var, int def) { char *end = 0; char *val = getenv (var); long res = def; if (!val) return def; res = strtol (val, &end, 10); if (end == val) return def; return res; } void scm_storage_prehistory () { scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL); scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL); scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL); scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL); scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL); } int scm_init_storage () { size_t j; /* Fixme: Should use mutexattr from the low-level API. */ scm_rec_mutex_init (&scm_i_sweep_mutex, &scm_i_plugin_rec_mutex); j = SCM_NUM_PROTECTS; while (j) scm_sys_protects[--j] = SCM_BOOL_F; scm_block_gc = 1; scm_gc_init_freelist(); scm_gc_init_malloc (); j = SCM_HEAP_SEG_SIZE; /* Initialise the list of ports. */ scm_i_port_table = (scm_t_port **) malloc (sizeof (scm_t_port *) * scm_i_port_table_room); if (!scm_i_port_table) return 1; #ifdef HAVE_ATEXIT atexit (cleanup); #else #ifdef HAVE_ON_EXIT on_exit (cleanup, 0); #endif #endif scm_stand_in_procs = SCM_EOL; scm_permobjs = SCM_EOL; scm_protects = scm_c_make_hash_table (31); scm_gc_registered_roots = scm_c_make_hash_table (31); return 0; } SCM scm_after_gc_hook; static SCM gc_async; /* The function gc_async_thunk causes the execution of the after-gc-hook. It * is run after the gc, as soon as the asynchronous events are handled by the * evaluator. */ static SCM gc_async_thunk (void) { scm_c_run_hook (scm_after_gc_hook, SCM_EOL); return SCM_UNSPECIFIED; } /* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of * the garbage collection. The only purpose of this function is to mark the * gc_async (which will eventually lead to the execution of the * gc_async_thunk). */ static void * mark_gc_async (void * hook_data SCM_UNUSED, void *func_data SCM_UNUSED, void *data SCM_UNUSED) { /* If cell access debugging is enabled, the user may choose to perform * additional garbage collections after an arbitrary number of cell * accesses. We don't want the scheme level after-gc-hook to be performed * for each of these garbage collections for the following reason: The * execution of the after-gc-hook causes cell accesses itself. Thus, if the * after-gc-hook was performed with every gc, and if the gc was performed * after a very small number of cell accesses, then the number of cell * accesses during the execution of the after-gc-hook will suffice to cause * the execution of the next gc. Then, guile would keep executing the * after-gc-hook over and over again, and would never come to do other * things. * * To overcome this problem, if cell access debugging with additional * garbage collections is enabled, the after-gc-hook is never run by the * garbage collecter. When running guile with cell access debugging and the * execution of the after-gc-hook is desired, then it is necessary to run * the hook explicitly from the user code. This has the effect, that from * the scheme level point of view it seems that garbage collection is * performed with a much lower frequency than it actually is. Obviously, * this will not work for code that depends on a fixed one to one * relationship between the execution counts of the C level garbage * collection hooks and the execution count of the scheme level * after-gc-hook. */ #if (SCM_DEBUG_CELL_ACCESSES == 1) if (scm_debug_cells_gc_interval == 0) scm_system_async_mark (gc_async); #else scm_system_async_mark (gc_async); #endif return NULL; } void scm_init_gc () { scm_gc_init_mark (); scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0)); scm_c_define ("after-gc-hook", scm_after_gc_hook); gc_async = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0, gc_async_thunk); scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0); #include "libguile/gc.x" } void scm_gc_sweep (void) #define FUNC_NAME "scm_gc_sweep" { scm_i_deprecated_memory_return = 0; scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist); scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist2); /* NOTHING HERE: LAZY SWEEPING ! */ scm_i_reset_segments (); /* When we move to POSIX threads private freelists should probably be GC-protected instead. */ *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL; *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL; /* Invalidate the freelists of other threads. */ scm_i_thread_invalidate_freelists (); } #undef FUNC_NAME /* Local Variables: c-file-style: "gnu" End: */