(SCM_MAKE_VECTOR_TAG): New.
[bpt/guile.git] / libguile / guardians.c
CommitLineData
22a52da1 1/* Copyright (C) 1998,1999,2000,2001 Free Software Foundation, Inc.
e1f2bf99
MD
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
e1f2bf99
MD
42\f
43
44/* This is an implementation of guardians as described in
45 * R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in
46 * a Generation-Based Garbage Collector" ACM SIGPLAN Conference on
47 * Programming Language Design and Implementation, June 1993
48 * ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
49 *
56495472
ML
50 * By this point, the semantics are actually quite different from
51 * those described in the abovementioned paper. The semantic changes
52 * are there to improve safety and intuitiveness. The interface is
53 * still (mostly) the one described by the paper, however.
54 *
55 * Original design: Mikael Djurfeldt
56 * Original implementation: Michael Livshin
57 * Hacked on since by: everybody
e1f2bf99
MD
58 */
59
e1f2bf99 60
a0599745
MD
61#include "libguile/_scm.h"
62#include "libguile/ports.h"
63#include "libguile/print.h"
64#include "libguile/smob.h"
a0599745 65#include "libguile/validate.h"
56495472 66#include "libguile/root.h"
d9dcd933
ML
67#include "libguile/hashtab.h"
68#include "libguile/weaks.h"
56495472 69
a0599745 70#include "libguile/guardians.h"
e1f2bf99 71
e1f2bf99
MD
72
73/* The live and zombies FIFOs are implemented as tconcs as described
74 in Dybvig's paper. This decouples addition and removal of elements
75 so that no synchronization between these needs to take place.
76*/
01449aa5 77
455c0ac8 78typedef struct t_tconc
01449aa5
DH
79{
80 SCM head;
81 SCM tail;
455c0ac8 82} t_tconc;
01449aa5
DH
83
84#define TCONC_EMPTYP(tc) (SCM_EQ_P ((tc).head, (tc).tail))
85
e1f2bf99 86#define TCONC_IN(tc, obj, pair) \
d3a6bc94 87do { \
e1f2bf99 88 SCM_SETCAR ((tc).tail, obj); \
22a52da1 89 SCM_SET_CELL_WORD_1 (pair, SCM_EOL); \
455c0ac8 90 SCM_SET_CELL_WORD_0 (pair, SCM_BOOL_F); \
e1f2bf99
MD
91 SCM_SETCDR ((tc).tail, pair); \
92 (tc).tail = pair; \
d3a6bc94 93} while (0)
e1f2bf99
MD
94
95#define TCONC_OUT(tc, res) \
d3a6bc94 96do { \
e1f2bf99
MD
97 (res) = SCM_CAR ((tc).head); \
98 (tc).head = SCM_CDR ((tc).head); \
d3a6bc94 99} while (0)
e1f2bf99 100
e1f2bf99 101
92c2555f 102static scm_t_bits tc16_guardian;
e1f2bf99 103
455c0ac8 104typedef struct t_guardian
e1f2bf99 105{
455c0ac8
DH
106 t_tconc live;
107 t_tconc zombies;
108 struct t_guardian *next;
c0a5d888 109 unsigned long flags;
455c0ac8 110} t_guardian;
e1f2bf99 111
56495472 112#define GUARDIAN_P(x) SCM_SMOB_PREDICATE(tc16_guardian, x)
455c0ac8 113#define GUARDIAN_DATA(x) ((t_guardian *) SCM_CELL_WORD_1 (x))
56495472 114
c0a5d888
ML
115#define F_GREEDY 1L
116#define F_LISTED (1L << 1)
117#define F_DESTROYED (1L << 2)
118
119#define GREEDY_P(x) (((x)->flags & F_GREEDY) != 0)
120#define SET_GREEDY(x) ((x)->flags |= F_GREEDY)
121
122#define LISTED_P(x) (((x)->flags & F_LISTED) != 0)
123#define SET_LISTED(x) ((x)->flags |= F_LISTED)
124#define CLR_LISTED(x) ((x)->flags &= ~F_LISTED)
125
126#define DESTROYED_P(x) (((x)->flags & F_DESTROYED) != 0)
127#define SET_DESTROYED(x) ((x)->flags |= F_DESTROYED)
56495472
ML
128
129/* during the gc mark phase, live guardians are linked into the lists
130 here. */
455c0ac8
DH
131static t_guardian *greedy_guardians = NULL;
132static t_guardian *sharing_guardians = NULL;
56495472 133
d9dcd933 134static SCM greedily_guarded_whash = SCM_EOL;
56495472
ML
135
136/* this is the list of guarded objects that are parts of cycles. we
137 don't know in which order to return them from guardians, so we just
138 unguard them and whine about it in after-gc-hook */
139static SCM self_centered_zombies = SCM_EOL;
140
e1f2bf99 141
56495472 142static void
455c0ac8 143add_to_live_list (t_guardian *g)
56495472 144{
c0a5d888 145 if (LISTED_P (g))
56495472 146 return;
e1f2bf99 147
c0a5d888 148 if (GREEDY_P (g))
56495472 149 {
c0a5d888
ML
150 g->next = greedy_guardians;
151 greedy_guardians = g;
56495472
ML
152 }
153 else
154 {
c0a5d888
ML
155 g->next = sharing_guardians;
156 sharing_guardians = g;
56495472 157 }
01449aa5 158
c0a5d888 159 SET_LISTED (g);
56495472 160}
e46f3fa6 161
01449aa5 162/* mark a guardian by adding it to the live guardian list. */
e1f2bf99 163static SCM
01449aa5
DH
164guardian_mark (SCM ptr)
165{
455c0ac8 166 add_to_live_list (GUARDIAN_DATA (ptr));
01449aa5
DH
167
168 /* the objects protected by the guardian are not marked here: that
169 would prevent them from ever getting collected. instead marking
56495472 170 is done at the end of the mark phase by guardian_zombify. */
01449aa5
DH
171 return SCM_BOOL_F;
172}
173
174
1be6b49c 175static size_t
01449aa5
DH
176guardian_free (SCM ptr)
177{
455c0ac8
DH
178 scm_must_free (GUARDIAN_DATA (ptr));
179 return sizeof (t_guardian);
01449aa5
DH
180}
181
182
183static int
e81d98ec 184guardian_print (SCM guardian, SCM port, scm_print_state *pstate SCM_UNUSED)
01449aa5 185{
455c0ac8 186 t_guardian *g = GUARDIAN_DATA (guardian);
c0a5d888 187
56495472 188 scm_puts ("#<", port);
c0a5d888
ML
189
190 if (DESTROYED_P (g))
191 scm_puts ("destroyed ", port);
192
193 if (GREEDY_P (g))
194 scm_puts ("greedy", port);
75bc0690 195 else
c0a5d888
ML
196 scm_puts ("sharing", port);
197
198 scm_puts (" guardian 0x", port);
199 scm_intprint ((long) g, 16, port);
200
201 if (! DESTROYED_P (g))
202 {
203 scm_puts (" (reachable: ", port);
204 scm_display (scm_length (SCM_CDR (g->live.head)), port);
205 scm_puts (" unreachable: ", port);
206 scm_display (scm_length (SCM_CDR (g->zombies.head)), port);
207 scm_puts (")", port);
208 }
209
210 scm_puts (">", port);
01449aa5
DH
211
212 return 1;
213}
214
215
c0a5d888
ML
216/* This is the Scheme entry point for each guardian: If OBJ is an
217 * object, it's added to the guardian's live list. If OBJ is unbound,
218 * the next available unreachable object (or #f if none) is returned.
219 *
220 * If the second optional argument THROW_P is true (the default), then
221 * an error is raised if GUARDIAN is greedy and OBJ is already greedily
222 * guarded. If THROW_P is false, #f is returned instead of raising the
223 * error, and #t is returned if everything is fine.
01449aa5
DH
224 */
225static SCM
c0a5d888 226guardian_apply (SCM guardian, SCM obj, SCM throw_p)
e1f2bf99 227{
455c0ac8 228 if (DESTROYED_P (GUARDIAN_DATA (guardian)))
c0a5d888 229 scm_misc_error ("guard", "attempted use of destroyed guardian: ~A",
1afff620 230 scm_list_1 (guardian));
c0a5d888
ML
231
232 if (!SCM_UNBNDP (obj))
233 return scm_guard (guardian, obj,
234 (SCM_UNBNDP (throw_p)
235 ? 1
455c0ac8 236 : !SCM_FALSEP (throw_p)));
e1f2bf99 237 else
01449aa5 238 return scm_get_one_zombie (guardian);
e1f2bf99
MD
239}
240
01449aa5 241
c0a5d888
ML
242SCM
243scm_guard (SCM guardian, SCM obj, int throw_p)
e46f3fa6 244{
455c0ac8 245 t_guardian *g = GUARDIAN_DATA (guardian);
c0a5d888 246
01449aa5 247 if (!SCM_IMP (obj))
e46f3fa6
GH
248 {
249 SCM z;
01449aa5 250
75bc0690
ML
251 SCM_NEWCELL (z);
252
253 /* This critical section barrier will be replaced by a mutex. */
254 SCM_DEFER_INTS;
255
c0a5d888 256 if (GREEDY_P (g))
56495472 257 {
22a52da1 258 if (!SCM_FALSEP (scm_hashq_get_handle
d9dcd933 259 (greedily_guarded_whash, obj)))
75bc0690
ML
260 {
261 SCM_ALLOW_INTS;
c0a5d888
ML
262
263 if (throw_p)
264 scm_misc_error ("guard",
265 "object is already greedily guarded: ~A",
1afff620 266 scm_list_1 (obj));
c0a5d888
ML
267 else
268 return SCM_BOOL_F;
75bc0690 269 }
56495472 270 else
d9dcd933
ML
271 scm_hashq_create_handle_x (greedily_guarded_whash,
272 obj, guardian);
56495472 273 }
e46f3fa6 274
c0a5d888 275 TCONC_IN (g->live, obj, z);
75bc0690 276
e46f3fa6
GH
277 SCM_ALLOW_INTS;
278 }
75bc0690 279
c0a5d888 280 return throw_p ? SCM_UNSPECIFIED : SCM_BOOL_T;
e46f3fa6
GH
281}
282
01449aa5 283
e46f3fa6
GH
284SCM
285scm_get_one_zombie (SCM guardian)
286{
455c0ac8 287 t_guardian *g = GUARDIAN_DATA (guardian);
e46f3fa6
GH
288 SCM res = SCM_BOOL_F;
289
290 /* This critical section barrier will be replaced by a mutex. */
291 SCM_DEFER_INTS;
75bc0690 292
c0a5d888
ML
293 if (!TCONC_EMPTYP (g->zombies))
294 TCONC_OUT (g->zombies, res);
56495472 295
455c0ac8 296 if (!SCM_FALSEP (res) && GREEDY_P (g))
d9dcd933 297 scm_hashq_remove_x (greedily_guarded_whash, res);
75bc0690
ML
298
299 SCM_ALLOW_INTS;
56495472 300
e46f3fa6
GH
301 return res;
302}
e1f2bf99 303
01449aa5 304
56495472
ML
305SCM_DEFINE (scm_make_guardian, "make-guardian", 0, 1, 0,
306 (SCM greedy_p),
e46f3fa6
GH
307 "Create a new guardian.\n"
308 "A guardian protects a set of objects from garbage collection,\n"
309 "allowing a program to apply cleanup or other actions.\n\n"
310
2069af38 311 "@code{make-guardian} returns a procedure representing the guardian.\n"
e46f3fa6
GH
312 "Calling the guardian procedure with an argument adds the\n"
313 "argument to the guardian's set of protected objects.\n"
314 "Calling the guardian procedure without an argument returns\n"
315 "one of the protected objects which are ready for garbage\n"
2069af38 316 "collection, or @code{#f} if no such object is available.\n"
e46f3fa6 317 "Objects which are returned in this way are removed from\n"
92ccc1f1 318 "the guardian.\n\n"
e46f3fa6 319
2069af38
NJ
320 "@code{make-guardian} takes one optional argument that says whether the\n"
321 "new guardian should be greedy or sharing. If there is any chance\n"
56495472 322 "that any object protected by the guardian may be resurrected,\n"
c0a5d888 323 "then you should make the guardian greedy (this is the default).\n\n"
56495472 324
da4a1dba
GB
325 "See R. Kent Dybvig, Carl Bruggeman, and David Eby (1993)\n"
326 "\"Guardians in a Generation-Based Garbage Collector\".\n"
327 "ACM SIGPLAN Conference on Programming Language Design\n"
56495472
ML
328 "and Implementation, June 1993.\n\n"
329
330 "(the semantics are slightly different at this point, but the\n"
331 "paper still (mostly) accurately describes the interface).")
1bbd0b84 332#define FUNC_NAME s_scm_make_guardian
e1f2bf99 333{
455c0ac8 334 t_guardian *g = SCM_MUST_MALLOC_TYPE (t_guardian);
e46f3fa6
GH
335 SCM z1 = scm_cons (SCM_BOOL_F, SCM_EOL);
336 SCM z2 = scm_cons (SCM_BOOL_F, SCM_EOL);
e1f2bf99 337 SCM z;
e46f3fa6 338
e1f2bf99
MD
339 /* A tconc starts out with one tail pair. */
340 g->live.head = g->live.tail = z1;
341 g->zombies.head = g->zombies.tail = z2;
56495472 342
c0a5d888
ML
343 g->next = NULL;
344 g->flags = 0L;
23a62151 345
c0a5d888 346 /* [cmm] the UNBNDP check below is redundant but I like it. */
455c0ac8 347 if (SCM_UNBNDP (greedy_p) || !SCM_FALSEP (greedy_p))
c0a5d888
ML
348 SET_GREEDY (g);
349
01449aa5 350 SCM_NEWSMOB (z, tc16_guardian, g);
e1f2bf99 351
01449aa5 352 return z;
e1f2bf99 353}
1bbd0b84 354#undef FUNC_NAME
e1f2bf99 355
e46f3fa6 356
c0a5d888
ML
357SCM_DEFINE (scm_guardian_destroyed_p, "guardian-destroyed?", 1, 0, 0,
358 (SCM guardian),
2069af38 359 "Return @code{#t} if @var{guardian} has been destroyed, otherwise @code{#f}.")
c0a5d888
ML
360#define FUNC_NAME s_scm_guardian_destroyed_p
361{
362 SCM res = SCM_BOOL_F;
363
364 /* This critical section barrier will be replaced by a mutex. */
365 SCM_DEFER_INTS;
366
455c0ac8 367 res = SCM_BOOL (DESTROYED_P (GUARDIAN_DATA (guardian)));
c0a5d888
ML
368
369 SCM_ALLOW_INTS;
370
371 return res;
372}
373#undef FUNC_NAME
374
2069af38 375SCM_DEFINE (scm_guardian_greedy_p, "guardian-greedy?", 1, 0, 0,
c0a5d888 376 (SCM guardian),
9401323e 377 "Return @code{#t} if @var{guardian} is a greedy guardian, otherwise @code{#f}.")
c0a5d888
ML
378#define FUNC_NAME s_scm_guardian_greedy_p
379{
455c0ac8 380 return SCM_BOOL (GREEDY_P (GUARDIAN_DATA (guardian)));
c0a5d888
ML
381}
382#undef FUNC_NAME
383
384SCM_DEFINE (scm_destroy_guardian_x, "destroy-guardian!", 1, 0, 0,
385 (SCM guardian),
386 "Destroys @var{guardian}, by making it impossible to put any more\n"
387 "objects in it or get any objects from it. It also unguards any\n"
388 "objects guarded by @var{guardian}.")
389#define FUNC_NAME s_scm_destroy_guardian_x
390{
455c0ac8 391 t_guardian *g = GUARDIAN_DATA (guardian);
c0a5d888
ML
392
393 /* This critical section barrier will be replaced by a mutex. */
394 SCM_DEFER_INTS;
395
396 if (DESTROYED_P (g))
397 {
398 SCM_ALLOW_INTS;
1afff620
KN
399 SCM_MISC_ERROR ("guardian is already destroyed: ~A",
400 scm_list_1 (guardian));
c0a5d888
ML
401 }
402
403 if (GREEDY_P (g))
404 {
405 /* clear the "greedily guarded" property of the objects */
406 SCM pair;
407 for (pair = g->live.head; pair != g->live.tail; pair = SCM_CDR (pair))
408 scm_hashq_remove_x (greedily_guarded_whash, SCM_CAR (pair));
409 for (pair = g->zombies.head; pair != g->zombies.tail; pair = SCM_CDR (pair))
410 scm_hashq_remove_x (greedily_guarded_whash, SCM_CAR (pair));
411 }
412
413 /* empty the lists */
414 g->live.head = g->live.tail;
415 g->zombies.head = g->zombies.tail;
416
417 SET_DESTROYED (g);
418
419 SCM_ALLOW_INTS;
420
421 return SCM_UNSPECIFIED;
422}
423#undef FUNC_NAME
424
01449aa5 425/* called before gc mark phase begins to initialise the live guardian list. */
5d2565a7 426static void *
e81d98ec
DH
427guardian_gc_init (void *dummy1 SCM_UNUSED,
428 void *dummy2 SCM_UNUSED,
429 void *dummy3 SCM_UNUSED)
e1f2bf99 430{
56495472 431 greedy_guardians = sharing_guardians = NULL;
5d2565a7
MD
432
433 return 0;
e1f2bf99
MD
434}
435
56495472 436static void
455c0ac8 437mark_dependencies_in_tconc (t_tconc *tc)
56495472
ML
438{
439 SCM pair, next_pair;
440 SCM *prev_ptr;
441
c275ccf5 442 /* scan the list for unmarked objects, and mark their
56495472 443 dependencies */
c275ccf5
ML
444 for (pair = tc->head, prev_ptr = &tc->head;
445 ! SCM_EQ_P (pair, tc->tail);
56495472
ML
446 pair = next_pair)
447 {
448 SCM obj = SCM_CAR (pair);
449 next_pair = SCM_CDR (pair);
450
451 if (! SCM_MARKEDP (obj))
452 {
453 /* a candidate for finalizing */
454 scm_gc_mark_dependencies (obj);
455
456 if (SCM_MARKEDP (obj))
457 {
458 /* uh oh. a cycle. transfer this object (the
459 spine cell, to be exact) to
460 self_centered_zombies, so we'll be able to
461 complain about it later. */
462 *prev_ptr = next_pair;
463 SCM_SETGCMARK (pair);
22ba637b
DH
464 SCM_SETCDR (pair, self_centered_zombies);
465 self_centered_zombies = pair;
56495472
ML
466 }
467 else
468 {
469 /* see if this is a guardian. if yes, list it (but don't
470 mark it yet). */
471 if (GUARDIAN_P (obj))
455c0ac8 472 add_to_live_list (GUARDIAN_DATA (obj));
56495472
ML
473
474 prev_ptr = SCM_CDRLOC (pair);
475 }
476 }
477 }
478}
479
c275ccf5 480static void
455c0ac8 481mark_dependencies (t_guardian *g)
c275ccf5
ML
482{
483 mark_dependencies_in_tconc (&g->zombies);
484 mark_dependencies_in_tconc (&g->live);
485}
486
56495472 487static void
455c0ac8 488mark_and_zombify (t_guardian *g)
56495472
ML
489{
490 SCM tconc_tail = g->live.tail;
491 SCM *prev_ptr = &g->live.head;
492 SCM pair = g->live.head;
493
494 while (! SCM_EQ_P (pair, tconc_tail))
495 {
496 SCM next_pair = SCM_CDR (pair);
497
455c0ac8 498 if (!SCM_MARKEDP (SCM_CAR (pair)))
56495472
ML
499 {
500 /* got you, zombie! */
501
502 /* out of the live list! */
503 *prev_ptr = next_pair;
504
c0a5d888 505 if (GREEDY_P (g))
56495472
ML
506 /* if the guardian is greedy, mark this zombie now. this
507 way it won't be zombified again this time around. */
508 SCM_SETGCMARK (SCM_CAR (pair));
509
510 /* into the zombie list! */
511 TCONC_IN (g->zombies, SCM_CAR (pair), pair);
512 }
513 else
514 prev_ptr = SCM_CDRLOC (pair);
515
516 pair = next_pair;
517 }
518
519 /* Mark the cells of the live list (yes, the cells in the list, we
520 don't care about objects pointed to by the list cars, since we
521 know they are already marked). */
522 for (pair = g->live.head; !SCM_NULLP (pair); pair = SCM_CDR (pair))
523 SCM_SETGCMARK (pair);
524}
525
e46f3fa6
GH
526
527/* this is called by the garbage collector between the mark and sweep
528 phases. for each marked guardian, it moves any unmarked object in
529 its live list (tconc) to its zombie list (tconc). */
5d2565a7 530static void *
e81d98ec
DH
531guardian_zombify (void *dummy1 SCM_UNUSED,
532 void *dummy2 SCM_UNUSED,
533 void *dummy3 SCM_UNUSED)
e1f2bf99 534{
455c0ac8
DH
535 t_guardian *last_greedy_guardian = NULL;
536 t_guardian *last_sharing_guardian = NULL;
537 t_guardian *first_greedy_guardian = NULL;
538 t_guardian *first_sharing_guardian = NULL;
539 t_guardian *g;
56495472
ML
540
541 /* First, find all newly unreachable objects and mark their
542 dependencies.
543
544 Note that new guardians may be stuck on the end of the live
545 guardian lists as we run this loop, since guardians might be
546 guarded too. When we mark a guarded guardian, its mark function
547 sticks in the appropriate live guardian list. The loop
548 terminates when no new guardians are found. */
e46f3fa6 549
50fecba9 550 do {
56495472
ML
551 first_greedy_guardian = greedy_guardians;
552 first_sharing_guardian = sharing_guardians;
553
554 for (g = greedy_guardians; g != last_greedy_guardian;
555 g = g->next)
556 mark_dependencies (g);
557 for (g = sharing_guardians; g != last_sharing_guardian;
558 g = g->next)
559 mark_dependencies (g);
560
561 last_greedy_guardian = first_greedy_guardian;
562 last_sharing_guardian = first_sharing_guardian;
563 } while (first_greedy_guardian != greedy_guardians
564 || first_sharing_guardian != sharing_guardians);
50fecba9 565
56495472
ML
566 /* now, scan all the guardians that are currently known to be live
567 and move their unmarked objects to zombie lists. */
568
569 for (g = greedy_guardians; g; g = g->next)
570 {
571 mark_and_zombify (g);
c0a5d888 572 CLR_LISTED (g);
56495472
ML
573 }
574 for (g = sharing_guardians; g; g = g->next)
575 {
576 mark_and_zombify (g);
c0a5d888 577 CLR_LISTED (g);
56495472 578 }
5d2565a7 579
56495472
ML
580 /* Preserve the zombies in their undead state, by marking to prevent
581 collection. */
582 for (g = greedy_guardians; g; g = g->next)
583 scm_gc_mark (g->zombies.head);
584 for (g = sharing_guardians; g; g = g->next)
585 scm_gc_mark (g->zombies.head);
586
5d2565a7 587 return 0;
e1f2bf99
MD
588}
589
56495472 590static void *
e81d98ec
DH
591whine_about_self_centered_zombies (void *dummy1 SCM_UNUSED,
592 void *dummy2 SCM_UNUSED,
593 void *dummy3 SCM_UNUSED)
56495472 594{
22ba637b 595 if (!SCM_NULLP (self_centered_zombies))
56495472
ML
596 {
597 SCM pair;
598
599 scm_puts ("** WARNING: the following guarded objects were unguarded due to cycles:",
600 scm_cur_errp);
601 scm_newline (scm_cur_errp);
22ba637b
DH
602 for (pair = self_centered_zombies;
603 !SCM_NULLP (pair); pair = SCM_CDR (pair))
56495472
ML
604 {
605 scm_display (SCM_CAR (pair), scm_cur_errp);
606 scm_newline (scm_cur_errp);
607 }
608
22ba637b 609 self_centered_zombies = SCM_EOL;
56495472
ML
610 }
611
612 return 0;
613}
e1f2bf99
MD
614
615void
56495472 616scm_init_guardians ()
e1f2bf99 617{
01449aa5
DH
618 tc16_guardian = scm_make_smob_type ("guardian", 0);
619 scm_set_smob_mark (tc16_guardian, guardian_mark);
620 scm_set_smob_free (tc16_guardian, guardian_free);
621 scm_set_smob_print (tc16_guardian, guardian_print);
c0a5d888 622 scm_set_smob_apply (tc16_guardian, guardian_apply, 0, 2, 0);
01449aa5
DH
623
624 scm_c_hook_add (&scm_before_mark_c_hook, guardian_gc_init, 0, 0);
625 scm_c_hook_add (&scm_before_sweep_c_hook, guardian_zombify, 0, 0);
e1f2bf99 626
22ba637b 627 scm_gc_register_root (&self_centered_zombies);
56495472
ML
628 scm_c_hook_add (&scm_after_gc_c_hook,
629 whine_about_self_centered_zombies, 0, 0);
630
d9dcd933
ML
631 greedily_guarded_whash =
632 scm_permanent_object (scm_make_doubly_weak_hash_table (SCM_MAKINUM (31)));
633
8dc9439f 634#ifndef SCM_MAGIC_SNARFER
a0599745 635#include "libguile/guardians.x"
8dc9439f 636#endif
e1f2bf99 637}
89e00824
ML
638
639/*
640 Local Variables:
641 c-file-style: "gnu"
642 End:
643*/