*** empty log message ***
[bpt/guile.git] / libguile / gc.c
CommitLineData
ab4bef85 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
0f2d19dd
JB
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
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
0f2d19dd
JB
45\f
46#include <stdio.h>
47#include "_scm.h"
20e6290e
JB
48#include "stime.h"
49#include "stackchk.h"
50#include "struct.h"
51#include "genio.h"
52#include "weaks.h"
0493cd89 53#include "guardians.h"
20e6290e
JB
54#include "smob.h"
55#include "unif.h"
56#include "async.h"
0f2d19dd 57
1bbd0b84 58#include "scm_validate.h"
fce59c93
JB
59#include "gc.h"
60
0f2d19dd 61#ifdef HAVE_MALLOC_H
95b88819 62#include <malloc.h>
0f2d19dd
JB
63#endif
64
65#ifdef HAVE_UNISTD_H
95b88819 66#include <unistd.h>
0f2d19dd
JB
67#endif
68
1cc91f1b
JB
69#ifdef __STDC__
70#include <stdarg.h>
71#define var_start(x, y) va_start(x, y)
72#else
73#include <varargs.h>
74#define var_start(x, y) va_start(x)
75#endif
76
0f2d19dd
JB
77\f
78/* {heap tuning parameters}
79 *
80 * These are parameters for controlling memory allocation. The heap
81 * is the area out of which scm_cons, and object headers are allocated.
82 *
83 * Each heap cell is 8 bytes on a 32 bit machine and 16 bytes on a
84 * 64 bit machine. The units of the _SIZE parameters are bytes.
85 * Cons pairs and object headers occupy one heap cell.
86 *
87 * SCM_INIT_HEAP_SIZE is the initial size of heap. If this much heap is
88 * allocated initially the heap will grow by half its current size
89 * each subsequent time more heap is needed.
90 *
91 * If SCM_INIT_HEAP_SIZE heap cannot be allocated initially, SCM_HEAP_SEG_SIZE
92 * will be used, and the heap will grow by SCM_HEAP_SEG_SIZE when more
93 * heap is needed. SCM_HEAP_SEG_SIZE must fit into type scm_sizet. This code
94 * is in scm_init_storage() and alloc_some_heap() in sys.c
95 *
96 * If SCM_INIT_HEAP_SIZE can be allocated initially, the heap will grow by
97 * SCM_EXPHEAP(scm_heap_size) when more heap is needed.
98 *
99 * SCM_MIN_HEAP_SEG_SIZE is minimum size of heap to accept when more heap
100 * is needed.
101 *
102 * INIT_MALLOC_LIMIT is the initial amount of malloc usage which will
103 * trigger a GC.
6064dcc6
MV
104 *
105 * SCM_MTRIGGER_HYSTERESIS is the amount of malloc storage that must be
106 * reclaimed by a GC triggered by must_malloc. If less than this is
107 * reclaimed, the trigger threshold is raised. [I don't know what a
108 * good value is. I arbitrarily chose 1/10 of the INIT_MALLOC_LIMIT to
109 * work around a oscillation that caused almost constant GC.]
0f2d19dd
JB
110 */
111
112#define SCM_INIT_HEAP_SIZE (32768L*sizeof(scm_cell))
113#define SCM_MIN_HEAP_SEG_SIZE (2048L*sizeof(scm_cell))
114#ifdef _QC
115# define SCM_HEAP_SEG_SIZE 32768L
116#else
117# ifdef sequent
118# define SCM_HEAP_SEG_SIZE (7000L*sizeof(scm_cell))
119# else
120# define SCM_HEAP_SEG_SIZE (16384L*sizeof(scm_cell))
121# endif
122#endif
123#define SCM_EXPHEAP(scm_heap_size) (scm_heap_size*2)
124#define SCM_INIT_MALLOC_LIMIT 100000
6064dcc6 125#define SCM_MTRIGGER_HYSTERESIS (SCM_INIT_MALLOC_LIMIT/10)
0f2d19dd
JB
126
127/* CELL_UP and CELL_DN are used by scm_init_heap_seg to find scm_cell aligned inner
128 bounds for allocated storage */
129
130#ifdef PROT386
131/*in 386 protected mode we must only adjust the offset */
132# define CELL_UP(p) MK_FP(FP_SEG(p), ~7&(FP_OFF(p)+7))
133# define CELL_DN(p) MK_FP(FP_SEG(p), ~7&FP_OFF(p))
134#else
135# ifdef _UNICOS
136# define CELL_UP(p) (SCM_CELLPTR)(~1L & ((long)(p)+1L))
137# define CELL_DN(p) (SCM_CELLPTR)(~1L & (long)(p))
138# else
139# define CELL_UP(p) (SCM_CELLPTR)(~(sizeof(scm_cell)-1L) & ((long)(p)+sizeof(scm_cell)-1L))
140# define CELL_DN(p) (SCM_CELLPTR)(~(sizeof(scm_cell)-1L) & (long)(p))
141# endif /* UNICOS */
142#endif /* PROT386 */
143
144
145\f
146/* scm_freelist
147 * is the head of freelist of cons pairs.
148 */
149SCM scm_freelist = SCM_EOL;
150
151/* scm_mtrigger
152 * is the number of bytes of must_malloc allocation needed to trigger gc.
153 */
15e9d186 154unsigned long scm_mtrigger;
0f2d19dd
JB
155
156
157/* scm_gc_heap_lock
158 * If set, don't expand the heap. Set only during gc, during which no allocation
159 * is supposed to take place anyway.
160 */
161int scm_gc_heap_lock = 0;
162
163/* GC Blocking
164 * Don't pause for collection if this is set -- just
165 * expand the heap.
166 */
167
168int scm_block_gc = 1;
169
170/* If fewer than MIN_GC_YIELD cells are recovered during a garbage
171 * collection (GC) more space is allocated for the heap.
172 */
173#define MIN_GC_YIELD (scm_heap_size/4)
174
175/* During collection, this accumulates objects holding
176 * weak references.
177 */
ab4bef85 178SCM scm_weak_vectors;
0f2d19dd
JB
179
180/* GC Statistics Keeping
181 */
182unsigned long scm_cells_allocated = 0;
a5c314c8 183long scm_mallocated = 0;
0f2d19dd
JB
184unsigned long scm_gc_cells_collected;
185unsigned long scm_gc_malloc_collected;
186unsigned long scm_gc_ports_collected;
187unsigned long scm_gc_rt;
188unsigned long scm_gc_time_taken = 0;
189
190SCM_SYMBOL (sym_cells_allocated, "cells-allocated");
191SCM_SYMBOL (sym_heap_size, "cell-heap-size");
192SCM_SYMBOL (sym_mallocated, "bytes-malloced");
193SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold");
194SCM_SYMBOL (sym_heap_segments, "cell-heap-segments");
195SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
196
197
198struct scm_heap_seg_data
199{
cf2d30f6
JB
200 /* lower and upper bounds of the segment */
201 SCM_CELLPTR bounds[2];
202
203 /* address of the head-of-freelist pointer for this segment's cells.
204 All segments usually point to the same one, scm_freelist. */
205 SCM *freelistp;
206
207 /* number of SCM words per object in this segment */
208 int ncells;
209
210 /* If SEG_DATA->valid is non-zero, the conservative marking
211 functions will apply SEG_DATA->valid to the purported pointer and
212 SEG_DATA, and mark the object iff the function returns non-zero.
213 At the moment, I don't think anyone uses this. */
0f2d19dd
JB
214 int (*valid) ();
215};
216
217
218
219
1bbd0b84
GB
220static void scm_mark_weak_vector_spines(void);
221static scm_sizet init_heap_seg(SCM_CELLPTR, scm_sizet, int, SCM *);
222static void alloc_some_heap(int, SCM *);
0f2d19dd
JB
223
224
225\f
cf2d30f6
JB
226/* Debugging functions. */
227
fca7547b 228#ifdef GUILE_DEBUG_FREELIST
cf2d30f6
JB
229
230/* Return the number of the heap segment containing CELL. */
231static int
232which_seg (SCM cell)
233{
234 int i;
235
236 for (i = 0; i < scm_n_heap_segs; i++)
237 if (SCM_PTR_LE (scm_heap_table[i].bounds[0], (SCM_CELLPTR) cell)
238 && SCM_PTR_GT (scm_heap_table[i].bounds[1], (SCM_CELLPTR) cell))
239 return i;
240 fprintf (stderr, "which_seg: can't find segment containing cell %lx\n",
241 cell);
242 abort ();
243}
244
245
1bbd0b84
GB
246GUILE_PROC (scm_map_free_list, "map-free-list", 0, 0, 0,
247 (),
248"")
249#define FUNC_NAME s_scm_map_free_list
cf2d30f6
JB
250{
251 int last_seg = -1, count = 0;
252 SCM f;
253
254 fprintf (stderr, "%d segments total\n", scm_n_heap_segs);
255 for (f = scm_freelist; SCM_NIMP (f); f = SCM_CDR (f))
256 {
257 int this_seg = which_seg (f);
258
259 if (this_seg != last_seg)
260 {
261 if (last_seg != -1)
262 fprintf (stderr, " %5d cells in segment %d\n", count, last_seg);
263 last_seg = this_seg;
264 count = 0;
265 }
266 count++;
267 }
268 if (last_seg != -1)
269 fprintf (stderr, " %5d cells in segment %d\n", count, last_seg);
270
271 fflush (stderr);
272
273 return SCM_UNSPECIFIED;
274}
1bbd0b84 275#undef FUNC_NAME
cf2d30f6
JB
276
277
278/* Number of calls to SCM_NEWCELL since startup. */
279static unsigned long scm_newcell_count;
280
281/* Search freelist for anything that isn't marked as a free cell.
282 Abort if we find something. */
283static void
284scm_check_freelist ()
285{
286 SCM f;
287 int i = 0;
288
289 for (f = scm_freelist; SCM_NIMP (f); f = SCM_CDR (f), i++)
290 if (SCM_CAR (f) != (SCM) scm_tc_free_cell)
291 {
292 fprintf (stderr, "Bad cell in freelist on newcell %lu: %d'th elt\n",
293 scm_newcell_count, i);
294 fflush (stderr);
295 abort ();
296 }
297}
298
299static int scm_debug_check_freelist = 0;
25748c78 300
1bbd0b84
GB
301GUILE_PROC (scm_gc_set_debug_check_freelist_x, "gc-set-debug-check-freelist!", 1, 0, 0,
302 (SCM flag),
303"")
304#define FUNC_NAME s_scm_gc_set_debug_check_freelist_x
25748c78 305{
1bbd0b84 306 SCM_VALIDATE_BOOL_COPY(1,flag,scm_debug_check_freelist);
25748c78
GB
307 return SCM_UNSPECIFIED;
308}
1bbd0b84 309#undef FUNC_NAME
25748c78
GB
310
311
f2333166
JB
312SCM
313scm_debug_newcell (void)
cf2d30f6 314{
f2333166
JB
315 SCM new;
316
cf2d30f6 317 scm_newcell_count++;
25748c78 318 if (scm_debug_check_freelist) {
cf2d30f6 319 scm_check_freelist ();
25748c78
GB
320 scm_gc();
321 }
cf2d30f6
JB
322
323 /* The rest of this is supposed to be identical to the SCM_NEWCELL
324 macro. */
325 if (SCM_IMP (scm_freelist))
f2333166 326 new = scm_gc_for_newcell ();
cf2d30f6
JB
327 else
328 {
f2333166 329 new = scm_freelist;
cf2d30f6
JB
330 scm_freelist = SCM_CDR (scm_freelist);
331 ++scm_cells_allocated;
332 }
f2333166
JB
333
334 return new;
cf2d30f6
JB
335}
336
fca7547b 337#endif /* GUILE_DEBUG_FREELIST */
cf2d30f6
JB
338
339\f
0f2d19dd
JB
340
341/* {Scheme Interface to GC}
342 */
343
1bbd0b84
GB
344GUILE_PROC (scm_gc_stats, "gc-stats", 0, 0, 0,
345 (),
346"")
347#define FUNC_NAME s_scm_gc_stats
0f2d19dd
JB
348{
349 int i;
350 int n;
351 SCM heap_segs;
352 SCM local_scm_mtrigger;
353 SCM local_scm_mallocated;
354 SCM local_scm_heap_size;
355 SCM local_scm_cells_allocated;
356 SCM local_scm_gc_time_taken;
357 SCM answer;
358
359 SCM_DEFER_INTS;
360 scm_block_gc = 1;
361 retry:
362 heap_segs = SCM_EOL;
363 n = scm_n_heap_segs;
364 for (i = scm_n_heap_segs; i--; )
365 heap_segs = scm_cons (scm_cons (scm_ulong2num ((unsigned long)scm_heap_table[i].bounds[1]),
366 scm_ulong2num ((unsigned long)scm_heap_table[i].bounds[0])),
367 heap_segs);
368 if (scm_n_heap_segs != n)
369 goto retry;
370 scm_block_gc = 0;
371
372 local_scm_mtrigger = scm_mtrigger;
373 local_scm_mallocated = scm_mallocated;
374 local_scm_heap_size = scm_heap_size;
375 local_scm_cells_allocated = scm_cells_allocated;
376 local_scm_gc_time_taken = scm_gc_time_taken;
377
378 answer = scm_listify (scm_cons (sym_gc_time_taken, scm_ulong2num (local_scm_gc_time_taken)),
379 scm_cons (sym_cells_allocated, scm_ulong2num (local_scm_cells_allocated)),
380 scm_cons (sym_heap_size, scm_ulong2num (local_scm_heap_size)),
381 scm_cons (sym_mallocated, scm_ulong2num (local_scm_mallocated)),
382 scm_cons (sym_mtrigger, scm_ulong2num (local_scm_mtrigger)),
383 scm_cons (sym_heap_segments, heap_segs),
384 SCM_UNDEFINED);
385 SCM_ALLOW_INTS;
386 return answer;
387}
1bbd0b84 388#undef FUNC_NAME
0f2d19dd
JB
389
390
0f2d19dd
JB
391void
392scm_gc_start (what)
3eeba8d4 393 const char *what;
0f2d19dd
JB
394{
395 scm_gc_rt = SCM_INUM (scm_get_internal_run_time ());
396 scm_gc_cells_collected = 0;
397 scm_gc_malloc_collected = 0;
398 scm_gc_ports_collected = 0;
399}
400
0f2d19dd
JB
401void
402scm_gc_end ()
0f2d19dd
JB
403{
404 scm_gc_rt = SCM_INUM (scm_get_internal_run_time ()) - scm_gc_rt;
405 scm_gc_time_taken = scm_gc_time_taken + scm_gc_rt;
9ea54cc6 406 scm_system_async_mark (scm_gc_async);
0f2d19dd
JB
407}
408
409
1bbd0b84
GB
410GUILE_PROC (scm_object_address, "object-address", 1, 0, 0,
411 (SCM obj),
412"")
413#define FUNC_NAME s_scm_object_address
0f2d19dd
JB
414{
415 return scm_ulong2num ((unsigned long)obj);
416}
1bbd0b84 417#undef FUNC_NAME
0f2d19dd
JB
418
419
1bbd0b84
GB
420GUILE_PROC(scm_gc, "gc", 0, 0, 0,
421 (),
422"")
423#define FUNC_NAME s_scm_gc
0f2d19dd
JB
424{
425 SCM_DEFER_INTS;
426 scm_igc ("call");
427 SCM_ALLOW_INTS;
428 return SCM_UNSPECIFIED;
429}
1bbd0b84 430#undef FUNC_NAME
0f2d19dd
JB
431
432
433\f
434/* {C Interface For When GC is Triggered}
435 */
436
0f2d19dd 437void
1bbd0b84 438scm_gc_for_alloc (int ncells, SCM *freelistp)
0f2d19dd
JB
439{
440 SCM_REDEFER_INTS;
441 scm_igc ("cells");
442 if ((scm_gc_cells_collected < MIN_GC_YIELD) || SCM_IMP (*freelistp))
443 {
444 alloc_some_heap (ncells, freelistp);
445 }
446 SCM_REALLOW_INTS;
447}
448
449
0f2d19dd
JB
450SCM
451scm_gc_for_newcell ()
0f2d19dd
JB
452{
453 SCM fl;
454 scm_gc_for_alloc (1, &scm_freelist);
455 fl = scm_freelist;
456 scm_freelist = SCM_CDR (fl);
1bbd0b84 457 SCM_SETCAR(fl, scm_tc16_allocated);
0f2d19dd
JB
458 return fl;
459}
460
0f2d19dd 461void
1bbd0b84 462scm_igc (const char *what)
0f2d19dd
JB
463{
464 int j;
465
42db06f0
MD
466#ifdef USE_THREADS
467 /* During the critical section, only the current thread may run. */
468 SCM_THREAD_CRITICAL_SECTION_START;
469#endif
470
e242dfd2 471 /* fprintf (stderr, "gc: %s\n", what); */
c68296f8 472
ab4bef85
JB
473 scm_gc_start (what);
474
475 if (!scm_stack_base || scm_block_gc)
476 {
477 scm_gc_end ();
478 return;
479 }
480
a5c314c8
JB
481 if (scm_mallocated < 0)
482 /* The byte count of allocated objects has underflowed. This is
483 probably because you forgot to report the sizes of objects you
484 have allocated, by calling scm_done_malloc or some such. When
485 the GC freed them, it subtracted their size from
486 scm_mallocated, which underflowed. */
487 abort ();
c45acc34 488
ab4bef85
JB
489 if (scm_gc_heap_lock)
490 /* We've invoked the collector while a GC is already in progress.
491 That should never happen. */
492 abort ();
0f2d19dd
JB
493
494 ++scm_gc_heap_lock;
ab4bef85
JB
495
496 scm_weak_vectors = SCM_EOL;
0f2d19dd 497
0493cd89
MD
498 scm_guardian_gc_init ();
499
0f2d19dd
JB
500 /* unprotect any struct types with no instances */
501#if 0
502 {
503 SCM type_list;
504 SCM * pos;
505
506 pos = &scm_type_obj_list;
507 type_list = scm_type_obj_list;
508 while (type_list != SCM_EOL)
509 if (SCM_VELTS (SCM_CAR (type_list))[scm_struct_i_refcnt])
510 {
24e68a57 511 pos = SCM_CDRLOC (type_list);
0f2d19dd
JB
512 type_list = SCM_CDR (type_list);
513 }
514 else
515 {
516 *pos = SCM_CDR (type_list);
517 type_list = SCM_CDR (type_list);
518 }
519 }
520#endif
521
522 /* flush dead entries from the continuation stack */
523 {
524 int x;
525 int bound;
526 SCM * elts;
527 elts = SCM_VELTS (scm_continuation_stack);
528 bound = SCM_LENGTH (scm_continuation_stack);
529 x = SCM_INUM (scm_continuation_stack_ptr);
530 while (x < bound)
531 {
532 elts[x] = SCM_BOOL_F;
533 ++x;
534 }
535 }
536
42db06f0
MD
537#ifndef USE_THREADS
538
0f2d19dd
JB
539 /* Protect from the C stack. This must be the first marking
540 * done because it provides information about what objects
541 * are "in-use" by the C code. "in-use" objects are those
542 * for which the values from SCM_LENGTH and SCM_CHARS must remain
543 * usable. This requirement is stricter than a liveness
544 * requirement -- in particular, it constrains the implementation
545 * of scm_vector_set_length_x.
546 */
547 SCM_FLUSH_REGISTER_WINDOWS;
548 /* This assumes that all registers are saved into the jmp_buf */
549 setjmp (scm_save_regs_gc_mark);
550 scm_mark_locations ((SCM_STACKITEM *) scm_save_regs_gc_mark,
ce4a361d
JB
551 ( (scm_sizet) (sizeof (SCM_STACKITEM) - 1 +
552 sizeof scm_save_regs_gc_mark)
553 / sizeof (SCM_STACKITEM)));
0f2d19dd
JB
554
555 {
556 /* stack_len is long rather than scm_sizet in order to guarantee that
557 &stack_len is long aligned */
558#ifdef SCM_STACK_GROWS_UP
559#ifdef nosve
560 long stack_len = (SCM_STACKITEM *) (&stack_len) - scm_stack_base;
561#else
562 long stack_len = scm_stack_size (scm_stack_base);
563#endif
564 scm_mark_locations (scm_stack_base, (scm_sizet) stack_len);
565#else
566#ifdef nosve
567 long stack_len = scm_stack_base - (SCM_STACKITEM *) (&stack_len);
568#else
569 long stack_len = scm_stack_size (scm_stack_base);
570#endif
571 scm_mark_locations ((scm_stack_base - stack_len), (scm_sizet) stack_len);
572#endif
573 }
574
42db06f0
MD
575#else /* USE_THREADS */
576
577 /* Mark every thread's stack and registers */
578 scm_threads_mark_stacks();
579
580#endif /* USE_THREADS */
0f2d19dd
JB
581
582 /* FIXME: insert a phase to un-protect string-data preserved
583 * in scm_vector_set_length_x.
584 */
585
586 j = SCM_NUM_PROTECTS;
587 while (j--)
588 scm_gc_mark (scm_sys_protects[j]);
589
9de33deb
MD
590 /* FIXME: we should have a means to register C functions to be run
591 * in different phases of GC
592 */
593 scm_mark_subr_table ();
594
42db06f0
MD
595#ifndef USE_THREADS
596 scm_gc_mark (scm_root->handle);
597#endif
0f2d19dd
JB
598
599 scm_mark_weak_vector_spines ();
600
0493cd89
MD
601 scm_guardian_zombify ();
602
0f2d19dd
JB
603 scm_gc_sweep ();
604
605 --scm_gc_heap_lock;
606 scm_gc_end ();
42db06f0
MD
607
608#ifdef USE_THREADS
609 SCM_THREAD_CRITICAL_SECTION_END;
610#endif
0f2d19dd
JB
611}
612
613\f
614/* {Mark/Sweep}
615 */
616
617
618
619/* Mark an object precisely.
620 */
0f2d19dd 621void
1bbd0b84 622scm_gc_mark (SCM p)
0f2d19dd
JB
623{
624 register long i;
625 register SCM ptr;
626
627 ptr = p;
628
629gc_mark_loop:
630 if (SCM_IMP (ptr))
631 return;
632
633gc_mark_nimp:
634 if (SCM_NCELLP (ptr))
f8392303 635 scm_wta (ptr, "rogue pointer in heap", NULL);
0f2d19dd
JB
636
637 switch (SCM_TYP7 (ptr))
638 {
639 case scm_tcs_cons_nimcar:
640 if (SCM_GCMARKP (ptr))
641 break;
642 SCM_SETGCMARK (ptr);
643 if (SCM_IMP (SCM_CDR (ptr))) /* SCM_IMP works even with a GC mark */
644 {
645 ptr = SCM_CAR (ptr);
646 goto gc_mark_nimp;
647 }
648 scm_gc_mark (SCM_CAR (ptr));
649 ptr = SCM_GCCDR (ptr);
650 goto gc_mark_nimp;
651 case scm_tcs_cons_imcar:
e641afaf 652 case scm_tc7_pws:
0f2d19dd
JB
653 if (SCM_GCMARKP (ptr))
654 break;
655 SCM_SETGCMARK (ptr);
656 ptr = SCM_GCCDR (ptr);
657 goto gc_mark_loop;
658 case scm_tcs_cons_gloc:
659 if (SCM_GCMARKP (ptr))
660 break;
661 SCM_SETGCMARK (ptr);
662 {
663 SCM vcell;
664 vcell = SCM_CAR (ptr) - 1L;
665 switch (SCM_CDR (vcell))
666 {
667 default:
668 scm_gc_mark (vcell);
669 ptr = SCM_GCCDR (ptr);
670 goto gc_mark_loop;
671 case 1: /* ! */
672 case 0: /* ! */
673 {
674 SCM layout;
675 SCM * vtable_data;
676 int len;
677 char * fields_desc;
ad75306c
MD
678 register SCM * mem;
679 register int x;
0f2d19dd
JB
680
681 vtable_data = (SCM *)vcell;
4bfdf158 682 layout = vtable_data[scm_vtable_index_layout];
0f2d19dd
JB
683 len = SCM_LENGTH (layout);
684 fields_desc = SCM_CHARS (layout);
14d1400f
JB
685 /* We're using SCM_GCCDR here like STRUCT_DATA, except
686 that it removes the mark */
687 mem = (SCM *)SCM_GCCDR (ptr);
0f2d19dd 688
aa0761ec
MD
689 if (vtable_data[scm_struct_i_flags] & SCM_STRUCTF_ENTITY)
690 {
73e10adf 691 scm_gc_mark (mem[scm_struct_i_procedure]);
e641afaf 692 scm_gc_mark (mem[scm_struct_i_setter]);
aa0761ec 693 }
ad75306c
MD
694 if (len)
695 {
696 for (x = 0; x < len - 2; x += 2, ++mem)
697 if (fields_desc[x] == 'p')
698 scm_gc_mark (*mem);
699 if (fields_desc[x] == 'p')
700 {
701 if (SCM_LAYOUT_TAILP (fields_desc[x + 1]))
702 for (x = *mem; x; --x)
703 scm_gc_mark (*++mem);
704 else
705 scm_gc_mark (*mem);
706 }
707 }
0f2d19dd
JB
708 if (!SCM_CDR (vcell))
709 {
710 SCM_SETGCMARK (vcell);
4bfdf158 711 ptr = vtable_data[scm_vtable_index_vtable];
0f2d19dd
JB
712 goto gc_mark_loop;
713 }
714 }
715 }
716 }
717 break;
718 case scm_tcs_closures:
719 if (SCM_GCMARKP (ptr))
720 break;
721 SCM_SETGCMARK (ptr);
722 if (SCM_IMP (SCM_CDR (ptr)))
723 {
724 ptr = SCM_CLOSCAR (ptr);
725 goto gc_mark_nimp;
726 }
727 scm_gc_mark (SCM_CLOSCAR (ptr));
728 ptr = SCM_GCCDR (ptr);
729 goto gc_mark_nimp;
730 case scm_tc7_vector:
731 case scm_tc7_lvector:
732#ifdef CCLO
733 case scm_tc7_cclo:
734#endif
735 if (SCM_GC8MARKP (ptr))
736 break;
737 SCM_SETGC8MARK (ptr);
738 i = SCM_LENGTH (ptr);
739 if (i == 0)
740 break;
741 while (--i > 0)
742 if (SCM_NIMP (SCM_VELTS (ptr)[i]))
743 scm_gc_mark (SCM_VELTS (ptr)[i]);
744 ptr = SCM_VELTS (ptr)[0];
745 goto gc_mark_loop;
746 case scm_tc7_contin:
747 if SCM_GC8MARKP
748 (ptr) break;
749 SCM_SETGC8MARK (ptr);
c68296f8
MV
750 if (SCM_VELTS (ptr))
751 scm_mark_locations (SCM_VELTS (ptr),
752 (scm_sizet)
753 (SCM_LENGTH (ptr) +
754 (sizeof (SCM_STACKITEM) + -1 +
755 sizeof (scm_contregs)) /
756 sizeof (SCM_STACKITEM)));
0f2d19dd 757 break;
afe5177e 758#ifdef HAVE_ARRAYS
0f2d19dd
JB
759 case scm_tc7_bvect:
760 case scm_tc7_byvect:
761 case scm_tc7_ivect:
762 case scm_tc7_uvect:
763 case scm_tc7_fvect:
764 case scm_tc7_dvect:
765 case scm_tc7_cvect:
766 case scm_tc7_svect:
5c11cc9d 767#ifdef HAVE_LONG_LONGS
0f2d19dd
JB
768 case scm_tc7_llvect:
769#endif
afe5177e 770#endif
0f2d19dd 771 case scm_tc7_string:
0f2d19dd
JB
772 SCM_SETGC8MARK (ptr);
773 break;
774
775 case scm_tc7_substring:
0f2d19dd
JB
776 if (SCM_GC8MARKP(ptr))
777 break;
778 SCM_SETGC8MARK (ptr);
779 ptr = SCM_CDR (ptr);
780 goto gc_mark_loop;
781
782 case scm_tc7_wvect:
783 if (SCM_GC8MARKP(ptr))
784 break;
ab4bef85
JB
785 SCM_WVECT_GC_CHAIN (ptr) = scm_weak_vectors;
786 scm_weak_vectors = ptr;
0f2d19dd
JB
787 SCM_SETGC8MARK (ptr);
788 if (SCM_IS_WHVEC_ANY (ptr))
789 {
790 int x;
791 int len;
792 int weak_keys;
793 int weak_values;
794
795 len = SCM_LENGTH (ptr);
796 weak_keys = SCM_IS_WHVEC (ptr) || SCM_IS_WHVEC_B (ptr);
797 weak_values = SCM_IS_WHVEC_V (ptr) || SCM_IS_WHVEC_B (ptr);
798
799 for (x = 0; x < len; ++x)
800 {
801 SCM alist;
802 alist = SCM_VELTS (ptr)[x];
46408039
JB
803
804 /* mark everything on the alist except the keys or
805 * values, according to weak_values and weak_keys. */
0f2d19dd
JB
806 while ( SCM_NIMP (alist)
807 && SCM_CONSP (alist)
808 && !SCM_GCMARKP (alist)
809 && SCM_NIMP (SCM_CAR (alist))
810 && SCM_CONSP (SCM_CAR (alist)))
811 {
812 SCM kvpair;
813 SCM next_alist;
814
815 kvpair = SCM_CAR (alist);
816 next_alist = SCM_CDR (alist);
817 /*
818 * Do not do this:
819 * SCM_SETGCMARK (alist);
820 * SCM_SETGCMARK (kvpair);
821 *
822 * It may be that either the key or value is protected by
823 * an escaped reference to part of the spine of this alist.
824 * If we mark the spine here, and only mark one or neither of the
825 * key and value, they may never be properly marked.
826 * This leads to a horrible situation in which an alist containing
827 * freelist cells is exported.
828 *
829 * So only mark the spines of these arrays last of all marking.
830 * If somebody confuses us by constructing a weak vector
831 * with a circular alist then we are hosed, but at least we
832 * won't prematurely drop table entries.
833 */
834 if (!weak_keys)
835 scm_gc_mark (SCM_CAR (kvpair));
836 if (!weak_values)
837 scm_gc_mark (SCM_GCCDR (kvpair));
838 alist = next_alist;
839 }
840 if (SCM_NIMP (alist))
841 scm_gc_mark (alist);
842 }
843 }
844 break;
845
846 case scm_tc7_msymbol:
847 if (SCM_GC8MARKP(ptr))
848 break;
849 SCM_SETGC8MARK (ptr);
850 scm_gc_mark (SCM_SYMBOL_FUNC (ptr));
851 ptr = SCM_SYMBOL_PROPS (ptr);
852 goto gc_mark_loop;
853 case scm_tc7_ssymbol:
854 if (SCM_GC8MARKP(ptr))
855 break;
856 SCM_SETGC8MARK (ptr);
857 break;
858 case scm_tcs_subrs:
9de33deb 859 break;
0f2d19dd
JB
860 case scm_tc7_port:
861 i = SCM_PTOBNUM (ptr);
862 if (!(i < scm_numptob))
863 goto def;
864 if (SCM_GC8MARKP (ptr))
865 break;
dc53f026 866 SCM_SETGC8MARK (ptr);
ebf7394e
GH
867 if (SCM_PTAB_ENTRY(ptr))
868 scm_gc_mark (SCM_PTAB_ENTRY(ptr)->file_name);
dc53f026
JB
869 if (scm_ptobs[i].mark)
870 {
871 ptr = (scm_ptobs[i].mark) (ptr);
872 goto gc_mark_loop;
873 }
874 else
875 return;
0f2d19dd
JB
876 break;
877 case scm_tc7_smob:
878 if (SCM_GC8MARKP (ptr))
879 break;
dc53f026
JB
880 SCM_SETGC8MARK (ptr);
881 switch SCM_GCTYP16 (ptr)
0f2d19dd
JB
882 { /* should be faster than going through scm_smobs */
883 case scm_tc_free_cell:
884 /* printf("found free_cell %X ", ptr); fflush(stdout); */
1bbd0b84
GB
885 break;
886 case scm_tc16_allocated:
887 SCM_SETGC8MARK (ptr);
0f2d19dd
JB
888 break;
889 case scm_tcs_bignums:
890 case scm_tc16_flo:
0f2d19dd
JB
891 break;
892 default:
893 i = SCM_SMOBNUM (ptr);
894 if (!(i < scm_numsmob))
895 goto def;
dc53f026
JB
896 if (scm_smobs[i].mark)
897 {
898 ptr = (scm_smobs[i].mark) (ptr);
899 goto gc_mark_loop;
900 }
901 else
902 return;
0f2d19dd
JB
903 }
904 break;
905 default:
906 def:scm_wta (ptr, "unknown type in ", "gc_mark");
907 }
908}
909
910
911/* Mark a Region Conservatively
912 */
913
0f2d19dd
JB
914void
915scm_mark_locations (x, n)
916 SCM_STACKITEM x[];
917 scm_sizet n;
0f2d19dd
JB
918{
919 register long m = n;
920 register int i, j;
921 register SCM_CELLPTR ptr;
922
923 while (0 <= --m)
924 if SCM_CELLP (*(SCM **) & x[m])
925 {
926 ptr = (SCM_CELLPTR) SCM2PTR ((*(SCM **) & x[m]));
927 i = 0;
928 j = scm_n_heap_segs - 1;
929 if ( SCM_PTR_LE (scm_heap_table[i].bounds[0], ptr)
930 && SCM_PTR_GT (scm_heap_table[j].bounds[1], ptr))
931 {
932 while (i <= j)
933 {
934 int seg_id;
935 seg_id = -1;
936 if ( (i == j)
937 || SCM_PTR_GT (scm_heap_table[i].bounds[1], ptr))
938 seg_id = i;
939 else if (SCM_PTR_LE (scm_heap_table[j].bounds[0], ptr))
940 seg_id = j;
941 else
942 {
943 int k;
944 k = (i + j) / 2;
945 if (k == i)
946 break;
947 if (SCM_PTR_GT (scm_heap_table[k].bounds[1], ptr))
948 {
949 j = k;
950 ++i;
951 if (SCM_PTR_LE (scm_heap_table[i].bounds[0], ptr))
952 continue;
953 else
954 break;
955 }
956 else if (SCM_PTR_LE (scm_heap_table[k].bounds[0], ptr))
957 {
958 i = k;
959 --j;
960 if (SCM_PTR_GT (scm_heap_table[j].bounds[1], ptr))
961 continue;
962 else
963 break;
964 }
965 }
966 if ( !scm_heap_table[seg_id].valid
967 || scm_heap_table[seg_id].valid (ptr,
968 &scm_heap_table[seg_id]))
969 scm_gc_mark (*(SCM *) & x[m]);
970 break;
971 }
972
973 }
974 }
975}
976
977
2e11a577
MD
978/* The following is a C predicate which determines if an SCM value can be
979 regarded as a pointer to a cell on the heap. The code is duplicated
980 from scm_mark_locations. */
981
1cc91f1b 982
2e11a577
MD
983int
984scm_cellp (value)
985 SCM value;
2e11a577
MD
986{
987 register int i, j;
988 register SCM_CELLPTR ptr;
989
990 if SCM_CELLP (*(SCM **) & value)
991 {
992 ptr = (SCM_CELLPTR) SCM2PTR ((*(SCM **) & value));
993 i = 0;
994 j = scm_n_heap_segs - 1;
995 if ( SCM_PTR_LE (scm_heap_table[i].bounds[0], ptr)
996 && SCM_PTR_GT (scm_heap_table[j].bounds[1], ptr))
997 {
998 while (i <= j)
999 {
1000 int seg_id;
1001 seg_id = -1;
1002 if ( (i == j)
1003 || SCM_PTR_GT (scm_heap_table[i].bounds[1], ptr))
1004 seg_id = i;
1005 else if (SCM_PTR_LE (scm_heap_table[j].bounds[0], ptr))
1006 seg_id = j;
1007 else
1008 {
1009 int k;
1010 k = (i + j) / 2;
1011 if (k == i)
1012 break;
1013 if (SCM_PTR_GT (scm_heap_table[k].bounds[1], ptr))
1014 {
1015 j = k;
1016 ++i;
1017 if (SCM_PTR_LE (scm_heap_table[i].bounds[0], ptr))
1018 continue;
1019 else
1020 break;
1021 }
1022 else if (SCM_PTR_LE (scm_heap_table[k].bounds[0], ptr))
1023 {
1024 i = k;
1025 --j;
1026 if (SCM_PTR_GT (scm_heap_table[j].bounds[1], ptr))
1027 continue;
1028 else
1029 break;
1030 }
1031 }
1032 if ( !scm_heap_table[seg_id].valid
1033 || scm_heap_table[seg_id].valid (ptr,
1034 &scm_heap_table[seg_id]))
1035 return 1;
1036 break;
1037 }
1038
1039 }
1040 }
1041 return 0;
1042}
1043
1044
3b2b8760 1045static void
0f2d19dd 1046scm_mark_weak_vector_spines ()
0f2d19dd 1047{
ab4bef85 1048 SCM w;
0f2d19dd 1049
ab4bef85 1050 for (w = scm_weak_vectors; w != SCM_EOL; w = SCM_WVECT_GC_CHAIN (w))
0f2d19dd 1051 {
ab4bef85 1052 if (SCM_IS_WHVEC_ANY (w))
0f2d19dd
JB
1053 {
1054 SCM *ptr;
1055 SCM obj;
1056 int j;
1057 int n;
1058
ab4bef85
JB
1059 obj = w;
1060 ptr = SCM_VELTS (w);
1061 n = SCM_LENGTH (w);
0f2d19dd
JB
1062 for (j = 0; j < n; ++j)
1063 {
1064 SCM alist;
1065
1066 alist = ptr[j];
1067 while ( SCM_NIMP (alist)
1068 && SCM_CONSP (alist)
1069 && !SCM_GCMARKP (alist)
1070 && SCM_NIMP (SCM_CAR (alist))
1071 && SCM_CONSP (SCM_CAR (alist)))
1072 {
1073 SCM_SETGCMARK (alist);
1074 SCM_SETGCMARK (SCM_CAR (alist));
1075 alist = SCM_GCCDR (alist);
1076 }
1077 }
1078 }
1079 }
1080}
1081
1082
1083
0f2d19dd
JB
1084void
1085scm_gc_sweep ()
0f2d19dd
JB
1086{
1087 register SCM_CELLPTR ptr;
1088#ifdef SCM_POINTERS_MUNGED
1089 register SCM scmptr;
1090#else
1091#undef scmptr
1092#define scmptr (SCM)ptr
1093#endif
1094 register SCM nfreelist;
1095 register SCM *hp_freelist;
0f2d19dd 1096 register long m;
0f2d19dd 1097 register int span;
15e9d186 1098 long i;
0f2d19dd
JB
1099 scm_sizet seg_size;
1100
0f2d19dd 1101 m = 0;
0f2d19dd 1102
cf2d30f6
JB
1103 /* Reset all free list pointers. We'll reconstruct them completely
1104 while scanning. */
1105 for (i = 0; i < scm_n_heap_segs; i++)
1106 *scm_heap_table[i].freelistp = SCM_EOL;
1107
1108 for (i = 0; i < scm_n_heap_segs; i++)
0f2d19dd 1109 {
15e9d186
JB
1110 register scm_sizet n = 0;
1111 register scm_sizet j;
1112
cf2d30f6
JB
1113 /* Unmarked cells go onto the front of the freelist this heap
1114 segment points to. Rather than updating the real freelist
1115 pointer as we go along, we accumulate the new head in
1116 nfreelist. Then, if it turns out that the entire segment is
1117 free, we free (i.e., malloc's free) the whole segment, and
1118 simply don't assign nfreelist back into the real freelist. */
0f2d19dd 1119 hp_freelist = scm_heap_table[i].freelistp;
cf2d30f6
JB
1120 nfreelist = *hp_freelist;
1121
0f2d19dd
JB
1122 span = scm_heap_table[i].ncells;
1123 ptr = CELL_UP (scm_heap_table[i].bounds[0]);
1124 seg_size = CELL_DN (scm_heap_table[i].bounds[1]) - ptr;
0f2d19dd
JB
1125 for (j = seg_size + span; j -= span; ptr += span)
1126 {
1127#ifdef SCM_POINTERS_MUNGED
1128 scmptr = PTR2SCM (ptr);
1129#endif
1130 switch SCM_TYP7 (scmptr)
1131 {
1132 case scm_tcs_cons_gloc:
1133 if (SCM_GCMARKP (scmptr))
1134 {
1135 if (SCM_CDR (SCM_CAR (scmptr) - 1) == (SCM)1)
24e68a57 1136 SCM_SETCDR (SCM_CAR (scmptr) - 1, (SCM) 0);
0f2d19dd
JB
1137 goto cmrkcontinue;
1138 }
1139 {
1140 SCM vcell;
1141 vcell = SCM_CAR (scmptr) - 1L;
1142
1143 if ((SCM_CDR (vcell) == 0) || (SCM_CDR (vcell) == 1))
1144 {
f0cb1733
MD
1145 scm_struct_free_t free
1146 = (scm_struct_free_t) ((SCM*) vcell)[scm_struct_i_free];
1147 m += free ((SCM *) vcell, (SCM *) SCM_GCCDR (scmptr));
0f2d19dd
JB
1148 }
1149 }
1150 break;
1151 case scm_tcs_cons_imcar:
1152 case scm_tcs_cons_nimcar:
1153 case scm_tcs_closures:
e641afaf 1154 case scm_tc7_pws:
0f2d19dd
JB
1155 if (SCM_GCMARKP (scmptr))
1156 goto cmrkcontinue;
1157 break;
1158 case scm_tc7_wvect:
1159 if (SCM_GC8MARKP (scmptr))
1160 {
1161 goto c8mrkcontinue;
1162 }
1163 else
1164 {
ab4bef85
JB
1165 m += (2 + SCM_LENGTH (scmptr)) * sizeof (SCM);
1166 scm_must_free ((char *)(SCM_VELTS (scmptr) - 2));
0f2d19dd
JB
1167 break;
1168 }
1169
1170 case scm_tc7_vector:
1171 case scm_tc7_lvector:
1172#ifdef CCLO
1173 case scm_tc7_cclo:
1174#endif
1175 if (SCM_GC8MARKP (scmptr))
1176 goto c8mrkcontinue;
1177
1178 m += (SCM_LENGTH (scmptr) * sizeof (SCM));
1179 freechars:
1180 scm_must_free (SCM_CHARS (scmptr));
1181 /* SCM_SETCHARS(scmptr, 0);*/
1182 break;
afe5177e 1183#ifdef HAVE_ARRAYS
0f2d19dd
JB
1184 case scm_tc7_bvect:
1185 if SCM_GC8MARKP (scmptr)
1186 goto c8mrkcontinue;
1187 m += sizeof (long) * ((SCM_HUGE_LENGTH (scmptr) + SCM_LONG_BIT - 1) / SCM_LONG_BIT);
1188 goto freechars;
1189 case scm_tc7_byvect:
1190 if SCM_GC8MARKP (scmptr)
1191 goto c8mrkcontinue;
1192 m += SCM_HUGE_LENGTH (scmptr) * sizeof (char);
1193 goto freechars;
1194 case scm_tc7_ivect:
1195 case scm_tc7_uvect:
1196 if SCM_GC8MARKP (scmptr)
1197 goto c8mrkcontinue;
1198 m += SCM_HUGE_LENGTH (scmptr) * sizeof (long);
1199 goto freechars;
1200 case scm_tc7_svect:
1201 if SCM_GC8MARKP (scmptr)
1202 goto c8mrkcontinue;
1203 m += SCM_HUGE_LENGTH (scmptr) * sizeof (short);
1204 goto freechars;
5c11cc9d 1205#ifdef HAVE_LONG_LONGS
0f2d19dd
JB
1206 case scm_tc7_llvect:
1207 if SCM_GC8MARKP (scmptr)
1208 goto c8mrkcontinue;
1209 m += SCM_HUGE_LENGTH (scmptr) * sizeof (long_long);
1210 goto freechars;
1211#endif
1212 case scm_tc7_fvect:
1213 if SCM_GC8MARKP (scmptr)
1214 goto c8mrkcontinue;
1215 m += SCM_HUGE_LENGTH (scmptr) * sizeof (float);
1216 goto freechars;
1217 case scm_tc7_dvect:
1218 if SCM_GC8MARKP (scmptr)
1219 goto c8mrkcontinue;
1220 m += SCM_HUGE_LENGTH (scmptr) * sizeof (double);
1221 goto freechars;
1222 case scm_tc7_cvect:
1223 if SCM_GC8MARKP (scmptr)
1224 goto c8mrkcontinue;
1225 m += SCM_HUGE_LENGTH (scmptr) * 2 * sizeof (double);
1226 goto freechars;
afe5177e 1227#endif
0f2d19dd 1228 case scm_tc7_substring:
0f2d19dd
JB
1229 if (SCM_GC8MARKP (scmptr))
1230 goto c8mrkcontinue;
1231 break;
1232 case scm_tc7_string:
0f2d19dd
JB
1233 if (SCM_GC8MARKP (scmptr))
1234 goto c8mrkcontinue;
1235 m += SCM_HUGE_LENGTH (scmptr) + 1;
1236 goto freechars;
1237 case scm_tc7_msymbol:
1238 if (SCM_GC8MARKP (scmptr))
1239 goto c8mrkcontinue;
1240 m += ( SCM_LENGTH (scmptr)
1241 + 1
1242 + sizeof (SCM) * ((SCM *)SCM_CHARS (scmptr) - SCM_SLOTS(scmptr)));
1243 scm_must_free ((char *)SCM_SLOTS (scmptr));
1244 break;
1245 case scm_tc7_contin:
1246 if SCM_GC8MARKP (scmptr)
1247 goto c8mrkcontinue;
0db18cf4 1248 m += SCM_LENGTH (scmptr) * sizeof (SCM_STACKITEM) + sizeof (scm_contregs);
c68296f8
MV
1249 if (SCM_VELTS (scmptr))
1250 goto freechars;
0f2d19dd
JB
1251 case scm_tc7_ssymbol:
1252 if SCM_GC8MARKP(scmptr)
1253 goto c8mrkcontinue;
1254 break;
1255 case scm_tcs_subrs:
1256 continue;
1257 case scm_tc7_port:
1258 if SCM_GC8MARKP (scmptr)
1259 goto c8mrkcontinue;
1260 if SCM_OPENP (scmptr)
1261 {
1262 int k = SCM_PTOBNUM (scmptr);
1263 if (!(k < scm_numptob))
1264 goto sweeperr;
1265 /* Keep "revealed" ports alive. */
1266 if (scm_revealed_count(scmptr) > 0)
1267 continue;
1268 /* Yes, I really do mean scm_ptobs[k].free */
1269 /* rather than ftobs[k].close. .close */
1270 /* is for explicit CLOSE-PORT by user */
84af0382 1271 m += (scm_ptobs[k].free) (scmptr);
0f2d19dd
JB
1272 SCM_SETSTREAM (scmptr, 0);
1273 scm_remove_from_port_table (scmptr);
1274 scm_gc_ports_collected++;
24e68a57 1275 SCM_SETAND_CAR (scmptr, ~SCM_OPN);
0f2d19dd
JB
1276 }
1277 break;
1278 case scm_tc7_smob:
1279 switch SCM_GCTYP16 (scmptr)
1280 {
1281 case scm_tc_free_cell:
1282 if SCM_GC8MARKP (scmptr)
1283 goto c8mrkcontinue;
1284 break;
1285#ifdef SCM_BIGDIG
1286 case scm_tcs_bignums:
1287 if SCM_GC8MARKP (scmptr)
1288 goto c8mrkcontinue;
1289 m += (SCM_NUMDIGS (scmptr) * SCM_BITSPERDIG / SCM_CHAR_BIT);
1290 goto freechars;
1291#endif /* def SCM_BIGDIG */
1292 case scm_tc16_flo:
1293 if SCM_GC8MARKP (scmptr)
1294 goto c8mrkcontinue;
1295 switch ((int) (SCM_CAR (scmptr) >> 16))
1296 {
1297 case (SCM_IMAG_PART | SCM_REAL_PART) >> 16:
1298 m += sizeof (double);
1299 case SCM_REAL_PART >> 16:
1300 case SCM_IMAG_PART >> 16:
1301 m += sizeof (double);
1302 goto freechars;
1303 case 0:
1304 break;
1305 default:
1306 goto sweeperr;
1307 }
1308 break;
1309 default:
1310 if SCM_GC8MARKP (scmptr)
1311 goto c8mrkcontinue;
1312
1313 {
1314 int k;
1315 k = SCM_SMOBNUM (scmptr);
1316 if (!(k < scm_numsmob))
1317 goto sweeperr;
1318 m += (scm_smobs[k].free) ((SCM) scmptr);
1319 break;
1320 }
1321 }
1322 break;
1323 default:
1324 sweeperr:scm_wta (scmptr, "unknown type in ", "gc_sweep");
1325 }
1326 n += span;
1327#if 0
1328 if (SCM_CAR (scmptr) == (SCM) scm_tc_free_cell)
1329 exit (2);
1330#endif
e7c5fb37
JB
1331 /* Stick the new cell on the front of nfreelist. It's
1332 critical that we mark this cell as freed; otherwise, the
1333 conservative collector might trace it as some other type
1334 of object. */
24e68a57
MD
1335 SCM_SETCAR (scmptr, (SCM) scm_tc_free_cell);
1336 SCM_SETCDR (scmptr, nfreelist);
0f2d19dd 1337 nfreelist = scmptr;
cf2d30f6 1338
0f2d19dd
JB
1339 continue;
1340 c8mrkcontinue:
1341 SCM_CLRGC8MARK (scmptr);
1342 continue;
1343 cmrkcontinue:
1344 SCM_CLRGCMARK (scmptr);
1345 }
1346#ifdef GC_FREE_SEGMENTS
1347 if (n == seg_size)
1348 {
15e9d186
JB
1349 register long j;
1350
0f2d19dd 1351 scm_heap_size -= seg_size;
cf2d30f6
JB
1352 free ((char *) scm_heap_table[i].bounds[0]);
1353 scm_heap_table[i].bounds[0] = 0;
1354 for (j = i + 1; j < scm_n_heap_segs; j++)
0f2d19dd
JB
1355 scm_heap_table[j - 1] = scm_heap_table[j];
1356 scm_n_heap_segs -= 1;
cf2d30f6 1357 i--; /* We need to scan the segment just moved. */
0f2d19dd
JB
1358 }
1359 else
1360#endif /* ifdef GC_FREE_SEGMENTS */
cf2d30f6
JB
1361 /* Update the real freelist pointer to point to the head of
1362 the list of free cells we've built for this segment. */
0f2d19dd
JB
1363 *hp_freelist = nfreelist;
1364
fca7547b 1365#ifdef GUILE_DEBUG_FREELIST
cf2d30f6
JB
1366 scm_check_freelist ();
1367 scm_map_free_list ();
1368#endif
1369
0f2d19dd 1370 scm_gc_cells_collected += n;
0f2d19dd
JB
1371 }
1372 /* Scan weak vectors. */
1373 {
ab4bef85
JB
1374 SCM *ptr, w;
1375 for (w = scm_weak_vectors; w != SCM_EOL; w = SCM_WVECT_GC_CHAIN (w))
0f2d19dd 1376 {
ab4bef85 1377 if (!SCM_IS_WHVEC_ANY (w))
0f2d19dd 1378 {
15e9d186
JB
1379 register long j, n;
1380
ab4bef85
JB
1381 ptr = SCM_VELTS (w);
1382 n = SCM_LENGTH (w);
0f2d19dd
JB
1383 for (j = 0; j < n; ++j)
1384 if (SCM_NIMP (ptr[j]) && SCM_FREEP (ptr[j]))
1385 ptr[j] = SCM_BOOL_F;
1386 }
1387 else /* if (SCM_IS_WHVEC_ANY (scm_weak_vectors[i])) */
1388 {
ab4bef85
JB
1389 SCM obj = w;
1390 register long n = SCM_LENGTH (w);
15e9d186
JB
1391 register long j;
1392
ab4bef85 1393 ptr = SCM_VELTS (w);
15e9d186 1394
0f2d19dd
JB
1395 for (j = 0; j < n; ++j)
1396 {
1397 SCM * fixup;
1398 SCM alist;
1399 int weak_keys;
1400 int weak_values;
1401
1402 weak_keys = SCM_IS_WHVEC (obj) || SCM_IS_WHVEC_B (obj);
1403 weak_values = SCM_IS_WHVEC_V (obj) || SCM_IS_WHVEC_B (obj);
1404
1405 fixup = ptr + j;
1406 alist = *fixup;
1407
1408 while (SCM_NIMP (alist)
1409 && SCM_CONSP (alist)
1410 && SCM_NIMP (SCM_CAR (alist))
1411 && SCM_CONSP (SCM_CAR (alist)))
1412 {
1413 SCM key;
1414 SCM value;
1415
1416 key = SCM_CAAR (alist);
1417 value = SCM_CDAR (alist);
1418 if ( (weak_keys && SCM_NIMP (key) && SCM_FREEP (key))
1419 || (weak_values && SCM_NIMP (value) && SCM_FREEP (value)))
1420 {
1421 *fixup = SCM_CDR (alist);
1422 }
1423 else
24e68a57 1424 fixup = SCM_CDRLOC (alist);
0f2d19dd
JB
1425 alist = SCM_CDR (alist);
1426 }
1427 }
1428 }
1429 }
1430 }
1431 scm_cells_allocated = (scm_heap_size - scm_gc_cells_collected);
1432 scm_mallocated -= m;
1433 scm_gc_malloc_collected = m;
1434}
1435
1436
1437\f
1438
1439/* {Front end to malloc}
1440 *
c68296f8 1441 * scm_must_malloc, scm_must_realloc, scm_must_free, scm_done_malloc
0f2d19dd
JB
1442 *
1443 * These functions provide services comperable to malloc, realloc, and
1444 * free. They are for allocating malloced parts of scheme objects.
1445 * The primary purpose of the front end is to impose calls to gc.
1446 */
1447
1448/* scm_must_malloc
1449 * Return newly malloced storage or throw an error.
1450 *
1451 * The parameter WHAT is a string for error reporting.
1452 * If the threshold scm_mtrigger will be passed by this
1453 * allocation, or if the first call to malloc fails,
1454 * garbage collect -- on the presumption that some objects
1455 * using malloced storage may be collected.
1456 *
1457 * The limit scm_mtrigger may be raised by this allocation.
1458 */
07806695 1459void *
e4ef2330 1460scm_must_malloc (scm_sizet size, const char *what)
0f2d19dd 1461{
07806695 1462 void *ptr;
15e9d186 1463 unsigned long nm = scm_mallocated + size;
e4ef2330
MD
1464
1465 if (nm <= scm_mtrigger)
0f2d19dd 1466 {
07806695 1467 SCM_SYSCALL (ptr = malloc (size));
0f2d19dd
JB
1468 if (NULL != ptr)
1469 {
1470 scm_mallocated = nm;
1471 return ptr;
1472 }
1473 }
6064dcc6 1474
0f2d19dd 1475 scm_igc (what);
e4ef2330 1476
0f2d19dd 1477 nm = scm_mallocated + size;
07806695 1478 SCM_SYSCALL (ptr = malloc (size));
0f2d19dd
JB
1479 if (NULL != ptr)
1480 {
1481 scm_mallocated = nm;
6064dcc6
MV
1482 if (nm > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS) {
1483 if (nm > scm_mtrigger)
1484 scm_mtrigger = nm + nm / 2;
1485 else
1486 scm_mtrigger += scm_mtrigger / 2;
1487 }
0f2d19dd
JB
1488 return ptr;
1489 }
e4ef2330
MD
1490
1491 scm_wta (SCM_MAKINUM (size), (char *) SCM_NALLOC, what);
1492 return 0; /* never reached */
0f2d19dd
JB
1493}
1494
1495
1496/* scm_must_realloc
1497 * is similar to scm_must_malloc.
1498 */
07806695
JB
1499void *
1500scm_must_realloc (void *where,
e4ef2330
MD
1501 scm_sizet old_size,
1502 scm_sizet size,
3eeba8d4 1503 const char *what)
0f2d19dd 1504{
07806695 1505 void *ptr;
e4ef2330
MD
1506 scm_sizet nm = scm_mallocated + size - old_size;
1507
1508 if (nm <= scm_mtrigger)
0f2d19dd 1509 {
07806695 1510 SCM_SYSCALL (ptr = realloc (where, size));
0f2d19dd
JB
1511 if (NULL != ptr)
1512 {
1513 scm_mallocated = nm;
1514 return ptr;
1515 }
1516 }
e4ef2330 1517
0f2d19dd 1518 scm_igc (what);
e4ef2330
MD
1519
1520 nm = scm_mallocated + size - old_size;
07806695 1521 SCM_SYSCALL (ptr = realloc (where, size));
0f2d19dd
JB
1522 if (NULL != ptr)
1523 {
1524 scm_mallocated = nm;
6064dcc6
MV
1525 if (nm > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS) {
1526 if (nm > scm_mtrigger)
1527 scm_mtrigger = nm + nm / 2;
1528 else
1529 scm_mtrigger += scm_mtrigger / 2;
1530 }
0f2d19dd
JB
1531 return ptr;
1532 }
e4ef2330
MD
1533
1534 scm_wta (SCM_MAKINUM (size), (char *) SCM_NALLOC, what);
1535 return 0; /* never reached */
0f2d19dd
JB
1536}
1537
0f2d19dd 1538void
07806695 1539scm_must_free (void *obj)
0f2d19dd
JB
1540{
1541 if (obj)
1542 free (obj);
1543 else
1544 scm_wta (SCM_INUM0, "already free", "");
1545}
0f2d19dd 1546
c68296f8
MV
1547/* Announce that there has been some malloc done that will be freed
1548 * during gc. A typical use is for a smob that uses some malloced
1549 * memory but can not get it from scm_must_malloc (for whatever
1550 * reason). When a new object of this smob is created you call
1551 * scm_done_malloc with the size of the object. When your smob free
1552 * function is called, be sure to include this size in the return
1553 * value. */
0f2d19dd 1554
c68296f8
MV
1555void
1556scm_done_malloc (size)
1557 long size;
1558{
1559 scm_mallocated += size;
1560
1561 if (scm_mallocated > scm_mtrigger)
1562 {
1563 scm_igc ("foreign mallocs");
1564 if (scm_mallocated > scm_mtrigger - SCM_MTRIGGER_HYSTERESIS)
1565 {
1566 if (scm_mallocated > scm_mtrigger)
1567 scm_mtrigger = scm_mallocated + scm_mallocated / 2;
1568 else
1569 scm_mtrigger += scm_mtrigger / 2;
1570 }
1571 }
1572}
1573
1574
1575\f
0f2d19dd
JB
1576
1577/* {Heap Segments}
1578 *
1579 * Each heap segment is an array of objects of a particular size.
1580 * Every segment has an associated (possibly shared) freelist.
1581 * A table of segment records is kept that records the upper and
1582 * lower extents of the segment; this is used during the conservative
1583 * phase of gc to identify probably gc roots (because they point
c68296f8 1584 * into valid segments at reasonable offsets). */
0f2d19dd
JB
1585
1586/* scm_expmem
1587 * is true if the first segment was smaller than INIT_HEAP_SEG.
1588 * If scm_expmem is set to one, subsequent segment allocations will
1589 * allocate segments of size SCM_EXPHEAP(scm_heap_size).
1590 */
1591int scm_expmem = 0;
1592
1593/* scm_heap_org
1594 * is the lowest base address of any heap segment.
1595 */
1596SCM_CELLPTR scm_heap_org;
1597
1598struct scm_heap_seg_data * scm_heap_table = 0;
1599int scm_n_heap_segs = 0;
1600
1601/* scm_heap_size
1602 * is the total number of cells in heap segments.
1603 */
15e9d186 1604unsigned long scm_heap_size = 0;
0f2d19dd
JB
1605
1606/* init_heap_seg
1607 * initializes a new heap segment and return the number of objects it contains.
1608 *
1609 * The segment origin, segment size in bytes, and the span of objects
1610 * in cells are input parameters. The freelist is both input and output.
1611 *
1612 * This function presume that the scm_heap_table has already been expanded
1613 * to accomodate a new segment record.
1614 */
1615
1616
0f2d19dd
JB
1617static scm_sizet
1618init_heap_seg (seg_org, size, ncells, freelistp)
1619 SCM_CELLPTR seg_org;
1620 scm_sizet size;
1621 int ncells;
1622 SCM *freelistp;
0f2d19dd
JB
1623{
1624 register SCM_CELLPTR ptr;
1625#ifdef SCM_POINTERS_MUNGED
1626 register SCM scmptr;
1627#else
1628#undef scmptr
1629#define scmptr ptr
1630#endif
1631 SCM_CELLPTR seg_end;
15e9d186
JB
1632 int new_seg_index;
1633 int n_new_objects;
0f2d19dd
JB
1634
1635 if (seg_org == NULL)
1636 return 0;
1637
1638 ptr = seg_org;
1639
1640 /* Compute the ceiling on valid object pointers w/in this segment.
1641 */
1642 seg_end = CELL_DN ((char *) ptr + size);
1643
1644 /* Find the right place and insert the segment record.
1645 *
1646 */
1647 for (new_seg_index = 0;
1648 ( (new_seg_index < scm_n_heap_segs)
1649 && SCM_PTR_LE (scm_heap_table[new_seg_index].bounds[0], seg_org));
1650 new_seg_index++)
1651 ;
1652
1653 {
1654 int i;
1655 for (i = scm_n_heap_segs; i > new_seg_index; --i)
1656 scm_heap_table[i] = scm_heap_table[i - 1];
1657 }
1658
1659 ++scm_n_heap_segs;
1660
1661 scm_heap_table[new_seg_index].valid = 0;
1662 scm_heap_table[new_seg_index].ncells = ncells;
1663 scm_heap_table[new_seg_index].freelistp = freelistp;
1664 scm_heap_table[new_seg_index].bounds[0] = (SCM_CELLPTR)ptr;
1665 scm_heap_table[new_seg_index].bounds[1] = (SCM_CELLPTR)seg_end;
1666
1667
1668 /* Compute the least valid object pointer w/in this segment
1669 */
1670 ptr = CELL_UP (ptr);
1671
1672
1673 n_new_objects = seg_end - ptr;
1674
1675 /* Prepend objects in this segment to the freelist.
1676 */
1677 while (ptr < seg_end)
1678 {
1679#ifdef SCM_POINTERS_MUNGED
1680 scmptr = PTR2SCM (ptr);
1681#endif
24e68a57
MD
1682 SCM_SETCAR (scmptr, (SCM) scm_tc_free_cell);
1683 SCM_SETCDR (scmptr, PTR2SCM (ptr + ncells));
0f2d19dd
JB
1684 ptr += ncells;
1685 }
1686
1687 ptr -= ncells;
1688
1689 /* Patch up the last freelist pointer in the segment
1690 * to join it to the input freelist.
1691 */
24e68a57 1692 SCM_SETCDR (PTR2SCM (ptr), *freelistp);
0f2d19dd
JB
1693 *freelistp = PTR2SCM (CELL_UP (seg_org));
1694
1695 scm_heap_size += (ncells * n_new_objects);
1696 return size;
1697#ifdef scmptr
1698#undef scmptr
1699#endif
1700}
1701
1702
0f2d19dd
JB
1703static void
1704alloc_some_heap (ncells, freelistp)
1705 int ncells;
1706 SCM * freelistp;
0f2d19dd
JB
1707{
1708 struct scm_heap_seg_data * tmptable;
1709 SCM_CELLPTR ptr;
1710 scm_sizet len;
1711
1712 /* Critical code sections (such as the garbage collector)
1713 * aren't supposed to add heap segments.
1714 */
1715 if (scm_gc_heap_lock)
1716 scm_wta (SCM_UNDEFINED, "need larger initial", "heap");
1717
1718 /* Expand the heap tables to have room for the new segment.
1719 * Do not yet increment scm_n_heap_segs -- that is done by init_heap_seg
1720 * only if the allocation of the segment itself succeeds.
1721 */
1722 len = (1 + scm_n_heap_segs) * sizeof (struct scm_heap_seg_data);
1723
1724 SCM_SYSCALL (tmptable = ((struct scm_heap_seg_data *)
1725 realloc ((char *)scm_heap_table, len)));
1726 if (!tmptable)
1727 scm_wta (SCM_UNDEFINED, "could not grow", "hplims");
1728 else
1729 scm_heap_table = tmptable;
1730
1731
1732 /* Pick a size for the new heap segment.
1733 * The rule for picking the size of a segment is explained in
1734 * gc.h
1735 */
1736 if (scm_expmem)
1737 {
1738 len = (scm_sizet) (SCM_EXPHEAP (scm_heap_size) * sizeof (scm_cell));
1739 if ((scm_sizet) (SCM_EXPHEAP (scm_heap_size) * sizeof (scm_cell)) != len)
1740 len = 0;
1741 }
1742 else
1743 len = SCM_HEAP_SEG_SIZE;
1744
1745 {
1746 scm_sizet smallest;
1747
1748 smallest = (ncells * sizeof (scm_cell));
1749 if (len < smallest)
1750 len = (ncells * sizeof (scm_cell));
1751
1752 /* Allocate with decaying ambition. */
1753 while ((len >= SCM_MIN_HEAP_SEG_SIZE)
1754 && (len >= smallest))
1755 {
1756 SCM_SYSCALL (ptr = (SCM_CELLPTR) malloc (len));
1757 if (ptr)
1758 {
1759 init_heap_seg (ptr, len, ncells, freelistp);
1760 return;
1761 }
1762 len /= 2;
1763 }
1764 }
1765
1766 scm_wta (SCM_UNDEFINED, "could not grow", "heap");
1767}
1768
1769
1770
1bbd0b84
GB
1771GUILE_PROC (scm_unhash_name, "unhash-name", 1, 0, 0,
1772 (SCM name),
1773"")
1774#define FUNC_NAME s_scm_unhash_name
0f2d19dd
JB
1775{
1776 int x;
1777 int bound;
1bbd0b84 1778 SCM_VALIDATE_SYMBOL(1,name);
0f2d19dd
JB
1779 SCM_DEFER_INTS;
1780 bound = scm_n_heap_segs;
1781 for (x = 0; x < bound; ++x)
1782 {
1783 SCM_CELLPTR p;
1784 SCM_CELLPTR pbound;
1785 p = (SCM_CELLPTR)scm_heap_table[x].bounds[0];
1786 pbound = (SCM_CELLPTR)scm_heap_table[x].bounds[1];
1787 while (p < pbound)
1788 {
1789 SCM incar;
1790 incar = p->car;
1791 if (1 == (7 & (int)incar))
1792 {
1793 --incar;
1794 if ( ((name == SCM_BOOL_T) || (SCM_CAR (incar) == name))
1795 && (SCM_CDR (incar) != 0)
1796 && (SCM_CDR (incar) != 1))
1797 {
1798 p->car = name;
1799 }
1800 }
1801 ++p;
1802 }
1803 }
1804 SCM_ALLOW_INTS;
1805 return name;
1806}
1bbd0b84 1807#undef FUNC_NAME
0f2d19dd
JB
1808
1809
1810\f
1811/* {GC Protection Helper Functions}
1812 */
1813
1814
0f2d19dd
JB
1815void
1816scm_remember (ptr)
1817 SCM * ptr;
0f2d19dd
JB
1818{}
1819
1cc91f1b 1820
0f2d19dd
JB
1821SCM
1822scm_return_first (SCM elt, ...)
0f2d19dd
JB
1823{
1824 return elt;
1825}
1826
1827
0f2d19dd
JB
1828SCM
1829scm_permanent_object (obj)
1830 SCM obj;
0f2d19dd
JB
1831{
1832 SCM_REDEFER_INTS;
1833 scm_permobjs = scm_cons (obj, scm_permobjs);
1834 SCM_REALLOW_INTS;
1835 return obj;
1836}
1837
1838
ef290276
JB
1839/* Protect OBJ from the garbage collector. OBJ will not be freed,
1840 even if all other references are dropped, until someone applies
1841 scm_unprotect_object to it. This function returns OBJ.
1842
dab7f566
JB
1843 Calls to scm_protect_object nest. For every object O, there is a
1844 counter which scm_protect_object(O) increments and
1845 scm_unprotect_object(O) decrements, if it is greater than zero. If
1846 an object's counter is greater than zero, the garbage collector
1847 will not free it.
1848
1849 Of course, that's not how it's implemented. scm_protect_object and
1850 scm_unprotect_object just maintain a list of references to things.
1851 Since the GC knows about this list, all objects it mentions stay
1852 alive. scm_protect_object adds its argument to the list;
1853 scm_unprotect_object removes the first occurrence of its argument
1854 to the list. */
ef290276
JB
1855SCM
1856scm_protect_object (obj)
1857 SCM obj;
1858{
ef290276
JB
1859 scm_protects = scm_cons (obj, scm_protects);
1860
1861 return obj;
1862}
1863
1864
1865/* Remove any protection for OBJ established by a prior call to
dab7f566 1866 scm_protect_object. This function returns OBJ.
ef290276 1867
dab7f566 1868 See scm_protect_object for more information. */
ef290276
JB
1869SCM
1870scm_unprotect_object (obj)
1871 SCM obj;
1872{
dab7f566
JB
1873 SCM *tail_ptr = &scm_protects;
1874
1875 while (SCM_NIMP (*tail_ptr) && SCM_CONSP (*tail_ptr))
1876 if (SCM_CAR (*tail_ptr) == obj)
1877 {
1878 *tail_ptr = SCM_CDR (*tail_ptr);
1879 break;
1880 }
1881 else
1882 tail_ptr = SCM_CDRLOC (*tail_ptr);
ef290276
JB
1883
1884 return obj;
1885}
1886
c45acc34
JB
1887int terminating;
1888
1889/* called on process termination. */
e52ceaac
MD
1890#ifdef HAVE_ATEXIT
1891static void
1892cleanup (void)
1893#else
1894#ifdef HAVE_ON_EXIT
51157deb
MD
1895extern int on_exit (void (*procp) (), int arg);
1896
e52ceaac
MD
1897static void
1898cleanup (int status, void *arg)
1899#else
1900#error Dont know how to setup a cleanup handler on your system.
1901#endif
1902#endif
c45acc34
JB
1903{
1904 terminating = 1;
1905 scm_flush_all_ports ();
1906}
ef290276 1907
0f2d19dd 1908\f
0f2d19dd 1909int
15e9d186 1910scm_init_storage (scm_sizet init_heap_size)
0f2d19dd
JB
1911{
1912 scm_sizet j;
1913
1914 j = SCM_NUM_PROTECTS;
1915 while (j)
1916 scm_sys_protects[--j] = SCM_BOOL_F;
1917 scm_block_gc = 1;
1918 scm_freelist = SCM_EOL;
1919 scm_expmem = 0;
1920
1921 j = SCM_HEAP_SEG_SIZE;
1922 scm_mtrigger = SCM_INIT_MALLOC_LIMIT;
1923 scm_heap_table = ((struct scm_heap_seg_data *)
1924 scm_must_malloc (sizeof (struct scm_heap_seg_data), "hplims"));
1925 if (0L == init_heap_size)
1926 init_heap_size = SCM_INIT_HEAP_SIZE;
1927 j = init_heap_size;
1928 if ((init_heap_size != j)
1929 || !init_heap_seg ((SCM_CELLPTR) malloc (j), j, 1, &scm_freelist))
1930 {
1931 j = SCM_HEAP_SEG_SIZE;
1932 if (!init_heap_seg ((SCM_CELLPTR) malloc (j), j, 1, &scm_freelist))
1933 return 1;
1934 }
1935 else
1936 scm_expmem = 1;
1937 scm_heap_org = CELL_UP (scm_heap_table[0].bounds[0]);
1938 /* scm_hplims[0] can change. do not remove scm_heap_org */
ab4bef85 1939 scm_weak_vectors = SCM_EOL;
0f2d19dd
JB
1940
1941 /* Initialise the list of ports. */
840ae05d
JB
1942 scm_port_table = (scm_port **)
1943 malloc (sizeof (scm_port *) * scm_port_table_room);
0f2d19dd
JB
1944 if (!scm_port_table)
1945 return 1;
1946
a18bcd0e 1947#ifdef HAVE_ATEXIT
c45acc34 1948 atexit (cleanup);
e52ceaac
MD
1949#else
1950#ifdef HAVE_ON_EXIT
1951 on_exit (cleanup, 0);
1952#endif
a18bcd0e 1953#endif
0f2d19dd
JB
1954
1955 scm_undefineds = scm_cons (SCM_UNDEFINED, SCM_EOL);
24e68a57 1956 SCM_SETCDR (scm_undefineds, scm_undefineds);
0f2d19dd
JB
1957
1958 scm_listofnull = scm_cons (SCM_EOL, SCM_EOL);
1959 scm_nullstr = scm_makstr (0L, 0);
a8741caa
MD
1960 scm_nullvect = scm_make_vector (SCM_INUM0, SCM_UNDEFINED);
1961 scm_symhash = scm_make_vector ((SCM) SCM_MAKINUM (scm_symhash_dim), SCM_EOL);
4037ac5f 1962 scm_weak_symhash = scm_make_weak_key_hash_table ((SCM) SCM_MAKINUM (scm_symhash_dim));
a8741caa 1963 scm_symhash_vars = scm_make_vector ((SCM) SCM_MAKINUM (scm_symhash_dim), SCM_EOL);
8960e0a0 1964 scm_stand_in_procs = SCM_EOL;
0f2d19dd 1965 scm_permobjs = SCM_EOL;
ef290276 1966 scm_protects = SCM_EOL;
3b2b8760 1967 scm_asyncs = SCM_EOL;
0f2d19dd
JB
1968 scm_sysintern ("most-positive-fixnum", (SCM) SCM_MAKINUM (SCM_MOST_POSITIVE_FIXNUM));
1969 scm_sysintern ("most-negative-fixnum", (SCM) SCM_MAKINUM (SCM_MOST_NEGATIVE_FIXNUM));
1970#ifdef SCM_BIGDIG
1971 scm_sysintern ("bignum-radix", SCM_MAKINUM (SCM_BIGRAD));
1972#endif
1973 return 0;
1974}
1975\f
1976
0f2d19dd
JB
1977void
1978scm_init_gc ()
0f2d19dd
JB
1979{
1980#include "gc.x"
1981}