Add `ChangeLog-2008' files to the distribution.
[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 418 (double) scm_i_gc_sweep_stats.collected;
b71c8ec9 419 scm_gc_cells_marked_acc += (double) scm_i_last_marked_cell_count;
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
b71c8ec9
HWN
561long int scm_i_last_marked_cell_count;
562
b17e0ac3 563/* Must be called while holding scm_i_sweep_mutex.
b17e0ac3 564
82ae1b8e
HWN
565 This function is fairly long, but it touches various global
566 variables. To not obscure the side effects on global variables,
567 this function has not been split up.
568 */
c8a1bdc4 569void
b17e0ac3 570scm_i_gc (const char *what)
c8a1bdc4 571{
82ae1b8e
HWN
572 unsigned long t_before_gc = 0;
573
9de87eea 574 scm_i_thread_put_to_sleep ();
82ae1b8e 575
c8a1bdc4 576 scm_c_hook_run (&scm_before_gc_c_hook, 0);
a00c95d9 577
c8a1bdc4
HWN
578#ifdef DEBUGINFO
579 fprintf (stderr,"gc reason %s\n", what);
c8a1bdc4 580 fprintf (stderr,
d2e53ed6 581 scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist))
c8a1bdc4 582 ? "*"
d2e53ed6 583 : (scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m"));
c8a1bdc4 584#endif
4c48ba06 585
82ae1b8e
HWN
586 t_before_gc = scm_c_get_internal_run_time ();
587 scm_gc_malloc_collected = 0;
a00c95d9 588
1367aa5e 589 /*
1f584400 590 Set freelists to NULL so scm_cons () always triggers gc, causing
b17e0ac3 591 the assertion above to fail.
1367aa5e
HWN
592 */
593 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
594 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
595
c8a1bdc4
HWN
596 /*
597 Let's finish the sweep. The conservative GC might point into the
598 garbage, and marking that would create a mess.
599 */
82ae1b8e 600 scm_i_sweep_all_segments ("GC", &scm_i_gc_sweep_stats);
1f584400 601 scm_check_deprecated_memory_return ();
4c7016dc 602
b71c8ec9 603#if (SCM_DEBUG_CELL_ACCESSES == 0 && SCM_SIZEOF_UNSIGNED_LONG == 4)
82ae1b8e 604 /* Sanity check our numbers. */
289cd1a7 605 /* TODO(hanwen): figure out why the stats are off on x64_64. */
5bfb683e
HWN
606 /* If this was not true, someone touched mark bits outside of the
607 mark phase. */
b71c8ec9
HWN
608 if (scm_i_last_marked_cell_count != scm_i_marked_count ())
609 {
610 static char msg[] =
611 "The number of marked objects changed since the last GC: %d vs %d.";
612 /* At some point, we should probably use a deprecation warning. */
613 fprintf(stderr, msg, scm_i_last_marked_cell_count, scm_i_marked_count ());
614 }
82ae1b8e
HWN
615 assert (scm_i_gc_sweep_stats.swept
616 == (scm_i_master_freelist.heap_total_cells
617 + scm_i_master_freelist2.heap_total_cells));
b71c8ec9 618 assert (scm_i_gc_sweep_stats.collected + scm_i_last_marked_cell_count
82ae1b8e 619 == scm_i_gc_sweep_stats.swept);
487b9dec
HWN
620#endif /* SCM_DEBUG_CELL_ACCESSES */
621
b17e0ac3 622 /* Mark */
b17e0ac3 623 scm_c_hook_run (&scm_before_mark_c_hook, 0);
82ae1b8e 624
c8a1bdc4 625 scm_mark_all ();
c2cbcc57 626 scm_gc_mark_time_taken += (scm_c_get_internal_run_time () - t_before_gc);
c8a1bdc4 627
b71c8ec9
HWN
628 scm_i_last_marked_cell_count = scm_cells_allocated = scm_i_marked_count ();
629
b17e0ac3 630 /* Sweep
ffd72400 631
b17e0ac3
MV
632 TODO: the after_sweep hook should probably be moved to just before
633 the mark, since that's where the sweep is finished in lazy
634 sweeping.
c35738c1
MD
635
636 MDJ 030219 <djurfeldt@nada.kth.se>: No, probably not. The
637 original meaning implied at least two things: that it would be
638 called when
639
640 1. the freelist is re-initialized (no evaluation possible, though)
641
642 and
643
644 2. the heap is "fresh"
645 (it is well-defined what data is used and what is not)
646
647 Neither of these conditions would hold just before the mark phase.
648
649 Of course, the lazy sweeping has muddled the distinction between
650 scm_before_sweep_c_hook and scm_after_sweep_c_hook, but even if
651 there were no difference, it would still be useful to have two
652 distinct classes of hook functions since this can prevent some
653 bad interference when several modules adds gc hooks.
ffd72400 654 */
b17e0ac3 655 scm_c_hook_run (&scm_before_sweep_c_hook, 0);
82ae1b8e
HWN
656
657 /*
658 Nothing here: lazy sweeping.
659 */
660 scm_i_reset_segments ();
661
662 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
663 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
664
665 /* Invalidate the freelists of other threads. */
666 scm_i_thread_invalidate_freelists ();
82ae1b8e 667
c8a1bdc4 668 scm_c_hook_run (&scm_after_sweep_c_hook, 0);
b17e0ac3 669
82ae1b8e 670 gc_end_stats ();
c8a1bdc4 671
82ae1b8e
HWN
672 scm_i_gc_sweep_stats.collected = scm_i_gc_sweep_stats.swept = 0;
673 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist);
674 scm_i_gc_sweep_freelist_reset (&scm_i_master_freelist2);
675
676 /* Arguably, this statistic is fairly useless: marking will dominate
677 the time taken.
678 */
679 scm_gc_time_taken += (scm_c_get_internal_run_time () - t_before_gc);
676d9cc5 680
fb50ef08 681 scm_i_thread_wake_up ();
eab1b259
HWN
682 /*
683 For debugging purposes, you could do
1f584400 684 scm_i_sweep_all_segments ("debug"), but then the remains of the
eab1b259
HWN
685 cell aren't left to analyse.
686 */
687}
0f2d19dd 688
4c7016dc 689
0f2d19dd
JB
690\f
691/* {GC Protection Helper Functions}
692 */
693
694
5d2b97cd
DH
695/*
696 * If within a function you need to protect one or more scheme objects from
697 * garbage collection, pass them as parameters to one of the
698 * scm_remember_upto_here* functions below. These functions don't do
699 * anything, but since the compiler does not know that they are actually
700 * no-ops, it will generate code that calls these functions with the given
701 * parameters. Therefore, you can be sure that the compiler will keep those
702 * scheme values alive (on the stack or in a register) up to the point where
703 * scm_remember_upto_here* is called. In other words, place the call to
592996c9 704 * scm_remember_upto_here* _behind_ the last code in your function, that
5d2b97cd
DH
705 * depends on the scheme object to exist.
706 *
8c494e99
DH
707 * Example: We want to make sure that the string object str does not get
708 * garbage collected during the execution of 'some_function' in the code
709 * below, because otherwise the characters belonging to str would be freed and
5d2b97cd
DH
710 * 'some_function' might access freed memory. To make sure that the compiler
711 * keeps str alive on the stack or in a register such that it is visible to
712 * the conservative gc we add the call to scm_remember_upto_here_1 _after_ the
713 * call to 'some_function'. Note that this would not be necessary if str was
714 * used anyway after the call to 'some_function'.
eb01cb64 715 * char *chars = scm_i_string_chars (str);
5d2b97cd
DH
716 * some_function (chars);
717 * scm_remember_upto_here_1 (str); // str will be alive up to this point.
718 */
719
9e1569bd
KR
720/* Remove any macro versions of these while defining the functions.
721 Functions are always included in the library, for upward binary
722 compatibility and in case combinations of GCC and non-GCC are used. */
723#undef scm_remember_upto_here_1
724#undef scm_remember_upto_here_2
725
5d2b97cd 726void
e81d98ec 727scm_remember_upto_here_1 (SCM obj SCM_UNUSED)
5d2b97cd
DH
728{
729 /* Empty. Protects a single object from garbage collection. */
730}
731
732void
e81d98ec 733scm_remember_upto_here_2 (SCM obj1 SCM_UNUSED, SCM obj2 SCM_UNUSED)
5d2b97cd
DH
734{
735 /* Empty. Protects two objects from garbage collection. */
736}
737
738void
e81d98ec 739scm_remember_upto_here (SCM obj SCM_UNUSED, ...)
5d2b97cd
DH
740{
741 /* Empty. Protects any number of objects from garbage collection. */
742}
743
c209c88e 744/*
41b0806d
GB
745 These crazy functions prevent garbage collection
746 of arguments after the first argument by
747 ensuring they remain live throughout the
748 function because they are used in the last
749 line of the code block.
750 It'd be better to have a nice compiler hint to
751 aid the conservative stack-scanning GC. --03/09/00 gjb */
0f2d19dd
JB
752SCM
753scm_return_first (SCM elt, ...)
0f2d19dd
JB
754{
755 return elt;
756}
757
41b0806d
GB
758int
759scm_return_first_int (int i, ...)
760{
761 return i;
762}
763
0f2d19dd 764
0f2d19dd 765SCM
6e8d25a6 766scm_permanent_object (SCM obj)
0f2d19dd 767{
9de87eea
MV
768 SCM cell = scm_cons (obj, SCM_EOL);
769 SCM_CRITICAL_SECTION_START;
770 SCM_SETCDR (cell, scm_permobjs);
771 scm_permobjs = cell;
772 SCM_CRITICAL_SECTION_END;
0f2d19dd
JB
773 return obj;
774}
775
776
7bd4fbe2
MD
777/* Protect OBJ from the garbage collector. OBJ will not be freed, even if all
778 other references are dropped, until the object is unprotected by calling
6b1b030e 779 scm_gc_unprotect_object (OBJ). Calls to scm_gc_protect/unprotect_object nest,
7bd4fbe2
MD
780 i. e. it is possible to protect the same object several times, but it is
781 necessary to unprotect the object the same number of times to actually get
782 the object unprotected. It is an error to unprotect an object more often
783 than it has been protected before. The function scm_protect_object returns
784 OBJ.
785*/
786
787/* Implementation note: For every object X, there is a counter which
1f584400 788 scm_gc_protect_object (X) increments and scm_gc_unprotect_object (X) decrements.
7bd4fbe2 789*/
686765af 790
7eec4c37
HWN
791
792
ef290276 793SCM
6b1b030e 794scm_gc_protect_object (SCM obj)
ef290276 795{
686765af 796 SCM handle;
9d47a1e6 797
686765af 798 /* This critical section barrier will be replaced by a mutex. */
33b320ae
NJ
799 /* njrev: Indeed; if my comment above is correct, there is the same
800 critsec/mutex inconsistency here. */
9de87eea 801 SCM_CRITICAL_SECTION_START;
9d47a1e6 802
e11e83f3
MV
803 handle = scm_hashq_create_handle_x (scm_protects, obj, scm_from_int (0));
804 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
9d47a1e6 805
7eec4c37
HWN
806 protected_obj_count ++;
807
9de87eea 808 SCM_CRITICAL_SECTION_END;
9d47a1e6 809
ef290276
JB
810 return obj;
811}
812
813
814/* Remove any protection for OBJ established by a prior call to
dab7f566 815 scm_protect_object. This function returns OBJ.
ef290276 816
dab7f566 817 See scm_protect_object for more information. */
ef290276 818SCM
6b1b030e 819scm_gc_unprotect_object (SCM obj)
ef290276 820{
686765af 821 SCM handle;
9d47a1e6 822
686765af 823 /* This critical section barrier will be replaced by a mutex. */
33b320ae 824 /* njrev: and again. */
9de87eea 825 SCM_CRITICAL_SECTION_START;
9d47a1e6 826
0ff7e3ff
HWN
827 if (scm_gc_running_p)
828 {
829 fprintf (stderr, "scm_unprotect_object called during GC.\n");
830 abort ();
831 }
b17e0ac3 832
686765af 833 handle = scm_hashq_get_handle (scm_protects, obj);
9d47a1e6 834
7888309b 835 if (scm_is_false (handle))
686765af 836 {
0f0f0899
MD
837 fprintf (stderr, "scm_unprotect_object called on unprotected object\n");
838 abort ();
686765af 839 }
6a199940
DH
840 else
841 {
e11e83f3 842 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
bc36d050 843 if (scm_is_eq (count, scm_from_int (0)))
6a199940
DH
844 scm_hashq_remove_x (scm_protects, obj);
845 else
1be6b49c 846 SCM_SETCDR (handle, count);
6a199940 847 }
7eec4c37 848 protected_obj_count --;
686765af 849
9de87eea 850 SCM_CRITICAL_SECTION_END;
ef290276
JB
851
852 return obj;
853}
854
6b1b030e
ML
855void
856scm_gc_register_root (SCM *p)
857{
858 SCM handle;
b9bd8526 859 SCM key = scm_from_ulong ((unsigned long) p);
eae33935 860
6b1b030e 861 /* This critical section barrier will be replaced by a mutex. */
33b320ae 862 /* njrev: and again. */
9de87eea 863 SCM_CRITICAL_SECTION_START;
6b1b030e 864
e11e83f3
MV
865 handle = scm_hashv_create_handle_x (scm_gc_registered_roots, key,
866 scm_from_int (0));
33b320ae 867 /* njrev: note also that the above can probably signal an error */
e11e83f3 868 SCM_SETCDR (handle, scm_sum (SCM_CDR (handle), scm_from_int (1)));
6b1b030e 869
9de87eea 870 SCM_CRITICAL_SECTION_END;
6b1b030e
ML
871}
872
873void
874scm_gc_unregister_root (SCM *p)
875{
876 SCM handle;
b9bd8526 877 SCM key = scm_from_ulong ((unsigned long) p);
6b1b030e
ML
878
879 /* This critical section barrier will be replaced by a mutex. */
33b320ae 880 /* njrev: and again. */
9de87eea 881 SCM_CRITICAL_SECTION_START;
6b1b030e
ML
882
883 handle = scm_hashv_get_handle (scm_gc_registered_roots, key);
884
7888309b 885 if (scm_is_false (handle))
6b1b030e
ML
886 {
887 fprintf (stderr, "scm_gc_unregister_root called on unregistered root\n");
888 abort ();
889 }
890 else
891 {
e11e83f3 892 SCM count = scm_difference (SCM_CDR (handle), scm_from_int (1));
bc36d050 893 if (scm_is_eq (count, scm_from_int (0)))
6b1b030e
ML
894 scm_hashv_remove_x (scm_gc_registered_roots, key);
895 else
896 SCM_SETCDR (handle, count);
897 }
898
9de87eea 899 SCM_CRITICAL_SECTION_END;
6b1b030e
ML
900}
901
902void
903scm_gc_register_roots (SCM *b, unsigned long n)
904{
905 SCM *p = b;
906 for (; p < b + n; ++p)
907 scm_gc_register_root (p);
908}
909
910void
911scm_gc_unregister_roots (SCM *b, unsigned long n)
912{
913 SCM *p = b;
914 for (; p < b + n; ++p)
915 scm_gc_unregister_root (p);
916}
917
04a98cff 918int scm_i_terminating;
c45acc34 919
0f2d19dd 920\f
a00c95d9 921
4c48ba06 922
c8a1bdc4
HWN
923/*
924 MOVE THIS FUNCTION. IT DOES NOT HAVE ANYTHING TODO WITH GC.
925 */
85db4a2c
DH
926
927/* Get an integer from an environment variable. */
c8a1bdc4
HWN
928int
929scm_getenv_int (const char *var, int def)
85db4a2c 930{
c8a1bdc4
HWN
931 char *end = 0;
932 char *val = getenv (var);
933 long res = def;
85db4a2c
DH
934 if (!val)
935 return def;
936 res = strtol (val, &end, 10);
937 if (end == val)
938 return def;
939 return res;
940}
941
c35738c1
MD
942void
943scm_storage_prehistory ()
944{
945 scm_c_hook_init (&scm_before_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
946 scm_c_hook_init (&scm_before_mark_c_hook, 0, SCM_C_HOOK_NORMAL);
947 scm_c_hook_init (&scm_before_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
948 scm_c_hook_init (&scm_after_sweep_c_hook, 0, SCM_C_HOOK_NORMAL);
949 scm_c_hook_init (&scm_after_gc_c_hook, 0, SCM_C_HOOK_NORMAL);
950}
85db4a2c 951
9de87eea 952scm_i_pthread_mutex_t scm_i_gc_admin_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
eb01cb64 953
4a4c9785 954int
85db4a2c 955scm_init_storage ()
0f2d19dd 956{
1be6b49c 957 size_t j;
0f2d19dd
JB
958
959 j = SCM_NUM_PROTECTS;
960 while (j)
961 scm_sys_protects[--j] = SCM_BOOL_F;
4a4c9785 962
1f584400 963 scm_gc_init_freelist ();
c8a1bdc4 964 scm_gc_init_malloc ();
0f2d19dd 965
9de87eea
MV
966#if 0
967 /* We can't have a cleanup handler since we have no thread to run it
968 in. */
969
a18bcd0e 970#ifdef HAVE_ATEXIT
c45acc34 971 atexit (cleanup);
e52ceaac
MD
972#else
973#ifdef HAVE_ON_EXIT
974 on_exit (cleanup, 0);
975#endif
9de87eea
MV
976#endif
977
a18bcd0e 978#endif
0f2d19dd 979
e4da0740 980 scm_stand_in_procs = scm_make_weak_key_hash_table (scm_from_int (257));
0f2d19dd 981 scm_permobjs = SCM_EOL;
00ffa0e7 982 scm_protects = scm_c_make_hash_table (31);
6b1b030e 983 scm_gc_registered_roots = scm_c_make_hash_table (31);
d6884e63 984
0f2d19dd
JB
985 return 0;
986}
939794ce 987
0f2d19dd
JB
988\f
989
939794ce
DH
990SCM scm_after_gc_hook;
991
939794ce
DH
992static SCM gc_async;
993
939794ce
DH
994/* The function gc_async_thunk causes the execution of the after-gc-hook. It
995 * is run after the gc, as soon as the asynchronous events are handled by the
996 * evaluator.
997 */
998static SCM
999gc_async_thunk (void)
1000{
1001 scm_c_run_hook (scm_after_gc_hook, SCM_EOL);
939794ce
DH
1002 return SCM_UNSPECIFIED;
1003}
1004
1005
1006/* The function mark_gc_async is run by the scm_after_gc_c_hook at the end of
1007 * the garbage collection. The only purpose of this function is to mark the
1008 * gc_async (which will eventually lead to the execution of the
1009 * gc_async_thunk).
1010 */
1011static void *
e81d98ec 1012mark_gc_async (void * hook_data SCM_UNUSED,
5c004b6d 1013 void *fn_data SCM_UNUSED,
e81d98ec
DH
1014 void *data SCM_UNUSED)
1015{
1016 /* If cell access debugging is enabled, the user may choose to perform
1017 * additional garbage collections after an arbitrary number of cell
1018 * accesses. We don't want the scheme level after-gc-hook to be performed
1019 * for each of these garbage collections for the following reason: The
1020 * execution of the after-gc-hook causes cell accesses itself. Thus, if the
1021 * after-gc-hook was performed with every gc, and if the gc was performed
1022 * after a very small number of cell accesses, then the number of cell
1023 * accesses during the execution of the after-gc-hook will suffice to cause
1024 * the execution of the next gc. Then, guile would keep executing the
1025 * after-gc-hook over and over again, and would never come to do other
1026 * things.
eae33935 1027 *
e81d98ec
DH
1028 * To overcome this problem, if cell access debugging with additional
1029 * garbage collections is enabled, the after-gc-hook is never run by the
1030 * garbage collecter. When running guile with cell access debugging and the
1031 * execution of the after-gc-hook is desired, then it is necessary to run
1032 * the hook explicitly from the user code. This has the effect, that from
1033 * the scheme level point of view it seems that garbage collection is
1034 * performed with a much lower frequency than it actually is. Obviously,
1035 * this will not work for code that depends on a fixed one to one
1036 * relationship between the execution counts of the C level garbage
1037 * collection hooks and the execution count of the scheme level
1038 * after-gc-hook.
1039 */
9de87eea 1040
e81d98ec 1041#if (SCM_DEBUG_CELL_ACCESSES == 1)
eab1b259 1042 if (scm_debug_cells_gc_interval == 0)
e81d98ec
DH
1043 scm_system_async_mark (gc_async);
1044#else
939794ce 1045 scm_system_async_mark (gc_async);
e81d98ec
DH
1046#endif
1047
939794ce
DH
1048 return NULL;
1049}
1050
0f2d19dd
JB
1051void
1052scm_init_gc ()
0f2d19dd 1053{
c8a1bdc4 1054 scm_gc_init_mark ();
d678e25c 1055
fde50407
ML
1056 scm_after_gc_hook = scm_permanent_object (scm_make_hook (SCM_INUM0));
1057 scm_c_define ("after-gc-hook", scm_after_gc_hook);
939794ce 1058
2592c4c7
MV
1059 gc_async = scm_c_make_subr ("%gc-thunk", scm_tc7_subr_0,
1060 gc_async_thunk);
939794ce
DH
1061
1062 scm_c_hook_add (&scm_after_gc_c_hook, mark_gc_async, NULL, 0);
1063
a0599745 1064#include "libguile/gc.x"
0f2d19dd 1065}
89e00824 1066
9a5fa6e9
NJ
1067#ifdef __ia64__
1068# ifdef __hpux
1069# include <sys/param.h>
1070# include <sys/pstat.h>
1071void *
1072scm_ia64_register_backing_store_base (void)
1073{
1074 struct pst_vm_status vm_status;
1075 int i = 0;
1076 while (pstat_getprocvm (&vm_status, sizeof (vm_status), 0, i++) == 1)
1077 if (vm_status.pst_type == PS_RSESTACK)
1078 return (void *) vm_status.pst_vaddr;
1079 abort ();
1080}
1081void *
1082scm_ia64_ar_bsp (const void *ctx)
1083{
1084 uint64_t bsp;
1f584400 1085 __uc_get_ar_bsp (ctx, &bsp);
9a5fa6e9
NJ
1086 return (void *) bsp;
1087}
1088# endif /* hpux */
1089# ifdef linux
1090# include <ucontext.h>
1091void *
1092scm_ia64_register_backing_store_base (void)
1093{
1094 extern void *__libc_ia64_register_backing_store_base;
1095 return __libc_ia64_register_backing_store_base;
1096}
1097void *
1098scm_ia64_ar_bsp (const void *opaque)
1099{
bfb64eb4 1100 const ucontext_t *ctx = opaque;
9a5fa6e9
NJ
1101 return (void *) ctx->uc_mcontext.sc_ar_bsp;
1102}
1103# endif /* linux */
1104#endif /* __ia64__ */
c8a1bdc4
HWN
1105
1106void
1107scm_gc_sweep (void)
1108#define FUNC_NAME "scm_gc_sweep"
1109{
c8a1bdc4
HWN
1110}
1111
1112#undef FUNC_NAME
1113
1114
56495472 1115
89e00824
ML
1116/*
1117 Local Variables:
1118 c-file-style: "gnu"
1119 End:
1120*/