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