* HACKING: update to current practice
[bpt/guile.git] / libguile / gc.c
CommitLineData
bfb64eb4 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008 Free Software Foundation, Inc.
a00c95d9 2 *
73be1d9e
MV
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.
a00c95d9 7 *
73be1d9e 8 * This library is distributed in the hope that it will be useful,
0f2d19dd 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
a00c95d9 12 *
73be1d9e
MV
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
92205699 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 16 */
1bbd0b84 17
37ddcaf6
MD
18/* #define DEBUGINFO */
19
aa54a9b0
RB
20#if HAVE_CONFIG_H
21# include <config.h>
22#endif
56495472 23
0f2d19dd 24#include <stdio.h>
e6e2e95a 25#include <errno.h>
783e7774 26#include <string.h>
c8a1bdc4 27#include <assert.h>
e6e2e95a 28
a0599745 29#include "libguile/_scm.h"
0a7a7445 30#include "libguile/eval.h"
a0599745
MD
31#include "libguile/stime.h"
32#include "libguile/stackchk.h"
33#include "libguile/struct.h"
a0599745
MD
34#include "libguile/smob.h"
35#include "libguile/unif.h"
36#include "libguile/async.h"
37#include "libguile/ports.h"
38#include "libguile/root.h"
39#include "libguile/strings.h"
40#include "libguile/vectors.h"
801cb5e7 41#include "libguile/weaks.h"
686765af 42#include "libguile/hashtab.h"
ecf470a2 43#include "libguile/tags.h"
a0599745 44
c8a1bdc4 45#include "libguile/private-gc.h"
a0599745 46#include "libguile/validate.h"
1be6b49c 47#include "libguile/deprecation.h"
a0599745 48#include "libguile/gc.h"
9de87eea 49#include "libguile/dynwind.h"
fce59c93 50
bc9d9bb2 51#ifdef GUILE_DEBUG_MALLOC
a0599745 52#include "libguile/debug-malloc.h"
bc9d9bb2
MD
53#endif
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
fb50ef08
MD
63/* Lock this mutex before doing lazy sweeping.
64 */
b17e0ac3 65scm_i_pthread_mutex_t scm_i_sweep_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
fb50ef08 66
eae33935 67/* Set this to != 0 if every cell that is accessed shall be checked:
61045190 68 */
eab1b259
HWN
69int scm_debug_cell_accesses_p = 0;
70int scm_expensive_debug_cell_accesses_p = 0;
406c7d90 71
e81d98ec
DH
72/* Set this to 0 if no additional gc's shall be performed, otherwise set it to
73 * the number of cell accesses after which a gc shall be called.
74 */
eab1b259 75int scm_debug_cells_gc_interval = 0;
e81d98ec 76
eab1b259
HWN
77/*
78 Global variable, so you can switch it off at runtime by setting
79 scm_i_cell_validation_already_running.
406c7d90 80 */
eab1b259
HWN
81int scm_i_cell_validation_already_running ;
82
83#if (SCM_DEBUG_CELL_ACCESSES == 1)
84
85
86/*
87
88 Assert that the given object is a valid reference to a valid cell. This
89 test involves to determine whether the object is a cell pointer, whether
90 this pointer actually points into a heap segment and whether the cell
91 pointed to is not a free cell. Further, additional garbage collections may
92 get executed after a user defined number of cell accesses. This helps to
93 find places in the C code where references are dropped for extremely short
94 periods.
95
96*/
406c7d90 97void
eab1b259 98scm_i_expensive_validation_check (SCM cell)
406c7d90 99{
eab1b259
HWN
100 if (!scm_in_heap_p (cell))
101 {
102 fprintf (stderr, "scm_assert_cell_valid: this object does not live in the heap: %lux\n",
103 (unsigned long) SCM_UNPACK (cell));
104 abort ();
105 }
106
107 /* If desired, perform additional garbage collections after a user
108 * defined number of cell accesses.
109 */
110 if (scm_debug_cells_gc_interval)
111 {
112 static unsigned int counter = 0;
61045190 113
eab1b259
HWN
114 if (counter != 0)
115 {
116 --counter;
117 }
118 else
119 {
120 counter = scm_debug_cells_gc_interval;
b17e0ac3 121 scm_gc ();
eab1b259
HWN
122 }
123 }
124}
125
126void
127scm_assert_cell_valid (SCM cell)
128{
129 if (!scm_i_cell_validation_already_running && scm_debug_cell_accesses_p)
406c7d90 130 {
eab1b259 131 scm_i_cell_validation_already_running = 1; /* set to avoid recursion */
406c7d90 132
c8a1bdc4 133 /*
eab1b259
HWN
134 During GC, no user-code should be run, and the guile core
135 should use non-protected accessors.
136 */
c8a1bdc4 137 if (scm_gc_running_p)
eab1b259 138 return;
c8a1bdc4
HWN
139
140 /*
eab1b259
HWN
141 Only scm_in_heap_p and rescanning the heap is wildly
142 expensive.
143 */
144 if (scm_expensive_debug_cell_accesses_p)
145 scm_i_expensive_validation_check (cell);
7ddb9baf 146#if (SCM_DEBUG_MARKING_API == 0)
c8a1bdc4 147 if (!SCM_GC_MARK_P (cell))
406c7d90 148 {
c8a1bdc4
HWN
149 fprintf (stderr,
150 "scm_assert_cell_valid: this object is unmarked. \n"
151 "It has been garbage-collected in the last GC run: "
152 "%lux\n",
1be6b49c 153 (unsigned long) SCM_UNPACK (cell));
406c7d90
DH
154 abort ();
155 }
7ddb9baf
HWN
156#endif /* SCM_DEBUG_MARKING_API */
157
eab1b259 158 scm_i_cell_validation_already_running = 0; /* re-enable */
406c7d90
DH
159 }
160}
161
162
eab1b259 163
406c7d90
DH
164SCM_DEFINE (scm_set_debug_cell_accesses_x, "set-debug-cell-accesses!", 1, 0, 0,
165 (SCM flag),
1e6808ea 166 "If @var{flag} is @code{#f}, cell access checking is disabled.\n"
eab1b259 167 "If @var{flag} is @code{#t}, cheap cell access checking is enabled,\n"
e81d98ec 168 "but no additional calls to garbage collection are issued.\n"
eab1b259 169 "If @var{flag} is a number, strict cell access checking is enabled,\n"
e81d98ec
DH
170 "with an additional garbage collection after the given\n"
171 "number of cell accesses.\n"
1e6808ea
MG
172 "This procedure only exists when the compile-time flag\n"
173 "@code{SCM_DEBUG_CELL_ACCESSES} was set to 1.")
406c7d90
DH
174#define FUNC_NAME s_scm_set_debug_cell_accesses_x
175{
7888309b 176 if (scm_is_false (flag))
eab1b259
HWN
177 {
178 scm_debug_cell_accesses_p = 0;
179 }
bc36d050 180 else if (scm_is_eq (flag, SCM_BOOL_T))
eab1b259
HWN
181 {
182 scm_debug_cells_gc_interval = 0;
183 scm_debug_cell_accesses_p = 1;
184 scm_expensive_debug_cell_accesses_p = 0;
185 }
e11e83f3 186 else
eab1b259 187 {
e11e83f3 188 scm_debug_cells_gc_interval = scm_to_signed_integer (flag, 0, INT_MAX);
eab1b259
HWN
189 scm_debug_cell_accesses_p = 1;
190 scm_expensive_debug_cell_accesses_p = 1;
191 }
406c7d90
DH
192 return SCM_UNSPECIFIED;
193}
194#undef FUNC_NAME
0f2d19dd 195
ecf470a2 196
c8a1bdc4 197#endif /* SCM_DEBUG_CELL_ACCESSES == 1 */
0f2d19dd
JB
198
199\f
945fec60 200
0f2d19dd
JB
201
202/* scm_mtrigger
539b08a4 203 * is the number of bytes of malloc allocation needed to trigger gc.
0f2d19dd 204 */
c014a02e 205unsigned long scm_mtrigger;
0f2d19dd 206
0f2d19dd
JB
207/* GC Statistics Keeping
208 */
f2893a25 209unsigned long scm_cells_allocated = 0;
93632e3c 210unsigned long scm_last_cells_allocated = 0;
c014a02e 211unsigned long scm_mallocated = 0;
40945e5e 212long int scm_i_find_heap_calls = 0;
d9f71a07 213/* Global GC sweep statistics since the last full GC. */
82ae1b8e 214scm_t_sweep_statistics scm_i_gc_sweep_stats = { 0, 0 };
d9f71a07
LC
215
216/* Total count of cells marked/swept. */
217static double scm_gc_cells_marked_acc = 0.;
5bfb683e 218static double scm_gc_cells_marked_conservatively_acc = 0.;
d9f71a07 219static double scm_gc_cells_swept_acc = 0.;
93632e3c 220static double scm_gc_cells_allocated_acc = 0.;
d9f71a07
LC
221
222static unsigned long scm_gc_time_taken = 0;
d9f71a07
LC
223static unsigned long scm_gc_mark_time_taken = 0;
224
225static unsigned long scm_gc_times = 0;
226
227static int scm_gc_cell_yield_percentage = 0;
228static unsigned long protected_obj_count = 0;
229
230/* The following are accessed from `gc-malloc.c' and `gc-card.c'. */
c2cbcc57 231int scm_gc_malloc_yield_percentage = 0;
d9f71a07 232unsigned long scm_gc_malloc_collected = 0;
c2cbcc57 233
0f2d19dd
JB
234
235SCM_SYMBOL (sym_cells_allocated, "cells-allocated");
236SCM_SYMBOL (sym_heap_size, "cell-heap-size");
237SCM_SYMBOL (sym_mallocated, "bytes-malloced");
238SCM_SYMBOL (sym_mtrigger, "gc-malloc-threshold");
239SCM_SYMBOL (sym_heap_segments, "cell-heap-segments");
240SCM_SYMBOL (sym_gc_time_taken, "gc-time-taken");
c9b0d4b0 241SCM_SYMBOL (sym_gc_mark_time_taken, "gc-mark-time-taken");
c9b0d4b0
ML
242SCM_SYMBOL (sym_times, "gc-times");
243SCM_SYMBOL (sym_cells_marked, "cells-marked");
40945e5e 244SCM_SYMBOL (sym_cells_marked_conservatively, "cells-marked-conservatively");
c9b0d4b0 245SCM_SYMBOL (sym_cells_swept, "cells-swept");
c2cbcc57
HWN
246SCM_SYMBOL (sym_malloc_yield, "malloc-yield");
247SCM_SYMBOL (sym_cell_yield, "cell-yield");
7eec4c37 248SCM_SYMBOL (sym_protected_objects, "protected-objects");
93632e3c 249SCM_SYMBOL (sym_total_cells_allocated, "total-cells-allocated");
cf2d30f6 250
d3dd80ab 251
cf2d30f6 252/* Number of calls to SCM_NEWCELL since startup. */
c8a1bdc4
HWN
253unsigned scm_newcell_count;
254unsigned scm_newcell2_count;
b37fe1c5 255
b37fe1c5 256
0f2d19dd
JB
257/* {Scheme Interface to GC}
258 */
1367aa5e
HWN
259static SCM
260tag_table_to_type_alist (void *closure, SCM key, SCM val, SCM acc)
261{
8fecbb19 262 if (scm_is_integer (key))
8a00ba71 263 {
3e2073bd 264 int c_tag = scm_to_int (key);
8fecbb19
HWN
265
266 char const * name = scm_i_tag_name (c_tag);
267 if (name != NULL)
268 {
269 key = scm_from_locale_string (name);
270 }
271 else
272 {
273 char s[100];
274 sprintf (s, "tag %d", c_tag);
275 key = scm_from_locale_string (s);
276 }
8a00ba71 277 }
8fecbb19 278
1367aa5e
HWN
279 return scm_cons (scm_cons (key, val), acc);
280}
281
282SCM_DEFINE (scm_gc_live_object_stats, "gc-live-object-stats", 0, 0, 0,
283 (),
284 "Return an alist of statistics of the current live objects. ")
285#define FUNC_NAME s_scm_gc_live_object_stats
286{
287 SCM tab = scm_make_hash_table (scm_from_int (57));
b01532af
NJ
288 SCM alist;
289
1367aa5e
HWN
290 scm_i_all_segments_statistics (tab);
291
b01532af 292 alist
1367aa5e
HWN
293 = scm_internal_hash_fold (&tag_table_to_type_alist, NULL, SCM_EOL, tab);
294
295 return alist;
296}
297#undef FUNC_NAME
298
c2cbcc57 299extern int scm_gc_malloc_yield_percentage;
a00c95d9 300SCM_DEFINE (scm_gc_stats, "gc-stats", 0, 0, 0,
1bbd0b84 301 (),
1e6808ea 302 "Return an association list of statistics about Guile's current\n"
c8a1bdc4 303 "use of storage.\n")
1bbd0b84 304#define FUNC_NAME s_scm_gc_stats
0f2d19dd 305{
c8a1bdc4
HWN
306 long i = 0;
307 SCM heap_segs = SCM_EOL ;
c014a02e
ML
308 unsigned long int local_scm_mtrigger;
309 unsigned long int local_scm_mallocated;
310 unsigned long int local_scm_heap_size;
c2cbcc57
HWN
311 int local_scm_gc_cell_yield_percentage;
312 int local_scm_gc_malloc_yield_percentage;
f2893a25 313 unsigned long int local_scm_cells_allocated;
c014a02e
ML
314 unsigned long int local_scm_gc_time_taken;
315 unsigned long int local_scm_gc_times;
316 unsigned long int local_scm_gc_mark_time_taken;
7eec4c37 317 unsigned long int local_protected_obj_count;
c9b0d4b0
ML
318 double local_scm_gc_cells_swept;
319 double local_scm_gc_cells_marked;
5bfb683e 320 double local_scm_gc_cells_marked_conservatively;
93632e3c 321 double local_scm_total_cells_allocated;
0f2d19dd 322 SCM answer;
c8a1bdc4 323 unsigned long *bounds = 0;
82ae1b8e 324 int table_size = 0;
9de87eea 325 SCM_CRITICAL_SECTION_START;
939794ce 326
82ae1b8e 327 bounds = scm_i_segment_table_info (&table_size);
4c9419ac 328
c8a1bdc4
HWN
329 /* Below, we cons to produce the resulting list. We want a snapshot of
330 * the heap situation before consing.
331 */
332 local_scm_mtrigger = scm_mtrigger;
333 local_scm_mallocated = scm_mallocated;
82ae1b8e
HWN
334 local_scm_heap_size =
335 (scm_i_master_freelist.heap_total_cells + scm_i_master_freelist2.heap_total_cells);
539b08a4 336
82ae1b8e
HWN
337 local_scm_cells_allocated =
338 scm_cells_allocated + scm_i_gc_sweep_stats.collected;
c8a1bdc4
HWN
339
340 local_scm_gc_time_taken = scm_gc_time_taken;
341 local_scm_gc_mark_time_taken = scm_gc_mark_time_taken;
342 local_scm_gc_times = scm_gc_times;
c2cbcc57 343 local_scm_gc_malloc_yield_percentage = scm_gc_malloc_yield_percentage;
82ae1b8e 344 local_scm_gc_cell_yield_percentage = scm_gc_cell_yield_percentage;
7eec4c37 345 local_protected_obj_count = protected_obj_count;
c2cbcc57
HWN
346 local_scm_gc_cells_swept =
347 (double) scm_gc_cells_swept_acc
d9f71a07 348 + (double) scm_i_gc_sweep_stats.swept;
c8a1bdc4 349 local_scm_gc_cells_marked = scm_gc_cells_marked_acc
5bfb683e
HWN
350 + (double) scm_i_gc_sweep_stats.swept
351 - (double) scm_i_gc_sweep_stats.collected;
352 local_scm_gc_cells_marked_conservatively
353 = scm_gc_cells_marked_conservatively_acc;
0f2d19dd 354
93632e3c 355 local_scm_total_cells_allocated = scm_gc_cells_allocated_acc
82ae1b8e 356 + (double) scm_i_gc_sweep_stats.collected;
93632e3c 357
c8a1bdc4
HWN
358 for (i = table_size; i--;)
359 {
b9bd8526
MV
360 heap_segs = scm_cons (scm_cons (scm_from_ulong (bounds[2*i]),
361 scm_from_ulong (bounds[2*i+1])),
c8a1bdc4
HWN
362 heap_segs);
363 }
82ae1b8e 364
33b320ae
NJ
365 /* njrev: can any of these scm_cons's or scm_list_n signal a memory
366 error? If so we need a frame here. */
b9bd8526
MV
367 answer =
368 scm_list_n (scm_cons (sym_gc_time_taken,
369 scm_from_ulong (local_scm_gc_time_taken)),
370 scm_cons (sym_cells_allocated,
371 scm_from_ulong (local_scm_cells_allocated)),
93632e3c
HWN
372 scm_cons (sym_total_cells_allocated,
373 scm_from_double (local_scm_total_cells_allocated)),
b9bd8526
MV
374 scm_cons (sym_heap_size,
375 scm_from_ulong (local_scm_heap_size)),
40945e5e 376 scm_cons (sym_cells_marked_conservatively,
5bfb683e 377 scm_from_ulong (local_scm_gc_cells_marked_conservatively)),
b9bd8526
MV
378 scm_cons (sym_mallocated,
379 scm_from_ulong (local_scm_mallocated)),
380 scm_cons (sym_mtrigger,
381 scm_from_ulong (local_scm_mtrigger)),
382 scm_cons (sym_times,
383 scm_from_ulong (local_scm_gc_times)),
384 scm_cons (sym_gc_mark_time_taken,
385 scm_from_ulong (local_scm_gc_mark_time_taken)),
386 scm_cons (sym_cells_marked,
387 scm_from_double (local_scm_gc_cells_marked)),
388 scm_cons (sym_cells_swept,
389 scm_from_double (local_scm_gc_cells_swept)),
390 scm_cons (sym_malloc_yield,
1f584400 391 scm_from_long (local_scm_gc_malloc_yield_percentage)),
b9bd8526
MV
392 scm_cons (sym_cell_yield,
393 scm_from_long (local_scm_gc_cell_yield_percentage)),
394 scm_cons (sym_protected_objects,
395 scm_from_ulong (local_protected_obj_count)),
396 scm_cons (sym_heap_segments, heap_segs),
397 SCM_UNDEFINED);
9de87eea 398 SCM_CRITICAL_SECTION_END;
c8a1bdc4
HWN
399
400 free (bounds);
401 return answer;
0f2d19dd 402}
c8a1bdc4 403#undef FUNC_NAME
0f2d19dd 404
82ae1b8e
HWN
405/*
406 Update nice-to-know-statistics.
407 */
408static void
409gc_end_stats ()
d9f71a07
LC
410{
411 /* CELLS SWEPT is another word for the number of cells that were examined
412 during GC. YIELD is the number that we cleaned out. MARKED is the number
413 that weren't cleaned. */
82ae1b8e
HWN
414 scm_gc_cell_yield_percentage = (scm_i_gc_sweep_stats.collected * 100) /
415 (scm_i_master_freelist.heap_total_cells + scm_i_master_freelist2.heap_total_cells);
d9f71a07 416
93632e3c 417 scm_gc_cells_allocated_acc +=
82ae1b8e
HWN
418 (double) scm_i_gc_sweep_stats.collected;
419 scm_gc_cells_marked_acc += (double) scm_cells_allocated;
5bfb683e 420 scm_gc_cells_marked_conservatively_acc += (double) scm_i_find_heap_calls;
d9f71a07 421 scm_gc_cells_swept_acc += (double) scm_i_gc_sweep_stats.swept;
4c7016dc 422
c8a1bdc4 423 ++scm_gc_times;
0f2d19dd 424}
acf4331f 425
c8a1bdc4
HWN
426SCM_DEFINE (scm_object_address, "object-address", 1, 0, 0,
427 (SCM obj),
428 "Return an integer that for the lifetime of @var{obj} is uniquely\n"
429 "returned by this function for @var{obj}")
430#define FUNC_NAME s_scm_object_address
c68296f8 431{
b9bd8526 432 return scm_from_ulong (SCM_UNPACK (obj));
c68296f8 433}
c8a1bdc4 434#undef FUNC_NAME
c68296f8 435
1be6b49c 436
c8a1bdc4
HWN
437SCM_DEFINE (scm_gc, "gc", 0, 0, 0,
438 (),
439 "Scans all of SCM objects and reclaims for further use those that are\n"
440 "no longer accessible.")
441#define FUNC_NAME s_scm_gc
442{
b17e0ac3
MV
443 scm_i_scm_pthread_mutex_lock (&scm_i_sweep_mutex);
444 scm_gc_running_p = 1;
445 scm_i_gc ("call");
33b320ae
NJ
446 /* njrev: It looks as though other places, e.g. scm_realloc,
447 can call scm_i_gc without acquiring the sweep mutex. Does this
448 matter? Also scm_i_gc (or its descendants) touch the
449 scm_sys_protects, which are protected in some cases
450 (e.g. scm_permobjs above in scm_gc_stats) by a critical section,
451 not by the sweep mutex. Shouldn't all the GC-relevant objects be
452 protected in the same way? */
b17e0ac3
MV
453 scm_gc_running_p = 0;
454 scm_i_pthread_mutex_unlock (&scm_i_sweep_mutex);
455 scm_c_hook_run (&scm_after_gc_c_hook, 0);
c8a1bdc4 456 return SCM_UNSPECIFIED;
9d47a1e6 457}
c8a1bdc4 458#undef FUNC_NAME
9d47a1e6 459
c68296f8
MV
460
461\f
0f2d19dd 462
b17e0ac3
MV
463/* The master is global and common while the freelist will be
464 * individual for each thread.
0f2d19dd
JB
465 */
466
c8a1bdc4
HWN
467SCM
468scm_gc_for_newcell (scm_t_cell_type_statistics *freelist, SCM *free_cells)
0f2d19dd 469{
c8a1bdc4 470 SCM cell;
b17e0ac3 471 int did_gc = 0;
4c7016dc 472
9de87eea 473 scm_i_scm_pthread_mutex_lock (&scm_i_sweep_mutex);
b17e0ac3 474 scm_gc_running_p = 1;
82ae1b8e
HWN
475
476 *free_cells = scm_i_sweep_for_freelist (freelist);
477 if (*free_cells == SCM_EOL)
c8a1bdc4 478 {
82ae1b8e
HWN
479 float delta = scm_i_gc_heap_size_delta (freelist);
480 if (delta > 0.0)
481 {
482 size_t bytes = ((unsigned long) delta) * sizeof (scm_t_cell);
483 freelist->heap_segment_idx =
484 scm_i_get_new_heap_segment (freelist, bytes, abort_on_error);
d9f71a07 485
82ae1b8e
HWN
486 *free_cells = scm_i_sweep_for_freelist (freelist);
487 }
c8a1bdc4 488 }
82ae1b8e 489
b17e0ac3 490 if (*free_cells == SCM_EOL)
c8a1bdc4 491 {
c8a1bdc4
HWN
492 /*
493 out of fresh cells. Try to get some new ones.
494 */
82ae1b8e
HWN
495 char reason[] = "0-cells";
496 reason[0] += freelist->span;
497
b17e0ac3 498 did_gc = 1;
82ae1b8e 499 scm_i_gc (reason);
a00c95d9 500
82ae1b8e 501 *free_cells = scm_i_sweep_for_freelist (freelist);
c8a1bdc4
HWN
502 }
503
504 if (*free_cells == SCM_EOL)
505 {
506 /*
507 failed getting new cells. Get new juice or die.
82ae1b8e
HWN
508 */
509 float delta = scm_i_gc_heap_size_delta (freelist);
510 assert (delta > 0.0);
511 size_t bytes = ((unsigned long) delta) * sizeof (scm_t_cell);
d9f71a07 512 freelist->heap_segment_idx =
82ae1b8e 513 scm_i_get_new_heap_segment (freelist, bytes, abort_on_error);
d9f71a07 514
82ae1b8e 515 *free_cells = scm_i_sweep_for_freelist (freelist);
c8a1bdc4
HWN
516 }
517
518 if (*free_cells == SCM_EOL)
519 abort ();
0f2d19dd 520
c8a1bdc4 521 cell = *free_cells;
0f2d19dd 522
c8a1bdc4 523 *free_cells = SCM_FREE_CELL_CDR (cell);
eab1b259 524
b17e0ac3 525 scm_gc_running_p = 0;
9de87eea 526 scm_i_pthread_mutex_unlock (&scm_i_sweep_mutex);
eab1b259 527
b17e0ac3
MV
528 if (did_gc)
529 scm_c_hook_run (&scm_after_gc_c_hook, 0);
530
c8a1bdc4
HWN
531 return cell;
532}
4a4c9785 533
4a4c9785 534
c8a1bdc4
HWN
535scm_t_c_hook scm_before_gc_c_hook;
536scm_t_c_hook scm_before_mark_c_hook;
537scm_t_c_hook scm_before_sweep_c_hook;
538scm_t_c_hook scm_after_sweep_c_hook;
539scm_t_c_hook scm_after_gc_c_hook;
4a4c9785 540
82ae1b8e 541static void
1f584400 542scm_check_deprecated_memory_return ()
82ae1b8e
HWN
543{
544 if (scm_mallocated < scm_i_deprecated_memory_return)
545 {
546 /* The byte count of allocated objects has underflowed. This is
547 probably because you forgot to report the sizes of objects you
548 have allocated, by calling scm_done_malloc or some such. When
549 the GC freed them, it subtracted their size from
550 scm_mallocated, which underflowed. */
551 fprintf (stderr,
552 "scm_gc_sweep: Byte count of allocated objects has underflowed.\n"
553 "This is probably because the GC hasn't been correctly informed\n"
554 "about object sizes\n");
555 abort ();
556 }
557 scm_mallocated -= scm_i_deprecated_memory_return;
558 scm_i_deprecated_memory_return = 0;
559}
560
b17e0ac3 561/* Must be called while holding scm_i_sweep_mutex.
b17e0ac3 562
82ae1b8e
HWN
563 This function is fairly long, but it touches various global
564 variables. To not obscure the side effects on global variables,
565 this function has not been split up.
566 */
c8a1bdc4 567void
b17e0ac3 568scm_i_gc (const char *what)
c8a1bdc4 569{
82ae1b8e
HWN
570 unsigned long t_before_gc = 0;
571
9de87eea 572 scm_i_thread_put_to_sleep ();
82ae1b8e 573
c8a1bdc4 574 scm_c_hook_run (&scm_before_gc_c_hook, 0);
a00c95d9 575
c8a1bdc4
HWN
576#ifdef DEBUGINFO
577 fprintf (stderr,"gc reason %s\n", what);
c8a1bdc4 578 fprintf (stderr,
d2e53ed6 579 scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist))
c8a1bdc4 580 ? "*"
d2e53ed6 581 : (scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m"));
c8a1bdc4 582#endif
4c48ba06 583
82ae1b8e
HWN
584 t_before_gc = scm_c_get_internal_run_time ();
585 scm_gc_malloc_collected = 0;
a00c95d9 586
1367aa5e 587 /*
1f584400 588 Set freelists to NULL so scm_cons () always triggers gc, causing
b17e0ac3 589 the assertion above to fail.
1367aa5e
HWN
590 */
591 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
592 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
593
c8a1bdc4
HWN
594 /*
595 Let's finish the sweep. The conservative GC might point into the
596 garbage, and marking that would create a mess.
597 */
82ae1b8e 598 scm_i_sweep_all_segments ("GC", &scm_i_gc_sweep_stats);
1f584400 599 scm_check_deprecated_memory_return ();
4c7016dc 600
289cd1a7 601#if (SCM_DEBUG_CELL_ACCESSES == 0 && SCM_SIZEOF_UNSIGNED_LONG ==4)
82ae1b8e 602 /* Sanity check our numbers. */
289cd1a7 603 /* TODO(hanwen): figure out why the stats are off on x64_64. */
5bfb683e
HWN
604 /* If this was not true, someone touched mark bits outside of the
605 mark phase. */
82ae1b8e
HWN
606 assert (scm_cells_allocated == scm_i_marked_count ());
607 assert (scm_i_gc_sweep_stats.swept
608 == (scm_i_master_freelist.heap_total_cells
609 + scm_i_master_freelist2.heap_total_cells));
610 assert (scm_i_gc_sweep_stats.collected + scm_cells_allocated
611 == scm_i_gc_sweep_stats.swept);
487b9dec
HWN
612#endif /* SCM_DEBUG_CELL_ACCESSES */
613
b17e0ac3 614 /* Mark */
b17e0ac3 615 scm_c_hook_run (&scm_before_mark_c_hook, 0);
82ae1b8e 616
c8a1bdc4 617 scm_mark_all ();
c2cbcc57 618 scm_gc_mark_time_taken += (scm_c_get_internal_run_time () - t_before_gc);
c8a1bdc4 619
82ae1b8e
HWN
620 scm_cells_allocated = scm_i_marked_count ();
621
b17e0ac3 622 /* Sweep
ffd72400 623
b17e0ac3
MV
624 TODO: the after_sweep hook should probably be moved to just before
625 the mark, since that's where the sweep is finished in lazy
626 sweeping.
c35738c1
MD
627
628 MDJ 030219 <djurfeldt@nada.kth.se>: No, probably not. The
629 original meaning implied at least two things: that it would be
630 called when
631
632 1. the freelist is re-initialized (no evaluation possible, though)
633
634 and
635
636 2. the heap is "fresh"
637 (it is well-defined what data is used and what is not)
638
639 Neither of these conditions would hold just before the mark phase.
640
641 Of course, the lazy sweeping has muddled the distinction between
642 scm_before_sweep_c_hook and scm_after_sweep_c_hook, but even if
643 there were no difference, it would still be useful to have two
644 distinct classes of hook functions since this can prevent some
645 bad interference when several modules adds gc hooks.
ffd72400 646 */
b17e0ac3 647 scm_c_hook_run (&scm_before_sweep_c_hook, 0);
82ae1b8e
HWN
648
649 /*
650 Nothing here: lazy sweeping.
651 */
652 scm_i_reset_segments ();
653
654 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
655 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
656
657 /* Invalidate the freelists of other threads. */
658 scm_i_thread_invalidate_freelists ();
82ae1b8e 659
c8a1bdc4 660 scm_c_hook_run (&scm_after_sweep_c_hook, 0);
b17e0ac3 661
82ae1b8e 662 gc_end_stats ();
c8a1bdc4 663
82ae1b8e
HWN
664 scm_i_gc_sweep_stats.collected = scm_i_gc_sweep_stats.swept = 0;
665 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist);
666 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist2);
667
668 /* Arguably, this statistic is fairly useless: marking will dominate
669 the time taken.
670 */
671 scm_gc_time_taken += (scm_c_get_internal_run_time () - t_before_gc);
676d9cc5 672
fb50ef08 673 scm_i_thread_wake_up ();
eab1b259
HWN
674 /*
675 For debugging purposes, you could do
1f584400 676 scm_i_sweep_all_segments ("debug"), but then the remains of the
eab1b259
HWN
677 cell aren't left to analyse.
678 */
679}
0f2d19dd 680
4c7016dc 681
0f2d19dd
JB
682\f
683/* {GC Protection Helper Functions}
684 */
685
686
5d2b97cd
DH
687/*
688 * If within a function you need to protect one or more scheme objects from
689 * garbage collection, pass them as parameters to one of the
690 * scm_remember_upto_here* functions below. These functions don't do
691 * anything, but since the compiler does not know that they are actually
692 * no-ops, it will generate code that calls these functions with the given
693 * parameters. Therefore, you can be sure that the compiler will keep those
694 * scheme values alive (on the stack or in a register) up to the point where
695 * scm_remember_upto_here* is called. In other words, place the call to
592996c9 696 * scm_remember_upto_here* _behind_ the last code in your function, that
5d2b97cd
DH
697 * depends on the scheme object to exist.
698 *
8c494e99
DH
699 * Example: We want to make sure that the string object str does not get
700 * garbage collected during the execution of 'some_function' in the code
701 * below, because otherwise the characters belonging to str would be freed and
5d2b97cd
DH
702 * 'some_function' might access freed memory. To make sure that the compiler
703 * keeps str alive on the stack or in a register such that it is visible to
704 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
705 * call to 'some_function'. Note that this would not be necessary if str was
706 * used anyway after the call to 'some_function'.
eb01cb64 707 * char *chars = scm_i_string_chars (str);
5d2b97cd
DH
708 * some_function (chars);
709 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
710 */
711
9e1569bd
KR
712/* Remove any macro versions of these while defining the functions.
713 Functions are always included in the library, for upward binary
714 compatibility and in case combinations of GCC and non-GCC are used. */
715#undef scm_remember_upto_here_1
716#undef scm_remember_upto_here_2
717
5d2b97cd 718void
e81d98ec 719scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
5d2b97cd
DH
720{
721 /* Empty. Protects a single object from garbage collection. */
722}
723
724void
e81d98ec 725scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
5d2b97cd
DH
726{
727 /* Empty. Protects two objects from garbage collection. */
728}
729
730void
e81d98ec 731scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
5d2b97cd
DH
732{
733 /* Empty. Protects any number of objects from garbage collection. */
734}
735
c209c88e 736/*
41b0806d
GB
737 These crazy functions prevent garbage collection
738 of arguments after the first argument by
739 ensuring they remain live throughout the
740 function because they are used in the last
741 line of the code block.
742 It'd be better to have a nice compiler hint to
743 aid the conservative stack-scanning GC. --03/09/00 gjb */
0f2d19dd
JB
744SCM
745scm_return_first (SCM elt, ...)
0f2d19dd
JB
746{
747 return elt;
748}
749
41b0806d
GB
750int
751scm_return_first_int (int i, ...)
752{
753 return i;
754}
755
0f2d19dd 756
0f2d19dd 757SCM
6e8d25a6 758scm_permanent_object (SCM obj)
0f2d19dd 759{
9de87eea
MV
760 SCM cell = scm_cons (obj, SCM_EOL);
761 SCM_CRITICAL_SECTION_START;
762 SCM_SETCDR (cell, scm_permobjs);
763 scm_permobjs = cell;
764 SCM_CRITICAL_SECTION_END;
0f2d19dd
JB
765 return obj;
766}
767
768
7bd4fbe2
MD
769/* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
770 other references are dropped, until the object is unprotected by calling
6b1b030e 771 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
7bd4fbe2
MD
772 i. e. it is possible to protect the same object several times, but it is
773 necessary to unprotect the object the same number of times to actually get
774 the object unprotected. It is an error to unprotect an object more often
775 than it has been protected before. The function scm_protect_object returns
776 OBJ.
777*/
778
779/* Implementation note: For every object X, there is a counter which
1f584400 780 scm_gc_protect_object (X) increments and scm_gc_unprotect_object (X) decrements.
7bd4fbe2 781*/
686765af 782
7eec4c37
HWN
783
784
ef290276 785SCM
6b1b030e 786scm_gc_protect_object (SCM obj)
ef290276 787{
686765af 788 SCM handle;
9d47a1e6 789
686765af 790 /* This critical section barrier will be replaced by a mutex. */
33b320ae
NJ
791 /* njrev: Indeed; if my comment above is correct, there is the same
792 critsec/mutex inconsistency here. */
9de87eea 793 SCM_CRITICAL_SECTION_START;
9d47a1e6 794
e11e83f3
MV
795 handle = scm_hashq_create_handle_x (scm_protects, obj, scm_from_int (0));
796 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
9d47a1e6 797
7eec4c37
HWN
798 protected_obj_count ++;
799
9de87eea 800 SCM_CRITICAL_SECTION_END;
9d47a1e6 801
ef290276
JB
802 return obj;
803}
804
805
806/* Remove any protection for OBJ established by a prior call to
dab7f566 807 scm_protect_object. This function returns OBJ.
ef290276 808
dab7f566 809 See scm_protect_object for more information. */
ef290276 810SCM
6b1b030e 811scm_gc_unprotect_object (SCM obj)
ef290276 812{
686765af 813 SCM handle;
9d47a1e6 814
686765af 815 /* This critical section barrier will be replaced by a mutex. */
33b320ae 816 /* njrev: and again. */
9de87eea 817 SCM_CRITICAL_SECTION_START;
9d47a1e6 818
0ff7e3ff
HWN
819 if (scm_gc_running_p)
820 {
821 fprintf (stderr, "scm_unprotect_object called during GC.\n");
822 abort ();
823 }
b17e0ac3 824
686765af 825 handle = scm_hashq_get_handle (scm_protects, obj);
9d47a1e6 826
7888309b 827 if (scm_is_false (handle))
686765af 828 {
0f0f0899
MD
829 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
830 abort ();
686765af 831 }
6a199940
DH
832 else
833 {
e11e83f3 834 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
bc36d050 835 if (scm_is_eq (count, scm_from_int (0)))
6a199940
DH
836 scm_hashq_remove_x (scm_protects, obj);
837 else
1be6b49c 838 SCM_SETCDR (handle, count);
6a199940 839 }
7eec4c37 840 protected_obj_count --;
686765af 841
9de87eea 842 SCM_CRITICAL_SECTION_END;
ef290276
JB
843
844 return obj;
845}
846
6b1b030e
ML
847void
848scm_gc_register_root (SCM *p)
849{
850 SCM handle;
b9bd8526 851 SCM key = scm_from_ulong ((unsigned long) p);
eae33935 852
6b1b030e 853 /* This critical section barrier will be replaced by a mutex. */
33b320ae 854 /* njrev: and again. */
9de87eea 855 SCM_CRITICAL_SECTION_START;
6b1b030e 856
e11e83f3
MV
857 handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key,
858 scm_from_int (0));
33b320ae 859 /* njrev: note also that the above can probably signal an error */
e11e83f3 860 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
6b1b030e 861
9de87eea 862 SCM_CRITICAL_SECTION_END;
6b1b030e
ML
863}
864
865void
866scm_gc_unregister_root (SCM *p)
867{
868 SCM handle;
b9bd8526 869 SCM key = scm_from_ulong ((unsigned long) p);
6b1b030e
ML
870
871 /* This critical section barrier will be replaced by a mutex. */
33b320ae 872 /* njrev: and again. */
9de87eea 873 SCM_CRITICAL_SECTION_START;
6b1b030e
ML
874
875 handle = scm_hashv_get_handle (scm_gc_registered_roots, key);
876
7888309b 877 if (scm_is_false (handle))
6b1b030e
ML
878 {
879 fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n");
880 abort ();
881 }
882 else
883 {
e11e83f3 884 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
bc36d050 885 if (scm_is_eq (count, scm_from_int (0)))
6b1b030e
ML
886 scm_hashv_remove_x (scm_gc_registered_roots, key);
887 else
888 SCM_SETCDR (handle, count);
889 }
890
9de87eea 891 SCM_CRITICAL_SECTION_END;
6b1b030e
ML
892}
893
894void
895scm_gc_register_roots (SCM *b, unsigned long n)
896{
897 SCM *p = b;
898 for (; p < b + n; ++p)
899 scm_gc_register_root (p);
900}
901
902void
903scm_gc_unregister_roots (SCM *b, unsigned long n)
904{
905 SCM *p = b;
906 for (; p < b + n; ++p)
907 scm_gc_unregister_root (p);
908}
909
04a98cff 910int scm_i_terminating;
c45acc34 911
0f2d19dd 912\f
a00c95d9 913
4c48ba06 914
c8a1bdc4
HWN
915/*
916 MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC.
917 */
85db4a2c
DH
918
919/* Get an integer from an environment variable. */
c8a1bdc4
HWN
920int
921scm_getenv_int (const char *var, int def)
85db4a2c 922{
c8a1bdc4
HWN
923 char *end = 0;
924 char *val = getenv (var);
925 long res = def;
85db4a2c
DH
926 if (!val)
927 return def;
928 res = strtol (val, &end, 10);
929 if (end == val)
930 return def;
931 return res;
932}
933
c35738c1
MD
934void
935scm_storage_prehistory ()
936{
937 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
938 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
939 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
940 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
941 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
942}
85db4a2c 943
9de87eea 944scm_i_pthread_mutex_t scm_i_gc_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
eb01cb64 945
4a4c9785 946int
85db4a2c 947scm_init_storage ()
0f2d19dd 948{
1be6b49c 949 size_t j;
0f2d19dd
JB
950
951 j = SCM_NUM_PROTECTS;
952 while (j)
953 scm_sys_protects[--j] = SCM_BOOL_F;
4a4c9785 954
1f584400 955 scm_gc_init_freelist ();
c8a1bdc4 956 scm_gc_init_malloc ();
0f2d19dd 957
9de87eea
MV
958#if 0
959 /* We can't have a cleanup handler since we have no thread to run it
960 in. */
961
a18bcd0e 962#ifdef HAVE_ATEXIT
c45acc34 963 atexit (cleanup);
e52ceaac
MD
964#else
965#ifdef HAVE_ON_EXIT
966 on_exit (cleanup, 0);
967#endif
9de87eea
MV
968#endif
969
a18bcd0e 970#endif
0f2d19dd 971
e4da0740 972 scm_stand_in_procs = scm_make_weak_key_hash_table (scm_from_int (257));
0f2d19dd 973 scm_permobjs = SCM_EOL;
00ffa0e7 974 scm_protects = scm_c_make_hash_table (31);
6b1b030e 975 scm_gc_registered_roots = scm_c_make_hash_table (31);
d6884e63 976
0f2d19dd
JB
977 return 0;
978}
939794ce 979
0f2d19dd
JB
980\f
981
939794ce
DH
982SCM scm_after_gc_hook;
983
939794ce
DH
984static SCM gc_async;
985
939794ce
DH
986/* The function gc_async_thunk causes the execution of the after-gc-hook. It
987 * is run after the gc, as soon as the asynchronous events are handled by the
988 * evaluator.
989 */
990static SCM
991gc_async_thunk (void)
992{
993 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
939794ce
DH
994 return SCM_UNSPECIFIED;
995}
996
997
998/* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
999 * the garbage collection. The only purpose of this function is to mark the
1000 * gc_async (which will eventually lead to the execution of the
1001 * gc_async_thunk).
1002 */
1003static void *
e81d98ec 1004mark_gc_async (void * hook_data SCM_UNUSED,
5c004b6d 1005 void *fn_data SCM_UNUSED,
e81d98ec
DH
1006 void *data SCM_UNUSED)
1007{
1008 /* If cell access debugging is enabled, the user may choose to perform
1009 * additional garbage collections after an arbitrary number of cell
1010 * accesses. We don't want the scheme level after-gc-hook to be performed
1011 * for each of these garbage collections for the following reason: The
1012 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
1013 * after-gc-hook was performed with every gc, and if the gc was performed
1014 * after a very small number of cell accesses, then the number of cell
1015 * accesses during the execution of the after-gc-hook will suffice to cause
1016 * the execution of the next gc. Then, guile would keep executing the
1017 * after-gc-hook over and over again, and would never come to do other
1018 * things.
eae33935 1019 *
e81d98ec
DH
1020 * To overcome this problem, if cell access debugging with additional
1021 * garbage collections is enabled, the after-gc-hook is never run by the
1022 * garbage collecter. When running guile with cell access debugging and the
1023 * execution of the after-gc-hook is desired, then it is necessary to run
1024 * the hook explicitly from the user code. This has the effect, that from
1025 * the scheme level point of view it seems that garbage collection is
1026 * performed with a much lower frequency than it actually is. Obviously,
1027 * this will not work for code that depends on a fixed one to one
1028 * relationship between the execution counts of the C level garbage
1029 * collection hooks and the execution count of the scheme level
1030 * after-gc-hook.
1031 */
9de87eea 1032
e81d98ec 1033#if (SCM_DEBUG_CELL_ACCESSES == 1)
eab1b259 1034 if (scm_debug_cells_gc_interval == 0)
e81d98ec
DH
1035 scm_system_async_mark (gc_async);
1036#else
939794ce 1037 scm_system_async_mark (gc_async);
e81d98ec
DH
1038#endif
1039
939794ce
DH
1040 return NULL;
1041}
1042
0f2d19dd
JB
1043void
1044scm_init_gc ()
0f2d19dd 1045{
c8a1bdc4 1046 scm_gc_init_mark ();
d678e25c 1047
fde50407
ML
1048 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
1049 scm_c_define ("after-gc-hook", scm_after_gc_hook);
939794ce 1050
2592c4c7
MV
1051 gc_async = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0,
1052 gc_async_thunk);
939794ce
DH
1053
1054 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
1055
a0599745 1056#include "libguile/gc.x"
0f2d19dd 1057}
89e00824 1058
9a5fa6e9
NJ
1059#ifdef __ia64__
1060# ifdef __hpux
1061# include <sys/param.h>
1062# include <sys/pstat.h>
1063void *
1064scm_ia64_register_backing_store_base (void)
1065{
1066 struct pst_vm_status vm_status;
1067 int i = 0;
1068 while (pstat_getprocvm (&vm_status, sizeof (vm_status), 0, i++) == 1)
1069 if (vm_status.pst_type == PS_RSESTACK)
1070 return (void *) vm_status.pst_vaddr;
1071 abort ();
1072}
1073void *
1074scm_ia64_ar_bsp (const void *ctx)
1075{
1076 uint64_t bsp;
1f584400 1077 __uc_get_ar_bsp (ctx, &bsp);
9a5fa6e9
NJ
1078 return (void *) bsp;
1079}
1080# endif /* hpux */
1081# ifdef linux
1082# include <ucontext.h>
1083void *
1084scm_ia64_register_backing_store_base (void)
1085{
1086 extern void *__libc_ia64_register_backing_store_base;
1087 return __libc_ia64_register_backing_store_base;
1088}
1089void *
1090scm_ia64_ar_bsp (const void *opaque)
1091{
bfb64eb4 1092 const ucontext_t *ctx = opaque;
9a5fa6e9
NJ
1093 return (void *) ctx->uc_mcontext.sc_ar_bsp;
1094}
1095# endif /* linux */
1096#endif /* __ia64__ */
c8a1bdc4
HWN
1097
1098void
1099scm_gc_sweep (void)
1100#define FUNC_NAME "scm_gc_sweep"
1101{
c8a1bdc4
HWN
1102}
1103
1104#undef FUNC_NAME
1105
1106
56495472 1107
89e00824
ML
1108/*
1109 Local Variables:
1110 c-file-style: "gnu"
1111 End:
1112*/