Reimplemented to allow deprecation messages while the GC is running.
[bpt/guile.git] / libguile / gc.c
CommitLineData
22a52da1 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001 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
MV
243 *
244 * SCM_MTRIGGER_HYSTERESIS is the amount of malloc storage that must be
245 * reclaimed by a GC triggered by must_malloc. If less than this is
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
4c48ba06 280# define SCM_HEAP_SEG_SIZE (7000L * sizeof (scm_cell))
0f2d19dd 281# else
4c48ba06 282# define SCM_HEAP_SEG_SIZE (16384L * sizeof (scm_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
d6884e63
ML
290/* CELL_UP and CELL_DN are used by scm_init_heap_seg to find (scm_cell * span)
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
c014a02e
ML
302# define CELL_UP(p, span) (SCM_CELLPTR)(~(sizeof(scm_cell)*(span)-1L) & ((long)(p)+sizeof(scm_cell)*(span)-1L))
303# define CELL_DN(p, span) (SCM_CELLPTR)(~(sizeof(scm_cell)*(span)-1L) & (long)(p))
0f2d19dd
JB
304# endif /* UNICOS */
305#endif /* PROT386 */
306
ecf470a2
ML
307#define DOUBLECELL_ALIGNED_P(x) (((2 * sizeof (scm_cell) - 1) & SCM_UNPACK (x)) == 0)
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
362 * is the number of bytes of must_malloc allocation needed to trigger gc.
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 { \
1547 scm_cell *nxt__ = CELL_UP ((char *) (ptr) + 1, (span)); \
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 {
92c2555f 1638 m += length * sizeof (scm_t_bits);
1b9be268
DH
1639 scm_must_free (SCM_VECTOR_BASE (scmptr));
1640 }
1641 break;
1642 }
0f2d19dd
JB
1643#ifdef CCLO
1644 case scm_tc7_cclo:
b5c2579a 1645 m += (SCM_CCLO_LENGTH (scmptr) * sizeof (SCM));
06ee04b2 1646 scm_must_free (SCM_CCLO_BASE (scmptr));
0f2d19dd 1647 break;
06ee04b2 1648#endif
afe5177e 1649#ifdef HAVE_ARRAYS
0f2d19dd 1650 case scm_tc7_bvect:
93778877 1651 {
c014a02e 1652 unsigned long int length = SCM_BITVECTOR_LENGTH (scmptr);
93778877
DH
1653 if (length > 0)
1654 {
c014a02e 1655 m += sizeof (long) * ((length + SCM_LONG_BIT - 1) / SCM_LONG_BIT);
93778877
DH
1656 scm_must_free (SCM_BITVECTOR_BASE (scmptr));
1657 }
1658 }
06ee04b2 1659 break;
0f2d19dd 1660 case scm_tc7_byvect:
0f2d19dd
JB
1661 case scm_tc7_ivect:
1662 case scm_tc7_uvect:
0f2d19dd 1663 case scm_tc7_svect:
5c11cc9d 1664#ifdef HAVE_LONG_LONGS
0f2d19dd 1665 case scm_tc7_llvect:
0f2d19dd
JB
1666#endif
1667 case scm_tc7_fvect:
0f2d19dd 1668 case scm_tc7_dvect:
0f2d19dd 1669 case scm_tc7_cvect:
d1ca2c64 1670 m += SCM_UVECTOR_LENGTH (scmptr) * scm_uniform_element_size (scmptr);
06ee04b2
DH
1671 scm_must_free (SCM_UVECTOR_BASE (scmptr));
1672 break;
afe5177e 1673#endif
0f2d19dd 1674 case scm_tc7_string:
b5c2579a 1675 m += SCM_STRING_LENGTH (scmptr) + 1;
f151f912
DH
1676 scm_must_free (SCM_STRING_CHARS (scmptr));
1677 break;
28b06554 1678 case scm_tc7_symbol:
b5c2579a 1679 m += SCM_SYMBOL_LENGTH (scmptr) + 1;
f151f912 1680 scm_must_free (SCM_SYMBOL_CHARS (scmptr));
0f2d19dd 1681 break;
8a3e715b
ML
1682 case scm_tc7_variable:
1683 break;
0f2d19dd 1684 case scm_tcs_subrs:
d6884e63 1685 /* the various "subrs" (primitives) are never freed */
0f2d19dd
JB
1686 continue;
1687 case scm_tc7_port:
0f2d19dd
JB
1688 if SCM_OPENP (scmptr)
1689 {
1690 int k = SCM_PTOBNUM (scmptr);
7a7f7c53 1691#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1692 if (!(k < scm_numptob))
7a7f7c53
DH
1693 SCM_MISC_ERROR ("undefined port type", SCM_EOL);
1694#endif
0f2d19dd 1695 /* Keep "revealed" ports alive. */
945fec60 1696 if (scm_revealed_count (scmptr) > 0)
0f2d19dd
JB
1697 continue;
1698 /* Yes, I really do mean scm_ptobs[k].free */
1699 /* rather than ftobs[k].close. .close */
1700 /* is for explicit CLOSE-PORT by user */
84af0382 1701 m += (scm_ptobs[k].free) (scmptr);
0f2d19dd
JB
1702 SCM_SETSTREAM (scmptr, 0);
1703 scm_remove_from_port_table (scmptr);
1704 scm_gc_ports_collected++;
22a52da1 1705 SCM_CLR_PORT_OPEN_FLAG (scmptr);
0f2d19dd
JB
1706 }
1707 break;
1708 case scm_tc7_smob:
d6884e63 1709 switch SCM_TYP16 (scmptr)
0f2d19dd
JB
1710 {
1711 case scm_tc_free_cell:
acb0a19c 1712 case scm_tc16_real:
0f2d19dd
JB
1713 break;
1714#ifdef SCM_BIGDIG
acb0a19c 1715 case scm_tc16_big:
0f2d19dd 1716 m += (SCM_NUMDIGS (scmptr) * SCM_BITSPERDIG / SCM_CHAR_BIT);
06ee04b2
DH
1717 scm_must_free (SCM_BDIGITS (scmptr));
1718 break;
0f2d19dd 1719#endif /* def SCM_BIGDIG */
acb0a19c 1720 case scm_tc16_complex:
92c2555f 1721 m += sizeof (scm_t_complex);
405aaef9 1722 scm_must_free (SCM_COMPLEX_MEM (scmptr));
06ee04b2 1723 break;
0f2d19dd 1724 default:
0f2d19dd
JB
1725 {
1726 int k;
1727 k = SCM_SMOBNUM (scmptr);
7a7f7c53 1728#if (SCM_DEBUG_CELL_ACCESSES == 1) || (defined (GUILE_DEBUG_FREELIST))
0f2d19dd 1729 if (!(k < scm_numsmob))
7a7f7c53
DH
1730 SCM_MISC_ERROR ("undefined smob type", SCM_EOL);
1731#endif
1732 if (scm_smobs[k].free)
1733 m += (scm_smobs[k].free) (scmptr);
0f2d19dd
JB
1734 break;
1735 }
1736 }
1737 break;
1738 default:
acf4331f 1739 SCM_MISC_ERROR ("unknown type", SCM_EOL);
0f2d19dd 1740 }
7bb8eac7 1741
4c48ba06 1742 if (!--left_to_collect)
4a4c9785 1743 {
22a52da1 1744 SCM_SET_CELL_WORD_0 (scmptr, nfreelist);
4c48ba06
MD
1745 *freelist->clustertail = scmptr;
1746 freelist->clustertail = SCM_CDRLOC (scmptr);
a00c95d9 1747
4a4c9785 1748 nfreelist = SCM_EOL;
4c48ba06
MD
1749 freelist->collected += span * freelist->cluster_size;
1750 left_to_collect = freelist->cluster_size;
4a4c9785
MD
1751 }
1752 else
4a4c9785
MD
1753 {
1754 /* Stick the new cell on the front of nfreelist. It's
1755 critical that we mark this cell as freed; otherwise, the
1756 conservative collector might trace it as some other type
1757 of object. */
54778cd3 1758 SCM_SET_CELL_TYPE (scmptr, scm_tc_free_cell);
3f5d82cd 1759 SCM_SET_FREE_CELL_CDR (scmptr, nfreelist);
4a4c9785
MD
1760 nfreelist = scmptr;
1761 }
0f2d19dd 1762 }
d6884e63 1763
0f2d19dd
JB
1764#ifdef GC_FREE_SEGMENTS
1765 if (n == seg_size)
1766 {
c014a02e 1767 register long j;
15e9d186 1768
4c48ba06 1769 freelist->heap_size -= seg_size;
cf2d30f6
JB
1770 free ((char *) scm_heap_table[i].bounds[0]);
1771 scm_heap_table[i].bounds[0] = 0;
1772 for (j = i + 1; j < scm_n_heap_segs; j++)
0f2d19dd
JB
1773 scm_heap_table[j - 1] = scm_heap_table[j];
1774 scm_n_heap_segs -= 1;
cf2d30f6 1775 i--; /* We need to scan the segment just moved. */
0f2d19dd
JB
1776 }
1777 else
1778#endif /* ifdef GC_FREE_SEGMENTS */
4a4c9785
MD
1779 {
1780 /* Update the real freelist pointer to point to the head of
1781 the list of free cells we've built for this segment. */
4c48ba06 1782 freelist->cells = nfreelist;
4c48ba06 1783 freelist->left_to_collect = left_to_collect;
4a4c9785
MD
1784 }
1785
fca7547b 1786#ifdef GUILE_DEBUG_FREELIST
cf2d30f6
JB
1787 scm_map_free_list ();
1788#endif
4a4c9785 1789 }
a00c95d9 1790
4c48ba06
MD
1791 gc_sweep_freelist_finish (&scm_master_freelist);
1792 gc_sweep_freelist_finish (&scm_master_freelist2);
a00c95d9 1793
8ded62a3
MD
1794 /* When we move to POSIX threads private freelists should probably
1795 be GC-protected instead. */
1796 scm_freelist = SCM_EOL;
1797 scm_freelist2 = SCM_EOL;
a00c95d9 1798
b37fe1c5 1799 scm_cells_allocated = (SCM_HEAP_SIZE - scm_gc_cells_collected);
8b0d194f 1800 scm_gc_yield -= scm_cells_allocated;
eae33935 1801
1be6b49c
ML
1802 if (scm_mallocated < m)
1803 /* The byte count of allocated objects has underflowed. This is
1804 probably because you forgot to report the sizes of objects you
1805 have allocated, by calling scm_done_malloc or some such. When
1806 the GC freed them, it subtracted their size from
1807 scm_mallocated, which underflowed. */
1808 abort ();
1809
0f2d19dd
JB
1810 scm_mallocated -= m;
1811 scm_gc_malloc_collected = m;
1812}
acf4331f 1813#undef FUNC_NAME
0f2d19dd
JB
1814
1815
1816\f
0f2d19dd
JB
1817/* {Front end to malloc}
1818 *
9d47a1e6
ML
1819 * scm_must_malloc, scm_must_realloc, scm_must_free, scm_done_malloc,
1820 * scm_done_free
0f2d19dd 1821 *
c6c79933
GH
1822 * These functions provide services comparable to malloc, realloc, and
1823 * free. They should be used when allocating memory that will be under
1824 * control of the garbage collector, i.e., if the memory may be freed
1825 * during garbage collection.
1826 */
bc9d9bb2 1827
0f2d19dd
JB
1828/* scm_must_malloc
1829 * Return newly malloced storage or throw an error.
1830 *
1831 * The parameter WHAT is a string for error reporting.
a00c95d9 1832 * If the threshold scm_mtrigger will be passed by this
0f2d19dd
JB
1833 * allocation, or if the first call to malloc fails,
1834 * garbage collect -- on the presumption that some objects
1835 * using malloced storage may be collected.
1836 *
1837 * The limit scm_mtrigger may be raised by this allocation.
1838 */
07806695 1839void *
1be6b49c 1840scm_must_malloc (size_t size, const char *what)
0f2d19dd 1841{
07806695 1842 void *ptr;
c014a02e 1843 unsigned long nm = scm_mallocated + size;
1be6b49c
ML
1844
1845 if (nm < size)
1846 /* The byte count of allocated objects has overflowed. This is
1847 probably because you forgot to report the correct size of freed
1848 memory in some of your smob free methods. */
1849 abort ();
e4ef2330
MD
1850
1851 if (nm <= scm_mtrigger)
0f2d19dd 1852 {
07806695 1853 SCM_SYSCALL (ptr = malloc (size));
0f2d19dd
JB
1854 if (NULL != ptr)
1855 {
1856 scm_mallocated = nm;
bc9d9bb2
MD
1857#ifdef GUILE_DEBUG_MALLOC
1858 scm_malloc_register (ptr, what);
1859#endif
0f2d19dd
JB
1860 return ptr;
1861 }
1862 }
6064dcc6 1863
0f2d19dd 1864 scm_igc (what);
e4ef2330 1865
0f2d19dd 1866 nm = scm_mallocated + size;
eae33935 1867
1be6b49c
ML
1868 if (nm < size)
1869 /* The byte count of allocated objects has overflowed. This is
1870 probably because you forgot to report the correct size of freed
1871 memory in some of your smob free methods. */
1872 abort ();
1873
07806695 1874 SCM_SYSCALL (ptr = malloc (size));
0f2d19dd
JB
1875 if (NULL != ptr)
1876 {
1877 scm_mallocated = nm;
5e7248f2 1878
6064dcc6 1879 if (nm > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS) {
5e7248f2 1880 unsigned long old_trigger = scm_mtrigger;
6064dcc6
MV
1881 if (nm > scm_mtrigger)
1882 scm_mtrigger = nm + nm / 2;
1883 else
1884 scm_mtrigger += scm_mtrigger / 2;
5e7248f2
MV
1885 if (scm_mtrigger < old_trigger)
1886 abort ();
6064dcc6 1887 }
bc9d9bb2
MD
1888#ifdef GUILE_DEBUG_MALLOC
1889 scm_malloc_register (ptr, what);
1890#endif
1891
0f2d19dd
JB
1892 return ptr;
1893 }
e4ef2330 1894
acf4331f 1895 scm_memory_error (what);
0f2d19dd
JB
1896}
1897
1898
1899/* scm_must_realloc
1900 * is similar to scm_must_malloc.
1901 */
07806695
JB
1902void *
1903scm_must_realloc (void *where,
1be6b49c
ML
1904 size_t old_size,
1905 size_t size,
3eeba8d4 1906 const char *what)
0f2d19dd 1907{
07806695 1908 void *ptr;
c014a02e 1909 unsigned long nm;
1be6b49c
ML
1910
1911 if (size <= old_size)
1912 return where;
1913
1914 nm = scm_mallocated + size - old_size;
1915
1916 if (nm < (size - old_size))
1917 /* The byte count of allocated objects has overflowed. This is
1918 probably because you forgot to report the correct size of freed
1919 memory in some of your smob free methods. */
1920 abort ();
e4ef2330
MD
1921
1922 if (nm <= scm_mtrigger)
0f2d19dd 1923 {
07806695 1924 SCM_SYSCALL (ptr = realloc (where, size));
0f2d19dd
JB
1925 if (NULL != ptr)
1926 {
1927 scm_mallocated = nm;
bc9d9bb2
MD
1928#ifdef GUILE_DEBUG_MALLOC
1929 scm_malloc_reregister (where, ptr, what);
1930#endif
0f2d19dd
JB
1931 return ptr;
1932 }
1933 }
e4ef2330 1934
0f2d19dd 1935 scm_igc (what);
e4ef2330
MD
1936
1937 nm = scm_mallocated + size - old_size;
1be6b49c
ML
1938
1939 if (nm < (size - old_size))
1940 /* The byte count of allocated objects has overflowed. This is
1941 probably because you forgot to report the correct size of freed
1942 memory in some of your smob free methods. */
1943 abort ();
1944
07806695 1945 SCM_SYSCALL (ptr = realloc (where, size));
0f2d19dd
JB
1946 if (NULL != ptr)
1947 {
1948 scm_mallocated = nm;
6064dcc6 1949 if (nm > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS) {
5e7248f2 1950 unsigned long old_trigger = scm_mtrigger;
6064dcc6
MV
1951 if (nm > scm_mtrigger)
1952 scm_mtrigger = nm + nm / 2;
1953 else
1954 scm_mtrigger += scm_mtrigger / 2;
5e7248f2
MV
1955 if (scm_mtrigger < old_trigger)
1956 abort ();
6064dcc6 1957 }
bc9d9bb2
MD
1958#ifdef GUILE_DEBUG_MALLOC
1959 scm_malloc_reregister (where, ptr, what);
1960#endif
0f2d19dd
JB
1961 return ptr;
1962 }
e4ef2330 1963
acf4331f 1964 scm_memory_error (what);
0f2d19dd
JB
1965}
1966
e4a7824f 1967char *
1be6b49c 1968scm_must_strndup (const char *str, size_t length)
e4a7824f
MV
1969{
1970 char * dst = scm_must_malloc (length + 1, "scm_must_strndup");
1971 memcpy (dst, str, length);
1972 dst[length] = 0;
1973 return dst;
1974}
1975
1976char *
1977scm_must_strdup (const char *str)
1978{
1979 return scm_must_strndup (str, strlen (str));
1980}
acf4331f 1981
a00c95d9 1982void
07806695 1983scm_must_free (void *obj)
acf4331f 1984#define FUNC_NAME "scm_must_free"
0f2d19dd 1985{
bc9d9bb2
MD
1986#ifdef GUILE_DEBUG_MALLOC
1987 scm_malloc_unregister (obj);
1988#endif
0f2d19dd
JB
1989 if (obj)
1990 free (obj);
1991 else
acf4331f 1992 SCM_MISC_ERROR ("freeing NULL pointer", SCM_EOL);
0f2d19dd 1993}
acf4331f
DH
1994#undef FUNC_NAME
1995
0f2d19dd 1996
c68296f8
MV
1997/* Announce that there has been some malloc done that will be freed
1998 * during gc. A typical use is for a smob that uses some malloced
1999 * memory but can not get it from scm_must_malloc (for whatever
2000 * reason). When a new object of this smob is created you call
2001 * scm_done_malloc with the size of the object. When your smob free
2002 * function is called, be sure to include this size in the return
9d47a1e6
ML
2003 * value.
2004 *
2005 * If you can't actually free the memory in the smob free function,
2006 * for whatever reason (like reference counting), you still can (and
2007 * should) report the amount of memory freed when you actually free it.
2008 * Do it by calling scm_done_malloc with the _negated_ size. Clever,
2009 * eh? Or even better, call scm_done_free. */
0f2d19dd 2010
c68296f8 2011void
c014a02e 2012scm_done_malloc (long size)
c68296f8 2013{
1be6b49c
ML
2014 if (size < 0) {
2015 if (scm_mallocated < size)
2016 /* The byte count of allocated objects has underflowed. This is
2017 probably because you forgot to report the sizes of objects you
2018 have allocated, by calling scm_done_malloc or some such. When
2019 the GC freed them, it subtracted their size from
2020 scm_mallocated, which underflowed. */
2021 abort ();
2022 } else {
c014a02e 2023 unsigned long nm = scm_mallocated + size;
1be6b49c
ML
2024 if (nm < size)
2025 /* The byte count of allocated objects has overflowed. This is
2026 probably because you forgot to report the correct size of freed
2027 memory in some of your smob free methods. */
2028 abort ();
2029 }
eae33935 2030
c68296f8
MV
2031 scm_mallocated += size;
2032
2033 if (scm_mallocated > scm_mtrigger)
2034 {
2035 scm_igc ("foreign mallocs");
2036 if (scm_mallocated > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS)
2037 {
2038 if (scm_mallocated > scm_mtrigger)
2039 scm_mtrigger = scm_mallocated + scm_mallocated / 2;
2040 else
2041 scm_mtrigger += scm_mtrigger / 2;
2042 }
2043 }
2044}
2045
9d47a1e6 2046void
c014a02e 2047scm_done_free (long size)
9d47a1e6 2048{
1be6b49c
ML
2049 if (size >= 0) {
2050 if (scm_mallocated < size)
2051 /* The byte count of allocated objects has underflowed. This is
2052 probably because you forgot to report the sizes of objects you
2053 have allocated, by calling scm_done_malloc or some such. When
2054 the GC freed them, it subtracted their size from
2055 scm_mallocated, which underflowed. */
2056 abort ();
2057 } else {
5e7248f2 2058 unsigned long nm = scm_mallocated - size;
1be6b49c
ML
2059 if (nm < size)
2060 /* The byte count of allocated objects has overflowed. This is
2061 probably because you forgot to report the correct size of freed
2062 memory in some of your smob free methods. */
2063 abort ();
2064 }
2065
9d47a1e6
ML
2066 scm_mallocated -= size;
2067}
2068
c68296f8
MV
2069
2070\f
0f2d19dd
JB
2071/* {Heap Segments}
2072 *
2073 * Each heap segment is an array of objects of a particular size.
2074 * Every segment has an associated (possibly shared) freelist.
2075 * A table of segment records is kept that records the upper and
2076 * lower extents of the segment; this is used during the conservative
2077 * phase of gc to identify probably gc roots (because they point
c68296f8 2078 * into valid segments at reasonable offsets). */
0f2d19dd
JB
2079
2080/* scm_expmem
2081 * is true if the first segment was smaller than INIT_HEAP_SEG.
2082 * If scm_expmem is set to one, subsequent segment allocations will
2083 * allocate segments of size SCM_EXPHEAP(scm_heap_size).
2084 */
2085int scm_expmem = 0;
2086
1be6b49c 2087size_t scm_max_segment_size;
4c48ba06 2088
0f2d19dd
JB
2089/* scm_heap_org
2090 * is the lowest base address of any heap segment.
2091 */
2092SCM_CELLPTR scm_heap_org;
2093
92c2555f 2094scm_t_heap_seg_data * scm_heap_table = 0;
1be6b49c
ML
2095static size_t heap_segment_table_size = 0;
2096size_t scm_n_heap_segs = 0;
0f2d19dd 2097
0f2d19dd 2098/* init_heap_seg
d6884e63 2099 * initializes a new heap segment and returns the number of objects it contains.
0f2d19dd 2100 *
d6884e63
ML
2101 * The segment origin and segment size in bytes are input parameters.
2102 * The freelist is both input and output.
0f2d19dd 2103 *
d6884e63
ML
2104 * This function presumes that the scm_heap_table has already been expanded
2105 * to accomodate a new segment record and that the markbit space was reserved
2106 * for all the cards in this segment.
0f2d19dd
JB
2107 */
2108
d6884e63
ML
2109#define INIT_CARD(card, span) \
2110 do { \
322ec19d 2111 SCM_GC_SET_CARD_BVEC (card, get_bvec ()); \
d6884e63
ML
2112 if ((span) == 2) \
2113 SCM_GC_SET_CARD_DOUBLECELL (card); \
2114 } while (0)
0f2d19dd 2115
1be6b49c 2116static size_t
92c2555f 2117init_heap_seg (SCM_CELLPTR seg_org, size_t size, scm_t_freelist *freelist)
0f2d19dd
JB
2118{
2119 register SCM_CELLPTR ptr;
0f2d19dd 2120 SCM_CELLPTR seg_end;
592996c9 2121 size_t new_seg_index;
1be6b49c 2122 ptrdiff_t n_new_cells;
4c48ba06 2123 int span = freelist->span;
a00c95d9 2124
0f2d19dd
JB
2125 if (seg_org == NULL)
2126 return 0;
2127
d6884e63
ML
2128 /* Align the begin ptr up.
2129 */
2130 ptr = SCM_GC_CARD_UP (seg_org);
acb0a19c 2131
a00c95d9 2132 /* Compute the ceiling on valid object pointers w/in this segment.
0f2d19dd 2133 */
d6884e63 2134 seg_end = SCM_GC_CARD_DOWN ((char *)seg_org + size);
0f2d19dd 2135
a00c95d9 2136 /* Find the right place and insert the segment record.
0f2d19dd 2137 */
592996c9 2138 new_seg_index = 0;
eae33935 2139 while (new_seg_index < scm_n_heap_segs
592996c9
DH
2140 && SCM_PTR_LE (scm_heap_table[new_seg_index].bounds[0], seg_org))
2141 new_seg_index++;
0f2d19dd
JB
2142
2143 {
2144 int i;
2145 for (i = scm_n_heap_segs; i > new_seg_index; --i)
2146 scm_heap_table[i] = scm_heap_table[i - 1];
2147 }
a00c95d9 2148
0f2d19dd
JB
2149 ++scm_n_heap_segs;
2150
945fec60 2151 scm_heap_table[new_seg_index].span = span;
4c48ba06 2152 scm_heap_table[new_seg_index].freelist = freelist;
195e6201
DH
2153 scm_heap_table[new_seg_index].bounds[0] = ptr;
2154 scm_heap_table[new_seg_index].bounds[1] = seg_end;
0f2d19dd 2155
acb0a19c
MD
2156 /*n_new_cells*/
2157 n_new_cells = seg_end - ptr;
0f2d19dd 2158
4c48ba06 2159 freelist->heap_size += n_new_cells;
4a4c9785 2160
a00c95d9 2161 /* Partition objects in this segment into clusters */
4a4c9785
MD
2162 {
2163 SCM clusters;
2164 SCM *clusterp = &clusters;
4a4c9785 2165
d6884e63
ML
2166 NEXT_DATA_CELL (ptr, span);
2167 while (ptr < seg_end)
4a4c9785 2168 {
d6884e63
ML
2169 scm_cell *nxt = ptr;
2170 scm_cell *prv = NULL;
2171 scm_cell *last_card = NULL;
2172 int n_data_cells = (SCM_GC_CARD_N_DATA_CELLS / span) * SCM_CARDS_PER_CLUSTER - 1;
2173 NEXT_DATA_CELL(nxt, span);
4a4c9785 2174
4c48ba06
MD
2175 /* Allocate cluster spine
2176 */
4a4c9785 2177 *clusterp = PTR2SCM (ptr);
d6884e63 2178 SCM_SETCAR (*clusterp, PTR2SCM (nxt));
4a4c9785 2179 clusterp = SCM_CDRLOC (*clusterp);
d6884e63 2180 ptr = nxt;
a00c95d9 2181
d6884e63 2182 while (n_data_cells--)
4a4c9785 2183 {
d6884e63 2184 scm_cell *card = SCM_GC_CELL_CARD (ptr);
96f6f4ae 2185 SCM scmptr = PTR2SCM (ptr);
d6884e63
ML
2186 nxt = ptr;
2187 NEXT_DATA_CELL (nxt, span);
2188 prv = ptr;
2189
2190 if (card != last_card)
2191 {
2192 INIT_CARD (card, span);
2193 last_card = card;
2194 }
96f6f4ae 2195
54778cd3 2196 SCM_SET_CELL_TYPE (scmptr, scm_tc_free_cell);
22a52da1 2197 SCM_SET_FREE_CELL_CDR (scmptr, PTR2SCM (nxt));
d6884e63
ML
2198
2199 ptr = nxt;
4a4c9785 2200 }
4c48ba06 2201
d6884e63 2202 SCM_SET_FREE_CELL_CDR (PTR2SCM (prv), SCM_EOL);
4a4c9785 2203 }
a00c95d9 2204
d6884e63
ML
2205 /* sanity check */
2206 {
2207 scm_cell *ref = seg_end;
2208 NEXT_DATA_CELL (ref, span);
2209 if (ref != ptr)
2210 /* [cmm] looks like the segment size doesn't divide cleanly by
2211 cluster size. bad cmm! */
2212 abort();
2213 }
2214
4a4c9785
MD
2215 /* Patch up the last cluster pointer in the segment
2216 * to join it to the input freelist.
2217 */
4c48ba06
MD
2218 *clusterp = freelist->clusters;
2219 freelist->clusters = clusters;
4a4c9785
MD
2220 }
2221
4c48ba06
MD
2222#ifdef DEBUGINFO
2223 fprintf (stderr, "H");
2224#endif
0f2d19dd 2225 return size;
0f2d19dd
JB
2226}
2227
1be6b49c 2228static size_t
92c2555f 2229round_to_cluster_size (scm_t_freelist *freelist, size_t len)
a00c95d9 2230{
1be6b49c 2231 size_t cluster_size_in_bytes = CLUSTER_SIZE_IN_BYTES (freelist);
a00c95d9
ML
2232
2233 return
2234 (len + cluster_size_in_bytes - 1) / cluster_size_in_bytes * cluster_size_in_bytes
2235 + ALIGNMENT_SLACK (freelist);
2236}
2237
a00c95d9 2238static void
92c2555f 2239alloc_some_heap (scm_t_freelist *freelist, policy_on_error error_policy)
acf4331f 2240#define FUNC_NAME "alloc_some_heap"
0f2d19dd 2241{
0f2d19dd 2242 SCM_CELLPTR ptr;
1be6b49c 2243 size_t len;
a00c95d9 2244
9d47a1e6 2245 if (scm_gc_heap_lock)
b6efc951
DH
2246 {
2247 /* Critical code sections (such as the garbage collector) aren't
2248 * supposed to add heap segments.
2249 */
2250 fprintf (stderr, "alloc_some_heap: Can not extend locked heap.\n");
2251 abort ();
2252 }
0f2d19dd 2253
9d47a1e6 2254 if (scm_n_heap_segs == heap_segment_table_size)
b6efc951
DH
2255 {
2256 /* We have to expand the heap segment table to have room for the new
2257 * segment. Do not yet increment scm_n_heap_segs -- that is done by
2258 * init_heap_seg only if the allocation of the segment itself succeeds.
2259 */
1be6b49c 2260 size_t new_table_size = scm_n_heap_segs + 1;
92c2555f
MV
2261 size_t size = new_table_size * sizeof (scm_t_heap_seg_data);
2262 scm_t_heap_seg_data *new_heap_table;
b6efc951 2263
92c2555f 2264 SCM_SYSCALL (new_heap_table = ((scm_t_heap_seg_data *)
b6efc951
DH
2265 realloc ((char *)scm_heap_table, size)));
2266 if (!new_heap_table)
2267 {
2268 if (error_policy == abort_on_error)
2269 {
2270 fprintf (stderr, "alloc_some_heap: Could not grow heap segment table.\n");
2271 abort ();
2272 }
2273 else
2274 {
2275 return;
2276 }
2277 }
2278 else
2279 {
2280 scm_heap_table = new_heap_table;
2281 heap_segment_table_size = new_table_size;
2282 }
2283 }
0f2d19dd 2284
0f2d19dd 2285 /* Pick a size for the new heap segment.
a00c95d9 2286 * The rule for picking the size of a segment is explained in
0f2d19dd
JB
2287 * gc.h
2288 */
4c48ba06 2289 {
1811ebce
MD
2290 /* Assure that the new segment is predicted to be large enough.
2291 *
2292 * New yield should at least equal GC fraction of new heap size, i.e.
2293 *
2294 * y + dh > f * (h + dh)
2295 *
2296 * y : yield
8fef55a8 2297 * f : min yield fraction
1811ebce
MD
2298 * h : heap size
2299 * dh : size of new heap segment
2300 *
2301 * This gives dh > (f * h - y) / (1 - f)
bda1446c 2302 */
8fef55a8 2303 int f = freelist->min_yield_fraction;
c014a02e 2304 unsigned long h = SCM_HEAP_SIZE;
1be6b49c 2305 size_t min_cells = (f * h - 100 * (long) scm_gc_yield) / (99 - f);
4c48ba06
MD
2306 len = SCM_EXPHEAP (freelist->heap_size);
2307#ifdef DEBUGINFO
1be6b49c 2308 fprintf (stderr, "(%ld < %ld)", (long) len, (long) min_cells);
4c48ba06
MD
2309#endif
2310 if (len < min_cells)
1811ebce 2311 len = min_cells + freelist->cluster_size;
4c48ba06 2312 len *= sizeof (scm_cell);
1811ebce
MD
2313 /* force new sampling */
2314 freelist->collected = LONG_MAX;
4c48ba06 2315 }
a00c95d9 2316
4c48ba06
MD
2317 if (len > scm_max_segment_size)
2318 len = scm_max_segment_size;
0f2d19dd
JB
2319
2320 {
1be6b49c 2321 size_t smallest;
0f2d19dd 2322
a00c95d9 2323 smallest = CLUSTER_SIZE_IN_BYTES (freelist);
a00c95d9 2324
0f2d19dd 2325 if (len < smallest)
a00c95d9 2326 len = smallest;
0f2d19dd
JB
2327
2328 /* Allocate with decaying ambition. */
2329 while ((len >= SCM_MIN_HEAP_SEG_SIZE)
2330 && (len >= smallest))
2331 {
1be6b49c 2332 size_t rounded_len = round_to_cluster_size (freelist, len);
a00c95d9 2333 SCM_SYSCALL (ptr = (SCM_CELLPTR) malloc (rounded_len));
0f2d19dd
JB
2334 if (ptr)
2335 {
a00c95d9 2336 init_heap_seg (ptr, rounded_len, freelist);
0f2d19dd
JB
2337 return;
2338 }
2339 len /= 2;
2340 }
2341 }
2342
b6efc951
DH
2343 if (error_policy == abort_on_error)
2344 {
2345 fprintf (stderr, "alloc_some_heap: Could not grow heap.\n");
2346 abort ();
2347 }
0f2d19dd 2348}
acf4331f 2349#undef FUNC_NAME
0f2d19dd 2350
0f2d19dd
JB
2351\f
2352/* {GC Protection Helper Functions}
2353 */
2354
2355
5d2b97cd
DH
2356/*
2357 * If within a function you need to protect one or more scheme objects from
2358 * garbage collection, pass them as parameters to one of the
2359 * scm_remember_upto_here* functions below. These functions don't do
2360 * anything, but since the compiler does not know that they are actually
2361 * no-ops, it will generate code that calls these functions with the given
2362 * parameters. Therefore, you can be sure that the compiler will keep those
2363 * scheme values alive (on the stack or in a register) up to the point where
2364 * scm_remember_upto_here* is called. In other words, place the call to
592996c9 2365 * scm_remember_upto_here* _behind_ the last code in your function, that
5d2b97cd
DH
2366 * depends on the scheme object to exist.
2367 *
8c494e99
DH
2368 * Example: We want to make sure that the string object str does not get
2369 * garbage collected during the execution of 'some_function' in the code
2370 * below, because otherwise the characters belonging to str would be freed and
5d2b97cd
DH
2371 * 'some_function' might access freed memory. To make sure that the compiler
2372 * keeps str alive on the stack or in a register such that it is visible to
2373 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
2374 * call to 'some_function'. Note that this would not be necessary if str was
2375 * used anyway after the call to 'some_function'.
2376 * char *chars = SCM_STRING_CHARS (str);
2377 * some_function (chars);
2378 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
2379 */
2380
2381void
e81d98ec 2382scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
5d2b97cd
DH
2383{
2384 /* Empty. Protects a single object from garbage collection. */
2385}
2386
2387void
e81d98ec 2388scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
5d2b97cd
DH
2389{
2390 /* Empty. Protects two objects from garbage collection. */
2391}
2392
2393void
e81d98ec 2394scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
5d2b97cd
DH
2395{
2396 /* Empty. Protects any number of objects from garbage collection. */
2397}
2398
c209c88e 2399/*
41b0806d
GB
2400 These crazy functions prevent garbage collection
2401 of arguments after the first argument by
2402 ensuring they remain live throughout the
2403 function because they are used in the last
2404 line of the code block.
2405 It'd be better to have a nice compiler hint to
2406 aid the conservative stack-scanning GC. --03/09/00 gjb */
0f2d19dd
JB
2407SCM
2408scm_return_first (SCM elt, ...)
0f2d19dd
JB
2409{
2410 return elt;
2411}
2412
41b0806d
GB
2413int
2414scm_return_first_int (int i, ...)
2415{
2416 return i;
2417}
2418
0f2d19dd 2419
0f2d19dd 2420SCM
6e8d25a6 2421scm_permanent_object (SCM obj)
0f2d19dd
JB
2422{
2423 SCM_REDEFER_INTS;
2424 scm_permobjs = scm_cons (obj, scm_permobjs);
2425 SCM_REALLOW_INTS;
2426 return obj;
2427}
2428
2429
7bd4fbe2
MD
2430/* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
2431 other references are dropped, until the object is unprotected by calling
6b1b030e 2432 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
7bd4fbe2
MD
2433 i. e. it is possible to protect the same object several times, but it is
2434 necessary to unprotect the object the same number of times to actually get
2435 the object unprotected. It is an error to unprotect an object more often
2436 than it has been protected before. The function scm_protect_object returns
2437 OBJ.
2438*/
2439
2440/* Implementation note: For every object X, there is a counter which
6b1b030e 2441 scm_gc_protect_object(X) increments and scm_gc_unprotect_object(X) decrements.
7bd4fbe2 2442*/
686765af 2443
ef290276 2444SCM
6b1b030e 2445scm_gc_protect_object (SCM obj)
ef290276 2446{
686765af 2447 SCM handle;
9d47a1e6 2448
686765af 2449 /* This critical section barrier will be replaced by a mutex. */
2dd6a83a 2450 SCM_REDEFER_INTS;
9d47a1e6 2451
0f0f0899 2452 handle = scm_hashq_create_handle_x (scm_protects, obj, SCM_MAKINUM (0));
1be6b49c 2453 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
9d47a1e6 2454
2dd6a83a 2455 SCM_REALLOW_INTS;
9d47a1e6 2456
ef290276
JB
2457 return obj;
2458}
2459
2460
2461/* Remove any protection for OBJ established by a prior call to
dab7f566 2462 scm_protect_object. This function returns OBJ.
ef290276 2463
dab7f566 2464 See scm_protect_object for more information. */
ef290276 2465SCM
6b1b030e 2466scm_gc_unprotect_object (SCM obj)
ef290276 2467{
686765af 2468 SCM handle;
9d47a1e6 2469
686765af 2470 /* This critical section barrier will be replaced by a mutex. */
2dd6a83a 2471 SCM_REDEFER_INTS;
9d47a1e6 2472
686765af 2473 handle = scm_hashq_get_handle (scm_protects, obj);
9d47a1e6 2474
22a52da1 2475 if (SCM_FALSEP (handle))
686765af 2476 {
0f0f0899
MD
2477 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
2478 abort ();
686765af 2479 }
6a199940
DH
2480 else
2481 {
1be6b49c
ML
2482 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
2483 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
6a199940
DH
2484 scm_hashq_remove_x (scm_protects, obj);
2485 else
1be6b49c 2486 SCM_SETCDR (handle, count);
6a199940 2487 }
686765af 2488
2dd6a83a 2489 SCM_REALLOW_INTS;
ef290276
JB
2490
2491 return obj;
2492}
2493
6b1b030e
ML
2494void
2495scm_gc_register_root (SCM *p)
2496{
2497 SCM handle;
2498 SCM key = scm_long2num ((long) p);
eae33935 2499
6b1b030e
ML
2500 /* This critical section barrier will be replaced by a mutex. */
2501 SCM_REDEFER_INTS;
2502
2503 handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key, SCM_MAKINUM (0));
2504 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
2505
2506 SCM_REALLOW_INTS;
2507}
2508
2509void
2510scm_gc_unregister_root (SCM *p)
2511{
2512 SCM handle;
2513 SCM key = scm_long2num ((long) p);
2514
2515 /* This critical section barrier will be replaced by a mutex. */
2516 SCM_REDEFER_INTS;
2517
2518 handle = scm_hashv_get_handle (scm_gc_registered_roots, key);
2519
2520 if (SCM_FALSEP (handle))
2521 {
2522 fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n");
2523 abort ();
2524 }
2525 else
2526 {
2527 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
2528 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
2529 scm_hashv_remove_x (scm_gc_registered_roots, key);
2530 else
2531 SCM_SETCDR (handle, count);
2532 }
2533
2534 SCM_REALLOW_INTS;
2535}
2536
2537void
2538scm_gc_register_roots (SCM *b, unsigned long n)
2539{
2540 SCM *p = b;
2541 for (; p < b + n; ++p)
2542 scm_gc_register_root (p);
2543}
2544
2545void
2546scm_gc_unregister_roots (SCM *b, unsigned long n)
2547{
2548 SCM *p = b;
2549 for (; p < b + n; ++p)
2550 scm_gc_unregister_root (p);
2551}
2552
c45acc34
JB
2553int terminating;
2554
2555/* called on process termination. */
e52ceaac
MD
2556#ifdef HAVE_ATEXIT
2557static void
2558cleanup (void)
2559#else
2560#ifdef HAVE_ON_EXIT
51157deb
MD
2561extern int on_exit (void (*procp) (), int arg);
2562
e52ceaac
MD
2563static void
2564cleanup (int status, void *arg)
2565#else
2566#error Dont know how to setup a cleanup handler on your system.
2567#endif
2568#endif
c45acc34
JB
2569{
2570 terminating = 1;
2571 scm_flush_all_ports ();
2572}
ef290276 2573
0f2d19dd 2574\f
acb0a19c 2575static int
92c2555f 2576make_initial_segment (size_t init_heap_size, scm_t_freelist *freelist)
acb0a19c 2577{
1be6b49c 2578 size_t rounded_size = round_to_cluster_size (freelist, init_heap_size);
d6884e63 2579
a00c95d9
ML
2580 if (!init_heap_seg ((SCM_CELLPTR) malloc (rounded_size),
2581 rounded_size,
4c48ba06 2582 freelist))
acb0a19c 2583 {
a00c95d9
ML
2584 rounded_size = round_to_cluster_size (freelist, SCM_HEAP_SEG_SIZE);
2585 if (!init_heap_seg ((SCM_CELLPTR) malloc (rounded_size),
2586 rounded_size,
4c48ba06 2587 freelist))
acb0a19c
MD
2588 return 1;
2589 }
2590 else
2591 scm_expmem = 1;
2592
8fef55a8
MD
2593 if (freelist->min_yield_fraction)
2594 freelist->min_yield = (freelist->heap_size * freelist->min_yield_fraction
b37fe1c5 2595 / 100);
8fef55a8 2596 freelist->grow_heap_p = (freelist->heap_size < freelist->min_yield);
a00c95d9 2597
acb0a19c
MD
2598 return 0;
2599}
2600
2601\f
4c48ba06 2602static void
92c2555f 2603init_freelist (scm_t_freelist *freelist,
4c48ba06 2604 int span,
c014a02e 2605 long cluster_size,
8fef55a8 2606 int min_yield)
4c48ba06
MD
2607{
2608 freelist->clusters = SCM_EOL;
2609 freelist->cluster_size = cluster_size + 1;
b37fe1c5
MD
2610 freelist->left_to_collect = 0;
2611 freelist->clusters_allocated = 0;
8fef55a8
MD
2612 freelist->min_yield = 0;
2613 freelist->min_yield_fraction = min_yield;
4c48ba06
MD
2614 freelist->span = span;
2615 freelist->collected = 0;
1811ebce 2616 freelist->collected_1 = 0;
4c48ba06
MD
2617 freelist->heap_size = 0;
2618}
2619
85db4a2c
DH
2620
2621/* Get an integer from an environment variable. */
2622static int
2623scm_i_getenv_int (const char *var, int def)
2624{
2625 char *end, *val = getenv (var);
2626 long res;
2627 if (!val)
2628 return def;
2629 res = strtol (val, &end, 10);
2630 if (end == val)
2631 return def;
2632 return res;
2633}
2634
2635
4a4c9785 2636int
85db4a2c 2637scm_init_storage ()
0f2d19dd 2638{
1be6b49c
ML
2639 unsigned long gc_trigger_1;
2640 unsigned long gc_trigger_2;
2641 size_t init_heap_size_1;
2642 size_t init_heap_size_2;
2643 size_t j;
0f2d19dd
JB
2644
2645 j = SCM_NUM_PROTECTS;
2646 while (j)
2647 scm_sys_protects[--j] = SCM_BOOL_F;
2648 scm_block_gc = 1;
4a4c9785 2649
4a4c9785 2650 scm_freelist = SCM_EOL;
4c48ba06 2651 scm_freelist2 = SCM_EOL;
85db4a2c
DH
2652 gc_trigger_1 = scm_i_getenv_int ("GUILE_MIN_YIELD_1", scm_default_min_yield_1);
2653 init_freelist (&scm_master_freelist, 1, SCM_CLUSTER_SIZE_1, gc_trigger_1);
2654 gc_trigger_2 = scm_i_getenv_int ("GUILE_MIN_YIELD_2", scm_default_min_yield_2);
2655 init_freelist (&scm_master_freelist2, 2, SCM_CLUSTER_SIZE_2, gc_trigger_2);
2656 scm_max_segment_size = scm_i_getenv_int ("GUILE_MAX_SEGMENT_SIZE", scm_default_max_segment_size);
4a4c9785 2657
0f2d19dd
JB
2658 scm_expmem = 0;
2659
2660 j = SCM_HEAP_SEG_SIZE;
2661 scm_mtrigger = SCM_INIT_MALLOC_LIMIT;
92c2555f
MV
2662 scm_heap_table = ((scm_t_heap_seg_data *)
2663 scm_must_malloc (sizeof (scm_t_heap_seg_data) * 2, "hplims"));
b6efc951 2664 heap_segment_table_size = 2;
acb0a19c 2665
d6884e63
ML
2666 mark_space_ptr = &mark_space_head;
2667
85db4a2c
DH
2668 init_heap_size_1 = scm_i_getenv_int ("GUILE_INIT_SEGMENT_SIZE_1", scm_default_init_heap_size_1);
2669 init_heap_size_2 = scm_i_getenv_int ("GUILE_INIT_SEGMENT_SIZE_2", scm_default_init_heap_size_2);
4c48ba06
MD
2670 if (make_initial_segment (init_heap_size_1, &scm_master_freelist) ||
2671 make_initial_segment (init_heap_size_2, &scm_master_freelist2))
4a4c9785 2672 return 1;
acb0a19c 2673
801cb5e7 2674 /* scm_hplims[0] can change. do not remove scm_heap_org */
a00c95d9 2675 scm_heap_org = CELL_UP (scm_heap_table[0].bounds[0], 1);
acb0a19c 2676
801cb5e7
MD
2677 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
2678 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
2679 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
2680 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
2681 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
0f2d19dd
JB
2682
2683 /* Initialise the list of ports. */
f5fd8aa2
MV
2684 scm_port_table = (scm_t_port **)
2685 malloc (sizeof (scm_t_port *) * scm_port_table_room);
2686 if (!scm_port_table)
0f2d19dd
JB
2687 return 1;
2688
a18bcd0e 2689#ifdef HAVE_ATEXIT
c45acc34 2690 atexit (cleanup);
e52ceaac
MD
2691#else
2692#ifdef HAVE_ON_EXIT
2693 on_exit (cleanup, 0);
2694#endif
a18bcd0e 2695#endif
0f2d19dd 2696
8960e0a0 2697 scm_stand_in_procs = SCM_EOL;
0f2d19dd 2698 scm_permobjs = SCM_EOL;
00ffa0e7 2699 scm_protects = scm_c_make_hash_table (31);
6b1b030e 2700 scm_gc_registered_roots = scm_c_make_hash_table (31);
d6884e63 2701
0f2d19dd
JB
2702 return 0;
2703}
939794ce 2704
0f2d19dd
JB
2705\f
2706
939794ce
DH
2707SCM scm_after_gc_hook;
2708
939794ce
DH
2709static SCM gc_async;
2710
939794ce
DH
2711/* The function gc_async_thunk causes the execution of the after-gc-hook. It
2712 * is run after the gc, as soon as the asynchronous events are handled by the
2713 * evaluator.
2714 */
2715static SCM
2716gc_async_thunk (void)
2717{
2718 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
939794ce
DH
2719 return SCM_UNSPECIFIED;
2720}
2721
2722
2723/* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
2724 * the garbage collection. The only purpose of this function is to mark the
2725 * gc_async (which will eventually lead to the execution of the
2726 * gc_async_thunk).
2727 */
2728static void *
e81d98ec
DH
2729mark_gc_async (void * hook_data SCM_UNUSED,
2730 void *func_data SCM_UNUSED,
2731 void *data SCM_UNUSED)
2732{
2733 /* If cell access debugging is enabled, the user may choose to perform
2734 * additional garbage collections after an arbitrary number of cell
2735 * accesses. We don't want the scheme level after-gc-hook to be performed
2736 * for each of these garbage collections for the following reason: The
2737 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
2738 * after-gc-hook was performed with every gc, and if the gc was performed
2739 * after a very small number of cell accesses, then the number of cell
2740 * accesses during the execution of the after-gc-hook will suffice to cause
2741 * the execution of the next gc. Then, guile would keep executing the
2742 * after-gc-hook over and over again, and would never come to do other
2743 * things.
eae33935 2744 *
e81d98ec
DH
2745 * To overcome this problem, if cell access debugging with additional
2746 * garbage collections is enabled, the after-gc-hook is never run by the
2747 * garbage collecter. When running guile with cell access debugging and the
2748 * execution of the after-gc-hook is desired, then it is necessary to run
2749 * the hook explicitly from the user code. This has the effect, that from
2750 * the scheme level point of view it seems that garbage collection is
2751 * performed with a much lower frequency than it actually is. Obviously,
2752 * this will not work for code that depends on a fixed one to one
2753 * relationship between the execution counts of the C level garbage
2754 * collection hooks and the execution count of the scheme level
2755 * after-gc-hook.
2756 */
2757#if (SCM_DEBUG_CELL_ACCESSES == 1)
2758 if (debug_cells_gc_interval == 0)
2759 scm_system_async_mark (gc_async);
2760#else
939794ce 2761 scm_system_async_mark (gc_async);
e81d98ec
DH
2762#endif
2763
939794ce
DH
2764 return NULL;
2765}
2766
d678e25c
MV
2767#if SCM_ENABLE_DEPRECATED == 1
2768
2769/* If an allocated cell is detected during garbage collection, this
2770 * means that some code has just obtained the object but was preempted
2771 * before the initialization of the object was completed. This meanst
2772 * that some entries of the allocated cell may already contain SCM
2773 * objects. Therefore, allocated cells are scanned conservatively.
2774 */
2775
2776scm_t_bits scm_tc16_allocated;
2777
2778static SCM
2779allocated_mark (SCM cell)
2780{
2781 unsigned long int cell_segment = heap_segment (cell);
2782 unsigned int span = scm_heap_table[cell_segment].span;
2783 unsigned int i;
2784
2785 for (i = 1; i != span * 2; ++i)
2786 {
2787 SCM obj = SCM_CELL_OBJECT (cell, i);
2788 long int obj_segment = heap_segment (obj);
2789 if (obj_segment >= 0)
2790 scm_gc_mark (obj);
2791 }
2792 return SCM_BOOL_F;
2793}
2794
2795SCM
2796scm_deprecated_newcell (void)
2797{
2798 scm_c_issue_deprecation_warning
2799 ("SCM_NEWCELL is deprecated. Use `scm_alloc_cell' instead.\n");
2800
2801 return scm_alloc_cell (scm_tc16_allocated, 0);
2802}
2803
2804SCM
2805scm_deprecated_newcell2 (void)
2806{
2807 scm_c_issue_deprecation_warning
2808 ("SCM_NEWCELL2 is deprecated. Use `scm_alloc_double_cell' instead.\n");
2809
2810 return scm_alloc_double_cell (scm_tc16_allocated, 0, 0, 0);
2811}
2812
2813#endif /* SCM_ENABLE_DEPRECATED == 1 */
939794ce 2814
0f2d19dd
JB
2815void
2816scm_init_gc ()
0f2d19dd 2817{
939794ce
DH
2818 SCM after_gc_thunk;
2819
d678e25c
MV
2820#if SCM_ENABLE_DEPRECATED == 1
2821 scm_tc16_allocated = scm_make_smob_type ("allocated cell", 0);
2822 scm_set_smob_mark (scm_tc16_allocated, allocated_mark);
2823#endif
2824
fde50407
ML
2825 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
2826 scm_c_define ("after-gc-hook", scm_after_gc_hook);
939794ce 2827
9a441ddb
MV
2828 after_gc_thunk = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0,
2829 gc_async_thunk);
23670993 2830 gc_async = scm_system_async (after_gc_thunk); /* protected via scm_asyncs */
939794ce
DH
2831
2832 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
2833
8dc9439f 2834#ifndef SCM_MAGIC_SNARFER
a0599745 2835#include "libguile/gc.x"
8dc9439f 2836#endif
0f2d19dd 2837}
89e00824 2838
56495472
ML
2839#endif /*MARK_DEPENDENCIES*/
2840
89e00824
ML
2841/*
2842 Local Variables:
2843 c-file-style: "gnu"
2844 End:
2845*/