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