eval.c closures are now applicable smobs, not tc3s
[bpt/guile.git] / libguile / gc.c
1 /* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
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.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
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
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 */
18
19 /* #define DEBUGINFO */
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include "libguile/gen-scmconfig.h"
26
27 #include <stdio.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <assert.h>
31
32 #ifdef __ia64__
33 #include <ucontext.h>
34 extern unsigned long * __libc_ia64_register_backing_store_base;
35 #endif
36
37 #include "libguile/_scm.h"
38 #include "libguile/eval.h"
39 #include "libguile/stime.h"
40 #include "libguile/stackchk.h"
41 #include "libguile/struct.h"
42 #include "libguile/smob.h"
43 #include "libguile/arrays.h"
44 #include "libguile/async.h"
45 #include "libguile/ports.h"
46 #include "libguile/root.h"
47 #include "libguile/strings.h"
48 #include "libguile/vectors.h"
49 #include "libguile/weaks.h"
50 #include "libguile/hashtab.h"
51 #include "libguile/tags.h"
52
53 #include "libguile/private-gc.h"
54 #include "libguile/validate.h"
55 #include "libguile/deprecation.h"
56 #include "libguile/gc.h"
57 #include "libguile/dynwind.h"
58
59 #include "libguile/bdw-gc.h"
60
61 #ifdef GUILE_DEBUG_MALLOC
62 #include "libguile/debug-malloc.h"
63 #endif
64
65 #ifdef HAVE_MALLOC_H
66 #include <malloc.h>
67 #endif
68
69 #ifdef HAVE_UNISTD_H
70 #include <unistd.h>
71 #endif
72
73 /* Lock this mutex before doing lazy sweeping.
74 */
75 scm_i_pthread_mutex_t scm_i_sweep_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
76
77 /* Set this to != 0 if every cell that is accessed shall be checked:
78 */
79 int scm_debug_cell_accesses_p = 0;
80 int scm_expensive_debug_cell_accesses_p = 0;
81
82 /* Set this to 0 if no additional gc's shall be performed, otherwise set it to
83 * the number of cell accesses after which a gc shall be called.
84 */
85 int scm_debug_cells_gc_interval = 0;
86
87 /*
88 Global variable, so you can switch it off at runtime by setting
89 scm_i_cell_validation_already_running.
90 */
91 int scm_i_cell_validation_already_running ;
92
93 #if (SCM_DEBUG_CELL_ACCESSES == 1)
94
95
96 /*
97
98 Assert that the given object is a valid reference to a valid cell. This
99 test involves to determine whether the object is a cell pointer, whether
100 this pointer actually points into a heap segment and whether the cell
101 pointed to is not a free cell. Further, additional garbage collections may
102 get executed after a user defined number of cell accesses. This helps to
103 find places in the C code where references are dropped for extremely short
104 periods.
105
106 */
107 void
108 scm_i_expensive_validation_check (SCM cell)
109 {
110 /* If desired, perform additional garbage collections after a user
111 * defined number of cell accesses.
112 */
113 if (scm_debug_cells_gc_interval)
114 {
115 static unsigned int counter = 0;
116
117 if (counter != 0)
118 {
119 --counter;
120 }
121 else
122 {
123 counter = scm_debug_cells_gc_interval;
124 scm_gc ();
125 }
126 }
127 }
128
129 void
130 scm_assert_cell_valid (SCM cell)
131 {
132 if (!scm_i_cell_validation_already_running && scm_debug_cell_accesses_p)
133 {
134 scm_i_cell_validation_already_running = 1; /* set to avoid recursion */
135
136 /*
137 During GC, no user-code should be run, and the guile core
138 should use non-protected accessors.
139 */
140 if (scm_gc_running_p)
141 return;
142
143 /*
144 Only scm_in_heap_p and rescanning the heap is wildly
145 expensive.
146 */
147 if (scm_expensive_debug_cell_accesses_p)
148 scm_i_expensive_validation_check (cell);
149
150 scm_i_cell_validation_already_running = 0; /* re-enable */
151 }
152 }
153
154
155
156 SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
157 (SCM flag),
158 "If @var{flag} is @code{#f}, cell access checking is disabled.\n"
159 "If @var{flag} is @code{#t}, cheap cell access checking is enabled,\n"
160 "but no additional calls to garbage collection are issued.\n"
161 "If @var{flag} is a number, strict cell access checking is enabled,\n"
162 "with an additional garbage collection after the given\n"
163 "number of cell accesses.\n"
164 "This procedure only exists when the compile-time flag\n"
165 "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.")
166 #define FUNC_NAME s_scm_set_debug_cell_accesses_x
167 {
168 if (scm_is_false (flag))
169 {
170 scm_debug_cell_accesses_p = 0;
171 }
172 else if (scm_is_eq (flag, SCM_BOOL_T))
173 {
174 scm_debug_cells_gc_interval = 0;
175 scm_debug_cell_accesses_p = 1;
176 scm_expensive_debug_cell_accesses_p = 0;
177 }
178 else
179 {
180 scm_debug_cells_gc_interval = scm_to_signed_integer (flag, 0, INT_MAX);
181 scm_debug_cell_accesses_p = 1;
182 scm_expensive_debug_cell_accesses_p = 1;
183 }
184 return SCM_UNSPECIFIED;
185 }
186 #undef FUNC_NAME
187
188
189 #endif /* SCM_DEBUG_CELL_ACCESSES == 1 */
190
191 \f
192 /* Hooks. */
193 scm_t_c_hook scm_before_gc_c_hook;
194 scm_t_c_hook scm_before_mark_c_hook;
195 scm_t_c_hook scm_before_sweep_c_hook;
196 scm_t_c_hook scm_after_sweep_c_hook;
197 scm_t_c_hook scm_after_gc_c_hook;
198
199
200 /* GC Statistics Keeping
201 */
202 unsigned long scm_gc_ports_collected = 0;
203
204 static unsigned long protected_obj_count = 0;
205
206
207 SCM_SYMBOL (sym_cells_allocated, "cells-allocated");
208 SCM_SYMBOL (sym_heap_size, "heap-size");
209 SCM_SYMBOL (sym_heap_free_size, "heap-free-size");
210 SCM_SYMBOL (sym_heap_total_allocated, "heap-total-allocated");
211 SCM_SYMBOL (sym_mallocated, "bytes-malloced");
212 SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold");
213 SCM_SYMBOL (sym_heap_segments, "cell-heap-segments");
214 SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
215 SCM_SYMBOL (sym_gc_mark_time_taken, "gc-mark-time-taken");
216 SCM_SYMBOL (sym_times, "gc-times");
217 SCM_SYMBOL (sym_cells_marked, "cells-marked");
218 SCM_SYMBOL (sym_cells_marked_conservatively, "cells-marked-conservatively");
219 SCM_SYMBOL (sym_cells_swept, "cells-swept");
220 SCM_SYMBOL (sym_malloc_yield, "malloc-yield");
221 SCM_SYMBOL (sym_cell_yield, "cell-yield");
222 SCM_SYMBOL (sym_protected_objects, "protected-objects");
223 SCM_SYMBOL (sym_total_cells_allocated, "total-cells-allocated");
224
225
226 /* Number of calls to SCM_NEWCELL since startup. */
227 unsigned scm_newcell_count;
228 unsigned scm_newcell2_count;
229
230
231 /* {Scheme Interface to GC}
232 */
233 static SCM
234 tag_table_to_type_alist (void *closure, SCM key, SCM val, SCM acc)
235 {
236 if (scm_is_integer (key))
237 {
238 int c_tag = scm_to_int (key);
239
240 char const * name = scm_i_tag_name (c_tag);
241 if (name != NULL)
242 {
243 key = scm_from_locale_string (name);
244 }
245 else
246 {
247 char s[100];
248 sprintf (s, "tag %d", c_tag);
249 key = scm_from_locale_string (s);
250 }
251 }
252
253 return scm_cons (scm_cons (key, val), acc);
254 }
255
256 SCM_DEFINE (scm_gc_live_object_stats, "gc-live-object-stats", 0, 0, 0,
257 (),
258 "Return an alist of statistics of the current live objects. ")
259 #define FUNC_NAME s_scm_gc_live_object_stats
260 {
261 SCM tab = scm_make_hash_table (scm_from_int (57));
262 SCM alist;
263
264 alist
265 = scm_internal_hash_fold (&tag_table_to_type_alist, NULL, SCM_EOL, tab);
266
267 return alist;
268 }
269 #undef FUNC_NAME
270
271 extern int scm_gc_malloc_yield_percentage;
272 SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0,
273 (),
274 "Return an association list of statistics about Guile's current\n"
275 "use of storage.\n")
276 #define FUNC_NAME s_scm_gc_stats
277 {
278 SCM answer;
279 size_t heap_size, free_bytes, bytes_since_gc, total_bytes;
280 size_t gc_times;
281
282 heap_size = GC_get_heap_size ();
283 free_bytes = GC_get_free_bytes ();
284 bytes_since_gc = GC_get_bytes_since_gc ();
285 total_bytes = GC_get_total_bytes ();
286 gc_times = GC_gc_no;
287
288 /* njrev: can any of these scm_cons's or scm_list_n signal a memory
289 error? If so we need a frame here. */
290 answer =
291 scm_list_n (scm_cons (sym_gc_time_taken, SCM_INUM0),
292 #if 0
293 scm_cons (sym_cells_allocated,
294 scm_from_ulong (local_scm_cells_allocated)),
295 scm_cons (sym_mallocated,
296 scm_from_ulong (local_scm_mallocated)),
297 scm_cons (sym_mtrigger,
298 scm_from_ulong (local_scm_mtrigger)),
299 scm_cons (sym_gc_mark_time_taken,
300 scm_from_ulong (local_scm_gc_mark_time_taken)),
301 scm_cons (sym_cells_marked,
302 scm_from_double (local_scm_gc_cells_marked)),
303 scm_cons (sym_cells_swept,
304 scm_from_double (local_scm_gc_cells_swept)),
305 scm_cons (sym_malloc_yield,
306 scm_from_long (local_scm_gc_malloc_yield_percentage)),
307 scm_cons (sym_cell_yield,
308 scm_from_long (local_scm_gc_cell_yield_percentage)),
309 scm_cons (sym_heap_segments, heap_segs),
310 #endif
311 scm_cons (sym_heap_size, scm_from_size_t (heap_size)),
312 scm_cons (sym_heap_free_size, scm_from_size_t (free_bytes)),
313 scm_cons (sym_heap_total_allocated,
314 scm_from_size_t (total_bytes)),
315 scm_cons (sym_protected_objects,
316 scm_from_ulong (protected_obj_count)),
317 scm_cons (sym_times, scm_from_size_t (gc_times)),
318 SCM_UNDEFINED);
319
320 return answer;
321 }
322 #undef FUNC_NAME
323
324
325 SCM_DEFINE (scm_gc_dump, "gc-dump", 0, 0, 0,
326 (void),
327 "Dump information about the garbage collector's internal data "
328 "structures and memory usage to the standard output.")
329 #define FUNC_NAME s_scm_gc_dump
330 {
331 GC_dump ();
332
333 return SCM_UNSPECIFIED;
334 }
335 #undef FUNC_NAME
336
337
338 SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0,
339 (SCM obj),
340 "Return an integer that for the lifetime of @var{obj} is uniquely\n"
341 "returned by this function for @var{obj}")
342 #define FUNC_NAME s_scm_object_address
343 {
344 return scm_from_ulong (SCM_UNPACK (obj));
345 }
346 #undef FUNC_NAME
347
348
349 SCM_DEFINE (scm_gc_disable, "gc-disable", 0, 0, 0,
350 (),
351 "Disables the garbage collector. Nested calls are permitted. "
352 "GC is re-enabled once @code{gc-enable} has been called the "
353 "same number of times @code{gc-disable} was called.")
354 #define FUNC_NAME s_scm_gc_disable
355 {
356 GC_disable ();
357 return SCM_UNSPECIFIED;
358 }
359 #undef FUNC_NAME
360
361 SCM_DEFINE (scm_gc_enable, "gc-enable", 0, 0, 0,
362 (),
363 "Enables the garbage collector.")
364 #define FUNC_NAME s_scm_gc_enable
365 {
366 GC_enable ();
367 return SCM_UNSPECIFIED;
368 }
369 #undef FUNC_NAME
370
371
372 SCM_DEFINE (scm_gc, "gc", 0, 0, 0,
373 (),
374 "Scans all of SCM objects and reclaims for further use those that are\n"
375 "no longer accessible.")
376 #define FUNC_NAME s_scm_gc
377 {
378 scm_i_scm_pthread_mutex_lock (&scm_i_sweep_mutex);
379 scm_i_gc ("call");
380 /* njrev: It looks as though other places, e.g. scm_realloc,
381 can call scm_i_gc without acquiring the sweep mutex. Does this
382 matter? Also scm_i_gc (or its descendants) touch the
383 scm_sys_protects, which are protected in some cases
384 (e.g. scm_permobjs above in scm_gc_stats) by a critical section,
385 not by the sweep mutex. Shouldn't all the GC-relevant objects be
386 protected in the same way? */
387 scm_i_pthread_mutex_unlock (&scm_i_sweep_mutex);
388 scm_c_hook_run (&scm_after_gc_c_hook, 0);
389 return SCM_UNSPECIFIED;
390 }
391 #undef FUNC_NAME
392
393 void
394 scm_i_gc (const char *what)
395 {
396 GC_gcollect ();
397 }
398
399
400 \f
401 /* {GC Protection Helper Functions}
402 */
403
404
405 /*
406 * If within a function you need to protect one or more scheme objects from
407 * garbage collection, pass them as parameters to one of the
408 * scm_remember_upto_here* functions below. These functions don't do
409 * anything, but since the compiler does not know that they are actually
410 * no-ops, it will generate code that calls these functions with the given
411 * parameters. Therefore, you can be sure that the compiler will keep those
412 * scheme values alive (on the stack or in a register) up to the point where
413 * scm_remember_upto_here* is called. In other words, place the call to
414 * scm_remember_upto_here* _behind_ the last code in your function, that
415 * depends on the scheme object to exist.
416 *
417 * Example: We want to make sure that the string object str does not get
418 * garbage collected during the execution of 'some_function' in the code
419 * below, because otherwise the characters belonging to str would be freed and
420 * 'some_function' might access freed memory. To make sure that the compiler
421 * keeps str alive on the stack or in a register such that it is visible to
422 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
423 * call to 'some_function'. Note that this would not be necessary if str was
424 * used anyway after the call to 'some_function'.
425 * char *chars = scm_i_string_chars (str);
426 * some_function (chars);
427 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
428 */
429
430 /* Remove any macro versions of these while defining the functions.
431 Functions are always included in the library, for upward binary
432 compatibility and in case combinations of GCC and non-GCC are used. */
433 #undef scm_remember_upto_here_1
434 #undef scm_remember_upto_here_2
435
436 void
437 scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
438 {
439 /* Empty. Protects a single object from garbage collection. */
440 }
441
442 void
443 scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
444 {
445 /* Empty. Protects two objects from garbage collection. */
446 }
447
448 void
449 scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
450 {
451 /* Empty. Protects any number of objects from garbage collection. */
452 }
453
454 /*
455 These crazy functions prevent garbage collection
456 of arguments after the first argument by
457 ensuring they remain live throughout the
458 function because they are used in the last
459 line of the code block.
460 It'd be better to have a nice compiler hint to
461 aid the conservative stack-scanning GC. --03/09/00 gjb */
462 SCM
463 scm_return_first (SCM elt, ...)
464 {
465 return elt;
466 }
467
468 int
469 scm_return_first_int (int i, ...)
470 {
471 return i;
472 }
473
474
475 SCM
476 scm_permanent_object (SCM obj)
477 {
478 return (scm_gc_protect_object (obj));
479 }
480
481
482 /* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
483 other references are dropped, until the object is unprotected by calling
484 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
485 i. e. it is possible to protect the same object several times, but it is
486 necessary to unprotect the object the same number of times to actually get
487 the object unprotected. It is an error to unprotect an object more often
488 than it has been protected before. The function scm_protect_object returns
489 OBJ.
490 */
491
492 /* Implementation note: For every object X, there is a counter which
493 scm_gc_protect_object (X) increments and scm_gc_unprotect_object (X) decrements.
494 */
495
496
497
498 SCM
499 scm_gc_protect_object (SCM obj)
500 {
501 SCM handle;
502
503 /* This critical section barrier will be replaced by a mutex. */
504 /* njrev: Indeed; if my comment above is correct, there is the same
505 critsec/mutex inconsistency here. */
506 SCM_CRITICAL_SECTION_START;
507
508 handle = scm_hashq_create_handle_x (scm_protects, obj, scm_from_int (0));
509 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
510
511 protected_obj_count ++;
512
513 SCM_CRITICAL_SECTION_END;
514
515 return obj;
516 }
517
518
519 /* Remove any protection for OBJ established by a prior call to
520 scm_protect_object. This function returns OBJ.
521
522 See scm_protect_object for more information. */
523 SCM
524 scm_gc_unprotect_object (SCM obj)
525 {
526 SCM handle;
527
528 /* This critical section barrier will be replaced by a mutex. */
529 /* njrev: and again. */
530 SCM_CRITICAL_SECTION_START;
531
532 if (scm_gc_running_p)
533 {
534 fprintf (stderr, "scm_unprotect_object called during GC.\n");
535 abort ();
536 }
537
538 handle = scm_hashq_get_handle (scm_protects, obj);
539
540 if (scm_is_false (handle))
541 {
542 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
543 abort ();
544 }
545 else
546 {
547 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
548 if (scm_is_eq (count, scm_from_int (0)))
549 scm_hashq_remove_x (scm_protects, obj);
550 else
551 SCM_SETCDR (handle, count);
552 }
553 protected_obj_count --;
554
555 SCM_CRITICAL_SECTION_END;
556
557 return obj;
558 }
559
560 void
561 scm_gc_register_root (SCM *p)
562 {
563 /* Nothing. */
564 }
565
566 void
567 scm_gc_unregister_root (SCM *p)
568 {
569 /* Nothing. */
570 }
571
572 void
573 scm_gc_register_roots (SCM *b, unsigned long n)
574 {
575 SCM *p = b;
576 for (; p < b + n; ++p)
577 scm_gc_register_root (p);
578 }
579
580 void
581 scm_gc_unregister_roots (SCM *b, unsigned long n)
582 {
583 SCM *p = b;
584 for (; p < b + n; ++p)
585 scm_gc_unregister_root (p);
586 }
587
588 int scm_i_terminating;
589
590 \f
591
592
593 /*
594 MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC.
595 */
596
597 /* Get an integer from an environment variable. */
598 int
599 scm_getenv_int (const char *var, int def)
600 {
601 char *end = 0;
602 char *val = getenv (var);
603 long res = def;
604 if (!val)
605 return def;
606 res = strtol (val, &end, 10);
607 if (end == val)
608 return def;
609 return res;
610 }
611
612 void
613 scm_storage_prehistory ()
614 {
615 GC_all_interior_pointers = 0;
616 GC_set_free_space_divisor (scm_getenv_int ("GC_FREE_SPACE_DIVISOR", 3));
617
618 GC_INIT ();
619
620 #if (! ((defined GC_VERSION_MAJOR) && (GC_VERSION_MAJOR >= 7))) \
621 && (defined SCM_I_GSC_USE_PTHREAD_THREADS)
622 /* When using GC 6.8, this call is required to initialize thread-local
623 freelists (shouldn't be necessary with GC 7.0). */
624 GC_init ();
625 #endif
626
627 GC_expand_hp (SCM_DEFAULT_INIT_HEAP_SIZE_2);
628
629 /* We only need to register a displacement for those types for which the
630 higher bits of the type tag are used to store a pointer (that is, a
631 pointer to an 8-octet aligned region). For `scm_tc3_struct', this is
632 handled in `scm_alloc_struct ()'. */
633 GC_REGISTER_DISPLACEMENT (scm_tc3_cons);
634 /* GC_REGISTER_DISPLACEMENT (scm_tc3_unused); */
635
636 /* Sanity check. */
637 if (!GC_is_visible (scm_sys_protects))
638 abort ();
639
640 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
641 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
642 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
643 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
644 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
645 }
646
647 scm_i_pthread_mutex_t scm_i_gc_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
648
649 int
650 scm_init_storage ()
651 {
652 size_t j;
653
654 j = SCM_NUM_PROTECTS;
655 while (j)
656 scm_sys_protects[--j] = SCM_BOOL_F;
657
658 #if 0
659 /* We can't have a cleanup handler since we have no thread to run it
660 in. */
661
662 #ifdef HAVE_ATEXIT
663 atexit (cleanup);
664 #else
665 #ifdef HAVE_ON_EXIT
666 on_exit (cleanup, 0);
667 #endif
668 #endif
669
670 #endif
671
672 scm_protects = scm_c_make_hash_table (31);
673
674 return 0;
675 }
676
677 \f
678
679 SCM scm_after_gc_hook;
680
681 static SCM gc_async;
682
683 /* The function gc_async_thunk causes the execution of the after-gc-hook. It
684 * is run after the gc, as soon as the asynchronous events are handled by the
685 * evaluator.
686 */
687 static SCM
688 gc_async_thunk (void)
689 {
690 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
691 return SCM_UNSPECIFIED;
692 }
693
694
695 /* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
696 * the garbage collection. The only purpose of this function is to mark the
697 * gc_async (which will eventually lead to the execution of the
698 * gc_async_thunk).
699 */
700 static void *
701 mark_gc_async (void * hook_data SCM_UNUSED,
702 void *fn_data SCM_UNUSED,
703 void *data SCM_UNUSED)
704 {
705 /* If cell access debugging is enabled, the user may choose to perform
706 * additional garbage collections after an arbitrary number of cell
707 * accesses. We don't want the scheme level after-gc-hook to be performed
708 * for each of these garbage collections for the following reason: The
709 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
710 * after-gc-hook was performed with every gc, and if the gc was performed
711 * after a very small number of cell accesses, then the number of cell
712 * accesses during the execution of the after-gc-hook will suffice to cause
713 * the execution of the next gc. Then, guile would keep executing the
714 * after-gc-hook over and over again, and would never come to do other
715 * things.
716 *
717 * To overcome this problem, if cell access debugging with additional
718 * garbage collections is enabled, the after-gc-hook is never run by the
719 * garbage collecter. When running guile with cell access debugging and the
720 * execution of the after-gc-hook is desired, then it is necessary to run
721 * the hook explicitly from the user code. This has the effect, that from
722 * the scheme level point of view it seems that garbage collection is
723 * performed with a much lower frequency than it actually is. Obviously,
724 * this will not work for code that depends on a fixed one to one
725 * relationship between the execution counts of the C level garbage
726 * collection hooks and the execution count of the scheme level
727 * after-gc-hook.
728 */
729
730 #if (SCM_DEBUG_CELL_ACCESSES == 1)
731 if (scm_debug_cells_gc_interval == 0)
732 scm_system_async_mark (gc_async);
733 #else
734 scm_system_async_mark (gc_async);
735 #endif
736
737 return NULL;
738 }
739
740 char const *
741 scm_i_tag_name (scm_t_bits tag)
742 {
743 if (tag >= 255)
744 {
745 int k = 0xff & (tag >> 8);
746 return (scm_smobs[k].name);
747 }
748
749 switch (tag) /* 7 bits */
750 {
751 case scm_tcs_struct:
752 return "struct";
753 case scm_tcs_cons_imcar:
754 return "cons (immediate car)";
755 case scm_tcs_cons_nimcar:
756 return "cons (non-immediate car)";
757 case scm_tc7_pws:
758 return "pws";
759 case scm_tc7_wvect:
760 return "weak vector";
761 case scm_tc7_vector:
762 return "vector";
763 case scm_tc7_number:
764 switch (tag)
765 {
766 case scm_tc16_real:
767 return "real";
768 break;
769 case scm_tc16_big:
770 return "bignum";
771 break;
772 case scm_tc16_complex:
773 return "complex number";
774 break;
775 case scm_tc16_fraction:
776 return "fraction";
777 break;
778 }
779 break;
780 case scm_tc7_string:
781 return "string";
782 break;
783 case scm_tc7_stringbuf:
784 return "string buffer";
785 break;
786 case scm_tc7_symbol:
787 return "symbol";
788 break;
789 case scm_tc7_variable:
790 return "variable";
791 break;
792 case scm_tc7_gsubr:
793 return "gsubr";
794 break;
795 case scm_tc7_port:
796 return "port";
797 break;
798 case scm_tc7_smob:
799 return "smob"; /* should not occur. */
800 break;
801 }
802
803 return NULL;
804 }
805
806
807
808 \f
809 void
810 scm_init_gc ()
811 {
812 /* `GC_INIT ()' was invoked in `scm_storage_prehistory ()'. */
813
814 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
815 scm_c_define ("after-gc-hook", scm_after_gc_hook);
816
817 gc_async = scm_c_make_gsubr ("%gc-thunk", 0, 0, 0, gc_async_thunk);
818
819 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
820
821 #include "libguile/gc.x"
822 }
823
824
825 void
826 scm_gc_sweep (void)
827 #define FUNC_NAME "scm_gc_sweep"
828 {
829 /* FIXME */
830 fprintf (stderr, "%s: doing nothing\n", __FUNCTION__);
831 }
832
833 #undef FUNC_NAME
834
835
836
837 /*
838 Local Variables:
839 c-file-style: "gnu"
840 End:
841 */