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