* scheme-modules.texi: split "Scheme and modules" into
[bpt/guile.git] / libguile / gc.c
CommitLineData
c709de7f 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002 Free Software Foundation, Inc.
a00c95d9 2 *
0f2d19dd
JB
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.
a00c95d9 7 *
0f2d19dd
JB
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.
a00c95d9 12 *
0f2d19dd
JB
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
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
0f2d19dd
JB
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.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
37ddcaf6
MD
43/* #define DEBUGINFO */
44
56495472
ML
45/* SECTION: This code is compiled once.
46 */
47
48#ifndef MARK_DEPENDENCIES
49
0f2d19dd
JB
50\f
51#include <stdio.h>
e6e2e95a 52#include <errno.h>
783e7774 53#include <string.h>
e6e2e95a 54
d9189652
RB
55#ifdef __ia64__
56#include <ucontext.h>
bb1180ef 57extern unsigned long * __libc_ia64_register_backing_store_base;
d9189652
RB
58#endif
59
a0599745 60#include "libguile/_scm.h"
0a7a7445 61#include "libguile/eval.h"
a0599745
MD
62#include "libguile/stime.h"
63#include "libguile/stackchk.h"
64#include "libguile/struct.h"
a0599745
MD
65#include "libguile/smob.h"
66#include "libguile/unif.h"
67#include "libguile/async.h"
68#include "libguile/ports.h"
69#include "libguile/root.h"
70#include "libguile/strings.h"
71#include "libguile/vectors.h"
801cb5e7 72#include "libguile/weaks.h"
686765af 73#include "libguile/hashtab.h"
ecf470a2 74#include "libguile/tags.h"
a0599745
MD
75
76#include "libguile/validate.h"
1be6b49c 77#include "libguile/deprecation.h"
a0599745 78#include "libguile/gc.h"
fce59c93 79
bc9d9bb2 80#ifdef GUILE_DEBUG_MALLOC
a0599745 81#include "libguile/debug-malloc.h"
bc9d9bb2
MD
82#endif
83
0f2d19dd 84#ifdef HAVE_MALLOC_H
95b88819 85#include <malloc.h>
0f2d19dd
JB
86#endif
87
88#ifdef HAVE_UNISTD_H
95b88819 89#include <unistd.h>
0f2d19dd
JB
90#endif
91
1cc91f1b
JB
92#ifdef __STDC__
93#include <stdarg.h>
94#define var_start(x, y) va_start(x, y)
95#else
96#include <varargs.h>
97#define var_start(x, y) va_start(x)
98#endif
99
0f2d19dd 100\f
406c7d90 101
8c494e99
DH
102#define CELL_P(x) (SCM_ITAG3 (x) == scm_tc3_cons)
103
406c7d90
DH
104unsigned int scm_gc_running_p = 0;
105
106\f
107
108#if (SCM_DEBUG_CELL_ACCESSES == 1)
109
eae33935 110/* Set this to != 0 if every cell that is accessed shall be checked:
61045190
DH
111 */
112unsigned int scm_debug_cell_accesses_p = 1;
406c7d90 113
e81d98ec
DH
114/* Set this to 0 if no additional gc's shall be performed, otherwise set it to
115 * the number of cell accesses after which a gc shall be called.
116 */
117static unsigned int debug_cells_gc_interval = 0;
118
406c7d90
DH
119
120/* Assert that the given object is a valid reference to a valid cell. This
121 * test involves to determine whether the object is a cell pointer, whether
122 * this pointer actually points into a heap segment and whether the cell
e81d98ec
DH
123 * pointed to is not a free cell. Further, additional garbage collections may
124 * get executed after a user defined number of cell accesses. This helps to
125 * find places in the C code where references are dropped for extremely short
126 * periods.
406c7d90
DH
127 */
128void
129scm_assert_cell_valid (SCM cell)
130{
61045190
DH
131 static unsigned int already_running = 0;
132
133 if (scm_debug_cell_accesses_p && !already_running)
406c7d90 134 {
61045190 135 already_running = 1; /* set to avoid recursion */
406c7d90 136
9d47a1e6 137 if (!scm_cellp (cell))
406c7d90 138 {
1be6b49c
ML
139 fprintf (stderr, "scm_assert_cell_valid: Not a cell object: %lux\n",
140 (unsigned long) SCM_UNPACK (cell));
406c7d90
DH
141 abort ();
142 }
143 else if (!scm_gc_running_p)
144 {
145 /* Dirk::FIXME:: During garbage collection there occur references to
146 free cells. This is allright during conservative marking, but
147 should not happen otherwise (I think). The case of free cells
148 accessed during conservative marking is handled in function
149 scm_mark_locations. However, there still occur accesses to free
150 cells during gc. I don't understand why this happens. If it is
151 a bug and gets fixed, the following test should also work while
152 gc is running.
153 */
154 if (SCM_FREE_CELL_P (cell))
155 {
1be6b49c
ML
156 fprintf (stderr, "scm_assert_cell_valid: Accessing free cell: %lux\n",
157 (unsigned long) SCM_UNPACK (cell));
406c7d90
DH
158 abort ();
159 }
e81d98ec
DH
160
161 /* If desired, perform additional garbage collections after a user
162 * defined number of cell accesses.
163 */
164 if (debug_cells_gc_interval)
165 {
166 static unsigned int counter = 0;
eae33935 167
e81d98ec
DH
168 if (counter != 0)
169 {
170 --counter;
171 }
172 else
173 {
174 counter = debug_cells_gc_interval;
175 scm_igc ("scm_assert_cell_valid");
176 }
177 }
406c7d90 178 }
61045190 179 already_running = 0; /* re-enable */
406c7d90
DH
180 }
181}
182
183
184SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
185 (SCM flag),
1e6808ea 186 "If @var{flag} is @code{#f}, cell access checking is disabled.\n"
e81d98ec
DH
187 "If @var{flag} is @code{#t}, cell access checking is enabled,\n"
188 "but no additional calls to garbage collection are issued.\n"
189 "If @var{flag} is a number, cell access checking is enabled,\n"
190 "with an additional garbage collection after the given\n"
191 "number of cell accesses.\n"
1e6808ea
MG
192 "This procedure only exists when the compile-time flag\n"
193 "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.")
406c7d90
DH
194#define FUNC_NAME s_scm_set_debug_cell_accesses_x
195{
196 if (SCM_FALSEP (flag)) {
197 scm_debug_cell_accesses_p = 0;
198 } else if (SCM_EQ_P (flag, SCM_BOOL_T)) {
e81d98ec
DH
199 debug_cells_gc_interval = 0;
200 scm_debug_cell_accesses_p = 1;
201 } else if (SCM_INUMP (flag)) {
202 long int f = SCM_INUM (flag);
203 if (f <= 0) SCM_OUT_OF_RANGE (1, flag);
204 debug_cells_gc_interval = f;
406c7d90
DH
205 scm_debug_cell_accesses_p = 1;
206 } else {
207 SCM_WRONG_TYPE_ARG (1, flag);
208 }
209 return SCM_UNSPECIFIED;
210}
211#undef FUNC_NAME
212
213#endif /* SCM_DEBUG_CELL_ACCESSES == 1 */
214
215\f
216
0f2d19dd 217/* {heap tuning parameters}
a00c95d9 218 *
0f2d19dd
JB
219 * These are parameters for controlling memory allocation. The heap
220 * is the area out of which scm_cons, and object headers are allocated.
221 *
222 * Each heap cell is 8 bytes on a 32 bit machine and 16 bytes on a
223 * 64 bit machine. The units of the _SIZE parameters are bytes.
224 * Cons pairs and object headers occupy one heap cell.
225 *
226 * SCM_INIT_HEAP_SIZE is the initial size of heap. If this much heap is
227 * allocated initially the heap will grow by half its current size
228 * each subsequent time more heap is needed.
229 *
230 * If SCM_INIT_HEAP_SIZE heap cannot be allocated initially, SCM_HEAP_SEG_SIZE
231 * will be used, and the heap will grow by SCM_HEAP_SEG_SIZE when more
1be6b49c 232 * heap is needed. SCM_HEAP_SEG_SIZE must fit into type size_t. This code
0f2d19dd 233 * is in scm_init_storage() and alloc_some_heap() in sys.c
a00c95d9 234 *
0f2d19dd
JB
235 * If SCM_INIT_HEAP_SIZE can be allocated initially, the heap will grow by
236 * SCM_EXPHEAP(scm_heap_size) when more heap is needed.
237 *
238 * SCM_MIN_HEAP_SEG_SIZE is minimum size of heap to accept when more heap
239 * is needed.
240 *
241 * INIT_MALLOC_LIMIT is the initial amount of malloc usage which will
a00c95d9 242 * trigger a GC.
6064dcc6 243 *
4c9419ac
MV
244 * SCM_MTRIGGER_HYSTERESIS is the amount of malloc storage that must
245 * be reclaimed by a GC triggered by a malloc. If less than this is
6064dcc6
MV
246 * reclaimed, the trigger threshold is raised. [I don't know what a
247 * good value is. I arbitrarily chose 1/10 of the INIT_MALLOC_LIMIT to
a00c95d9 248 * work around a oscillation that caused almost constant GC.]
0f2d19dd
JB
249 */
250
8fef55a8
MD
251/*
252 * Heap size 45000 and 40% min yield gives quick startup and no extra
253 * heap allocation. Having higher values on min yield may lead to
254 * large heaps, especially if code behaviour is varying its
255 * maximum consumption between different freelists.
256 */
d6884e63
ML
257
258#define SCM_DATA_CELLS2CARDS(n) (((n) + SCM_GC_CARD_N_DATA_CELLS - 1) / SCM_GC_CARD_N_DATA_CELLS)
259#define SCM_CARDS_PER_CLUSTER SCM_DATA_CELLS2CARDS (2000L)
260#define SCM_CLUSTER_SIZE_1 (SCM_CARDS_PER_CLUSTER * SCM_GC_CARD_N_DATA_CELLS)
1be6b49c 261size_t scm_default_init_heap_size_1 = (((SCM_DATA_CELLS2CARDS (45000L) + SCM_CARDS_PER_CLUSTER - 1)
d6884e63 262 / SCM_CARDS_PER_CLUSTER) * SCM_GC_CARD_SIZE);
aeacfc8f 263int scm_default_min_yield_1 = 40;
4c48ba06 264
d6884e63 265#define SCM_CLUSTER_SIZE_2 (SCM_CARDS_PER_CLUSTER * (SCM_GC_CARD_N_DATA_CELLS / 2))
1be6b49c 266size_t scm_default_init_heap_size_2 = (((SCM_DATA_CELLS2CARDS (2500L * 2) + SCM_CARDS_PER_CLUSTER - 1)
d6884e63 267 / SCM_CARDS_PER_CLUSTER) * SCM_GC_CARD_SIZE);
4c48ba06
MD
268/* The following value may seem large, but note that if we get to GC at
269 * all, this means that we have a numerically intensive application
270 */
aeacfc8f 271int scm_default_min_yield_2 = 40;
4c48ba06 272
1be6b49c 273size_t scm_default_max_segment_size = 2097000L;/* a little less (adm) than 2 Mb */
4c48ba06 274
d6884e63 275#define SCM_MIN_HEAP_SEG_SIZE (8 * SCM_GC_CARD_SIZE)
0f2d19dd
JB
276#ifdef _QC
277# define SCM_HEAP_SEG_SIZE 32768L
278#else
279# ifdef sequent
228a24ef 280# define SCM_HEAP_SEG_SIZE (7000L * sizeof (scm_t_cell))
0f2d19dd 281# else
228a24ef 282# define SCM_HEAP_SEG_SIZE (16384L * sizeof (scm_t_cell))
0f2d19dd
JB
283# endif
284#endif
4c48ba06 285/* Make heap grow with factor 1.5 */
4a4c9785 286#define SCM_EXPHEAP(scm_heap_size) (scm_heap_size / 2)
0f2d19dd 287#define SCM_INIT_MALLOC_LIMIT 100000
6064dcc6 288#define SCM_MTRIGGER_HYSTERESIS (SCM_INIT_MALLOC_LIMIT/10)
0f2d19dd 289
228a24ef 290/* CELL_UP and CELL_DN are used by scm_init_heap_seg to find (scm_t_cell * span)
d6884e63 291 aligned inner bounds for allocated storage */
0f2d19dd
JB
292
293#ifdef PROT386
294/*in 386 protected mode we must only adjust the offset */
a00c95d9
ML
295# define CELL_UP(p, span) MK_FP(FP_SEG(p), ~(8*(span)-1)&(FP_OFF(p)+8*(span)-1))
296# define CELL_DN(p, span) MK_FP(FP_SEG(p), ~(8*(span)-1)&FP_OFF(p))
0f2d19dd
JB
297#else
298# ifdef _UNICOS
c014a02e
ML
299# define CELL_UP(p, span) (SCM_CELLPTR)(~(span) & ((long)(p)+(span)))
300# define CELL_DN(p, span) (SCM_CELLPTR)(~(span) & (long)(p))
0f2d19dd 301# else
228a24ef
DH
302# define CELL_UP(p, span) (SCM_CELLPTR)(~(sizeof(scm_t_cell)*(span)-1L) & ((long)(p)+sizeof(scm_t_cell)*(span)-1L))
303# define CELL_DN(p, span) (SCM_CELLPTR)(~(sizeof(scm_t_cell)*(span)-1L) & (long)(p))
0f2d19dd
JB
304# endif /* UNICOS */
305#endif /* PROT386 */
306
228a24ef 307#define DOUBLECELL_ALIGNED_P(x) (((2 * sizeof (scm_t_cell) - 1) & SCM_UNPACK (x)) == 0)
ecf470a2 308
d6884e63
ML
309#define ALIGNMENT_SLACK(freelist) (SCM_GC_CARD_SIZE - 1)
310#define CLUSTER_SIZE_IN_BYTES(freelist) \
311 (((freelist)->cluster_size / (SCM_GC_CARD_N_DATA_CELLS / (freelist)->span)) * SCM_GC_CARD_SIZE)
0f2d19dd
JB
312
313\f
945fec60 314/* scm_freelists
0f2d19dd 315 */
945fec60 316
92c2555f 317typedef struct scm_t_freelist {
a00c95d9
ML
318 /* collected cells */
319 SCM cells;
a00c95d9
ML
320 /* number of cells left to collect before cluster is full */
321 unsigned int left_to_collect;
b37fe1c5
MD
322 /* number of clusters which have been allocated */
323 unsigned int clusters_allocated;
8fef55a8
MD
324 /* a list of freelists, each of size cluster_size,
325 * except the last one which may be shorter
326 */
a00c95d9
ML
327 SCM clusters;
328 SCM *clustertail;
b37fe1c5 329 /* this is the number of objects in each cluster, including the spine cell */
1be6b49c 330 unsigned int cluster_size;
8fef55a8 331 /* indicates that we should grow heap instead of GC:ing
a00c95d9
ML
332 */
333 int grow_heap_p;
8fef55a8 334 /* minimum yield on this list in order not to grow the heap
a00c95d9 335 */
8fef55a8
MD
336 long min_yield;
337 /* defines min_yield as percent of total heap size
a00c95d9 338 */
8fef55a8 339 int min_yield_fraction;
a00c95d9
ML
340 /* number of cells per object on this list */
341 int span;
342 /* number of collected cells during last GC */
c014a02e 343 unsigned long collected;
1811ebce 344 /* number of collected cells during penultimate GC */
c014a02e 345 unsigned long collected_1;
a00c95d9
ML
346 /* total number of cells in heap segments
347 * belonging to this list.
348 */
c014a02e 349 unsigned long heap_size;
92c2555f 350} scm_t_freelist;
a00c95d9 351
4a4c9785 352SCM scm_freelist = SCM_EOL;
92c2555f 353scm_t_freelist scm_master_freelist = {
729dbac3 354 SCM_EOL, 0, 0, SCM_EOL, 0, SCM_CLUSTER_SIZE_1, 0, 0, 0, 1, 0, 0, 0
4a4c9785
MD
355};
356SCM scm_freelist2 = SCM_EOL;
92c2555f 357scm_t_freelist scm_master_freelist2 = {
729dbac3 358 SCM_EOL, 0, 0, SCM_EOL, 0, SCM_CLUSTER_SIZE_2, 0, 0, 0, 2, 0, 0, 0
4a4c9785 359};
0f2d19dd
JB
360
361/* scm_mtrigger
539b08a4 362 * is the number of bytes of malloc allocation needed to trigger gc.
0f2d19dd 363 */
c014a02e 364unsigned long scm_mtrigger;
0f2d19dd 365
0f2d19dd
JB
366/* scm_gc_heap_lock
367 * If set, don't expand the heap. Set only during gc, during which no allocation
368 * is supposed to take place anyway.
369 */
370int scm_gc_heap_lock = 0;
371
372/* GC Blocking
373 * Don't pause for collection if this is set -- just
374 * expand the heap.
375 */
0f2d19dd
JB
376int scm_block_gc = 1;
377
0f2d19dd
JB
378/* During collection, this accumulates objects holding
379 * weak references.
380 */
ab4bef85 381SCM scm_weak_vectors;
0f2d19dd 382
7445e0e8
MD
383/* During collection, this accumulates structures which are to be freed.
384 */
385SCM scm_structs_to_free;
386
0f2d19dd
JB
387/* GC Statistics Keeping
388 */
c014a02e
ML
389unsigned long scm_cells_allocated = 0;
390unsigned long scm_mallocated = 0;
391unsigned long scm_gc_cells_collected;
392unsigned long scm_gc_yield;
393static unsigned long scm_gc_yield_1 = 0; /* previous GC yield */
394unsigned long scm_gc_malloc_collected;
395unsigned long scm_gc_ports_collected;
0f2d19dd 396unsigned long scm_gc_time_taken = 0;
c014a02e
ML
397static unsigned long t_before_gc;
398static unsigned long t_before_sweep;
c9b0d4b0
ML
399unsigned long scm_gc_mark_time_taken = 0;
400unsigned long scm_gc_sweep_time_taken = 0;
c014a02e
ML
401unsigned long scm_gc_times = 0;
402unsigned long scm_gc_cells_swept = 0;
c9b0d4b0
ML
403double scm_gc_cells_marked_acc = 0.;
404double scm_gc_cells_swept_acc = 0.;
0f2d19dd
JB
405
406SCM_SYMBOL (sym_cells_allocated, "cells-allocated");
407SCM_SYMBOL (sym_heap_size, "cell-heap-size");
408SCM_SYMBOL (sym_mallocated, "bytes-malloced");
409SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold");
410SCM_SYMBOL (sym_heap_segments, "cell-heap-segments");
411SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
c9b0d4b0
ML
412SCM_SYMBOL (sym_gc_mark_time_taken, "gc-mark-time-taken");
413SCM_SYMBOL (sym_gc_sweep_time_taken, "gc-sweep-time-taken");
414SCM_SYMBOL (sym_times, "gc-times");
415SCM_SYMBOL (sym_cells_marked, "cells-marked");
416SCM_SYMBOL (sym_cells_swept, "cells-swept");
0f2d19dd 417
92c2555f 418typedef struct scm_t_heap_seg_data
0f2d19dd 419{
cf2d30f6
JB
420 /* lower and upper bounds of the segment */
421 SCM_CELLPTR bounds[2];
422
423 /* address of the head-of-freelist pointer for this segment's cells.
424 All segments usually point to the same one, scm_freelist. */
92c2555f 425 scm_t_freelist *freelist;
cf2d30f6 426
fe517a7d 427 /* number of cells per object in this segment */
945fec60 428 int span;
92c2555f 429} scm_t_heap_seg_data;
0f2d19dd
JB
430
431
432
92c2555f 433static size_t init_heap_seg (SCM_CELLPTR, size_t, scm_t_freelist *);
b6efc951
DH
434
435typedef enum { return_on_error, abort_on_error } policy_on_error;
92c2555f 436static void alloc_some_heap (scm_t_freelist *, policy_on_error);
0f2d19dd
JB
437
438
d6884e63
ML
439#define SCM_HEAP_SIZE \
440 (scm_master_freelist.heap_size + scm_master_freelist2.heap_size)
441#define SCM_MAX(A, B) ((A) > (B) ? (A) : (B))
442
443#define BVEC_GROW_SIZE 256
444#define BVEC_GROW_SIZE_IN_LIMBS (SCM_GC_CARD_BVEC_SIZE_IN_LIMBS * BVEC_GROW_SIZE)
92c2555f 445#define BVEC_GROW_SIZE_IN_BYTES (BVEC_GROW_SIZE_IN_LIMBS * sizeof (scm_t_c_bvec_limb))
d6884e63
ML
446
447/* mark space allocation */
448
92c2555f 449typedef struct scm_t_mark_space
d6884e63 450{
92c2555f
MV
451 scm_t_c_bvec_limb *bvec_space;
452 struct scm_t_mark_space *next;
453} scm_t_mark_space;
d6884e63 454
92c2555f
MV
455static scm_t_mark_space *current_mark_space;
456static scm_t_mark_space **mark_space_ptr;
1be6b49c 457static ptrdiff_t current_mark_space_offset;
92c2555f 458static scm_t_mark_space *mark_space_head;
d6884e63 459
92c2555f 460static scm_t_c_bvec_limb *
d6884e63 461get_bvec ()
db4b4ca6 462#define FUNC_NAME "get_bvec"
d6884e63 463{
92c2555f 464 scm_t_c_bvec_limb *res;
d6884e63
ML
465
466 if (!current_mark_space)
467 {
92c2555f 468 SCM_SYSCALL (current_mark_space = (scm_t_mark_space *) malloc (sizeof (scm_t_mark_space)));
d6884e63 469 if (!current_mark_space)
db4b4ca6 470 SCM_MISC_ERROR ("could not grow heap", SCM_EOL);
d6884e63
ML
471
472 current_mark_space->bvec_space = NULL;
473 current_mark_space->next = NULL;
474
475 *mark_space_ptr = current_mark_space;
476 mark_space_ptr = &(current_mark_space->next);
477
478 return get_bvec ();
479 }
480
481 if (!(current_mark_space->bvec_space))
482 {
483 SCM_SYSCALL (current_mark_space->bvec_space =
92c2555f 484 (scm_t_c_bvec_limb *) calloc (BVEC_GROW_SIZE_IN_BYTES, 1));
d6884e63 485 if (!(current_mark_space->bvec_space))
db4b4ca6 486 SCM_MISC_ERROR ("could not grow heap", SCM_EOL);
d6884e63
ML
487
488 current_mark_space_offset = 0;
489
490 return get_bvec ();
491 }
492
493 if (current_mark_space_offset == BVEC_GROW_SIZE_IN_LIMBS)
494 {
495 current_mark_space = NULL;
496
497 return get_bvec ();
498 }
499
500 res = current_mark_space->bvec_space + current_mark_space_offset;
501 current_mark_space_offset += SCM_GC_CARD_BVEC_SIZE_IN_LIMBS;
502
503 return res;
504}
db4b4ca6
DH
505#undef FUNC_NAME
506
d6884e63
ML
507
508static void
509clear_mark_space ()
510{
92c2555f 511 scm_t_mark_space *ms;
d6884e63
ML
512
513 for (ms = mark_space_head; ms; ms = ms->next)
514 memset (ms->bvec_space, 0, BVEC_GROW_SIZE_IN_BYTES);
515}
516
517
0f2d19dd 518\f
cf2d30f6
JB
519/* Debugging functions. */
520
bb2c57fa 521#if defined (GUILE_DEBUG) || defined (GUILE_DEBUG_FREELIST)
cf2d30f6 522
eae33935
TTN
523static long int heap_segment (SCM obj); /* forw decl: non-debugging func */
524
8ded62a3 525static void
92c2555f 526map_free_list (scm_t_freelist *master, SCM freelist)
8ded62a3 527{
c014a02e 528 long last_seg = -1, count = 0;
8ded62a3 529 SCM f;
a00c95d9 530
3f5d82cd 531 for (f = freelist; !SCM_NULLP (f); f = SCM_FREE_CELL_CDR (f))
8ded62a3 532 {
592996c9 533 long int this_seg = heap_segment (f);
8ded62a3 534
592996c9
DH
535 if (this_seg == -1)
536 {
eae33935 537 fprintf (stderr,
592996c9 538 "map_free_list: can't find segment containing cell %lux\n",
eae33935 539 (unsigned long int) SCM_UNPACK (f));
592996c9
DH
540 abort ();
541 }
542 else if (this_seg != last_seg)
8ded62a3
MD
543 {
544 if (last_seg != -1)
1be6b49c
ML
545 fprintf (stderr, " %5ld %d-cells in segment %ld\n",
546 (long) count, master->span, (long) last_seg);
8ded62a3
MD
547 last_seg = this_seg;
548 count = 0;
549 }
550 count++;
551 }
552 if (last_seg != -1)
1be6b49c
ML
553 fprintf (stderr, " %5ld %d-cells in segment %ld\n",
554 (long) count, master->span, (long) last_seg);
8ded62a3 555}
cf2d30f6 556
a00c95d9 557SCM_DEFINE (scm_map_free_list, "map-free-list", 0, 0, 0,
acb0a19c 558 (),
5352393c
MG
559 "Print debugging information about the free-list.\n"
560 "@code{map-free-list} is only included in\n"
561 "@code{--enable-guile-debug} builds of Guile.")
acb0a19c
MD
562#define FUNC_NAME s_scm_map_free_list
563{
592996c9
DH
564 size_t i;
565
1be6b49c
ML
566 fprintf (stderr, "%ld segments total (%d:%ld",
567 (long) scm_n_heap_segs,
4c48ba06 568 scm_heap_table[0].span,
1be6b49c 569 (long) (scm_heap_table[0].bounds[1] - scm_heap_table[0].bounds[0]));
592996c9
DH
570
571 for (i = 1; i != scm_n_heap_segs; i++)
1be6b49c 572 fprintf (stderr, ", %d:%ld",
4c48ba06 573 scm_heap_table[i].span,
1be6b49c 574 (long) (scm_heap_table[i].bounds[1] - scm_heap_table[i].bounds[0]));
4c48ba06 575 fprintf (stderr, ")\n");
8ded62a3
MD
576 map_free_list (&scm_master_freelist, scm_freelist);
577 map_free_list (&scm_master_freelist2, scm_freelist2);
cf2d30f6
JB
578 fflush (stderr);
579
580 return SCM_UNSPECIFIED;
581}
1bbd0b84 582#undef FUNC_NAME
cf2d30f6 583
c014a02e
ML
584static long last_cluster;
585static long last_size;
4c48ba06 586
c014a02e
ML
587static long
588free_list_length (char *title, long i, SCM freelist)
5384bc5b
MD
589{
590 SCM ls;
c014a02e 591 long n = 0;
3f5d82cd
DH
592 for (ls = freelist; !SCM_NULLP (ls); ls = SCM_FREE_CELL_CDR (ls))
593 if (SCM_FREE_CELL_P (ls))
5384bc5b
MD
594 ++n;
595 else
596 {
1be6b49c 597 fprintf (stderr, "bad cell in %s at position %ld\n", title, (long) n);
5384bc5b
MD
598 abort ();
599 }
4c48ba06
MD
600 if (n != last_size)
601 {
602 if (i > 0)
603 {
604 if (last_cluster == i - 1)
1be6b49c 605 fprintf (stderr, "\t%ld\n", (long) last_size);
4c48ba06 606 else
1be6b49c 607 fprintf (stderr, "-%ld\t%ld\n", (long) (i - 1), (long) last_size);
4c48ba06
MD
608 }
609 if (i >= 0)
1be6b49c 610 fprintf (stderr, "%s %ld", title, (long) i);
4c48ba06 611 else
1be6b49c 612 fprintf (stderr, "%s\t%ld\n", title, (long) n);
4c48ba06
MD
613 last_cluster = i;
614 last_size = n;
615 }
5384bc5b
MD
616 return n;
617}
618
619static void
92c2555f 620free_list_lengths (char *title, scm_t_freelist *master, SCM freelist)
5384bc5b
MD
621{
622 SCM clusters;
c014a02e 623 long i = 0, len, n = 0;
5384bc5b
MD
624 fprintf (stderr, "%s\n\n", title);
625 n += free_list_length ("free list", -1, freelist);
626 for (clusters = master->clusters;
627 SCM_NNULLP (clusters);
628 clusters = SCM_CDR (clusters))
4c48ba06
MD
629 {
630 len = free_list_length ("cluster", i++, SCM_CAR (clusters));
631 n += len;
632 }
633 if (last_cluster == i - 1)
1be6b49c 634 fprintf (stderr, "\t%ld\n", (long) last_size);
4c48ba06 635 else
1be6b49c
ML
636 fprintf (stderr, "-%ld\t%ld\n", (long) (i - 1), (long) last_size);
637 fprintf (stderr, "\ntotal %ld objects\n\n", (long) n);
5384bc5b
MD
638}
639
a00c95d9 640SCM_DEFINE (scm_free_list_length, "free-list-length", 0, 0, 0,
5384bc5b 641 (),
5352393c
MG
642 "Print debugging information about the free-list.\n"
643 "@code{free-list-length} is only included in\n"
644 "@code{--enable-guile-debug} builds of Guile.")
5384bc5b
MD
645#define FUNC_NAME s_scm_free_list_length
646{
b37fe1c5
MD
647 free_list_lengths ("1-cells", &scm_master_freelist, scm_freelist);
648 free_list_lengths ("2-cells", &scm_master_freelist2, scm_freelist2);
12e5fb3b 649 return SCM_UNSPECIFIED;
5384bc5b
MD
650}
651#undef FUNC_NAME
652
eae33935 653#endif /* defined (GUILE_DEBUG) || defined (GUILE_DEBUG_FREELIST) */
bb2c57fa
MD
654
655#ifdef GUILE_DEBUG_FREELIST
cf2d30f6 656
d3dd80ab
MG
657/* Non-zero if freelist debugging is in effect. Set this via
658 `gc-set-debug-check-freelist!'. */
659static int scm_debug_check_freelist = 0;
660
cf2d30f6 661/* Number of calls to SCM_NEWCELL since startup. */
c014a02e
ML
662static unsigned long scm_newcell_count;
663static unsigned long scm_newcell2_count;
cf2d30f6
JB
664
665/* Search freelist for anything that isn't marked as a free cell.
666 Abort if we find something. */
8ded62a3
MD
667static void
668scm_check_freelist (SCM freelist)
669{
670 SCM f;
c014a02e 671 long i = 0;
8ded62a3 672
3f5d82cd
DH
673 for (f = freelist; !SCM_NULLP (f); f = SCM_FREE_CELL_CDR (f), i++)
674 if (!SCM_FREE_CELL_P (f))
8ded62a3 675 {
1be6b49c
ML
676 fprintf (stderr, "Bad cell in freelist on newcell %lu: %lu'th elt\n",
677 (long) scm_newcell_count, (long) i);
8ded62a3
MD
678 abort ();
679 }
680}
cf2d30f6 681
a00c95d9 682SCM_DEFINE (scm_gc_set_debug_check_freelist_x, "gc-set-debug-check-freelist!", 1, 0, 0,
1bbd0b84 683 (SCM flag),
1e6808ea
MG
684 "If @var{flag} is @code{#t}, check the freelist for consistency\n"
685 "on each cell allocation. This procedure only exists when the\n"
686 "@code{GUILE_DEBUG_FREELIST} compile-time flag was selected.")
1bbd0b84 687#define FUNC_NAME s_scm_gc_set_debug_check_freelist_x
25748c78 688{
d6884e63
ML
689 /* [cmm] I did a double-take when I read this code the first time.
690 well, FWIW. */
945fec60 691 SCM_VALIDATE_BOOL_COPY (1, flag, scm_debug_check_freelist);
25748c78
GB
692 return SCM_UNSPECIFIED;
693}
1bbd0b84 694#undef FUNC_NAME
25748c78 695
fca7547b 696#endif /* GUILE_DEBUG_FREELIST */
cf2d30f6
JB
697
698\f
0f2d19dd 699
c014a02e 700static unsigned long
92c2555f 701master_cells_allocated (scm_t_freelist *master)
b37fe1c5 702{
d6884e63 703 /* the '- 1' below is to ignore the cluster spine cells. */
c014a02e 704 long objects = master->clusters_allocated * (master->cluster_size - 1);
b37fe1c5
MD
705 if (SCM_NULLP (master->clusters))
706 objects -= master->left_to_collect;
707 return master->span * objects;
708}
709
c014a02e 710static unsigned long
b37fe1c5
MD
711freelist_length (SCM freelist)
712{
c014a02e 713 long n;
3f5d82cd 714 for (n = 0; !SCM_NULLP (freelist); freelist = SCM_FREE_CELL_CDR (freelist))
b37fe1c5
MD
715 ++n;
716 return n;
717}
718
c014a02e 719static unsigned long
b37fe1c5
MD
720compute_cells_allocated ()
721{
722 return (scm_cells_allocated
723 + master_cells_allocated (&scm_master_freelist)
724 + master_cells_allocated (&scm_master_freelist2)
725 - scm_master_freelist.span * freelist_length (scm_freelist)
726 - scm_master_freelist2.span * freelist_length (scm_freelist2));
727}
b37fe1c5 728
0f2d19dd
JB
729/* {Scheme Interface to GC}
730 */
731
a00c95d9 732SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0,
1bbd0b84 733 (),
1e6808ea
MG
734 "Return an association list of statistics about Guile's current\n"
735 "use of storage.")
1bbd0b84 736#define FUNC_NAME s_scm_gc_stats
0f2d19dd 737{
c014a02e
ML
738 long i;
739 long n;
0f2d19dd 740 SCM heap_segs;
c014a02e
ML
741 unsigned long int local_scm_mtrigger;
742 unsigned long int local_scm_mallocated;
743 unsigned long int local_scm_heap_size;
744 unsigned long int local_scm_cells_allocated;
745 unsigned long int local_scm_gc_time_taken;
746 unsigned long int local_scm_gc_times;
747 unsigned long int local_scm_gc_mark_time_taken;
748 unsigned long int local_scm_gc_sweep_time_taken;
c9b0d4b0
ML
749 double local_scm_gc_cells_swept;
750 double local_scm_gc_cells_marked;
0f2d19dd
JB
751 SCM answer;
752
753 SCM_DEFER_INTS;
939794ce
DH
754
755 ++scm_block_gc;
756
0f2d19dd
JB
757 retry:
758 heap_segs = SCM_EOL;
759 n = scm_n_heap_segs;
760 for (i = scm_n_heap_segs; i--; )
c014a02e
ML
761 heap_segs = scm_cons (scm_cons (scm_ulong2num ((unsigned long)scm_heap_table[i].bounds[1]),
762 scm_ulong2num ((unsigned long)scm_heap_table[i].bounds[0])),
0f2d19dd
JB
763 heap_segs);
764 if (scm_n_heap_segs != n)
765 goto retry;
939794ce
DH
766
767 --scm_block_gc;
0f2d19dd 768
7febb4a2
MD
769 /* Below, we cons to produce the resulting list. We want a snapshot of
770 * the heap situation before consing.
771 */
0f2d19dd
JB
772 local_scm_mtrigger = scm_mtrigger;
773 local_scm_mallocated = scm_mallocated;
b37fe1c5 774 local_scm_heap_size = SCM_HEAP_SIZE;
b37fe1c5 775 local_scm_cells_allocated = compute_cells_allocated ();
0f2d19dd 776 local_scm_gc_time_taken = scm_gc_time_taken;
c9b0d4b0
ML
777 local_scm_gc_mark_time_taken = scm_gc_mark_time_taken;
778 local_scm_gc_sweep_time_taken = scm_gc_sweep_time_taken;
779 local_scm_gc_times = scm_gc_times;
780 local_scm_gc_cells_swept = scm_gc_cells_swept_acc;
781 local_scm_gc_cells_marked = scm_gc_cells_marked_acc;
0f2d19dd 782
1afff620
KN
783 answer = scm_list_n (scm_cons (sym_gc_time_taken, scm_ulong2num (local_scm_gc_time_taken)),
784 scm_cons (sym_cells_allocated, scm_ulong2num (local_scm_cells_allocated)),
785 scm_cons (sym_heap_size, scm_ulong2num (local_scm_heap_size)),
786 scm_cons (sym_mallocated, scm_ulong2num (local_scm_mallocated)),
787 scm_cons (sym_mtrigger, scm_ulong2num (local_scm_mtrigger)),
788 scm_cons (sym_times, scm_ulong2num (local_scm_gc_times)),
789 scm_cons (sym_gc_mark_time_taken, scm_ulong2num (local_scm_gc_mark_time_taken)),
790 scm_cons (sym_gc_sweep_time_taken, scm_ulong2num (local_scm_gc_sweep_time_taken)),
791 scm_cons (sym_cells_marked, scm_i_dbl2big (local_scm_gc_cells_marked)),
792 scm_cons (sym_cells_swept, scm_i_dbl2big (local_scm_gc_cells_swept)),
793 scm_cons (sym_heap_segments, heap_segs),
794 SCM_UNDEFINED);
0f2d19dd
JB
795 SCM_ALLOW_INTS;
796 return answer;
797}
1bbd0b84 798#undef FUNC_NAME
0f2d19dd
JB
799
800
c9b0d4b0 801static void
e81d98ec 802gc_start_stats (const char *what SCM_UNUSED)
0f2d19dd 803{
c9b0d4b0
ML
804 t_before_gc = scm_c_get_internal_run_time ();
805 scm_gc_cells_swept = 0;
b37fe1c5 806 scm_gc_cells_collected = 0;
37ddcaf6 807 scm_gc_yield_1 = scm_gc_yield;
8b0d194f
MD
808 scm_gc_yield = (scm_cells_allocated
809 + master_cells_allocated (&scm_master_freelist)
810 + master_cells_allocated (&scm_master_freelist2));
0f2d19dd
JB
811 scm_gc_malloc_collected = 0;
812 scm_gc_ports_collected = 0;
813}
814
939794ce 815
c9b0d4b0
ML
816static void
817gc_end_stats ()
0f2d19dd 818{
c9b0d4b0
ML
819 unsigned long t = scm_c_get_internal_run_time ();
820 scm_gc_time_taken += (t - t_before_gc);
821 scm_gc_sweep_time_taken += (t - t_before_sweep);
822 ++scm_gc_times;
823
824 scm_gc_cells_marked_acc += scm_gc_cells_swept - scm_gc_cells_collected;
825 scm_gc_cells_swept_acc += scm_gc_cells_swept;
0f2d19dd
JB
826}
827
828
a00c95d9 829SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0,
1bbd0b84 830 (SCM obj),
b380b885
MD
831 "Return an integer that for the lifetime of @var{obj} is uniquely\n"
832 "returned by this function for @var{obj}")
1bbd0b84 833#define FUNC_NAME s_scm_object_address
0f2d19dd 834{
c014a02e 835 return scm_ulong2num ((unsigned long) SCM_UNPACK (obj));
0f2d19dd 836}
1bbd0b84 837#undef FUNC_NAME
0f2d19dd
JB
838
839
a00c95d9 840SCM_DEFINE (scm_gc, "gc", 0, 0, 0,
1bbd0b84 841 (),
b380b885
MD
842 "Scans all of SCM objects and reclaims for further use those that are\n"
843 "no longer accessible.")
1bbd0b84 844#define FUNC_NAME s_scm_gc
0f2d19dd
JB
845{
846 SCM_DEFER_INTS;
847 scm_igc ("call");
848 SCM_ALLOW_INTS;
849 return SCM_UNSPECIFIED;
850}
1bbd0b84 851#undef FUNC_NAME
0f2d19dd
JB
852
853
854\f
855/* {C Interface For When GC is Triggered}
856 */
857
b37fe1c5 858static void
92c2555f 859adjust_min_yield (scm_t_freelist *freelist)
b37fe1c5 860{
8fef55a8 861 /* min yield is adjusted upwards so that next predicted total yield
bda1446c 862 * (allocated cells actually freed by GC) becomes
8fef55a8
MD
863 * `min_yield_fraction' of total heap size. Note, however, that
864 * the absolute value of min_yield will correspond to `collected'
bda1446c 865 * on one master (the one which currently is triggering GC).
b37fe1c5 866 *
bda1446c
MD
867 * The reason why we look at total yield instead of cells collected
868 * on one list is that we want to take other freelists into account.
869 * On this freelist, we know that (local) yield = collected cells,
870 * but that's probably not the case on the other lists.
b37fe1c5
MD
871 *
872 * (We might consider computing a better prediction, for example
873 * by computing an average over multiple GC:s.)
874 */
8fef55a8 875 if (freelist->min_yield_fraction)
b37fe1c5 876 {
37ddcaf6 877 /* Pick largest of last two yields. */
1be6b49c 878 long delta = ((SCM_HEAP_SIZE * freelist->min_yield_fraction / 100)
8fef55a8 879 - (long) SCM_MAX (scm_gc_yield_1, scm_gc_yield));
b37fe1c5 880#ifdef DEBUGINFO
1be6b49c
ML
881 fprintf (stderr, " after GC = %lu, delta = %ld\n",
882 (long) scm_cells_allocated,
883 (long) delta);
b37fe1c5
MD
884#endif
885 if (delta > 0)
8fef55a8 886 freelist->min_yield += delta;
b37fe1c5
MD
887 }
888}
889
b6efc951 890
4a4c9785 891/* When we get POSIX threads support, the master will be global and
4c48ba06
MD
892 * common while the freelist will be individual for each thread.
893 */
4a4c9785
MD
894
895SCM
92c2555f 896scm_gc_for_newcell (scm_t_freelist *master, SCM *freelist)
4a4c9785
MD
897{
898 SCM cell;
899 ++scm_ints_disabled;
4c48ba06
MD
900 do
901 {
c7387918 902 if (SCM_NULLP (master->clusters))
4c48ba06 903 {
150c200b 904 if (master->grow_heap_p || scm_block_gc)
4c48ba06 905 {
b6efc951
DH
906 /* In order to reduce gc frequency, try to allocate a new heap
907 * segment first, even if gc might find some free cells. If we
908 * can't obtain a new heap segment, we will try gc later.
909 */
4c48ba06 910 master->grow_heap_p = 0;
b6efc951 911 alloc_some_heap (master, return_on_error);
4c48ba06 912 }
b6efc951 913 if (SCM_NULLP (master->clusters))
b37fe1c5 914 {
b6efc951
DH
915 /* The heap was not grown, either because it wasn't scheduled to
916 * grow, or because there was not enough memory available. In
917 * both cases we have to try gc to get some free cells.
918 */
37ddcaf6 919#ifdef DEBUGINFO
1be6b49c
ML
920 fprintf (stderr, "allocated = %lu, ",
921 (long) (scm_cells_allocated
37ddcaf6 922 + master_cells_allocated (&scm_master_freelist)
c014a02e 923 + master_cells_allocated (&scm_master_freelist2)));
37ddcaf6 924#endif
b37fe1c5 925 scm_igc ("cells");
8fef55a8 926 adjust_min_yield (master);
c7387918
DH
927 if (SCM_NULLP (master->clusters))
928 {
b6efc951
DH
929 /* gc could not free any cells. Now, we _must_ allocate a
930 * new heap segment, because there is no other possibility
931 * to provide a new cell for the caller.
932 */
933 alloc_some_heap (master, abort_on_error);
c7387918 934 }
b37fe1c5 935 }
4c48ba06
MD
936 }
937 cell = SCM_CAR (master->clusters);
938 master->clusters = SCM_CDR (master->clusters);
b37fe1c5 939 ++master->clusters_allocated;
4c48ba06
MD
940 }
941 while (SCM_NULLP (cell));
d6884e63
ML
942
943#ifdef GUILE_DEBUG_FREELIST
944 scm_check_freelist (cell);
945#endif
946
4a4c9785 947 --scm_ints_disabled;
3f5d82cd 948 *freelist = SCM_FREE_CELL_CDR (cell);
4a4c9785
MD
949 return cell;
950}
951
b6efc951 952
4c48ba06
MD
953#if 0
954/* This is a support routine which can be used to reserve a cluster
955 * for some special use, such as debugging. It won't be useful until
956 * free cells are preserved between garbage collections.
957 */
958
959void
92c2555f 960scm_alloc_cluster (scm_t_freelist *master)
4c48ba06
MD
961{
962 SCM freelist, cell;
963 cell = scm_gc_for_newcell (master, &freelist);
964 SCM_SETCDR (cell, freelist);
965 return cell;
966}
967#endif
968
801cb5e7 969
92c2555f
MV
970scm_t_c_hook scm_before_gc_c_hook;
971scm_t_c_hook scm_before_mark_c_hook;
972scm_t_c_hook scm_before_sweep_c_hook;
973scm_t_c_hook scm_after_sweep_c_hook;
974scm_t_c_hook scm_after_gc_c_hook;
801cb5e7 975
d9189652
RB
976#ifdef __ia64__
977# define SCM_MARK_BACKING_STORE() do { \
978 ucontext_t ctx; \
979 SCM_STACKITEM * top, * bot; \
980 getcontext (&ctx); \
981 scm_mark_locations ((SCM_STACKITEM *) &ctx.uc_mcontext, \
982 ((size_t) (sizeof (SCM_STACKITEM) - 1 + sizeof ctx.uc_mcontext) \
983 / sizeof (SCM_STACKITEM))); \
984 bot = (SCM_STACKITEM *) __libc_ia64_register_backing_store_base; \
985 top = (SCM_STACKITEM *) ctx.uc_mcontext.sc_ar_bsp; \
986 scm_mark_locations (bot, top - bot); } while (0)
987#else
988# define SCM_MARK_BACKING_STORE()
989#endif
b6efc951 990
0f2d19dd 991void
1bbd0b84 992scm_igc (const char *what)
0f2d19dd 993{
c014a02e 994 long j;
0f2d19dd 995
406c7d90 996 ++scm_gc_running_p;
801cb5e7 997 scm_c_hook_run (&scm_before_gc_c_hook, 0);
4c48ba06
MD
998#ifdef DEBUGINFO
999 fprintf (stderr,
1000 SCM_NULLP (scm_freelist)
1001 ? "*"
1002 : (SCM_NULLP (scm_freelist2) ? "o" : "m"));
1003#endif
42db06f0 1004 /* During the critical section, only the current thread may run. */
216eedfc 1005 SCM_CRITICAL_SECTION_START;
42db06f0 1006
ab4bef85
JB
1007 if (!scm_stack_base || scm_block_gc)
1008 {
406c7d90 1009 --scm_gc_running_p;
ab4bef85
JB
1010 return;
1011 }
1012
c9b0d4b0
ML
1013 gc_start_stats (what);
1014
ab4bef85
JB
1015 if (scm_gc_heap_lock)
1016 /* We've invoked the collector while a GC is already in progress.
1017 That should never happen. */
1018 abort ();
0f2d19dd
JB
1019
1020 ++scm_gc_heap_lock;
ab4bef85 1021
801cb5e7
MD
1022 scm_c_hook_run (&scm_before_mark_c_hook, 0);
1023
d6884e63
ML
1024 clear_mark_space ();
1025
42db06f0 1026#ifndef USE_THREADS
a00c95d9 1027
1b9be268 1028 /* Mark objects on the C stack. */
0f2d19dd
JB
1029 SCM_FLUSH_REGISTER_WINDOWS;
1030 /* This assumes that all registers are saved into the jmp_buf */
1031 setjmp (scm_save_regs_gc_mark);
1032 scm_mark_locations ((SCM_STACKITEM *) scm_save_regs_gc_mark,
1be6b49c 1033 ( (size_t) (sizeof (SCM_STACKITEM) - 1 +
ce4a361d
JB
1034 sizeof scm_save_regs_gc_mark)
1035 / sizeof (SCM_STACKITEM)));
0f2d19dd
JB
1036
1037 {
6b1b030e 1038 unsigned long stack_len = scm_stack_size (scm_stack_base);
0f2d19dd 1039#ifdef SCM_STACK_GROWS_UP
6ba93e5e 1040 scm_mark_locations (scm_stack_base, stack_len);
0f2d19dd 1041#else
6ba93e5e 1042 scm_mark_locations (scm_stack_base - stack_len, stack_len);
0f2d19dd
JB
1043#endif
1044 }
d9189652 1045 SCM_MARK_BACKING_STORE();
0f2d19dd 1046
42db06f0
MD
1047#else /* USE_THREADS */
1048
1049 /* Mark every thread's stack and registers */
945fec60 1050 scm_threads_mark_stacks ();
42db06f0
MD
1051
1052#endif /* USE_THREADS */
0f2d19dd 1053
0f2d19dd
JB
1054 j = SCM_NUM_PROTECTS;
1055 while (j--)
1056 scm_gc_mark (scm_sys_protects[j]);
1057
6b1b030e
ML
1058 /* mark the registered roots */
1059 {
592996c9 1060 size_t i;
6b1b030e
ML
1061 for (i = 0; i < SCM_VECTOR_LENGTH (scm_gc_registered_roots); ++i) {
1062 SCM l = SCM_VELTS (scm_gc_registered_roots)[i];
592996c9 1063 for (; !SCM_NULLP (l); l = SCM_CDR (l)) {
6b1b030e
ML
1064 SCM *p = (SCM *) (scm_num2long (SCM_CAAR (l), 0, NULL));
1065 scm_gc_mark (*p);
1066 }
1067 }
1068 }
1069
9de33deb
MD
1070 /* FIXME: we should have a means to register C functions to be run
1071 * in different phases of GC
a00c95d9 1072 */
9de33deb 1073 scm_mark_subr_table ();
a00c95d9 1074
42db06f0
MD
1075#ifndef USE_THREADS
1076 scm_gc_mark (scm_root->handle);
1077#endif
a00c95d9 1078
c9b0d4b0
ML
1079 t_before_sweep = scm_c_get_internal_run_time ();
1080 scm_gc_mark_time_taken += (t_before_sweep - t_before_gc);
1081
801cb5e7 1082 scm_c_hook_run (&scm_before_sweep_c_hook, 0);
0493cd89 1083
0f2d19dd
JB
1084 scm_gc_sweep ();
1085
801cb5e7
MD
1086 scm_c_hook_run (&scm_after_sweep_c_hook, 0);
1087
0f2d19dd 1088 --scm_gc_heap_lock;
c9b0d4b0 1089 gc_end_stats ();
42db06f0 1090
216eedfc 1091 SCM_CRITICAL_SECTION_END;
801cb5e7 1092 scm_c_hook_run (&scm_after_gc_c_hook, 0);
406c7d90 1093 --scm_gc_running_p;
0f2d19dd
JB
1094}
1095
1096\f
939794ce 1097
a00c95d9 1098/* {Mark/Sweep}
0f2d19dd
JB
1099 */
1100
56495472
ML
1101#define MARK scm_gc_mark
1102#define FNAME "scm_gc_mark"
0f2d19dd 1103
56495472 1104#endif /*!MARK_DEPENDENCIES*/
0f2d19dd
JB
1105
1106/* Mark an object precisely.
1107 */
a00c95d9 1108void
56495472
ML
1109MARK (SCM p)
1110#define FUNC_NAME FNAME
0f2d19dd 1111{
c014a02e 1112 register long i;
0f2d19dd 1113 register SCM ptr;
92c2555f 1114 scm_t_bits cell_type;
0f2d19dd 1115
56495472
ML
1116#ifndef MARK_DEPENDENCIES
1117# define RECURSE scm_gc_mark
1118#else
1119 /* go through the usual marking, but not for self-cycles. */
1120# define RECURSE(x) do { if ((x) != p) scm_gc_mark (x); } while (0)
eae33935 1121#endif
0f2d19dd
JB
1122 ptr = p;
1123
56495472
ML
1124#ifdef MARK_DEPENDENCIES
1125 goto gc_mark_loop_first_time;
1126#endif
1127
86d31dfe
MV
1128/* A simple hack for debugging. Chose the second branch to get a
1129 meaningful backtrace for crashes inside the GC.
1130*/
1131#if 1
1132#define goto_gc_mark_loop goto gc_mark_loop
1133#define goto_gc_mark_nimp goto gc_mark_nimp
1134#else
1135#define goto_gc_mark_loop RECURSE(ptr); return
1136#define goto_gc_mark_nimp RECURSE(ptr); return
1137#endif
1138
0f2d19dd
JB
1139gc_mark_loop:
1140 if (SCM_IMP (ptr))
1141 return;
1142
1143gc_mark_nimp:
eae33935 1144
56495472 1145#ifdef MARK_DEPENDENCIES
0209177b 1146 if (SCM_EQ_P (ptr, p))
56495472
ML
1147 return;
1148
1149 scm_gc_mark (ptr);
0209177b 1150 return;
56495472
ML
1151
1152gc_mark_loop_first_time:
1153#endif
9a6976cd 1154
61045190 1155#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
9a6976cd 1156 /* We are in debug mode. Check the ptr exhaustively. */
61045190 1157 if (!scm_cellp (ptr))
db4b4ca6 1158 SCM_MISC_ERROR ("rogue pointer in heap", SCM_EOL);
9a6976cd
DH
1159#else
1160 /* In non-debug mode, do at least some cheap testing. */
8c494e99 1161 if (!CELL_P (ptr))
9a6976cd 1162 SCM_MISC_ERROR ("rogue pointer in heap", SCM_EOL);
d6884e63
ML
1163#endif
1164
56495472 1165#ifndef MARK_DEPENDENCIES
eae33935 1166
d6884e63
ML
1167 if (SCM_GCMARKP (ptr))
1168 return;
eae33935 1169
d6884e63
ML
1170 SCM_SETGCMARK (ptr);
1171
56495472
ML
1172#endif
1173
61045190
DH
1174 cell_type = SCM_GC_CELL_TYPE (ptr);
1175 switch (SCM_ITAG7 (cell_type))
0f2d19dd
JB
1176 {
1177 case scm_tcs_cons_nimcar:
d6884e63 1178 if (SCM_IMP (SCM_CDR (ptr)))
0f2d19dd
JB
1179 {
1180 ptr = SCM_CAR (ptr);
86d31dfe 1181 goto_gc_mark_nimp;
0f2d19dd 1182 }
56495472 1183 RECURSE (SCM_CAR (ptr));
d6884e63 1184 ptr = SCM_CDR (ptr);
86d31dfe 1185 goto_gc_mark_nimp;
0f2d19dd 1186 case scm_tcs_cons_imcar:
d6884e63 1187 ptr = SCM_CDR (ptr);
86d31dfe 1188 goto_gc_mark_loop;
e641afaf 1189 case scm_tc7_pws:
22a52da1
DH
1190 RECURSE (SCM_SETTER (ptr));
1191 ptr = SCM_PROCEDURE (ptr);
86d31dfe 1192 goto_gc_mark_loop;
904a077d 1193 case scm_tcs_struct:
0f2d19dd 1194 {
904a077d
MV
1195 /* XXX - use less explicit code. */
1196 scm_t_bits word0 = SCM_CELL_WORD_0 (ptr) - scm_tc3_struct;
1197 scm_t_bits * vtable_data = (scm_t_bits *) word0;
1198 SCM layout = SCM_PACK (vtable_data [scm_vtable_index_layout]);
1199 long len = SCM_SYMBOL_LENGTH (layout);
1200 char * fields_desc = SCM_SYMBOL_CHARS (layout);
1201 scm_t_bits * struct_data = (scm_t_bits *) SCM_STRUCT_DATA (ptr);
1202
1203 if (vtable_data[scm_struct_i_flags] & SCM_STRUCTF_ENTITY)
0f2d19dd 1204 {
904a077d
MV
1205 RECURSE (SCM_PACK (struct_data[scm_struct_i_procedure]));
1206 RECURSE (SCM_PACK (struct_data[scm_struct_i_setter]));
0f2d19dd 1207 }
904a077d
MV
1208 if (len)
1209 {
1210 long x;
eae33935 1211
904a077d
MV
1212 for (x = 0; x < len - 2; x += 2, ++struct_data)
1213 if (fields_desc[x] == 'p')
1214 RECURSE (SCM_PACK (*struct_data));
1215 if (fields_desc[x] == 'p')
1216 {
1217 if (SCM_LAYOUT_TAILP (fields_desc[x + 1]))
1218 for (x = *struct_data++; x; --x, ++struct_data)
1219 RECURSE (SCM_PACK (*struct_data));
1220 else
1221 RECURSE (SCM_PACK (*struct_data));
1222 }
1223 }
1224 /* mark vtable */
1225 ptr = SCM_PACK (vtable_data [scm_vtable_index_vtable]);
1226 goto_gc_mark_loop;
0f2d19dd
JB
1227 }
1228 break;
1229 case scm_tcs_closures:
22a52da1 1230 if (SCM_IMP (SCM_ENV (ptr)))
0f2d19dd
JB
1231 {
1232 ptr = SCM_CLOSCAR (ptr);
86d31dfe 1233 goto_gc_mark_nimp;
0f2d19dd 1234 }
56495472 1235 RECURSE (SCM_CLOSCAR (ptr));
22a52da1 1236 ptr = SCM_ENV (ptr);
86d31dfe 1237 goto_gc_mark_nimp;
0f2d19dd 1238 case scm_tc7_vector:
b5c2579a
DH
1239 i = SCM_VECTOR_LENGTH (ptr);
1240 if (i == 0)
1241 break;
1242 while (--i > 0)
1243 if (SCM_NIMP (SCM_VELTS (ptr)[i]))
56495472 1244 RECURSE (SCM_VELTS (ptr)[i]);
b5c2579a 1245 ptr = SCM_VELTS (ptr)[0];
86d31dfe 1246 goto_gc_mark_loop;
0f2d19dd
JB
1247#ifdef CCLO
1248 case scm_tc7_cclo:
362306b9 1249 {
1be6b49c
ML
1250 size_t i = SCM_CCLO_LENGTH (ptr);
1251 size_t j;
362306b9
DH
1252 for (j = 1; j != i; ++j)
1253 {
1254 SCM obj = SCM_CCLO_REF (ptr, j);
1255 if (!SCM_IMP (obj))
56495472 1256 RECURSE (obj);
362306b9
DH
1257 }
1258 ptr = SCM_CCLO_REF (ptr, 0);
86d31dfe 1259 goto_gc_mark_loop;
362306b9 1260 }
b5c2579a 1261#endif
afe5177e 1262#ifdef HAVE_ARRAYS
0f2d19dd
JB
1263 case scm_tc7_bvect:
1264 case scm_tc7_byvect:
1265 case scm_tc7_ivect:
1266 case scm_tc7_uvect:
1267 case scm_tc7_fvect:
1268 case scm_tc7_dvect:
1269 case scm_tc7_cvect:
1270 case scm_tc7_svect:
5c11cc9d 1271#ifdef HAVE_LONG_LONGS
0f2d19dd
JB
1272 case scm_tc7_llvect:
1273#endif
afe5177e 1274#endif
0f2d19dd 1275 case scm_tc7_string:
0f2d19dd
JB
1276 break;
1277
0f2d19dd 1278 case scm_tc7_wvect:
592996c9 1279 SCM_SET_WVECT_GC_CHAIN (ptr, scm_weak_vectors);
ab4bef85 1280 scm_weak_vectors = ptr;
0f2d19dd
JB
1281 if (SCM_IS_WHVEC_ANY (ptr))
1282 {
c014a02e
ML
1283 long x;
1284 long len;
0f2d19dd
JB
1285 int weak_keys;
1286 int weak_values;
1287
b5c2579a 1288 len = SCM_VECTOR_LENGTH (ptr);
0f2d19dd
JB
1289 weak_keys = SCM_IS_WHVEC (ptr) || SCM_IS_WHVEC_B (ptr);
1290 weak_values = SCM_IS_WHVEC_V (ptr) || SCM_IS_WHVEC_B (ptr);
a00c95d9 1291
0f2d19dd
JB
1292 for (x = 0; x < len; ++x)
1293 {
1294 SCM alist;
1295 alist = SCM_VELTS (ptr)[x];
46408039
JB
1296
1297 /* mark everything on the alist except the keys or
1298 * values, according to weak_values and weak_keys. */
0b5f3f34 1299 while ( SCM_CONSP (alist)
0f2d19dd 1300 && !SCM_GCMARKP (alist)
0f2d19dd
JB
1301 && SCM_CONSP (SCM_CAR (alist)))
1302 {
1303 SCM kvpair;
1304 SCM next_alist;
1305
1306 kvpair = SCM_CAR (alist);
1307 next_alist = SCM_CDR (alist);
a00c95d9 1308 /*
0f2d19dd
JB
1309 * Do not do this:
1310 * SCM_SETGCMARK (alist);
1311 * SCM_SETGCMARK (kvpair);
1312 *
1313 * It may be that either the key or value is protected by
1314 * an escaped reference to part of the spine of this alist.
1315 * If we mark the spine here, and only mark one or neither of the
1316 * key and value, they may never be properly marked.
1317 * This leads to a horrible situation in which an alist containing
1318 * freelist cells is exported.
1319 *
1320 * So only mark the spines of these arrays last of all marking.
1321 * If somebody confuses us by constructing a weak vector
1322 * with a circular alist then we are hosed, but at least we
1323 * won't prematurely drop table entries.
1324 */
1325 if (!weak_keys)
56495472 1326 RECURSE (SCM_CAR (kvpair));
0f2d19dd 1327 if (!weak_values)
56495472 1328 RECURSE (SCM_CDR (kvpair));
0f2d19dd
JB
1329 alist = next_alist;
1330 }
1331 if (SCM_NIMP (alist))
56495472 1332 RECURSE (alist);
0f2d19dd
JB
1333 }
1334 }
1335 break;
1336
28b06554
DH
1337 case scm_tc7_symbol:
1338 ptr = SCM_PROP_SLOTS (ptr);
86d31dfe 1339 goto_gc_mark_loop;
e5aca4b5
MV
1340 case scm_tc7_variable:
1341 ptr = SCM_CELL_OBJECT_1 (ptr);
1342 goto_gc_mark_loop;
0f2d19dd 1343 case scm_tcs_subrs:
9de33deb 1344 break;
0f2d19dd
JB
1345 case scm_tc7_port:
1346 i = SCM_PTOBNUM (ptr);
7a7f7c53 1347#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1348 if (!(i < scm_numptob))
7a7f7c53
DH
1349 SCM_MISC_ERROR ("undefined port type", SCM_EOL);
1350#endif
ebf7394e 1351 if (SCM_PTAB_ENTRY(ptr))
56495472 1352 RECURSE (SCM_FILENAME (ptr));
dc53f026
JB
1353 if (scm_ptobs[i].mark)
1354 {
1355 ptr = (scm_ptobs[i].mark) (ptr);
86d31dfe 1356 goto_gc_mark_loop;
dc53f026
JB
1357 }
1358 else
1359 return;
0f2d19dd
JB
1360 break;
1361 case scm_tc7_smob:
d6884e63 1362 switch (SCM_TYP16 (ptr))
0f2d19dd
JB
1363 { /* should be faster than going through scm_smobs */
1364 case scm_tc_free_cell:
592996c9
DH
1365 /* We have detected a free cell. This can happen if non-object data
1366 * on the C stack points into guile's heap and is scanned during
1367 * conservative marking. */
592996c9 1368 break;
acb0a19c
MD
1369 case scm_tc16_big:
1370 case scm_tc16_real:
1371 case scm_tc16_complex:
0f2d19dd
JB
1372 break;
1373 default:
1374 i = SCM_SMOBNUM (ptr);
7a7f7c53 1375#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1376 if (!(i < scm_numsmob))
7a7f7c53
DH
1377 SCM_MISC_ERROR ("undefined smob type", SCM_EOL);
1378#endif
dc53f026
JB
1379 if (scm_smobs[i].mark)
1380 {
1381 ptr = (scm_smobs[i].mark) (ptr);
86d31dfe 1382 goto_gc_mark_loop;
dc53f026
JB
1383 }
1384 else
1385 return;
0f2d19dd
JB
1386 }
1387 break;
1388 default:
acf4331f 1389 SCM_MISC_ERROR ("unknown type", SCM_EOL);
0f2d19dd 1390 }
0209177b 1391#undef RECURSE
0f2d19dd 1392}
acf4331f 1393#undef FUNC_NAME
0f2d19dd 1394
56495472
ML
1395#ifndef MARK_DEPENDENCIES
1396
1397#undef MARK
56495472
ML
1398#undef FNAME
1399
1400/* And here we define `scm_gc_mark_dependencies', by including this
1401 * same file in itself.
1402 */
1403#define MARK scm_gc_mark_dependencies
1404#define FNAME "scm_gc_mark_dependencies"
1405#define MARK_DEPENDENCIES
1406#include "gc.c"
1407#undef MARK_DEPENDENCIES
1408#undef MARK
56495472
ML
1409#undef FNAME
1410
0f2d19dd 1411
592996c9
DH
1412/* Determine whether the given value does actually represent a cell in some
1413 * heap segment. If this is the case, the number of the heap segment is
1414 * returned. Otherwise, -1 is returned. Binary search is used in order to
1415 * determine the heap segment that contains the cell.*/
662c5539
DH
1416/* FIXME: To be used within scm_mark_locations and scm_cellp this function
1417 * should be an inline function. */
592996c9
DH
1418static long int
1419heap_segment (SCM obj)
0f2d19dd 1420{
8c494e99 1421 if (!CELL_P (obj))
592996c9
DH
1422 return -1;
1423 else
c4da09e2 1424 {
592996c9
DH
1425 SCM_CELLPTR ptr = SCM2PTR (obj);
1426 unsigned long int i = 0;
1427 unsigned long int j = scm_n_heap_segs - 1;
1428
1429 if (SCM_PTR_LT (ptr, scm_heap_table[i].bounds[0]))
1430 return -1;
1431 else if (SCM_PTR_LE (scm_heap_table[j].bounds[1], ptr))
1432 return -1;
1433 else
c4da09e2 1434 {
592996c9 1435 while (i < j)
c4da09e2 1436 {
592996c9 1437 if (SCM_PTR_LT (ptr, scm_heap_table[i].bounds[1]))
c4da09e2 1438 {
592996c9
DH
1439 break;
1440 }
1441 else if (SCM_PTR_LE (scm_heap_table[j].bounds[0], ptr))
1442 {
1443 i = j;
1444 break;
1445 }
1446 else
1447 {
1448 unsigned long int k = (i + j) / 2;
1449
1450 if (k == i)
1451 return -1;
1452 else if (SCM_PTR_LT (ptr, scm_heap_table[k].bounds[1]))
c4da09e2 1453 {
592996c9
DH
1454 j = k;
1455 ++i;
1456 if (SCM_PTR_LT (ptr, scm_heap_table[i].bounds[0]))
1457 return -1;
1458 }
1459 else if (SCM_PTR_LE (scm_heap_table[k].bounds[0], ptr))
1460 {
1461 i = k;
1462 --j;
1463 if (SCM_PTR_LE (scm_heap_table[j].bounds[1], ptr))
1464 return -1;
c4da09e2 1465 }
c4da09e2
DH
1466 }
1467 }
592996c9
DH
1468
1469 if (!DOUBLECELL_ALIGNED_P (obj) && scm_heap_table[i].span == 2)
1470 return -1;
1471 else if (SCM_GC_IN_CARD_HEADERP (ptr))
1472 return -1;
1473 else
1474 return i;
c4da09e2
DH
1475 }
1476 }
0f2d19dd
JB
1477}
1478
1479
592996c9
DH
1480/* Mark a region conservatively */
1481void
1482scm_mark_locations (SCM_STACKITEM x[], unsigned long n)
1483{
1484 unsigned long m;
1485
1486 for (m = 0; m < n; ++m)
1487 {
1488 SCM obj = * (SCM *) &x[m];
1489 long int segment = heap_segment (obj);
1490 if (segment >= 0)
1491 scm_gc_mark (obj);
1a548472 1492 }
592996c9 1493}
2e11a577 1494
592996c9
DH
1495
1496/* The function scm_cellp determines whether an SCM value can be regarded as a
1497 * pointer to a cell on the heap.
1498 */
1499int
1500scm_cellp (SCM value)
1501{
1502 long int segment = heap_segment (value);
1503 return (segment >= 0);
2e11a577
MD
1504}
1505
1506
4c48ba06 1507static void
92c2555f 1508gc_sweep_freelist_start (scm_t_freelist *freelist)
4c48ba06
MD
1509{
1510 freelist->cells = SCM_EOL;
1511 freelist->left_to_collect = freelist->cluster_size;
b37fe1c5 1512 freelist->clusters_allocated = 0;
4c48ba06
MD
1513 freelist->clusters = SCM_EOL;
1514 freelist->clustertail = &freelist->clusters;
1811ebce 1515 freelist->collected_1 = freelist->collected;
4c48ba06
MD
1516 freelist->collected = 0;
1517}
1518
1519static void
92c2555f 1520gc_sweep_freelist_finish (scm_t_freelist *freelist)
4c48ba06 1521{
c014a02e 1522 long collected;
4c48ba06 1523 *freelist->clustertail = freelist->cells;
3f5d82cd 1524 if (!SCM_NULLP (freelist->cells))
4c48ba06
MD
1525 {
1526 SCM c = freelist->cells;
22a52da1
DH
1527 SCM_SET_CELL_WORD_0 (c, SCM_FREE_CELL_CDR (c));
1528 SCM_SET_CELL_WORD_1 (c, SCM_EOL);
4c48ba06
MD
1529 freelist->collected +=
1530 freelist->span * (freelist->cluster_size - freelist->left_to_collect);
1531 }
b37fe1c5 1532 scm_gc_cells_collected += freelist->collected;
a00c95d9 1533
8fef55a8 1534 /* Although freelist->min_yield is used to test freelist->collected
7dbff8b1 1535 * (which is the local GC yield for freelist), it is adjusted so
8fef55a8 1536 * that *total* yield is freelist->min_yield_fraction of total heap
7dbff8b1
MD
1537 * size. This means that a too low yield is compensated by more
1538 * heap on the list which is currently doing most work, which is
1539 * just what we want.
1540 */
1811ebce 1541 collected = SCM_MAX (freelist->collected_1, freelist->collected);
8fef55a8 1542 freelist->grow_heap_p = (collected < freelist->min_yield);
4c48ba06 1543}
0f2d19dd 1544
d6884e63
ML
1545#define NEXT_DATA_CELL(ptr, span) \
1546 do { \
228a24ef 1547 scm_t_cell *nxt__ = CELL_UP ((char *) (ptr) + 1, (span)); \
d6884e63
ML
1548 (ptr) = (SCM_GC_IN_CARD_HEADERP (nxt__) ? \
1549 CELL_UP (SCM_GC_CELL_CARD (nxt__) + SCM_GC_CARD_N_HEADER_CELLS, span) \
1550 : nxt__); \
1551 } while (0)
1552
a00c95d9 1553void
0f2d19dd 1554scm_gc_sweep ()
acf4331f 1555#define FUNC_NAME "scm_gc_sweep"
0f2d19dd
JB
1556{
1557 register SCM_CELLPTR ptr;
0f2d19dd 1558 register SCM nfreelist;
92c2555f 1559 register scm_t_freelist *freelist;
c014a02e 1560 register unsigned long m;
0f2d19dd 1561 register int span;
592996c9 1562 size_t i;
1be6b49c 1563 size_t seg_size;
0f2d19dd 1564
0f2d19dd 1565 m = 0;
0f2d19dd 1566
4c48ba06
MD
1567 gc_sweep_freelist_start (&scm_master_freelist);
1568 gc_sweep_freelist_start (&scm_master_freelist2);
a00c95d9 1569
cf2d30f6 1570 for (i = 0; i < scm_n_heap_segs; i++)
0f2d19dd 1571 {
c014a02e 1572 register long left_to_collect;
1be6b49c 1573 register size_t j;
15e9d186 1574
cf2d30f6
JB
1575 /* Unmarked cells go onto the front of the freelist this heap
1576 segment points to. Rather than updating the real freelist
1577 pointer as we go along, we accumulate the new head in
1578 nfreelist. Then, if it turns out that the entire segment is
1579 free, we free (i.e., malloc's free) the whole segment, and
1580 simply don't assign nfreelist back into the real freelist. */
4c48ba06
MD
1581 freelist = scm_heap_table[i].freelist;
1582 nfreelist = freelist->cells;
4c48ba06 1583 left_to_collect = freelist->left_to_collect;
945fec60 1584 span = scm_heap_table[i].span;
cf2d30f6 1585
a00c95d9
ML
1586 ptr = CELL_UP (scm_heap_table[i].bounds[0], span);
1587 seg_size = CELL_DN (scm_heap_table[i].bounds[1], span) - ptr;
c9b0d4b0 1588
d6884e63
ML
1589 /* use only data cells in seg_size */
1590 seg_size = (seg_size / SCM_GC_CARD_N_CELLS) * (SCM_GC_CARD_N_DATA_CELLS / span) * span;
1591
c9b0d4b0
ML
1592 scm_gc_cells_swept += seg_size;
1593
0f2d19dd
JB
1594 for (j = seg_size + span; j -= span; ptr += span)
1595 {
d6884e63 1596 SCM scmptr;
96f6f4ae 1597
d6884e63 1598 if (SCM_GC_IN_CARD_HEADERP (ptr))
0f2d19dd 1599 {
d6884e63
ML
1600 SCM_CELLPTR nxt;
1601
1602 /* cheat here */
1603 nxt = ptr;
1604 NEXT_DATA_CELL (nxt, span);
1605 j += span;
1606
1607 ptr = nxt - span;
1608 continue;
1609 }
1610
1611 scmptr = PTR2SCM (ptr);
1612
1613 if (SCM_GCMARKP (scmptr))
1614 continue;
7bb8eac7 1615
d6884e63
ML
1616 switch SCM_TYP7 (scmptr)
1617 {
904a077d 1618 case scm_tcs_struct:
0f2d19dd 1619 {
904a077d
MV
1620 /* Structs need to be freed in a special order.
1621 * This is handled by GC C hooks in struct.c.
c8045e8d 1622 */
904a077d
MV
1623 SCM_SET_STRUCT_GC_CHAIN (scmptr, scm_structs_to_free);
1624 scm_structs_to_free = scmptr;
0f2d19dd 1625 }
904a077d 1626 continue;
0f2d19dd
JB
1627 case scm_tcs_cons_imcar:
1628 case scm_tcs_cons_nimcar:
1629 case scm_tcs_closures:
e641afaf 1630 case scm_tc7_pws:
0f2d19dd
JB
1631 break;
1632 case scm_tc7_wvect:
0f2d19dd 1633 case scm_tc7_vector:
1b9be268 1634 {
c014a02e 1635 unsigned long int length = SCM_VECTOR_LENGTH (scmptr);
1b9be268
DH
1636 if (length > 0)
1637 {
4c9419ac
MV
1638 scm_gc_free (SCM_VECTOR_BASE (scmptr),
1639 length * sizeof (scm_t_bits),
1640 "vector");
1b9be268
DH
1641 }
1642 break;
1643 }
0f2d19dd
JB
1644#ifdef CCLO
1645 case scm_tc7_cclo:
4c9419ac
MV
1646 scm_gc_free (SCM_CCLO_BASE (scmptr),
1647 SCM_CCLO_LENGTH (scmptr) * sizeof (SCM),
1648 "compiled closure");
0f2d19dd 1649 break;
06ee04b2 1650#endif
afe5177e 1651#ifdef HAVE_ARRAYS
0f2d19dd 1652 case scm_tc7_bvect:
93778877 1653 {
c014a02e 1654 unsigned long int length = SCM_BITVECTOR_LENGTH (scmptr);
93778877
DH
1655 if (length > 0)
1656 {
4c9419ac
MV
1657 scm_gc_free (SCM_BITVECTOR_BASE (scmptr),
1658 (sizeof (long)
1659 * ((length+SCM_LONG_BIT-1) / SCM_LONG_BIT)),
1660 "vector");
93778877
DH
1661 }
1662 }
06ee04b2 1663 break;
0f2d19dd 1664 case scm_tc7_byvect:
0f2d19dd
JB
1665 case scm_tc7_ivect:
1666 case scm_tc7_uvect:
0f2d19dd 1667 case scm_tc7_svect:
5c11cc9d 1668#ifdef HAVE_LONG_LONGS
0f2d19dd 1669 case scm_tc7_llvect:
0f2d19dd
JB
1670#endif
1671 case scm_tc7_fvect:
0f2d19dd 1672 case scm_tc7_dvect:
0f2d19dd 1673 case scm_tc7_cvect:
4c9419ac
MV
1674 scm_gc_free (SCM_UVECTOR_BASE (scmptr),
1675 (SCM_UVECTOR_LENGTH (scmptr)
1676 * scm_uniform_element_size (scmptr)),
1677 "vector");
06ee04b2 1678 break;
afe5177e 1679#endif
0f2d19dd 1680 case scm_tc7_string:
4c9419ac
MV
1681 scm_gc_free (SCM_STRING_CHARS (scmptr),
1682 SCM_STRING_LENGTH (scmptr) + 1, "string");
f151f912 1683 break;
28b06554 1684 case scm_tc7_symbol:
4c9419ac
MV
1685 scm_gc_free (SCM_SYMBOL_CHARS (scmptr),
1686 SCM_SYMBOL_LENGTH (scmptr) + 1, "symbol");
0f2d19dd 1687 break;
8a3e715b
ML
1688 case scm_tc7_variable:
1689 break;
0f2d19dd 1690 case scm_tcs_subrs:
d6884e63 1691 /* the various "subrs" (primitives) are never freed */
0f2d19dd
JB
1692 continue;
1693 case scm_tc7_port:
0f2d19dd
JB
1694 if SCM_OPENP (scmptr)
1695 {
1696 int k = SCM_PTOBNUM (scmptr);
4c9419ac 1697 size_t mm;
7a7f7c53 1698#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1699 if (!(k < scm_numptob))
7a7f7c53
DH
1700 SCM_MISC_ERROR ("undefined port type", SCM_EOL);
1701#endif
0f2d19dd 1702 /* Keep "revealed" ports alive. */
945fec60 1703 if (scm_revealed_count (scmptr) > 0)
0f2d19dd
JB
1704 continue;
1705 /* Yes, I really do mean scm_ptobs[k].free */
1706 /* rather than ftobs[k].close. .close */
1707 /* is for explicit CLOSE-PORT by user */
4c9419ac
MV
1708 mm = scm_ptobs[k].free (scmptr);
1709
1710 if (mm != 0)
1711 {
646052c0 1712#if SCM_ENABLE_DEPRECATED == 1
4c9419ac
MV
1713 scm_c_issue_deprecation_warning
1714 ("Returning non-0 from a port free function is "
1715 "deprecated. Use scm_gc_free et al instead.");
1716 scm_c_issue_deprecation_warning_fmt
1717 ("(You just returned non-0 while freeing a %s.)",
1718 SCM_PTOBNAME (k));
1719 m += mm;
646052c0
DH
1720#else
1721 abort ();
1722#endif
4c9419ac 1723 }
646052c0 1724
0f2d19dd
JB
1725 SCM_SETSTREAM (scmptr, 0);
1726 scm_remove_from_port_table (scmptr);
1727 scm_gc_ports_collected++;
22a52da1 1728 SCM_CLR_PORT_OPEN_FLAG (scmptr);
0f2d19dd
JB
1729 }
1730 break;
1731 case scm_tc7_smob:
d6884e63 1732 switch SCM_TYP16 (scmptr)
0f2d19dd
JB
1733 {
1734 case scm_tc_free_cell:
acb0a19c 1735 case scm_tc16_real:
0f2d19dd
JB
1736 break;
1737#ifdef SCM_BIGDIG
acb0a19c 1738 case scm_tc16_big:
4c9419ac
MV
1739 scm_gc_free (SCM_BDIGITS (scmptr),
1740 ((SCM_NUMDIGS (scmptr) * SCM_BITSPERDIG
1741 / SCM_CHAR_BIT)), "bignum");
06ee04b2 1742 break;
0f2d19dd 1743#endif /* def SCM_BIGDIG */
acb0a19c 1744 case scm_tc16_complex:
4c9419ac
MV
1745 scm_gc_free (SCM_COMPLEX_MEM (scmptr), 2*sizeof (double),
1746 "complex");
06ee04b2 1747 break;
0f2d19dd 1748 default:
0f2d19dd
JB
1749 {
1750 int k;
1751 k = SCM_SMOBNUM (scmptr);
7a7f7c53 1752#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1753 if (!(k < scm_numsmob))
7a7f7c53
DH
1754 SCM_MISC_ERROR ("undefined smob type", SCM_EOL);
1755#endif
1756 if (scm_smobs[k].free)
4c9419ac
MV
1757 {
1758 size_t mm;
1759 mm = scm_smobs[k].free (scmptr);
1760 if (mm != 0)
1761 {
646052c0 1762#if SCM_ENABLE_DEPRECATED == 1
4c9419ac
MV
1763 scm_c_issue_deprecation_warning
1764 ("Returning non-0 from a smob free function is "
1765 "deprecated. Use scm_gc_free et al instead.");
1766 scm_c_issue_deprecation_warning_fmt
1767 ("(You just returned non-0 while freeing a %s.)",
1768 SCM_SMOBNAME (k));
1769 m += mm;
646052c0
DH
1770#else
1771 abort();
1772#endif
4c9419ac
MV
1773 }
1774 }
0f2d19dd
JB
1775 break;
1776 }
1777 }
1778 break;
1779 default:
acf4331f 1780 SCM_MISC_ERROR ("unknown type", SCM_EOL);
0f2d19dd 1781 }
7bb8eac7 1782
4c48ba06 1783 if (!--left_to_collect)
4a4c9785 1784 {
22a52da1 1785 SCM_SET_CELL_WORD_0 (scmptr, nfreelist);
4c48ba06
MD
1786 *freelist->clustertail = scmptr;
1787 freelist->clustertail = SCM_CDRLOC (scmptr);
a00c95d9 1788
4a4c9785 1789 nfreelist = SCM_EOL;
4c48ba06
MD
1790 freelist->collected += span * freelist->cluster_size;
1791 left_to_collect = freelist->cluster_size;
4a4c9785
MD
1792 }
1793 else
4a4c9785
MD
1794 {
1795 /* Stick the new cell on the front of nfreelist. It's
1796 critical that we mark this cell as freed; otherwise, the
1797 conservative collector might trace it as some other type
1798 of object. */
54778cd3 1799 SCM_SET_CELL_TYPE (scmptr, scm_tc_free_cell);
3f5d82cd 1800 SCM_SET_FREE_CELL_CDR (scmptr, nfreelist);
4a4c9785
MD
1801 nfreelist = scmptr;
1802 }
0f2d19dd 1803 }
d6884e63 1804
0f2d19dd
JB
1805#ifdef GC_FREE_SEGMENTS
1806 if (n == seg_size)
1807 {
c014a02e 1808 register long j;
15e9d186 1809
4c48ba06 1810 freelist->heap_size -= seg_size;
cf2d30f6
JB
1811 free ((char *) scm_heap_table[i].bounds[0]);
1812 scm_heap_table[i].bounds[0] = 0;
1813 for (j = i + 1; j < scm_n_heap_segs; j++)
0f2d19dd
JB
1814 scm_heap_table[j - 1] = scm_heap_table[j];
1815 scm_n_heap_segs -= 1;
cf2d30f6 1816 i--; /* We need to scan the segment just moved. */
0f2d19dd
JB
1817 }
1818 else
1819#endif /* ifdef GC_FREE_SEGMENTS */
4a4c9785
MD
1820 {
1821 /* Update the real freelist pointer to point to the head of
1822 the list of free cells we've built for this segment. */
4c48ba06 1823 freelist->cells = nfreelist;
4c48ba06 1824 freelist->left_to_collect = left_to_collect;
4a4c9785
MD
1825 }
1826
fca7547b 1827#ifdef GUILE_DEBUG_FREELIST
cf2d30f6
JB
1828 scm_map_free_list ();
1829#endif
4a4c9785 1830 }
a00c95d9 1831
4c48ba06
MD
1832 gc_sweep_freelist_finish (&scm_master_freelist);
1833 gc_sweep_freelist_finish (&scm_master_freelist2);
a00c95d9 1834
8ded62a3
MD
1835 /* When we move to POSIX threads private freelists should probably
1836 be GC-protected instead. */
1837 scm_freelist = SCM_EOL;
1838 scm_freelist2 = SCM_EOL;
a00c95d9 1839
b37fe1c5 1840 scm_cells_allocated = (SCM_HEAP_SIZE - scm_gc_cells_collected);
8b0d194f 1841 scm_gc_yield -= scm_cells_allocated;
eae33935 1842
1be6b49c 1843 if (scm_mallocated < m)
c709de7f
MD
1844 {
1845 /* The byte count of allocated objects has underflowed. This is
1846 probably because you forgot to report the sizes of objects you
1847 have allocated, by calling scm_done_malloc or some such. When
1848 the GC freed them, it subtracted their size from
1849 scm_mallocated, which underflowed. */
1850 fprintf (stderr,
1851 "scm_gc_sweep: Byte count of allocated objects has underflowed.\n"
1852 "This is probably because the GC hasn't been correctly informed\n"
1853 "about object sizes\n");
1854 abort ();
1855 }
1be6b49c 1856
0f2d19dd
JB
1857 scm_mallocated -= m;
1858 scm_gc_malloc_collected = m;
1859}
acf4331f 1860#undef FUNC_NAME
0f2d19dd
JB
1861
1862
1863\f
4c9419ac
MV
1864/* Function for non-cell memory management.
1865 */
1866
1867void *
1868scm_malloc (size_t size)
1869{
1870 void *ptr;
1871
1872 if (size == 0)
1873 return NULL;
1874
1875 SCM_SYSCALL (ptr = malloc (size));
1876 if (ptr)
1877 return ptr;
1878
1879 scm_igc ("malloc");
1880 SCM_SYSCALL (ptr = malloc (size));
1881 if (ptr)
1882 return ptr;
1883
1884 scm_memory_error ("malloc");
1885}
1886
1887void *
1888scm_realloc (void *mem, size_t size)
1889{
1890 void *ptr;
1891
1892 SCM_SYSCALL (ptr = realloc (mem, size));
1893 if (ptr)
1894 return ptr;
1895
1896 scm_igc ("realloc");
1897 SCM_SYSCALL (ptr = realloc (mem, size));
1898 if (ptr)
1899 return ptr;
1900
1901 scm_memory_error ("realloc");
1902}
1903
1904char *
1905scm_strndup (const char *str, size_t n)
1906{
1907 char *dst = scm_malloc (n+1);
1908 memcpy (dst, str, n);
1909 dst[n] = 0;
1910 return dst;
1911}
1912
1913char *
1914scm_strdup (const char *str)
1915{
1916 return scm_strndup (str, strlen (str));
1917}
1918
1919void
1920scm_gc_register_collectable_memory (void *mem, size_t size, const char *what)
1921{
1922 scm_mallocated += size;
1923
1924 if (scm_mallocated > scm_mtrigger)
1925 {
1926 scm_igc (what);
1927 if (scm_mallocated > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS)
1928 {
1929 if (scm_mallocated > scm_mtrigger)
1930 scm_mtrigger = scm_mallocated + scm_mallocated / 2;
1931 else
1932 scm_mtrigger += scm_mtrigger / 2;
1933 }
1934 }
1935
1936#ifdef GUILE_DEBUG_MALLOC
539b08a4
MV
1937 if (mem)
1938 scm_malloc_register (mem, what);
4c9419ac
MV
1939#endif
1940}
1941
1942void
1943scm_gc_unregister_collectable_memory (void *mem, size_t size, const char *what)
1944{
1945 scm_mallocated -= size;
1946
1947#ifdef GUILE_DEBUG_MALLOC
539b08a4
MV
1948 if (mem)
1949 scm_malloc_unregister (mem);
4c9419ac
MV
1950#endif
1951}
1952
1953void *
1954scm_gc_malloc (size_t size, const char *what)
1955{
1956 /* XXX - The straightforward implementation below has the problem
1957 that it might call the GC twice, once in scm_malloc and then
1958 again in scm_gc_register_collectable_memory. We don't really
539b08a4 1959 want the second GC since it will not find new garbage.
4c9419ac
MV
1960 */
1961
1962 void *ptr = scm_malloc (size);
1963 scm_gc_register_collectable_memory (ptr, size, what);
1964 return ptr;
1965}
1966
1967void *
1968scm_gc_realloc (void *mem, size_t old_size, size_t new_size, const char *what)
1969{
1970 /* XXX - see scm_gc_malloc. */
1971
1972 void *ptr = scm_realloc (mem, new_size);
1973 scm_gc_unregister_collectable_memory (mem, old_size, what);
1974 scm_gc_register_collectable_memory (ptr, new_size, what);
1975 return ptr;
1976}
1977
1978void
1979scm_gc_free (void *mem, size_t size, const char *what)
1980{
1981 scm_gc_unregister_collectable_memory (mem, size, what);
1982 free (mem);
1983}
1984
1985char *
1986scm_gc_strndup (const char *str, size_t n, const char *what)
1987{
1988 char *dst = scm_gc_malloc (n+1, what);
1989 memcpy (dst, str, n);
1990 dst[n] = 0;
1991 return dst;
1992}
1993
1994char *
1995scm_gc_strdup (const char *str, const char *what)
1996{
1997 return scm_gc_strndup (str, strlen (str), what);
1998}
1999
539b08a4
MV
2000#if SCM_ENABLE_DEPRECATED == 1
2001
4c9419ac 2002/* {Deprecated front end to malloc}
0f2d19dd 2003 *
9d47a1e6
ML
2004 * scm_must_malloc, scm_must_realloc, scm_must_free, scm_done_malloc,
2005 * scm_done_free
0f2d19dd 2006 *
c6c79933
GH
2007 * These functions provide services comparable to malloc, realloc, and
2008 * free. They should be used when allocating memory that will be under
2009 * control of the garbage collector, i.e., if the memory may be freed
2010 * during garbage collection.
0f2d19dd 2011 *
539b08a4
MV
2012 * They are deprecated because they weren't really used the way
2013 * outlined above, and making sure to return the right amount from
2014 * smob free routines was sometimes difficult when dealing with nested
2015 * data structures. We basically want everybody to review their code
2016 * and use the more symmetrical scm_gc_malloc/scm_gc_free functions
2017 * instead. In some cases, where scm_must_malloc has been used
2018 * incorrectly (i.e. for non-GC-able memory), use scm_malloc/free.
0f2d19dd 2019 */
539b08a4 2020
07806695 2021void *
1be6b49c 2022scm_must_malloc (size_t size, const char *what)
0f2d19dd 2023{
539b08a4
MV
2024 scm_c_issue_deprecation_warning
2025 ("scm_must_malloc is deprecated. "
2026 "Use scm_gc_malloc and scm_gc_free instead.");
1be6b49c 2027
539b08a4 2028 return scm_gc_malloc (size, what);
0f2d19dd
JB
2029}
2030
07806695
JB
2031void *
2032scm_must_realloc (void *where,
1be6b49c
ML
2033 size_t old_size,
2034 size_t size,
3eeba8d4 2035 const char *what)
0f2d19dd 2036{
539b08a4
MV
2037 scm_c_issue_deprecation_warning
2038 ("scm_must_realloc is deprecated. "
2039 "Use scm_gc_realloc and scm_gc_free instead.");
e4ef2330 2040
539b08a4 2041 return scm_gc_realloc (where, old_size, size, what);
0f2d19dd
JB
2042}
2043
e4a7824f 2044char *
1be6b49c 2045scm_must_strndup (const char *str, size_t length)
e4a7824f 2046{
539b08a4
MV
2047 scm_c_issue_deprecation_warning
2048 ("scm_must_strndup is deprecated. "
2049 "Use scm_gc_strndup and scm_gc_free instead.");
2050
2051 return scm_gc_strndup (str, length, "string");
e4a7824f
MV
2052}
2053
2054char *
2055scm_must_strdup (const char *str)
2056{
539b08a4
MV
2057 scm_c_issue_deprecation_warning
2058 ("scm_must_strdup is deprecated. "
2059 "Use scm_gc_strdup and scm_gc_free instead.");
2060
2061 return scm_gc_strdup (str, "string");
e4a7824f 2062}
acf4331f 2063
a00c95d9 2064void
07806695 2065scm_must_free (void *obj)
acf4331f 2066#define FUNC_NAME "scm_must_free"
0f2d19dd 2067{
539b08a4
MV
2068 scm_c_issue_deprecation_warning
2069 ("scm_must_free is deprecated. "
2070 "Use scm_gc_malloc and scm_gc_free instead.");
2071
bc9d9bb2
MD
2072#ifdef GUILE_DEBUG_MALLOC
2073 scm_malloc_unregister (obj);
2074#endif
0f2d19dd
JB
2075 if (obj)
2076 free (obj);
2077 else
acf4331f 2078 SCM_MISC_ERROR ("freeing NULL pointer", SCM_EOL);
0f2d19dd 2079}
acf4331f
DH
2080#undef FUNC_NAME
2081
0f2d19dd 2082
c68296f8 2083void
c014a02e 2084scm_done_malloc (long size)
c68296f8 2085{
539b08a4
MV
2086 scm_c_issue_deprecation_warning
2087 ("scm_done_malloc is deprecated. "
2088 "Use scm_gc_register_collectable_memory instead.");
c68296f8 2089
539b08a4 2090 scm_gc_register_collectable_memory (NULL, size, "foreign mallocs");
c68296f8
MV
2091}
2092
9d47a1e6 2093void
c014a02e 2094scm_done_free (long size)
9d47a1e6 2095{
539b08a4
MV
2096 scm_c_issue_deprecation_warning
2097 ("scm_done_free is deprecated. "
2098 "Use scm_gc_unregister_collectable_memory instead.");
1be6b49c 2099
539b08a4 2100 scm_gc_unregister_collectable_memory (NULL, size, "foreign mallocs");
9d47a1e6
ML
2101}
2102
539b08a4 2103#endif /* SCM_ENABLE_DEPRECATED == 1 */
c68296f8
MV
2104
2105\f
0f2d19dd
JB
2106/* {Heap Segments}
2107 *
2108 * Each heap segment is an array of objects of a particular size.
2109 * Every segment has an associated (possibly shared) freelist.
2110 * A table of segment records is kept that records the upper and
2111 * lower extents of the segment; this is used during the conservative
2112 * phase of gc to identify probably gc roots (because they point
c68296f8 2113 * into valid segments at reasonable offsets). */
0f2d19dd
JB
2114
2115/* scm_expmem
2116 * is true if the first segment was smaller than INIT_HEAP_SEG.
2117 * If scm_expmem is set to one, subsequent segment allocations will
2118 * allocate segments of size SCM_EXPHEAP(scm_heap_size).
2119 */
2120int scm_expmem = 0;
2121
1be6b49c 2122size_t scm_max_segment_size;
4c48ba06 2123
0f2d19dd
JB
2124/* scm_heap_org
2125 * is the lowest base address of any heap segment.
2126 */
2127SCM_CELLPTR scm_heap_org;
2128
92c2555f 2129scm_t_heap_seg_data * scm_heap_table = 0;
1be6b49c
ML
2130static size_t heap_segment_table_size = 0;
2131size_t scm_n_heap_segs = 0;
0f2d19dd 2132
0f2d19dd 2133/* init_heap_seg
d6884e63 2134 * initializes a new heap segment and returns the number of objects it contains.
0f2d19dd 2135 *
d6884e63
ML
2136 * The segment origin and segment size in bytes are input parameters.
2137 * The freelist is both input and output.
0f2d19dd 2138 *
d6884e63
ML
2139 * This function presumes that the scm_heap_table has already been expanded
2140 * to accomodate a new segment record and that the markbit space was reserved
2141 * for all the cards in this segment.
0f2d19dd
JB
2142 */
2143
d6884e63
ML
2144#define INIT_CARD(card, span) \
2145 do { \
322ec19d 2146 SCM_GC_SET_CARD_BVEC (card, get_bvec ()); \
d6884e63
ML
2147 if ((span) == 2) \
2148 SCM_GC_SET_CARD_DOUBLECELL (card); \
2149 } while (0)
0f2d19dd 2150
1be6b49c 2151static size_t
92c2555f 2152init_heap_seg (SCM_CELLPTR seg_org, size_t size, scm_t_freelist *freelist)
0f2d19dd
JB
2153{
2154 register SCM_CELLPTR ptr;
0f2d19dd 2155 SCM_CELLPTR seg_end;
592996c9 2156 size_t new_seg_index;
1be6b49c 2157 ptrdiff_t n_new_cells;
4c48ba06 2158 int span = freelist->span;
a00c95d9 2159
0f2d19dd
JB
2160 if (seg_org == NULL)
2161 return 0;
2162
d6884e63
ML
2163 /* Align the begin ptr up.
2164 */
2165 ptr = SCM_GC_CARD_UP (seg_org);
acb0a19c 2166
a00c95d9 2167 /* Compute the ceiling on valid object pointers w/in this segment.
0f2d19dd 2168 */
d6884e63 2169 seg_end = SCM_GC_CARD_DOWN ((char *)seg_org + size);
0f2d19dd 2170
a00c95d9 2171 /* Find the right place and insert the segment record.
0f2d19dd 2172 */
592996c9 2173 new_seg_index = 0;
eae33935 2174 while (new_seg_index < scm_n_heap_segs
592996c9
DH
2175 && SCM_PTR_LE (scm_heap_table[new_seg_index].bounds[0], seg_org))
2176 new_seg_index++;
0f2d19dd
JB
2177
2178 {
2179 int i;
2180 for (i = scm_n_heap_segs; i > new_seg_index; --i)
2181 scm_heap_table[i] = scm_heap_table[i - 1];
2182 }
a00c95d9 2183
0f2d19dd
JB
2184 ++scm_n_heap_segs;
2185
945fec60 2186 scm_heap_table[new_seg_index].span = span;
4c48ba06 2187 scm_heap_table[new_seg_index].freelist = freelist;
195e6201
DH
2188 scm_heap_table[new_seg_index].bounds[0] = ptr;
2189 scm_heap_table[new_seg_index].bounds[1] = seg_end;
0f2d19dd 2190
acb0a19c
MD
2191 /*n_new_cells*/
2192 n_new_cells = seg_end - ptr;
0f2d19dd 2193
4c48ba06 2194 freelist->heap_size += n_new_cells;
4a4c9785 2195
a00c95d9 2196 /* Partition objects in this segment into clusters */
4a4c9785
MD
2197 {
2198 SCM clusters;
2199 SCM *clusterp = &clusters;
4a4c9785 2200
d6884e63
ML
2201 NEXT_DATA_CELL (ptr, span);
2202 while (ptr < seg_end)
4a4c9785 2203 {
228a24ef
DH
2204 scm_t_cell *nxt = ptr;
2205 scm_t_cell *prv = NULL;
2206 scm_t_cell *last_card = NULL;
d6884e63
ML
2207 int n_data_cells = (SCM_GC_CARD_N_DATA_CELLS / span) * SCM_CARDS_PER_CLUSTER - 1;
2208 NEXT_DATA_CELL(nxt, span);
4a4c9785 2209
4c48ba06
MD
2210 /* Allocate cluster spine
2211 */
4a4c9785 2212 *clusterp = PTR2SCM (ptr);
d6884e63 2213 SCM_SETCAR (*clusterp, PTR2SCM (nxt));
4a4c9785 2214 clusterp = SCM_CDRLOC (*clusterp);
d6884e63 2215 ptr = nxt;
a00c95d9 2216
d6884e63 2217 while (n_data_cells--)
4a4c9785 2218 {
228a24ef 2219 scm_t_cell *card = SCM_GC_CELL_CARD (ptr);
96f6f4ae 2220 SCM scmptr = PTR2SCM (ptr);
d6884e63
ML
2221 nxt = ptr;
2222 NEXT_DATA_CELL (nxt, span);
2223 prv = ptr;
2224
2225 if (card != last_card)
2226 {
2227 INIT_CARD (card, span);
2228 last_card = card;
2229 }
96f6f4ae 2230
54778cd3 2231 SCM_SET_CELL_TYPE (scmptr, scm_tc_free_cell);
22a52da1 2232 SCM_SET_FREE_CELL_CDR (scmptr, PTR2SCM (nxt));
d6884e63
ML
2233
2234 ptr = nxt;
4a4c9785 2235 }
4c48ba06 2236
d6884e63 2237 SCM_SET_FREE_CELL_CDR (PTR2SCM (prv), SCM_EOL);
4a4c9785 2238 }
a00c95d9 2239
d6884e63
ML
2240 /* sanity check */
2241 {
228a24ef 2242 scm_t_cell *ref = seg_end;
d6884e63
ML
2243 NEXT_DATA_CELL (ref, span);
2244 if (ref != ptr)
2245 /* [cmm] looks like the segment size doesn't divide cleanly by
2246 cluster size. bad cmm! */
2247 abort();
2248 }
2249
4a4c9785
MD
2250 /* Patch up the last cluster pointer in the segment
2251 * to join it to the input freelist.
2252 */
4c48ba06
MD
2253 *clusterp = freelist->clusters;
2254 freelist->clusters = clusters;
4a4c9785
MD
2255 }
2256
4c48ba06
MD
2257#ifdef DEBUGINFO
2258 fprintf (stderr, "H");
2259#endif
0f2d19dd 2260 return size;
0f2d19dd
JB
2261}
2262
1be6b49c 2263static size_t
92c2555f 2264round_to_cluster_size (scm_t_freelist *freelist, size_t len)
a00c95d9 2265{
1be6b49c 2266 size_t cluster_size_in_bytes = CLUSTER_SIZE_IN_BYTES (freelist);
a00c95d9
ML
2267
2268 return
2269 (len + cluster_size_in_bytes - 1) / cluster_size_in_bytes * cluster_size_in_bytes
2270 + ALIGNMENT_SLACK (freelist);
2271}
2272
a00c95d9 2273static void
92c2555f 2274alloc_some_heap (scm_t_freelist *freelist, policy_on_error error_policy)
acf4331f 2275#define FUNC_NAME "alloc_some_heap"
0f2d19dd 2276{
0f2d19dd 2277 SCM_CELLPTR ptr;
1be6b49c 2278 size_t len;
a00c95d9 2279
9d47a1e6 2280 if (scm_gc_heap_lock)
b6efc951
DH
2281 {
2282 /* Critical code sections (such as the garbage collector) aren't
2283 * supposed to add heap segments.
2284 */
2285 fprintf (stderr, "alloc_some_heap: Can not extend locked heap.\n");
2286 abort ();
2287 }
0f2d19dd 2288
9d47a1e6 2289 if (scm_n_heap_segs == heap_segment_table_size)
b6efc951
DH
2290 {
2291 /* We have to expand the heap segment table to have room for the new
2292 * segment. Do not yet increment scm_n_heap_segs -- that is done by
2293 * init_heap_seg only if the allocation of the segment itself succeeds.
2294 */
1be6b49c 2295 size_t new_table_size = scm_n_heap_segs + 1;
92c2555f
MV
2296 size_t size = new_table_size * sizeof (scm_t_heap_seg_data);
2297 scm_t_heap_seg_data *new_heap_table;
b6efc951 2298
92c2555f 2299 SCM_SYSCALL (new_heap_table = ((scm_t_heap_seg_data *)
b6efc951
DH
2300 realloc ((char *)scm_heap_table, size)));
2301 if (!new_heap_table)
2302 {
2303 if (error_policy == abort_on_error)
2304 {
2305 fprintf (stderr, "alloc_some_heap: Could not grow heap segment table.\n");
2306 abort ();
2307 }
2308 else
2309 {
2310 return;
2311 }
2312 }
2313 else
2314 {
2315 scm_heap_table = new_heap_table;
2316 heap_segment_table_size = new_table_size;
2317 }
2318 }
0f2d19dd 2319
0f2d19dd 2320 /* Pick a size for the new heap segment.
a00c95d9 2321 * The rule for picking the size of a segment is explained in
0f2d19dd
JB
2322 * gc.h
2323 */
4c48ba06 2324 {
1811ebce
MD
2325 /* Assure that the new segment is predicted to be large enough.
2326 *
2327 * New yield should at least equal GC fraction of new heap size, i.e.
2328 *
2329 * y + dh > f * (h + dh)
2330 *
2331 * y : yield
8fef55a8 2332 * f : min yield fraction
1811ebce
MD
2333 * h : heap size
2334 * dh : size of new heap segment
2335 *
2336 * This gives dh > (f * h - y) / (1 - f)
bda1446c 2337 */
8fef55a8 2338 int f = freelist->min_yield_fraction;
c014a02e 2339 unsigned long h = SCM_HEAP_SIZE;
1be6b49c 2340 size_t min_cells = (f * h - 100 * (long) scm_gc_yield) / (99 - f);
4c48ba06
MD
2341 len = SCM_EXPHEAP (freelist->heap_size);
2342#ifdef DEBUGINFO
1be6b49c 2343 fprintf (stderr, "(%ld < %ld)", (long) len, (long) min_cells);
4c48ba06
MD
2344#endif
2345 if (len < min_cells)
1811ebce 2346 len = min_cells + freelist->cluster_size;
228a24ef 2347 len *= sizeof (scm_t_cell);
1811ebce
MD
2348 /* force new sampling */
2349 freelist->collected = LONG_MAX;
4c48ba06 2350 }
a00c95d9 2351
4c48ba06
MD
2352 if (len > scm_max_segment_size)
2353 len = scm_max_segment_size;
0f2d19dd
JB
2354
2355 {
1be6b49c 2356 size_t smallest;
0f2d19dd 2357
a00c95d9 2358 smallest = CLUSTER_SIZE_IN_BYTES (freelist);
a00c95d9 2359
0f2d19dd 2360 if (len < smallest)
a00c95d9 2361 len = smallest;
0f2d19dd
JB
2362
2363 /* Allocate with decaying ambition. */
2364 while ((len >= SCM_MIN_HEAP_SEG_SIZE)
2365 && (len >= smallest))
2366 {
1be6b49c 2367 size_t rounded_len = round_to_cluster_size (freelist, len);
a00c95d9 2368 SCM_SYSCALL (ptr = (SCM_CELLPTR) malloc (rounded_len));
0f2d19dd
JB
2369 if (ptr)
2370 {
a00c95d9 2371 init_heap_seg (ptr, rounded_len, freelist);
0f2d19dd
JB
2372 return;
2373 }
2374 len /= 2;
2375 }
2376 }
2377
b6efc951
DH
2378 if (error_policy == abort_on_error)
2379 {
2380 fprintf (stderr, "alloc_some_heap: Could not grow heap.\n");
2381 abort ();
2382 }
0f2d19dd 2383}
acf4331f 2384#undef FUNC_NAME
0f2d19dd 2385
0f2d19dd
JB
2386\f
2387/* {GC Protection Helper Functions}
2388 */
2389
2390
5d2b97cd
DH
2391/*
2392 * If within a function you need to protect one or more scheme objects from
2393 * garbage collection, pass them as parameters to one of the
2394 * scm_remember_upto_here* functions below. These functions don't do
2395 * anything, but since the compiler does not know that they are actually
2396 * no-ops, it will generate code that calls these functions with the given
2397 * parameters. Therefore, you can be sure that the compiler will keep those
2398 * scheme values alive (on the stack or in a register) up to the point where
2399 * scm_remember_upto_here* is called. In other words, place the call to
592996c9 2400 * scm_remember_upto_here* _behind_ the last code in your function, that
5d2b97cd
DH
2401 * depends on the scheme object to exist.
2402 *
8c494e99
DH
2403 * Example: We want to make sure that the string object str does not get
2404 * garbage collected during the execution of 'some_function' in the code
2405 * below, because otherwise the characters belonging to str would be freed and
5d2b97cd
DH
2406 * 'some_function' might access freed memory. To make sure that the compiler
2407 * keeps str alive on the stack or in a register such that it is visible to
2408 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
2409 * call to 'some_function'. Note that this would not be necessary if str was
2410 * used anyway after the call to 'some_function'.
2411 * char *chars = SCM_STRING_CHARS (str);
2412 * some_function (chars);
2413 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
2414 */
2415
2416void
e81d98ec 2417scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
5d2b97cd
DH
2418{
2419 /* Empty. Protects a single object from garbage collection. */
2420}
2421
2422void
e81d98ec 2423scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
5d2b97cd
DH
2424{
2425 /* Empty. Protects two objects from garbage collection. */
2426}
2427
2428void
e81d98ec 2429scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
5d2b97cd
DH
2430{
2431 /* Empty. Protects any number of objects from garbage collection. */
2432}
2433
c209c88e 2434/*
41b0806d
GB
2435 These crazy functions prevent garbage collection
2436 of arguments after the first argument by
2437 ensuring they remain live throughout the
2438 function because they are used in the last
2439 line of the code block.
2440 It'd be better to have a nice compiler hint to
2441 aid the conservative stack-scanning GC. --03/09/00 gjb */
0f2d19dd
JB
2442SCM
2443scm_return_first (SCM elt, ...)
0f2d19dd
JB
2444{
2445 return elt;
2446}
2447
41b0806d
GB
2448int
2449scm_return_first_int (int i, ...)
2450{
2451 return i;
2452}
2453
0f2d19dd 2454
0f2d19dd 2455SCM
6e8d25a6 2456scm_permanent_object (SCM obj)
0f2d19dd
JB
2457{
2458 SCM_REDEFER_INTS;
2459 scm_permobjs = scm_cons (obj, scm_permobjs);
2460 SCM_REALLOW_INTS;
2461 return obj;
2462}
2463
2464
7bd4fbe2
MD
2465/* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
2466 other references are dropped, until the object is unprotected by calling
6b1b030e 2467 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
7bd4fbe2
MD
2468 i. e. it is possible to protect the same object several times, but it is
2469 necessary to unprotect the object the same number of times to actually get
2470 the object unprotected. It is an error to unprotect an object more often
2471 than it has been protected before. The function scm_protect_object returns
2472 OBJ.
2473*/
2474
2475/* Implementation note: For every object X, there is a counter which
6b1b030e 2476 scm_gc_protect_object(X) increments and scm_gc_unprotect_object(X) decrements.
7bd4fbe2 2477*/
686765af 2478
ef290276 2479SCM
6b1b030e 2480scm_gc_protect_object (SCM obj)
ef290276 2481{
686765af 2482 SCM handle;
9d47a1e6 2483
686765af 2484 /* This critical section barrier will be replaced by a mutex. */
2dd6a83a 2485 SCM_REDEFER_INTS;
9d47a1e6 2486
0f0f0899 2487 handle = scm_hashq_create_handle_x (scm_protects, obj, SCM_MAKINUM (0));
1be6b49c 2488 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
9d47a1e6 2489
2dd6a83a 2490 SCM_REALLOW_INTS;
9d47a1e6 2491
ef290276
JB
2492 return obj;
2493}
2494
2495
2496/* Remove any protection for OBJ established by a prior call to
dab7f566 2497 scm_protect_object. This function returns OBJ.
ef290276 2498
dab7f566 2499 See scm_protect_object for more information. */
ef290276 2500SCM
6b1b030e 2501scm_gc_unprotect_object (SCM obj)
ef290276 2502{
686765af 2503 SCM handle;
9d47a1e6 2504
686765af 2505 /* This critical section barrier will be replaced by a mutex. */
2dd6a83a 2506 SCM_REDEFER_INTS;
9d47a1e6 2507
686765af 2508 handle = scm_hashq_get_handle (scm_protects, obj);
9d47a1e6 2509
22a52da1 2510 if (SCM_FALSEP (handle))
686765af 2511 {
0f0f0899
MD
2512 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
2513 abort ();
686765af 2514 }
6a199940
DH
2515 else
2516 {
1be6b49c
ML
2517 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
2518 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
6a199940
DH
2519 scm_hashq_remove_x (scm_protects, obj);
2520 else
1be6b49c 2521 SCM_SETCDR (handle, count);
6a199940 2522 }
686765af 2523
2dd6a83a 2524 SCM_REALLOW_INTS;
ef290276
JB
2525
2526 return obj;
2527}
2528
6b1b030e
ML
2529void
2530scm_gc_register_root (SCM *p)
2531{
2532 SCM handle;
2533 SCM key = scm_long2num ((long) p);
eae33935 2534
6b1b030e
ML
2535 /* This critical section barrier will be replaced by a mutex. */
2536 SCM_REDEFER_INTS;
2537
2538 handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key, SCM_MAKINUM (0));
2539 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
2540
2541 SCM_REALLOW_INTS;
2542}
2543
2544void
2545scm_gc_unregister_root (SCM *p)
2546{
2547 SCM handle;
2548 SCM key = scm_long2num ((long) p);
2549
2550 /* This critical section barrier will be replaced by a mutex. */
2551 SCM_REDEFER_INTS;
2552
2553 handle = scm_hashv_get_handle (scm_gc_registered_roots, key);
2554
2555 if (SCM_FALSEP (handle))
2556 {
2557 fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n");
2558 abort ();
2559 }
2560 else
2561 {
2562 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
2563 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
2564 scm_hashv_remove_x (scm_gc_registered_roots, key);
2565 else
2566 SCM_SETCDR (handle, count);
2567 }
2568
2569 SCM_REALLOW_INTS;
2570}
2571
2572void
2573scm_gc_register_roots (SCM *b, unsigned long n)
2574{
2575 SCM *p = b;
2576 for (; p < b + n; ++p)
2577 scm_gc_register_root (p);
2578}
2579
2580void
2581scm_gc_unregister_roots (SCM *b, unsigned long n)
2582{
2583 SCM *p = b;
2584 for (; p < b + n; ++p)
2585 scm_gc_unregister_root (p);
2586}
2587
04a98cff 2588int scm_i_terminating;
c45acc34
JB
2589
2590/* called on process termination. */
e52ceaac
MD
2591#ifdef HAVE_ATEXIT
2592static void
2593cleanup (void)
2594#else
2595#ifdef HAVE_ON_EXIT
51157deb
MD
2596extern int on_exit (void (*procp) (), int arg);
2597
e52ceaac
MD
2598static void
2599cleanup (int status, void *arg)
2600#else
2601#error Dont know how to setup a cleanup handler on your system.
2602#endif
2603#endif
c45acc34 2604{
04a98cff 2605 scm_i_terminating = 1;
c45acc34
JB
2606 scm_flush_all_ports ();
2607}
ef290276 2608
0f2d19dd 2609\f
acb0a19c 2610static int
92c2555f 2611make_initial_segment (size_t init_heap_size, scm_t_freelist *freelist)
acb0a19c 2612{
1be6b49c 2613 size_t rounded_size = round_to_cluster_size (freelist, init_heap_size);
d6884e63 2614
a00c95d9
ML
2615 if (!init_heap_seg ((SCM_CELLPTR) malloc (rounded_size),
2616 rounded_size,
4c48ba06 2617 freelist))
acb0a19c 2618 {
a00c95d9
ML
2619 rounded_size = round_to_cluster_size (freelist, SCM_HEAP_SEG_SIZE);
2620 if (!init_heap_seg ((SCM_CELLPTR) malloc (rounded_size),
2621 rounded_size,
4c48ba06 2622 freelist))
acb0a19c
MD
2623 return 1;
2624 }
2625 else
2626 scm_expmem = 1;
2627
8fef55a8
MD
2628 if (freelist->min_yield_fraction)
2629 freelist->min_yield = (freelist->heap_size * freelist->min_yield_fraction
b37fe1c5 2630 / 100);
8fef55a8 2631 freelist->grow_heap_p = (freelist->heap_size < freelist->min_yield);
a00c95d9 2632
acb0a19c
MD
2633 return 0;
2634}
2635
2636\f
4c48ba06 2637static void
92c2555f 2638init_freelist (scm_t_freelist *freelist,
4c48ba06 2639 int span,
c014a02e 2640 long cluster_size,
8fef55a8 2641 int min_yield)
4c48ba06
MD
2642{
2643 freelist->clusters = SCM_EOL;
2644 freelist->cluster_size = cluster_size + 1;
b37fe1c5
MD
2645 freelist->left_to_collect = 0;
2646 freelist->clusters_allocated = 0;
8fef55a8
MD
2647 freelist->min_yield = 0;
2648 freelist->min_yield_fraction = min_yield;
4c48ba06
MD
2649 freelist->span = span;
2650 freelist->collected = 0;
1811ebce 2651 freelist->collected_1 = 0;
4c48ba06
MD
2652 freelist->heap_size = 0;
2653}
2654
85db4a2c
DH
2655
2656/* Get an integer from an environment variable. */
2657static int
2658scm_i_getenv_int (const char *var, int def)
2659{
2660 char *end, *val = getenv (var);
2661 long res;
2662 if (!val)
2663 return def;
2664 res = strtol (val, &end, 10);
2665 if (end == val)
2666 return def;
2667 return res;
2668}
2669
2670
4a4c9785 2671int
85db4a2c 2672scm_init_storage ()
0f2d19dd 2673{
1be6b49c
ML
2674 unsigned long gc_trigger_1;
2675 unsigned long gc_trigger_2;
2676 size_t init_heap_size_1;
2677 size_t init_heap_size_2;
2678 size_t j;
0f2d19dd
JB
2679
2680 j = SCM_NUM_PROTECTS;
2681 while (j)
2682 scm_sys_protects[--j] = SCM_BOOL_F;
2683 scm_block_gc = 1;
4a4c9785 2684
4a4c9785 2685 scm_freelist = SCM_EOL;
4c48ba06 2686 scm_freelist2 = SCM_EOL;
85db4a2c
DH
2687 gc_trigger_1 = scm_i_getenv_int ("GUILE_MIN_YIELD_1", scm_default_min_yield_1);
2688 init_freelist (&scm_master_freelist, 1, SCM_CLUSTER_SIZE_1, gc_trigger_1);
2689 gc_trigger_2 = scm_i_getenv_int ("GUILE_MIN_YIELD_2", scm_default_min_yield_2);
2690 init_freelist (&scm_master_freelist2, 2, SCM_CLUSTER_SIZE_2, gc_trigger_2);
2691 scm_max_segment_size = scm_i_getenv_int ("GUILE_MAX_SEGMENT_SIZE", scm_default_max_segment_size);
4a4c9785 2692
0f2d19dd
JB
2693 scm_expmem = 0;
2694
2695 j = SCM_HEAP_SEG_SIZE;
2696 scm_mtrigger = SCM_INIT_MALLOC_LIMIT;
92c2555f 2697 scm_heap_table = ((scm_t_heap_seg_data *)
4c9419ac 2698 scm_malloc (sizeof (scm_t_heap_seg_data) * 2));
b6efc951 2699 heap_segment_table_size = 2;
acb0a19c 2700
d6884e63
ML
2701 mark_space_ptr = &mark_space_head;
2702
85db4a2c
DH
2703 init_heap_size_1 = scm_i_getenv_int ("GUILE_INIT_SEGMENT_SIZE_1", scm_default_init_heap_size_1);
2704 init_heap_size_2 = scm_i_getenv_int ("GUILE_INIT_SEGMENT_SIZE_2", scm_default_init_heap_size_2);
4c48ba06
MD
2705 if (make_initial_segment (init_heap_size_1, &scm_master_freelist) ||
2706 make_initial_segment (init_heap_size_2, &scm_master_freelist2))
4a4c9785 2707 return 1;
acb0a19c 2708
801cb5e7 2709 /* scm_hplims[0] can change. do not remove scm_heap_org */
a00c95d9 2710 scm_heap_org = CELL_UP (scm_heap_table[0].bounds[0], 1);
acb0a19c 2711
801cb5e7
MD
2712 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
2713 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
2714 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
2715 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
2716 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
0f2d19dd
JB
2717
2718 /* Initialise the list of ports. */
f5fd8aa2
MV
2719 scm_port_table = (scm_t_port **)
2720 malloc (sizeof (scm_t_port *) * scm_port_table_room);
2721 if (!scm_port_table)
0f2d19dd
JB
2722 return 1;
2723
a18bcd0e 2724#ifdef HAVE_ATEXIT
c45acc34 2725 atexit (cleanup);
e52ceaac
MD
2726#else
2727#ifdef HAVE_ON_EXIT
2728 on_exit (cleanup, 0);
2729#endif
a18bcd0e 2730#endif
0f2d19dd 2731
8960e0a0 2732 scm_stand_in_procs = SCM_EOL;
0f2d19dd 2733 scm_permobjs = SCM_EOL;
00ffa0e7 2734 scm_protects = scm_c_make_hash_table (31);
6b1b030e 2735 scm_gc_registered_roots = scm_c_make_hash_table (31);
d6884e63 2736
0f2d19dd
JB
2737 return 0;
2738}
939794ce 2739
0f2d19dd
JB
2740\f
2741
939794ce
DH
2742SCM scm_after_gc_hook;
2743
939794ce
DH
2744static SCM gc_async;
2745
939794ce
DH
2746/* The function gc_async_thunk causes the execution of the after-gc-hook. It
2747 * is run after the gc, as soon as the asynchronous events are handled by the
2748 * evaluator.
2749 */
2750static SCM
2751gc_async_thunk (void)
2752{
2753 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
939794ce
DH
2754 return SCM_UNSPECIFIED;
2755}
2756
2757
2758/* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
2759 * the garbage collection. The only purpose of this function is to mark the
2760 * gc_async (which will eventually lead to the execution of the
2761 * gc_async_thunk).
2762 */
2763static void *
e81d98ec
DH
2764mark_gc_async (void * hook_data SCM_UNUSED,
2765 void *func_data SCM_UNUSED,
2766 void *data SCM_UNUSED)
2767{
2768 /* If cell access debugging is enabled, the user may choose to perform
2769 * additional garbage collections after an arbitrary number of cell
2770 * accesses. We don't want the scheme level after-gc-hook to be performed
2771 * for each of these garbage collections for the following reason: The
2772 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
2773 * after-gc-hook was performed with every gc, and if the gc was performed
2774 * after a very small number of cell accesses, then the number of cell
2775 * accesses during the execution of the after-gc-hook will suffice to cause
2776 * the execution of the next gc. Then, guile would keep executing the
2777 * after-gc-hook over and over again, and would never come to do other
2778 * things.
eae33935 2779 *
e81d98ec
DH
2780 * To overcome this problem, if cell access debugging with additional
2781 * garbage collections is enabled, the after-gc-hook is never run by the
2782 * garbage collecter. When running guile with cell access debugging and the
2783 * execution of the after-gc-hook is desired, then it is necessary to run
2784 * the hook explicitly from the user code. This has the effect, that from
2785 * the scheme level point of view it seems that garbage collection is
2786 * performed with a much lower frequency than it actually is. Obviously,
2787 * this will not work for code that depends on a fixed one to one
2788 * relationship between the execution counts of the C level garbage
2789 * collection hooks and the execution count of the scheme level
2790 * after-gc-hook.
2791 */
2792#if (SCM_DEBUG_CELL_ACCESSES == 1)
2793 if (debug_cells_gc_interval == 0)
2794 scm_system_async_mark (gc_async);
2795#else
939794ce 2796 scm_system_async_mark (gc_async);
e81d98ec
DH
2797#endif
2798
939794ce
DH
2799 return NULL;
2800}
2801
d678e25c
MV
2802#if SCM_ENABLE_DEPRECATED == 1
2803
2804/* If an allocated cell is detected during garbage collection, this
2805 * means that some code has just obtained the object but was preempted
2806 * before the initialization of the object was completed. This meanst
2807 * that some entries of the allocated cell may already contain SCM
2808 * objects. Therefore, allocated cells are scanned conservatively.
2809 */
2810
2811scm_t_bits scm_tc16_allocated;
2812
2813static SCM
2814allocated_mark (SCM cell)
2815{
2816 unsigned long int cell_segment = heap_segment (cell);
2817 unsigned int span = scm_heap_table[cell_segment].span;
2818 unsigned int i;
2819
2820 for (i = 1; i != span * 2; ++i)
2821 {
2822 SCM obj = SCM_CELL_OBJECT (cell, i);
2823 long int obj_segment = heap_segment (obj);
2824 if (obj_segment >= 0)
2825 scm_gc_mark (obj);
2826 }
2827 return SCM_BOOL_F;
2828}
2829
2830SCM
2831scm_deprecated_newcell (void)
2832{
2833 scm_c_issue_deprecation_warning
228a24ef 2834 ("SCM_NEWCELL is deprecated. Use `scm_cell' instead.\n");
d678e25c 2835
228a24ef 2836 return scm_cell (scm_tc16_allocated, 0);
d678e25c
MV
2837}
2838
2839SCM
2840scm_deprecated_newcell2 (void)
2841{
2842 scm_c_issue_deprecation_warning
228a24ef 2843 ("SCM_NEWCELL2 is deprecated. Use `scm_double_cell' instead.\n");
d678e25c 2844
228a24ef 2845 return scm_double_cell (scm_tc16_allocated, 0, 0, 0);
d678e25c
MV
2846}
2847
2848#endif /* SCM_ENABLE_DEPRECATED == 1 */
939794ce 2849
0f2d19dd
JB
2850void
2851scm_init_gc ()
0f2d19dd 2852{
939794ce
DH
2853 SCM after_gc_thunk;
2854
d678e25c
MV
2855#if SCM_ENABLE_DEPRECATED == 1
2856 scm_tc16_allocated = scm_make_smob_type ("allocated cell", 0);
2857 scm_set_smob_mark (scm_tc16_allocated, allocated_mark);
2858#endif
2859
fde50407
ML
2860 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
2861 scm_c_define ("after-gc-hook", scm_after_gc_hook);
939794ce 2862
9a441ddb
MV
2863 after_gc_thunk = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0,
2864 gc_async_thunk);
23670993 2865 gc_async = scm_system_async (after_gc_thunk); /* protected via scm_asyncs */
939794ce
DH
2866
2867 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
2868
a0599745 2869#include "libguile/gc.x"
0f2d19dd 2870}
89e00824 2871
56495472
ML
2872#endif /*MARK_DEPENDENCIES*/
2873
89e00824
ML
2874/*
2875 Local Variables:
2876 c-file-style: "gnu"
2877 End:
2878*/