1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
|
/* Copyright 1995-2003,2006,2008-2014,2016-2018,2020,2024-2025
Free Software Foundation, Inc.
This file is part of Guile.
Guile is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Guile 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Guile. If not, see
<https://www.gnu.org/licenses/>. */
/* #define DEBUGINFO */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <unistd.h>
#include "arrays.h"
#include "async.h"
#include "bdw-gc.h"
#include "deprecation.h"
#include "dynwind.h"
#include "eval.h"
#include "gen-scmconfig.h"
#include "gsubr.h"
#include "hashtab.h"
#include "hooks.h"
#include "list.h"
#include "modules.h"
#include "numbers.h"
#include "pairs.h"
#include "ports.h"
#include "simpos.h"
#include "smob.h"
#include "stackchk.h"
#include "stime.h"
#include "strings.h"
#include "struct.h"
#include "symbols.h"
#include "vectors.h"
#ifdef GUILE_DEBUG_MALLOC
#include "debug-malloc.h"
#endif
#include "gc.h"
#include "gc-internal.h"
#include "gc-basic-stats.h"
/* For GC_set_start_callback. */
#include <gc/gc_mark.h>
struct scm_gc_event_listener {
struct gc_basic_stats stats;
uint64_t last_allocation_counter;
};
struct scm_gc_event_listener_mutator {
struct scm_gc_event_listener *scm_listener;
void *stats;
};
struct gc_heap *the_gc_heap;
static struct scm_gc_event_listener the_gc_event_listener;
/* Size in bytes of the initial heap. This should be about the size of
result of 'guile -c "(display (assq-ref (gc-stats)
'heap-total-allocated))"'. */
#define DEFAULT_INITIAL_HEAP_SIZE (256 * 1024 * SIZEOF_UINTPTR_T)
/* 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;
/* Hash table that keeps a reference to objects the user wants to protect from
garbage collection. */
static SCM scm_protects;
/* Hooks. */
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;
SCM scm_after_gc_hook;
static SCM after_gc_async_cell;
static void
scm_gc_event_listener_init (void *data, size_t heap_size)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_init (&scm_listener->stats, heap_size);
}
static void
scm_gc_event_listener_requesting_stop (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_requesting_stop (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_waiting_for_stop (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_waiting_for_stop (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_mutators_stopped (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_mutators_stopped (&scm_listener->stats);
scm_c_hook_run (&scm_before_gc_c_hook, NULL);
scm_listener->last_allocation_counter = gc_allocation_counter (the_gc_heap);
}
static inline void
scm_gc_event_listener_prepare_gc (void *data, enum gc_collection_kind kind)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_prepare_gc (&scm_listener->stats, kind);
}
static inline void
scm_gc_event_listener_roots_traced (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_roots_traced (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_heap_traced (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_heap_traced (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_ephemerons_traced (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_ephemerons_traced (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_finalizers_traced (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_finalizers_traced (&scm_listener->stats);
}
static inline void
scm_gc_event_listener_restarting_mutators (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_restarting_mutators (&scm_listener->stats);
/* Run any C hooks. The mutator is not yet let go, so we can't
allocate here. */
scm_c_hook_run (&scm_after_gc_c_hook, NULL);
/* If there are Scheme hooks and we have a current Guile thread,
enqueue those to be run on the current thread. */
scm_thread *t = SCM_I_CURRENT_THREAD;
if (t && scm_is_false (SCM_CDR (after_gc_async_cell)) &&
scm_is_false (scm_hook_empty_p (scm_after_gc_hook)))
{
SCM_SETCDR (after_gc_async_cell, t->pending_asyncs);
t->pending_asyncs = after_gc_async_cell;
}
}
static inline void*
scm_gc_event_listener_mutator_added (void *data)
{
struct scm_gc_event_listener *scm_listener = data;
struct scm_gc_event_listener_mutator *mutator = malloc (sizeof(*mutator));
if (!mutator) abort();
mutator->scm_listener = scm_listener;
mutator->stats = gc_basic_stats_mutator_added (&scm_listener->stats);
return mutator;
}
static inline void
scm_gc_event_listener_mutator_cause_gc (void *mutator_data)
{
struct scm_gc_event_listener_mutator *mutator = mutator_data;
gc_basic_stats_mutator_cause_gc (mutator->stats);
}
static inline void
scm_gc_event_listener_mutator_stopping (void *mutator_data)
{
struct scm_gc_event_listener_mutator *mutator = mutator_data;
gc_basic_stats_mutator_stopping (mutator->stats);
}
static inline void
scm_gc_event_listener_mutator_stopped (void *mutator_data)
{
struct scm_gc_event_listener_mutator *mutator = mutator_data;
gc_basic_stats_mutator_stopped (mutator->stats);
}
static inline void
scm_gc_event_listener_mutator_restarted (void *mutator_data)
{
struct scm_gc_event_listener_mutator *mutator = mutator_data;
gc_basic_stats_mutator_restarted (mutator->stats);
}
static inline void
scm_gc_event_listener_mutator_removed (void *mutator_data)
{
struct scm_gc_event_listener_mutator *mutator = mutator_data;
gc_basic_stats_mutator_removed (mutator->stats);
free(mutator);
}
static inline void
scm_gc_event_listener_heap_resized (void *data, size_t size)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_heap_resized (&scm_listener->stats, size);
}
static inline void
scm_gc_event_listener_live_data_size (void *data, size_t size)
{
struct scm_gc_event_listener *scm_listener = data;
gc_basic_stats_live_data_size (&scm_listener->stats, size);
}
#define SCM_GC_EVENT_LISTENER \
((struct gc_event_listener) { \
scm_gc_event_listener_init, \
scm_gc_event_listener_requesting_stop, \
scm_gc_event_listener_waiting_for_stop, \
scm_gc_event_listener_mutators_stopped, \
scm_gc_event_listener_prepare_gc, \
scm_gc_event_listener_roots_traced, \
scm_gc_event_listener_heap_traced, \
scm_gc_event_listener_ephemerons_traced, \
scm_gc_event_listener_finalizers_traced, \
scm_gc_event_listener_restarting_mutators, \
scm_gc_event_listener_mutator_added, \
scm_gc_event_listener_mutator_cause_gc, \
scm_gc_event_listener_mutator_stopping, \
scm_gc_event_listener_mutator_stopped, \
scm_gc_event_listener_mutator_restarted, \
scm_gc_event_listener_mutator_removed, \
scm_gc_event_listener_heap_resized, \
scm_gc_event_listener_live_data_size, \
})
static int needs_gc_after_nonlocal_exit = 0;
/* Arrange to throw an exception on failed allocations. */
static void*
scm_oom_fn (size_t nbytes)
{
needs_gc_after_nonlocal_exit = 1;
scm_report_out_of_memory ();
return NULL;
}
/* Called within GC -- cannot allocate GC memory. */
static void
scm_gc_warn_proc (char *fmt, GC_word arg)
{
/* avoid scm_current_warning_port() b/c the GC lock is already taken
and the fluid ref might require it */
fprintf (stderr, fmt, arg);
}
void
scm_gc_after_nonlocal_exit (void)
{
if (needs_gc_after_nonlocal_exit)
{
needs_gc_after_nonlocal_exit = 0;
GC_gcollect_and_unmap ();
}
}
/* GC Statistics Keeping
*/
unsigned long scm_gc_ports_collected = 0;
static unsigned long protected_obj_count = 0;
SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
SCM_SYMBOL (sym_heap_size, "heap-size");
SCM_SYMBOL (sym_heap_free_size, "heap-free-size");
SCM_SYMBOL (sym_heap_total_allocated, "heap-total-allocated");
SCM_SYMBOL (sym_heap_allocated_since_gc, "heap-allocated-since-gc");
SCM_SYMBOL (sym_protected_objects, "protected-objects");
SCM_SYMBOL (sym_times, "gc-times");
static struct scm_gc_event_listener
get_gc_event_listener_data (void)
{
struct scm_gc_event_listener data;
do
{
memcpy (&data, &the_gc_event_listener, sizeof data);
atomic_thread_fence (memory_order_seq_cst);
}
while (memcmp (&data, &the_gc_event_listener, sizeof data));
return data;
}
/* {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
{
struct scm_gc_event_listener data = get_gc_event_listener_data ();
double scale_usecs = scm_c_time_units_per_second / 1e6;
uint64_t gc_time_taken = data.stats.cpu_collector_usec * scale_usecs;
size_t heap_size = data.stats.heap_size;
uint64_t total_bytes = gc_allocation_counter (the_gc_heap);
uint64_t bytes_since_gc = total_bytes - data.last_allocation_counter;
ssize_t free_bytes = heap_size - data.stats.live_data_size;
free_bytes -= bytes_since_gc;
if (free_bytes < 0)
free_bytes = 0;
uint64_t gc_times =
data.stats.major_collection_count + data.stats.minor_collection_count;
return scm_list_n
(scm_cons (sym_gc_time_taken, scm_from_uint64 (gc_time_taken)),
scm_cons (sym_heap_size, scm_from_size_t (heap_size)),
scm_cons (sym_heap_free_size, scm_from_ssize_t (free_bytes)),
scm_cons (sym_heap_total_allocated, scm_from_uint64 (total_bytes)),
scm_cons (sym_heap_allocated_since_gc, scm_from_uint64 (bytes_since_gc)),
scm_cons (sym_protected_objects, scm_from_ulong (protected_obj_count)),
scm_cons (sym_times, scm_from_size_t (gc_times)),
SCM_UNDEFINED);
}
#undef FUNC_NAME
SCM_DEFINE (scm_gc_dump, "gc-dump", 0, 0, 0,
(void),
"Dump information about the garbage collector's internal data "
"structures and memory usage to the standard output.")
#define FUNC_NAME s_scm_gc_dump
{
struct scm_gc_event_listener data = get_gc_event_listener_data ();
gc_basic_stats_print (&data.stats, stdout);
return SCM_UNSPECIFIED;
}
#undef FUNC_NAME
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_from_ulong (SCM_UNPACK (obj));
}
#undef FUNC_NAME
SCM_DEFINE (scm_gc_disable, "gc-disable", 0, 0, 0,
(),
"Disables the garbage collector. Nested calls are permitted. "
"GC is re-enabled once @code{gc-enable} has been called the "
"same number of times @code{gc-disable} was called.")
#define FUNC_NAME s_scm_gc_disable
{
GC_disable ();
return SCM_UNSPECIFIED;
}
#undef FUNC_NAME
SCM_DEFINE (scm_gc_enable, "gc-enable", 0, 0, 0,
(),
"Enables the garbage collector.")
#define FUNC_NAME s_scm_gc_enable
{
GC_enable ();
return SCM_UNSPECIFIED;
}
#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_i_gc ("call");
/* If you're calling scm_gc(), you probably want synchronous
finalization. */
GC_invoke_finalizers ();
return SCM_UNSPECIFIED;
}
#undef FUNC_NAME
void
scm_i_gc (const char *what)
{
GC_gcollect ();
}
/* {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_i_string_chars (str);
* some_function (chars);
* scm_remember_upto_here_1 (str); // str will be alive up to this point.
*/
/* Remove any macro versions of these while defining the functions.
Functions are always included in the library, for upward binary
compatibility and in case combinations of GCC and non-GCC are used. */
#undef scm_remember_upto_here_1
#undef scm_remember_upto_here_2
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)
{
return (scm_gc_protect_object (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.
*/
static scm_i_pthread_mutex_t gc_protect_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
SCM
scm_gc_protect_object (SCM obj)
{
SCM handle;
scm_dynwind_begin (0);
scm_i_dynwind_pthread_mutex_lock (&gc_protect_lock);
handle = scm_hashq_create_handle_x (scm_protects, obj, scm_from_int (0));
SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
protected_obj_count ++;
scm_dynwind_end ();
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;
scm_dynwind_begin (0);
scm_i_dynwind_pthread_mutex_lock (&gc_protect_lock);
handle = scm_hashq_get_handle (scm_protects, obj);
if (scm_is_false (handle))
{
fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
abort ();
}
else
{
SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
if (scm_is_eq (count, scm_from_int (0)))
scm_hashq_remove_x (scm_protects, obj);
else
SCM_SETCDR (handle, count);
}
protected_obj_count --;
scm_dynwind_end ();
return obj;
}
void
scm_gc_register_root (SCM *p)
{
/* Nothing. */
}
void
scm_gc_unregister_root (SCM *p)
{
/* Nothing. */
}
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);
}
struct gc_mutator *
scm_storage_prehistory (struct gc_stack_addr base)
{
struct gc_options *options = gc_allocate_options ();
gc_options_set_int(options, GC_OPTION_HEAP_SIZE_POLICY, GC_HEAP_SIZE_GROWABLE);
gc_options_set_size(options, GC_OPTION_HEAP_SIZE, DEFAULT_INITIAL_HEAP_SIZE);
char *options_str = getenv ("GUILE_GC_OPTIONS");
if (options_str && !gc_options_parse_and_set_many (options, options_str))
fprintf (stderr, "warning: failed to set GC options from string: \"%s\"\n",
options_str);
#if SCM_I_GSC_USE_NULL_THREADS
/* If we have disabled threads in Guile, ensure that the GC doesn't
spawn any marker threads. */
gc_options_set_int (options, GC_OPTION_PARALLELISM, 1)
#endif
struct gc_mutator *mut;
if (!gc_init (options, base, &the_gc_heap, &mut,
SCM_GC_EVENT_LISTENER, &the_gc_event_listener))
{
fprintf (stderr, "Failed to initialize GC\n");
abort ();
}
/* Sanity check. */
if (!GC_is_visible (&scm_protects))
abort ();
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);
return mut;
}
void
scm_init_gc_protect_object ()
{
scm_protects = scm_c_make_hash_table (31);
}
static size_t bytes_until_gc = DEFAULT_INITIAL_HEAP_SIZE;
static scm_i_pthread_mutex_t bytes_until_gc_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
void
scm_gc_register_allocation (size_t size)
{
scm_i_pthread_mutex_lock (&bytes_until_gc_lock);
if (size > bytes_until_gc)
{
bytes_until_gc = GC_get_heap_size ();
scm_i_pthread_mutex_unlock (&bytes_until_gc_lock);
GC_gcollect ();
}
else
{
bytes_until_gc -= size;
scm_i_pthread_mutex_unlock (&bytes_until_gc_lock);
}
}
static SCM
after_gc_async_thunk (void)
{
/* Fun, no? Hook-run *and* run-hook? */
scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
return SCM_UNSPECIFIED;
}
void
scm_init_gc ()
{
/* `GC_INIT ()' was invoked in `scm_storage_prehistory ()'. */
scm_after_gc_hook = scm_make_hook (SCM_INUM0);
scm_c_define ("after-gc-hook", scm_after_gc_hook);
/* When the async is to run, the cdr of the gc_async pair gets set to
the asyncs queue of the current thread. */
after_gc_async_cell = scm_cons (scm_c_make_gsubr ("%after-gc-thunk", 0, 0, 0,
after_gc_async_thunk),
SCM_BOOL_F);
GC_set_oom_fn (scm_oom_fn);
GC_set_warn_proc (scm_gc_warn_proc);
#include "gc.x"
}
void
scm_gc_sweep (void)
#define FUNC_NAME "scm_gc_sweep"
{
/* FIXME */
fprintf (stderr, "%s: doing nothing\n", FUNC_NAME);
}
#undef FUNC_NAME
|