* gc.c: add protected_object_count, a number that is dumped from
[bpt/guile.git] / libguile / gc.c
1 /* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library 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 GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18
19 /* #define DEBUGINFO */
20
21 #if HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <stdio.h>
26 #include <errno.h>
27 #include <string.h>
28 #include <assert.h>
29
30 #ifdef __ia64__
31 #include <ucontext.h>
32 extern unsigned long * __libc_ia64_register_backing_store_base;
33 #endif
34
35 #include "libguile/_scm.h"
36 #include "libguile/eval.h"
37 #include "libguile/stime.h"
38 #include "libguile/stackchk.h"
39 #include "libguile/struct.h"
40 #include "libguile/smob.h"
41 #include "libguile/unif.h"
42 #include "libguile/async.h"
43 #include "libguile/ports.h"
44 #include "libguile/root.h"
45 #include "libguile/strings.h"
46 #include "libguile/vectors.h"
47 #include "libguile/weaks.h"
48 #include "libguile/hashtab.h"
49 #include "libguile/tags.h"
50
51 #include "libguile/private-gc.h"
52 #include "libguile/validate.h"
53 #include "libguile/deprecation.h"
54 #include "libguile/gc.h"
55
56 #ifdef GUILE_DEBUG_MALLOC
57 #include "libguile/debug-malloc.h"
58 #endif
59
60 #ifdef HAVE_MALLOC_H
61 #include <malloc.h>
62 #endif
63
64 #ifdef HAVE_UNISTD_H
65 #include <unistd.h>
66 #endif
67
68
69
70 unsigned int scm_gc_running_p = 0;
71
72 /* Lock this mutex before doing lazy sweeping.
73 */
74 scm_t_rec_mutex scm_i_sweep_mutex;
75
76 /* Set this to != 0 if every cell that is accessed shall be checked:
77 */
78 int scm_debug_cell_accesses_p = 0;
79 int scm_expensive_debug_cell_accesses_p = 0;
80
81 /* Set this to 0 if no additional gc's shall be performed, otherwise set it to
82 * the number of cell accesses after which a gc shall be called.
83 */
84 int scm_debug_cells_gc_interval = 0;
85
86 /*
87 Global variable, so you can switch it off at runtime by setting
88 scm_i_cell_validation_already_running.
89 */
90 int scm_i_cell_validation_already_running ;
91
92 #if (SCM_DEBUG_CELL_ACCESSES == 1)
93
94
95 /*
96
97 Assert that the given object is a valid reference to a valid cell. This
98 test involves to determine whether the object is a cell pointer, whether
99 this pointer actually points into a heap segment and whether the cell
100 pointed to is not a free cell. Further, additional garbage collections may
101 get executed after a user defined number of cell accesses. This helps to
102 find places in the C code where references are dropped for extremely short
103 periods.
104
105 */
106 void
107 scm_i_expensive_validation_check (SCM cell)
108 {
109 if (!scm_in_heap_p (cell))
110 {
111 fprintf (stderr, "scm_assert_cell_valid: this object does not live in the heap: %lux\n",
112 (unsigned long) SCM_UNPACK (cell));
113 abort ();
114 }
115
116 /* If desired, perform additional garbage collections after a user
117 * defined number of cell accesses.
118 */
119 if (scm_debug_cells_gc_interval)
120 {
121 static unsigned int counter = 0;
122
123 if (counter != 0)
124 {
125 --counter;
126 }
127 else
128 {
129 counter = scm_debug_cells_gc_interval;
130 scm_igc ("scm_assert_cell_valid");
131 }
132 }
133 }
134
135 void
136 scm_assert_cell_valid (SCM cell)
137 {
138 if (!scm_i_cell_validation_already_running && scm_debug_cell_accesses_p)
139 {
140 scm_i_cell_validation_already_running = 1; /* set to avoid recursion */
141
142 /*
143 During GC, no user-code should be run, and the guile core
144 should use non-protected accessors.
145 */
146 if (scm_gc_running_p)
147 return;
148
149 /*
150 Only scm_in_heap_p and rescanning the heap is wildly
151 expensive.
152 */
153 if (scm_expensive_debug_cell_accesses_p)
154 scm_i_expensive_validation_check (cell);
155
156 if (!SCM_GC_MARK_P (cell))
157 {
158 fprintf (stderr,
159 "scm_assert_cell_valid: this object is unmarked. \n"
160 "It has been garbage-collected in the last GC run: "
161 "%lux\n",
162 (unsigned long) SCM_UNPACK (cell));
163 abort ();
164 }
165
166 scm_i_cell_validation_already_running = 0; /* re-enable */
167 }
168 }
169
170
171
172 SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
173 (SCM flag),
174 "If @var{flag} is @code{#f}, cell access checking is disabled.\n"
175 "If @var{flag} is @code{#t}, cheap cell access checking is enabled,\n"
176 "but no additional calls to garbage collection are issued.\n"
177 "If @var{flag} is a number, strict cell access checking is enabled,\n"
178 "with an additional garbage collection after the given\n"
179 "number of cell accesses.\n"
180 "This procedure only exists when the compile-time flag\n"
181 "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.")
182 #define FUNC_NAME s_scm_set_debug_cell_accesses_x
183 {
184 if (SCM_FALSEP (flag))
185 {
186 scm_debug_cell_accesses_p = 0;
187 }
188 else if (SCM_EQ_P (flag, SCM_BOOL_T))
189 {
190 scm_debug_cells_gc_interval = 0;
191 scm_debug_cell_accesses_p = 1;
192 scm_expensive_debug_cell_accesses_p = 0;
193 }
194 else if (SCM_INUMP (flag))
195 {
196 long int f = SCM_INUM (flag);
197 if (f <= 0)
198 SCM_OUT_OF_RANGE (1, flag);
199 scm_debug_cells_gc_interval = f;
200 scm_debug_cell_accesses_p = 1;
201 scm_expensive_debug_cell_accesses_p = 1;
202 }
203 else
204 {
205 SCM_WRONG_TYPE_ARG (1, flag);
206 }
207 return SCM_UNSPECIFIED;
208 }
209 #undef FUNC_NAME
210 #else
211
212 /*
213 Provide a stub, so people can use their Scheme code on non-debug
214 versions of GUILE as well.
215 */
216 SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
217 (SCM flag),
218 "This function is used to turn on checking for a debug version of GUILE. This version does not support this functionality\n")
219 #define FUNC_NAME s_scm_set_debug_cell_accesses_x
220 {
221
222 /*
223 do nothing
224 */
225 fprintf (stderr, "\nWARNING: GUILE was not compiled with SCM_DEBUG_CELL_ACCESSES");
226 scm_remember_upto_here (flag);
227 return SCM_UNSPECIFIED;
228 }
229 #undef FUNC_NAME
230
231 #endif /* SCM_DEBUG_CELL_ACCESSES == 1 */
232
233 \f
234
235 scm_t_key scm_i_freelist;
236 scm_t_key scm_i_freelist2;
237
238
239 /* scm_mtrigger
240 * is the number of bytes of malloc allocation needed to trigger gc.
241 */
242 unsigned long scm_mtrigger;
243
244 /* scm_gc_heap_lock
245 * If set, don't expand the heap. Set only during gc, during which no allocation
246 * is supposed to take place anyway.
247 */
248 int scm_gc_heap_lock = 0;
249
250 /* GC Blocking
251 * Don't pause for collection if this is set -- just
252 * expand the heap.
253 */
254 int scm_block_gc = 1;
255
256 /* During collection, this accumulates objects holding
257 * weak references.
258 */
259 SCM scm_weak_vectors;
260
261 /* GC Statistics Keeping
262 */
263 unsigned long scm_cells_allocated = 0;
264 unsigned long scm_mallocated = 0;
265 unsigned long scm_gc_cells_collected;
266 unsigned long scm_gc_cells_collected_1 = 0; /* previous GC yield */
267 unsigned long scm_gc_malloc_collected;
268 unsigned long scm_gc_ports_collected;
269 unsigned long scm_gc_time_taken = 0;
270 static unsigned long t_before_gc;
271 unsigned long scm_gc_mark_time_taken = 0;
272 unsigned long scm_gc_times = 0;
273 unsigned long scm_gc_cells_swept = 0;
274 double scm_gc_cells_marked_acc = 0.;
275 double scm_gc_cells_swept_acc = 0.;
276 int scm_gc_cell_yield_percentage =0;
277 int scm_gc_malloc_yield_percentage = 0;
278 unsigned long protected_obj_count = 0;
279
280
281 SCM_SYMBOL (sym_cells_allocated, "cells-allocated");
282 SCM_SYMBOL (sym_heap_size, "cell-heap-size");
283 SCM_SYMBOL (sym_mallocated, "bytes-malloced");
284 SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold");
285 SCM_SYMBOL (sym_heap_segments, "cell-heap-segments");
286 SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
287 SCM_SYMBOL (sym_gc_mark_time_taken, "gc-mark-time-taken");
288 SCM_SYMBOL (sym_times, "gc-times");
289 SCM_SYMBOL (sym_cells_marked, "cells-marked");
290 SCM_SYMBOL (sym_cells_swept, "cells-swept");
291 SCM_SYMBOL (sym_malloc_yield, "malloc-yield");
292 SCM_SYMBOL (sym_cell_yield, "cell-yield");
293 SCM_SYMBOL (sym_protected_objects, "protected-objects");
294
295
296
297
298 /* Number of calls to SCM_NEWCELL since startup. */
299 unsigned scm_newcell_count;
300 unsigned scm_newcell2_count;
301
302
303 /* {Scheme Interface to GC}
304 */
305 extern int scm_gc_malloc_yield_percentage;
306 SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0,
307 (),
308 "Return an association list of statistics about Guile's current\n"
309 "use of storage.\n")
310 #define FUNC_NAME s_scm_gc_stats
311 {
312 long i = 0;
313 SCM heap_segs = SCM_EOL ;
314 unsigned long int local_scm_mtrigger;
315 unsigned long int local_scm_mallocated;
316 unsigned long int local_scm_heap_size;
317 int local_scm_gc_cell_yield_percentage;
318 int local_scm_gc_malloc_yield_percentage;
319 unsigned long int local_scm_cells_allocated;
320 unsigned long int local_scm_gc_time_taken;
321 unsigned long int local_scm_gc_times;
322 unsigned long int local_scm_gc_mark_time_taken;
323 unsigned long int local_protected_obj_count;
324 double local_scm_gc_cells_swept;
325 double local_scm_gc_cells_marked;
326 SCM answer;
327 unsigned long *bounds = 0;
328 int table_size = scm_i_heap_segment_table_size;
329 SCM_DEFER_INTS;
330
331 /*
332 temporarily store the numbers, so as not to cause GC.
333 */
334
335 bounds = malloc (sizeof (int) * table_size * 2);
336 if (!bounds)
337 abort();
338 for (i = table_size; i--; )
339 {
340 bounds[2*i] = (unsigned long)scm_i_heap_segment_table[i]->bounds[0];
341 bounds[2*i+1] = (unsigned long)scm_i_heap_segment_table[i]->bounds[1];
342 }
343
344
345 /* Below, we cons to produce the resulting list. We want a snapshot of
346 * the heap situation before consing.
347 */
348 local_scm_mtrigger = scm_mtrigger;
349 local_scm_mallocated = scm_mallocated;
350 local_scm_heap_size = SCM_HEAP_SIZE;
351
352 local_scm_cells_allocated = scm_cells_allocated;
353
354 local_scm_gc_time_taken = scm_gc_time_taken;
355 local_scm_gc_mark_time_taken = scm_gc_mark_time_taken;
356 local_scm_gc_times = scm_gc_times;
357 local_scm_gc_malloc_yield_percentage = scm_gc_malloc_yield_percentage;
358 local_scm_gc_cell_yield_percentage= scm_gc_cell_yield_percentage;
359 local_protected_obj_count = protected_obj_count;
360 local_scm_gc_cells_swept =
361 (double) scm_gc_cells_swept_acc
362 + (double) scm_gc_cells_swept;
363 local_scm_gc_cells_marked = scm_gc_cells_marked_acc
364 +(double) scm_gc_cells_swept
365 -(double) scm_gc_cells_collected;
366
367 for (i = table_size; i--;)
368 {
369 heap_segs = scm_cons (scm_cons (scm_ulong2num (bounds[2*i]),
370 scm_ulong2num (bounds[2*i+1])),
371 heap_segs);
372 }
373
374 answer = scm_list_n (scm_cons (sym_gc_time_taken, scm_ulong2num (local_scm_gc_time_taken)),
375 scm_cons (sym_cells_allocated, scm_ulong2num (local_scm_cells_allocated)),
376 scm_cons (sym_heap_size, scm_ulong2num (local_scm_heap_size)),
377 scm_cons (sym_mallocated, scm_ulong2num (local_scm_mallocated)),
378 scm_cons (sym_mtrigger, scm_ulong2num (local_scm_mtrigger)),
379 scm_cons (sym_times, scm_ulong2num (local_scm_gc_times)),
380 scm_cons (sym_gc_mark_time_taken, scm_ulong2num (local_scm_gc_mark_time_taken)),
381 scm_cons (sym_cells_marked, scm_i_dbl2big (local_scm_gc_cells_marked)),
382 scm_cons (sym_cells_swept, scm_i_dbl2big (local_scm_gc_cells_swept)),
383 scm_cons (sym_malloc_yield, scm_long2num (local_scm_gc_malloc_yield_percentage)),
384 scm_cons (sym_cell_yield, scm_long2num (local_scm_gc_cell_yield_percentage)),
385 scm_cons (sym_protected_objects, scm_ulong2num (local_protected_obj_count)),
386 scm_cons (sym_heap_segments, heap_segs),
387 SCM_UNDEFINED);
388 SCM_ALLOW_INTS;
389
390 free (bounds);
391 return answer;
392 }
393 #undef FUNC_NAME
394
395 static void
396 gc_start_stats (const char *what SCM_UNUSED)
397 {
398 t_before_gc = scm_c_get_internal_run_time ();
399
400 scm_gc_cells_marked_acc += (double) scm_gc_cells_swept
401 - (double) scm_gc_cells_collected;
402 scm_gc_cells_swept_acc += (double) scm_gc_cells_swept;
403
404 scm_gc_cell_yield_percentage = ( scm_gc_cells_collected * 100 ) / SCM_HEAP_SIZE;
405
406 scm_gc_cells_swept = 0;
407 scm_gc_cells_collected_1 = scm_gc_cells_collected;
408
409 /*
410 CELLS SWEPT is another word for the number of cells that were
411 examined during GC. YIELD is the number that we cleaned
412 out. MARKED is the number that weren't cleaned.
413 */
414 scm_gc_cells_collected = 0;
415 scm_gc_malloc_collected = 0;
416 scm_gc_ports_collected = 0;
417 }
418
419 static void
420 gc_end_stats ()
421 {
422 unsigned long t = scm_c_get_internal_run_time ();
423 scm_gc_time_taken += (t - t_before_gc);
424
425 ++scm_gc_times;
426 }
427
428
429 SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0,
430 (SCM obj),
431 "Return an integer that for the lifetime of @var{obj} is uniquely\n"
432 "returned by this function for @var{obj}")
433 #define FUNC_NAME s_scm_object_address
434 {
435 return scm_ulong2num ((unsigned long) SCM_UNPACK (obj));
436 }
437 #undef FUNC_NAME
438
439
440 SCM_DEFINE (scm_gc, "gc", 0, 0, 0,
441 (),
442 "Scans all of SCM objects and reclaims for further use those that are\n"
443 "no longer accessible.")
444 #define FUNC_NAME s_scm_gc
445 {
446 scm_igc ("call");
447 return SCM_UNSPECIFIED;
448 }
449 #undef FUNC_NAME
450
451
452 \f
453
454 /* When we get POSIX threads support, the master will be global and
455 * common while the freelist will be individual for each thread.
456 */
457
458 SCM
459 scm_gc_for_newcell (scm_t_cell_type_statistics *freelist, SCM *free_cells)
460 {
461 SCM cell;
462
463 scm_rec_mutex_lock (&scm_i_sweep_mutex);
464
465 *free_cells = scm_i_sweep_some_segments (freelist);
466 if (*free_cells == SCM_EOL && scm_i_gc_grow_heap_p (freelist))
467 {
468 freelist->heap_segment_idx = scm_i_get_new_heap_segment (freelist, abort_on_error);
469 *free_cells = scm_i_sweep_some_segments (freelist);
470 }
471
472 if (*free_cells == SCM_EOL && !scm_block_gc)
473 {
474 /*
475 with the advent of lazy sweep, GC yield is only know just
476 before doing the GC.
477 */
478 scm_i_adjust_min_yield (freelist);
479
480 /*
481 out of fresh cells. Try to get some new ones.
482 */
483
484 scm_igc ("cells");
485
486 *free_cells = scm_i_sweep_some_segments (freelist);
487 }
488
489 if (*free_cells == SCM_EOL)
490 {
491 /*
492 failed getting new cells. Get new juice or die.
493 */
494 freelist->heap_segment_idx = scm_i_get_new_heap_segment (freelist, abort_on_error);
495 *free_cells = scm_i_sweep_some_segments (freelist);
496 }
497
498 if (*free_cells == SCM_EOL)
499 abort ();
500
501 cell = *free_cells;
502
503 *free_cells = SCM_FREE_CELL_CDR (cell);
504
505 scm_rec_mutex_unlock (&scm_i_sweep_mutex);
506
507 return cell;
508 }
509
510
511 scm_t_c_hook scm_before_gc_c_hook;
512 scm_t_c_hook scm_before_mark_c_hook;
513 scm_t_c_hook scm_before_sweep_c_hook;
514 scm_t_c_hook scm_after_sweep_c_hook;
515 scm_t_c_hook scm_after_gc_c_hook;
516
517 void
518 scm_igc (const char *what)
519 {
520 scm_rec_mutex_lock (&scm_i_sweep_mutex);
521 ++scm_gc_running_p;
522 scm_c_hook_run (&scm_before_gc_c_hook, 0);
523
524 #ifdef DEBUGINFO
525 fprintf (stderr,"gc reason %s\n", what);
526
527 fprintf (stderr,
528 SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist))
529 ? "*"
530 : (SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m"));
531 #endif
532
533 /* During the critical section, only the current thread may run. */
534 scm_i_thread_put_to_sleep ();
535
536 if (!scm_root || !scm_stack_base || scm_block_gc)
537 {
538 --scm_gc_running_p;
539 return;
540 }
541
542 gc_start_stats (what);
543
544 if (scm_gc_heap_lock)
545 /* We've invoked the collector while a GC is already in progress.
546 That should never happen. */
547 abort ();
548
549 ++scm_gc_heap_lock;
550
551 /*
552 Let's finish the sweep. The conservative GC might point into the
553 garbage, and marking that would create a mess.
554 */
555 scm_i_sweep_all_segments("GC");
556 if (scm_mallocated < scm_i_deprecated_memory_return)
557 {
558 /* The byte count of allocated objects has underflowed. This is
559 probably because you forgot to report the sizes of objects you
560 have allocated, by calling scm_done_malloc or some such. When
561 the GC freed them, it subtracted their size from
562 scm_mallocated, which underflowed. */
563 fprintf (stderr,
564 "scm_gc_sweep: Byte count of allocated objects has underflowed.\n"
565 "This is probably because the GC hasn't been correctly informed\n"
566 "about object sizes\n");
567 abort ();
568 }
569 scm_mallocated -= scm_i_deprecated_memory_return;
570
571
572
573 scm_c_hook_run (&scm_before_mark_c_hook, 0);
574
575 scm_mark_all ();
576
577 scm_gc_mark_time_taken += (scm_c_get_internal_run_time () - t_before_gc);
578
579 scm_c_hook_run (&scm_before_sweep_c_hook, 0);
580
581 /*
582 Moved this lock upwards so that we can alloc new heap at the end of a sweep.
583
584 DOCME: why should the heap be locked anyway?
585 */
586 --scm_gc_heap_lock;
587
588 scm_gc_sweep ();
589
590
591 /*
592 TODO: this hook should probably be moved to just before the mark,
593 since that's where the sweep is finished in lazy sweeping.
594
595 MDJ 030219 <djurfeldt@nada.kth.se>: No, probably not. The
596 original meaning implied at least two things: that it would be
597 called when
598
599 1. the freelist is re-initialized (no evaluation possible, though)
600
601 and
602
603 2. the heap is "fresh"
604 (it is well-defined what data is used and what is not)
605
606 Neither of these conditions would hold just before the mark phase.
607
608 Of course, the lazy sweeping has muddled the distinction between
609 scm_before_sweep_c_hook and scm_after_sweep_c_hook, but even if
610 there were no difference, it would still be useful to have two
611 distinct classes of hook functions since this can prevent some
612 bad interference when several modules adds gc hooks.
613 */
614 scm_c_hook_run (&scm_after_sweep_c_hook, 0);
615 gc_end_stats ();
616
617 scm_i_thread_wake_up ();
618
619 /*
620 See above.
621 */
622 scm_c_hook_run (&scm_after_gc_c_hook, 0);
623 --scm_gc_running_p;
624 scm_rec_mutex_unlock (&scm_i_sweep_mutex);
625
626 /*
627 For debugging purposes, you could do
628 scm_i_sweep_all_segments("debug"), but then the remains of the
629 cell aren't left to analyse.
630 */
631 }
632
633 \f
634 /* {GC Protection Helper Functions}
635 */
636
637
638 /*
639 * If within a function you need to protect one or more scheme objects from
640 * garbage collection, pass them as parameters to one of the
641 * scm_remember_upto_here* functions below. These functions don't do
642 * anything, but since the compiler does not know that they are actually
643 * no-ops, it will generate code that calls these functions with the given
644 * parameters. Therefore, you can be sure that the compiler will keep those
645 * scheme values alive (on the stack or in a register) up to the point where
646 * scm_remember_upto_here* is called. In other words, place the call to
647 * scm_remember_upto_here* _behind_ the last code in your function, that
648 * depends on the scheme object to exist.
649 *
650 * Example: We want to make sure that the string object str does not get
651 * garbage collected during the execution of 'some_function' in the code
652 * below, because otherwise the characters belonging to str would be freed and
653 * 'some_function' might access freed memory. To make sure that the compiler
654 * keeps str alive on the stack or in a register such that it is visible to
655 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
656 * call to 'some_function'. Note that this would not be necessary if str was
657 * used anyway after the call to 'some_function'.
658 * char *chars = SCM_STRING_CHARS (str);
659 * some_function (chars);
660 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
661 */
662
663 /* Remove any macro versions of these while defining the functions.
664 Functions are always included in the library, for upward binary
665 compatibility and in case combinations of GCC and non-GCC are used. */
666 #undef scm_remember_upto_here_1
667 #undef scm_remember_upto_here_2
668
669 void
670 scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
671 {
672 /* Empty. Protects a single object from garbage collection. */
673 }
674
675 void
676 scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
677 {
678 /* Empty. Protects two objects from garbage collection. */
679 }
680
681 void
682 scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
683 {
684 /* Empty. Protects any number of objects from garbage collection. */
685 }
686
687 /*
688 These crazy functions prevent garbage collection
689 of arguments after the first argument by
690 ensuring they remain live throughout the
691 function because they are used in the last
692 line of the code block.
693 It'd be better to have a nice compiler hint to
694 aid the conservative stack-scanning GC. --03/09/00 gjb */
695 SCM
696 scm_return_first (SCM elt, ...)
697 {
698 return elt;
699 }
700
701 int
702 scm_return_first_int (int i, ...)
703 {
704 return i;
705 }
706
707
708 SCM
709 scm_permanent_object (SCM obj)
710 {
711 SCM_REDEFER_INTS;
712 scm_permobjs = scm_cons (obj, scm_permobjs);
713 SCM_REALLOW_INTS;
714 return obj;
715 }
716
717
718 /* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
719 other references are dropped, until the object is unprotected by calling
720 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
721 i. e. it is possible to protect the same object several times, but it is
722 necessary to unprotect the object the same number of times to actually get
723 the object unprotected. It is an error to unprotect an object more often
724 than it has been protected before. The function scm_protect_object returns
725 OBJ.
726 */
727
728 /* Implementation note: For every object X, there is a counter which
729 scm_gc_protect_object(X) increments and scm_gc_unprotect_object(X) decrements.
730 */
731
732
733
734 SCM
735 scm_gc_protect_object (SCM obj)
736 {
737 SCM handle;
738
739 /* This critical section barrier will be replaced by a mutex. */
740 SCM_REDEFER_INTS;
741
742 handle = scm_hashq_create_handle_x (scm_protects, obj, SCM_MAKINUM (0));
743 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
744
745 protected_obj_count ++;
746
747 SCM_REALLOW_INTS;
748
749 return obj;
750 }
751
752
753 /* Remove any protection for OBJ established by a prior call to
754 scm_protect_object. This function returns OBJ.
755
756 See scm_protect_object for more information. */
757 SCM
758 scm_gc_unprotect_object (SCM obj)
759 {
760 SCM handle;
761
762 /* This critical section barrier will be replaced by a mutex. */
763 SCM_REDEFER_INTS;
764
765 handle = scm_hashq_get_handle (scm_protects, obj);
766
767 if (SCM_FALSEP (handle))
768 {
769 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
770 abort ();
771 }
772 else
773 {
774 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
775 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
776 scm_hashq_remove_x (scm_protects, obj);
777 else
778 SCM_SETCDR (handle, count);
779 }
780 protected_obj_count --;
781
782 SCM_REALLOW_INTS;
783
784 return obj;
785 }
786
787 void
788 scm_gc_register_root (SCM *p)
789 {
790 SCM handle;
791 SCM key = scm_long2num ((long) p);
792
793 /* This critical section barrier will be replaced by a mutex. */
794 SCM_REDEFER_INTS;
795
796 handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key, SCM_MAKINUM (0));
797 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), SCM_MAKINUM (1)));
798
799 SCM_REALLOW_INTS;
800 }
801
802 void
803 scm_gc_unregister_root (SCM *p)
804 {
805 SCM handle;
806 SCM key = scm_long2num ((long) p);
807
808 /* This critical section barrier will be replaced by a mutex. */
809 SCM_REDEFER_INTS;
810
811 handle = scm_hashv_get_handle (scm_gc_registered_roots, key);
812
813 if (SCM_FALSEP (handle))
814 {
815 fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n");
816 abort ();
817 }
818 else
819 {
820 SCM count = scm_difference (SCM_CDR (handle), SCM_MAKINUM (1));
821 if (SCM_EQ_P (count, SCM_MAKINUM (0)))
822 scm_hashv_remove_x (scm_gc_registered_roots, key);
823 else
824 SCM_SETCDR (handle, count);
825 }
826
827 SCM_REALLOW_INTS;
828 }
829
830 void
831 scm_gc_register_roots (SCM *b, unsigned long n)
832 {
833 SCM *p = b;
834 for (; p < b + n; ++p)
835 scm_gc_register_root (p);
836 }
837
838 void
839 scm_gc_unregister_roots (SCM *b, unsigned long n)
840 {
841 SCM *p = b;
842 for (; p < b + n; ++p)
843 scm_gc_unregister_root (p);
844 }
845
846 int scm_i_terminating;
847
848 /* called on process termination. */
849 #ifdef HAVE_ATEXIT
850 static void
851 cleanup (void)
852 #else
853 #ifdef HAVE_ON_EXIT
854 extern int on_exit (void (*procp) (), int arg);
855
856 static void
857 cleanup (int status, void *arg)
858 #else
859 #error Dont know how to setup a cleanup handler on your system.
860 #endif
861 #endif
862 {
863 scm_i_terminating = 1;
864 scm_flush_all_ports ();
865 }
866
867 \f
868
869
870 /*
871 MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC.
872 */
873
874 /* Get an integer from an environment variable. */
875 int
876 scm_getenv_int (const char *var, int def)
877 {
878 char *end = 0;
879 char *val = getenv (var);
880 long res = def;
881 if (!val)
882 return def;
883 res = strtol (val, &end, 10);
884 if (end == val)
885 return def;
886 return res;
887 }
888
889 void
890 scm_storage_prehistory ()
891 {
892 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
893 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
894 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
895 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
896 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
897 }
898
899 int
900 scm_init_storage ()
901 {
902 size_t j;
903
904 /* Fixme: Should use mutexattr from the low-level API. */
905 scm_rec_mutex_init (&scm_i_sweep_mutex, &scm_i_plugin_rec_mutex);
906
907 j = SCM_NUM_PROTECTS;
908 while (j)
909 scm_sys_protects[--j] = SCM_BOOL_F;
910 scm_block_gc = 1;
911
912 scm_gc_init_freelist();
913 scm_gc_init_malloc ();
914
915 j = SCM_HEAP_SEG_SIZE;
916
917
918 /* Initialise the list of ports. */
919 scm_i_port_table = (scm_t_port **)
920 malloc (sizeof (scm_t_port *) * scm_i_port_table_room);
921 if (!scm_i_port_table)
922 return 1;
923
924 #ifdef HAVE_ATEXIT
925 atexit (cleanup);
926 #else
927 #ifdef HAVE_ON_EXIT
928 on_exit (cleanup, 0);
929 #endif
930 #endif
931
932 scm_stand_in_procs = SCM_EOL;
933 scm_permobjs = SCM_EOL;
934 scm_protects = scm_c_make_hash_table (31);
935 scm_gc_registered_roots = scm_c_make_hash_table (31);
936
937 return 0;
938 }
939
940 \f
941
942 SCM scm_after_gc_hook;
943
944 static SCM gc_async;
945
946 /* The function gc_async_thunk causes the execution of the after-gc-hook. It
947 * is run after the gc, as soon as the asynchronous events are handled by the
948 * evaluator.
949 */
950 static SCM
951 gc_async_thunk (void)
952 {
953 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
954 return SCM_UNSPECIFIED;
955 }
956
957
958 /* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
959 * the garbage collection. The only purpose of this function is to mark the
960 * gc_async (which will eventually lead to the execution of the
961 * gc_async_thunk).
962 */
963 static void *
964 mark_gc_async (void * hook_data SCM_UNUSED,
965 void *func_data SCM_UNUSED,
966 void *data SCM_UNUSED)
967 {
968 /* If cell access debugging is enabled, the user may choose to perform
969 * additional garbage collections after an arbitrary number of cell
970 * accesses. We don't want the scheme level after-gc-hook to be performed
971 * for each of these garbage collections for the following reason: The
972 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
973 * after-gc-hook was performed with every gc, and if the gc was performed
974 * after a very small number of cell accesses, then the number of cell
975 * accesses during the execution of the after-gc-hook will suffice to cause
976 * the execution of the next gc. Then, guile would keep executing the
977 * after-gc-hook over and over again, and would never come to do other
978 * things.
979 *
980 * To overcome this problem, if cell access debugging with additional
981 * garbage collections is enabled, the after-gc-hook is never run by the
982 * garbage collecter. When running guile with cell access debugging and the
983 * execution of the after-gc-hook is desired, then it is necessary to run
984 * the hook explicitly from the user code. This has the effect, that from
985 * the scheme level point of view it seems that garbage collection is
986 * performed with a much lower frequency than it actually is. Obviously,
987 * this will not work for code that depends on a fixed one to one
988 * relationship between the execution counts of the C level garbage
989 * collection hooks and the execution count of the scheme level
990 * after-gc-hook.
991 */
992 #if (SCM_DEBUG_CELL_ACCESSES == 1)
993 if (scm_debug_cells_gc_interval == 0)
994 scm_system_async_mark (gc_async);
995 #else
996 scm_system_async_mark (gc_async);
997 #endif
998
999 return NULL;
1000 }
1001
1002 void
1003 scm_init_gc ()
1004 {
1005 scm_gc_init_mark ();
1006
1007 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
1008 scm_c_define ("after-gc-hook", scm_after_gc_hook);
1009
1010 gc_async = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0,
1011 gc_async_thunk);
1012
1013 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
1014
1015 #include "libguile/gc.x"
1016 }
1017
1018
1019 void
1020 scm_gc_sweep (void)
1021 #define FUNC_NAME "scm_gc_sweep"
1022 {
1023 scm_i_deprecated_memory_return = 0;
1024
1025 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist);
1026 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist2);
1027
1028 /*
1029 NOTHING HERE: LAZY SWEEPING !
1030 */
1031 scm_i_reset_segments ();
1032
1033 /* When we move to POSIX threads private freelists should probably
1034 be GC-protected instead. */
1035 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
1036 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
1037
1038 /* Invalidate the freelists of other threads. */
1039 scm_i_thread_invalidate_freelists ();
1040 }
1041
1042 #undef FUNC_NAME
1043
1044
1045
1046 /*
1047 Local Variables:
1048 c-file-style: "gnu"
1049 End:
1050 */