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