2011-01-06 16:20:54 -08:00
|
|
|
|
/* Copyright (C) 1995,1996,1998,1999,2000,2001, 2003, 2004, 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
|
* as published by the Free Software Foundation; either version 3 of
|
|
|
|
|
|
* the License, or (at your option) any later version.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
|
* Lesser General Public License for more details.
|
1996-07-25 22:56:11 +00:00
|
|
|
|
*
|
2003-04-05 19:15:35 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-06-17 00:22:09 +01:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
|
|
* 02110-1301 USA
|
2003-04-05 19:15:35 +00:00
|
|
|
|
*/
|
1999-12-12 02:36:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2008-09-13 15:35:27 +02:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
|
# include <config.h>
|
|
|
|
|
|
#endif
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2010-11-19 14:14:53 +01:00
|
|
|
|
#include <alloca.h>
|
* gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
hashtable and guardian machinery but call the relevant functions
directly.
* guardians.h, guardians.c, deprecated.h,
deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
Deprecated and moved into deprecated.[ch].
* guardians.h, guardians.c: Mostly rewritten.
(scm_i_init_guardians_for_gc,
scm_i_identify_inaccessible_guardeds,
scm_i_mark_inaccessible_guardeds): New.
* weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
(SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
(SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
(scm_weaks_prehistory): Removed.
(scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
scm_i_mark_weak_vectors_non_weaks,
scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
(scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
scm_scan_weak_vectors): Removed.
* hashtab.h (scm_i_scan_weak_hashtables): New.
* hashtab.c (make_hash_table, scm_i_rehash): Do not use
SCM_WVECTF_NOSCAN.
(hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
t->n_items.
(scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
to latter. Do not scan the alists themselves, this is done by the
weak vector code now. Just update the element count.
* vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
to latter. The type is now only part of the cell word.
(SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
* init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
2005-07-31 23:04:36 +00:00
|
|
|
|
#include <stdio.h>
|
2009-10-30 11:31:51 +01:00
|
|
|
|
#include <assert.h>
|
* gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
hashtable and guardian machinery but call the relevant functions
directly.
* guardians.h, guardians.c, deprecated.h,
deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
Deprecated and moved into deprecated.[ch].
* guardians.h, guardians.c: Mostly rewritten.
(scm_i_init_guardians_for_gc,
scm_i_identify_inaccessible_guardeds,
scm_i_mark_inaccessible_guardeds): New.
* weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
(SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
(SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
(scm_weaks_prehistory): Removed.
(scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
scm_i_mark_weak_vectors_non_weaks,
scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
(scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
scm_scan_weak_vectors): Removed.
* hashtab.h (scm_i_scan_weak_hashtables): New.
* hashtab.c (make_hash_table, scm_i_rehash): Do not use
SCM_WVECTF_NOSCAN.
(hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
t->n_items.
(scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
to latter. Do not scan the alists themselves, this is done by the
weak vector code now. Just update the element count.
* vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
to latter. The type is now only part of the cell word.
(SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
* init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
2005-07-31 23:04:36 +00:00
|
|
|
|
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/_scm.h"
|
|
|
|
|
|
#include "libguile/alist.h"
|
|
|
|
|
|
#include "libguile/hash.h"
|
|
|
|
|
|
#include "libguile/eval.h"
|
2001-06-26 15:46:40 +00:00
|
|
|
|
#include "libguile/root.h"
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/vectors.h"
|
2003-02-11 13:49:32 +00:00
|
|
|
|
#include "libguile/ports.h"
|
2011-02-24 17:00:30 +01:00
|
|
|
|
#include "libguile/bdw-gc.h"
|
2000-04-21 14:16:44 +00:00
|
|
|
|
|
|
|
|
|
|
#include "libguile/validate.h"
|
|
|
|
|
|
#include "libguile/hashtab.h"
|
2006-04-09 16:13:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2009-12-05 10:07:07 +01:00
|
|
|
|
/* A hash table is a cell containing a vector of association lists.
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
*
|
|
|
|
|
|
* Growing or shrinking, with following rehashing, is triggered when
|
|
|
|
|
|
* the load factor
|
|
|
|
|
|
*
|
|
|
|
|
|
* L = N / S (N: number of items in table, S: bucket vector length)
|
|
|
|
|
|
*
|
|
|
|
|
|
* passes an upper limit of 0.9 or a lower limit of 0.25.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The implementation stores the upper and lower number of items which
|
|
|
|
|
|
* trigger a resize in the hashtable object.
|
|
|
|
|
|
*
|
2011-01-06 16:20:54 -08:00
|
|
|
|
* Weak hash tables use weak pairs in the bucket lists rather than
|
|
|
|
|
|
* normal pairs.
|
|
|
|
|
|
*
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
* Possible hash table sizes (primes) are stored in the array
|
|
|
|
|
|
* hashtable_size.
|
2003-02-11 13:49:32 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
2003-02-13 10:42:59 +00:00
|
|
|
|
static unsigned long hashtable_size[] = {
|
|
|
|
|
|
31, 61, 113, 223, 443, 883, 1759, 3517, 7027, 14051, 28099, 56197, 112363,
|
2005-01-20 14:39:49 +00:00
|
|
|
|
224717, 449419, 898823, 1797641, 3595271, 7190537, 14381041
|
2011-01-06 16:20:54 -08:00
|
|
|
|
#if SIZEOF_SCM_T_BITS > 4
|
|
|
|
|
|
/* vector lengths are stored in the first word of vectors, shifted by
|
|
|
|
|
|
8 bits for the tc8, so for 32-bit we only get 2^24-1 = 16777215
|
|
|
|
|
|
elements. But we allow a few more sizes for 64-bit. */
|
|
|
|
|
|
, 28762081, 57524111, 115048217, 230096423, 460192829
|
2005-01-20 14:39:49 +00:00
|
|
|
|
#endif
|
2003-02-11 13:49:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2005-01-20 14:39:49 +00:00
|
|
|
|
#define HASHTABLE_SIZE_N (sizeof(hashtable_size)/sizeof(unsigned long))
|
|
|
|
|
|
|
2003-02-11 13:49:32 +00:00
|
|
|
|
static char *s_hashtable = "hashtable";
|
|
|
|
|
|
|
2006-04-09 16:13:01 +00:00
|
|
|
|
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
2006-06-25 22:42:19 +00:00
|
|
|
|
/* Helper functions and macros to deal with weak pairs.
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
2006-06-25 22:42:19 +00:00
|
|
|
|
Weak pairs need to be accessed very carefully since their components can
|
|
|
|
|
|
be nullified by the GC when the object they refer to becomes unreachable.
|
|
|
|
|
|
Hence the macros and functions below that detect such weak pairs within
|
|
|
|
|
|
buckets and remove them. */
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
2009-10-30 11:31:51 +01:00
|
|
|
|
/* Remove nullified weak pairs from ALIST such that the result contains only
|
|
|
|
|
|
valid pairs. Set REMOVED_ITEMS to the number of pairs that have been
|
2006-04-09 16:13:22 +00:00
|
|
|
|
deleted. */
|
2006-04-04 21:28:13 +00:00
|
|
|
|
static SCM
|
2006-04-09 16:13:22 +00:00
|
|
|
|
scm_fixup_weak_alist (SCM alist, size_t *removed_items)
|
2006-04-04 21:28:13 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM result;
|
|
|
|
|
|
SCM prev = SCM_EOL;
|
|
|
|
|
|
|
2006-04-09 16:13:22 +00:00
|
|
|
|
*removed_items = 0;
|
2006-04-04 21:28:13 +00:00
|
|
|
|
for (result = alist;
|
|
|
|
|
|
scm_is_pair (alist);
|
2010-10-11 15:14:55 +02:00
|
|
|
|
alist = SCM_CDR (alist))
|
2006-04-04 21:28:13 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM pair = SCM_CAR (alist);
|
|
|
|
|
|
|
2010-10-11 15:14:55 +02:00
|
|
|
|
if (SCM_WEAK_PAIR_DELETED_P (pair))
|
2006-04-04 21:28:13 +00:00
|
|
|
|
{
|
2010-10-11 15:14:55 +02:00
|
|
|
|
/* Remove from ALIST weak pair PAIR whose car/cdr has been
|
|
|
|
|
|
nullified by the GC. */
|
2011-05-13 13:04:49 +02:00
|
|
|
|
if (scm_is_null (prev))
|
2010-10-11 15:14:55 +02:00
|
|
|
|
result = SCM_CDR (alist);
|
|
|
|
|
|
else
|
|
|
|
|
|
SCM_SETCDR (prev, SCM_CDR (alist));
|
|
|
|
|
|
|
|
|
|
|
|
(*removed_items)++;
|
|
|
|
|
|
|
|
|
|
|
|
/* Leave PREV unchanged. */
|
2006-04-04 21:28:13 +00:00
|
|
|
|
}
|
2010-10-11 15:14:55 +02:00
|
|
|
|
else
|
|
|
|
|
|
prev = alist;
|
2006-04-04 21:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2011-02-23 11:59:38 +01:00
|
|
|
|
static void
|
|
|
|
|
|
vacuum_weak_hash_table (SCM table)
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM buckets = SCM_HASHTABLE_VECTOR (table);
|
|
|
|
|
|
unsigned long k = SCM_SIMPLE_VECTOR_LENGTH (buckets);
|
|
|
|
|
|
size_t len = SCM_HASHTABLE_N_ITEMS (table);
|
|
|
|
|
|
|
|
|
|
|
|
while (k--)
|
|
|
|
|
|
{
|
|
|
|
|
|
size_t removed;
|
|
|
|
|
|
SCM alist = SCM_SIMPLE_VECTOR_REF (buckets, k);
|
|
|
|
|
|
alist = scm_fixup_weak_alist (alist, &removed);
|
|
|
|
|
|
assert (removed <= len);
|
|
|
|
|
|
len -= removed;
|
|
|
|
|
|
SCM_SIMPLE_VECTOR_SET (buckets, k, alist);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCM_SET_HASHTABLE_N_ITEMS (table, len);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2006-04-09 16:13:22 +00:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
/* Packed arguments for `do_weak_bucket_fixup'. */
|
|
|
|
|
|
struct t_fixup_args
|
2009-10-30 11:31:51 +01:00
|
|
|
|
{
|
2010-10-11 15:38:06 +02:00
|
|
|
|
SCM bucket;
|
|
|
|
|
|
SCM *bucket_copy;
|
2009-10-30 11:31:51 +01:00
|
|
|
|
size_t removed_items;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void *
|
2010-10-11 15:38:06 +02:00
|
|
|
|
do_weak_bucket_fixup (void *data)
|
2009-10-30 11:31:51 +01:00
|
|
|
|
{
|
2010-10-11 15:38:06 +02:00
|
|
|
|
struct t_fixup_args *args;
|
|
|
|
|
|
SCM pair, *copy;
|
2009-10-30 11:31:51 +01:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
args = (struct t_fixup_args *) data;
|
2006-06-13 20:17:32 +00:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
args->bucket = scm_fixup_weak_alist (args->bucket, &args->removed_items);
|
2009-10-30 11:31:51 +01:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
for (pair = args->bucket, copy = args->bucket_copy;
|
|
|
|
|
|
scm_is_pair (pair);
|
|
|
|
|
|
pair = SCM_CDR (pair), copy += 2)
|
|
|
|
|
|
{
|
|
|
|
|
|
/* At this point, all weak pairs have been removed. */
|
|
|
|
|
|
assert (!SCM_WEAK_PAIR_DELETED_P (SCM_CAR (pair)));
|
2009-10-30 11:31:51 +01:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
/* Copy the key and value. */
|
|
|
|
|
|
copy[0] = SCM_CAAR (pair);
|
|
|
|
|
|
copy[1] = SCM_CDAR (pair);
|
|
|
|
|
|
}
|
2009-10-30 11:31:51 +01:00
|
|
|
|
|
|
|
|
|
|
return args;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Lookup OBJECT in weak hash table TABLE using ASSOC. OBJECT is searched
|
|
|
|
|
|
for in the alist that is the BUCKET_INDEXth element of BUCKETS.
|
|
|
|
|
|
Optionally update TABLE and rehash it. */
|
|
|
|
|
|
static SCM
|
|
|
|
|
|
weak_bucket_assoc (SCM table, SCM buckets, size_t bucket_index,
|
|
|
|
|
|
scm_t_hash_fn hash_fn,
|
|
|
|
|
|
scm_t_assoc_fn assoc, SCM object, void *closure)
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM result;
|
2010-10-11 15:38:06 +02:00
|
|
|
|
SCM bucket, *strong_refs;
|
|
|
|
|
|
struct t_fixup_args args;
|
|
|
|
|
|
|
|
|
|
|
|
bucket = SCM_SIMPLE_VECTOR_REF (buckets, bucket_index);
|
|
|
|
|
|
|
|
|
|
|
|
/* Prepare STRONG_REFS as an array large enough to hold all the keys
|
|
|
|
|
|
and values in BUCKET. */
|
|
|
|
|
|
strong_refs = alloca (scm_ilength (bucket) * 2 * sizeof (SCM));
|
|
|
|
|
|
|
|
|
|
|
|
args.bucket = bucket;
|
|
|
|
|
|
args.bucket_copy = strong_refs;
|
|
|
|
|
|
|
|
|
|
|
|
/* Fixup BUCKET. Do that with the allocation lock held to avoid
|
|
|
|
|
|
seeing disappearing links pointing to objects that have already
|
|
|
|
|
|
been reclaimed (this happens when the disappearing links that point
|
|
|
|
|
|
to it haven't yet been cleared.)
|
|
|
|
|
|
|
|
|
|
|
|
The `do_weak_bucket_fixup' call populates STRONG_REFS with a copy
|
|
|
|
|
|
of BUCKET's entries after it's been fixed up. Thus, all the
|
|
|
|
|
|
entries kept in BUCKET are still reachable when ASSOC sees
|
|
|
|
|
|
them. */
|
|
|
|
|
|
GC_call_with_alloc_lock (do_weak_bucket_fixup, &args);
|
|
|
|
|
|
|
|
|
|
|
|
bucket = args.bucket;
|
|
|
|
|
|
SCM_SIMPLE_VECTOR_SET (buckets, bucket_index, bucket);
|
|
|
|
|
|
|
|
|
|
|
|
result = assoc (object, bucket, closure);
|
2011-05-13 13:21:51 +02:00
|
|
|
|
|
|
|
|
|
|
/* If we got a result, it should not have NULL fields. */
|
|
|
|
|
|
if (scm_is_pair (result) && SCM_WEAK_PAIR_DELETED_P (result))
|
|
|
|
|
|
abort ();
|
2009-10-30 11:31:51 +01:00
|
|
|
|
|
2010-10-11 15:38:06 +02:00
|
|
|
|
scm_remember_upto_here_1 (strong_refs);
|
|
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (args.removed_items > 0)
|
2009-10-30 11:31:51 +01:00
|
|
|
|
{
|
|
|
|
|
|
/* Update TABLE's item count and optionally trigger a rehash. */
|
|
|
|
|
|
size_t remaining;
|
|
|
|
|
|
|
|
|
|
|
|
assert (SCM_HASHTABLE_N_ITEMS (table) >= args.removed_items);
|
|
|
|
|
|
|
|
|
|
|
|
remaining = SCM_HASHTABLE_N_ITEMS (table) - args.removed_items;
|
|
|
|
|
|
SCM_SET_HASHTABLE_N_ITEMS (table, remaining);
|
|
|
|
|
|
|
2010-12-16 17:07:50 +01:00
|
|
|
|
if (remaining < SCM_HASHTABLE_LOWER (table))
|
|
|
|
|
|
scm_i_rehash (table, hash_fn, closure, "weak_bucket_assoc");
|
2009-10-30 11:31:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
2006-04-09 16:13:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
2011-01-07 08:36:39 -08:00
|
|
|
|
/* Packed arguments for `weak_bucket_assoc_by_hash'. */
|
|
|
|
|
|
struct assoc_by_hash_data
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM alist;
|
|
|
|
|
|
SCM ret;
|
|
|
|
|
|
scm_t_hash_predicate_fn predicate;
|
|
|
|
|
|
void *closure;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* See scm_hash_fn_get_handle_by_hash below. */
|
|
|
|
|
|
static void*
|
|
|
|
|
|
weak_bucket_assoc_by_hash (void *args)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct assoc_by_hash_data *data = args;
|
|
|
|
|
|
SCM alist = data->alist;
|
|
|
|
|
|
|
|
|
|
|
|
for (; scm_is_pair (alist); alist = SCM_CDR (alist))
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM pair = SCM_CAR (alist);
|
|
|
|
|
|
|
|
|
|
|
|
if (!SCM_WEAK_PAIR_DELETED_P (pair)
|
|
|
|
|
|
&& data->predicate (SCM_CAR (pair), data->closure))
|
|
|
|
|
|
{
|
|
|
|
|
|
data->ret = pair;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return args;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
static SCM
|
2005-03-29 17:47:39 +00:00
|
|
|
|
make_hash_table (int flags, unsigned long k, const char *func_name)
|
|
|
|
|
|
{
|
2009-12-05 10:07:07 +01:00
|
|
|
|
SCM vector;
|
2003-02-19 17:57:01 +00:00
|
|
|
|
scm_t_hashtable *t;
|
2003-02-19 15:43:00 +00:00
|
|
|
|
int i = 0, n = k ? k : 31;
|
|
|
|
|
|
while (i < HASHTABLE_SIZE_N && n > hashtable_size[i])
|
|
|
|
|
|
++i;
|
|
|
|
|
|
n = hashtable_size[i];
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
|
|
|
|
|
/* In both cases, i.e., regardless of whether we are creating a weak hash
|
|
|
|
|
|
table, we return a non-weak vector. This is because the vector itself
|
|
|
|
|
|
is not weak in the case of a weak hash table: the alist pairs are. */
|
|
|
|
|
|
vector = scm_c_make_vector (n, SCM_EOL);
|
|
|
|
|
|
|
|
|
|
|
|
t = scm_gc_malloc_pointerless (sizeof (*t), s_hashtable);
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
t->min_size_index = t->size_index = i;
|
2003-02-11 13:49:32 +00:00
|
|
|
|
t->n_items = 0;
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
t->lower = 0;
|
2003-02-19 15:43:00 +00:00
|
|
|
|
t->upper = 9 * n / 10;
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
t->flags = flags;
|
2005-04-04 14:53:27 +00:00
|
|
|
|
t->hash_fn = NULL;
|
2006-06-13 20:17:32 +00:00
|
|
|
|
|
2009-12-05 10:07:07 +01:00
|
|
|
|
/* FIXME: we just need two words of storage, not three */
|
|
|
|
|
|
return scm_double_cell (scm_tc7_hashtable, SCM_UNPACK (vector),
|
|
|
|
|
|
(scm_t_bits)t, 0);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
void
|
|
|
|
|
|
scm_i_rehash (SCM table,
|
2009-10-26 23:38:13 +01:00
|
|
|
|
scm_t_hash_fn hash_fn,
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
void *closure,
|
|
|
|
|
|
const char* func_name)
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM buckets, new_buckets;
|
|
|
|
|
|
int i;
|
|
|
|
|
|
unsigned long old_size;
|
|
|
|
|
|
unsigned long new_size;
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_HASHTABLE_N_ITEMS (table) < SCM_HASHTABLE_LOWER (table))
|
|
|
|
|
|
{
|
|
|
|
|
|
/* rehashing is not triggered when i <= min_size */
|
|
|
|
|
|
i = SCM_HASHTABLE (table)->size_index;
|
|
|
|
|
|
do
|
|
|
|
|
|
--i;
|
|
|
|
|
|
while (i > SCM_HASHTABLE (table)->min_size_index
|
|
|
|
|
|
&& SCM_HASHTABLE_N_ITEMS (table) < hashtable_size[i] / 4);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
i = SCM_HASHTABLE (table)->size_index + 1;
|
|
|
|
|
|
if (i >= HASHTABLE_SIZE_N)
|
|
|
|
|
|
/* don't rehash */
|
|
|
|
|
|
return;
|
2005-04-04 14:53:27 +00:00
|
|
|
|
|
|
|
|
|
|
/* Remember HASH_FN for rehash_after_gc, but only when CLOSURE
|
|
|
|
|
|
is not needed since CLOSURE can not be guaranteed to be valid
|
|
|
|
|
|
after this function returns.
|
|
|
|
|
|
*/
|
|
|
|
|
|
if (closure == NULL)
|
|
|
|
|
|
SCM_HASHTABLE (table)->hash_fn = hash_fn;
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
SCM_HASHTABLE (table)->size_index = i;
|
2005-01-24 23:41:14 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
new_size = hashtable_size[i];
|
|
|
|
|
|
if (i <= SCM_HASHTABLE (table)->min_size_index)
|
|
|
|
|
|
SCM_HASHTABLE (table)->lower = 0;
|
|
|
|
|
|
else
|
|
|
|
|
|
SCM_HASHTABLE (table)->lower = new_size / 4;
|
|
|
|
|
|
SCM_HASHTABLE (table)->upper = 9 * new_size / 10;
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
|
|
|
|
|
new_buckets = scm_c_make_vector (new_size, SCM_EOL);
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
|
2005-02-23 17:24:19 +00:00
|
|
|
|
/* When this is a weak hashtable, running the GC might change it.
|
|
|
|
|
|
We need to cope with this while rehashing its elements. We do
|
* gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
hashtable and guardian machinery but call the relevant functions
directly.
* guardians.h, guardians.c, deprecated.h,
deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
Deprecated and moved into deprecated.[ch].
* guardians.h, guardians.c: Mostly rewritten.
(scm_i_init_guardians_for_gc,
scm_i_identify_inaccessible_guardeds,
scm_i_mark_inaccessible_guardeds): New.
* weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
(SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
(SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
(scm_weaks_prehistory): Removed.
(scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
scm_i_mark_weak_vectors_non_weaks,
scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
(scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
scm_scan_weak_vectors): Removed.
* hashtab.h (scm_i_scan_weak_hashtables): New.
* hashtab.c (make_hash_table, scm_i_rehash): Do not use
SCM_WVECTF_NOSCAN.
(hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
t->n_items.
(scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
to latter. Do not scan the alists themselves, this is done by the
weak vector code now. Just update the element count.
* vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
to latter. The type is now only part of the cell word.
(SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
* init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
2005-07-31 23:04:36 +00:00
|
|
|
|
this by first installing the new, empty bucket vector. Then we
|
|
|
|
|
|
remove the elements from the old bucket vector and insert them
|
|
|
|
|
|
into the new one.
|
2005-02-23 17:24:19 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
SCM_SET_HASHTABLE_VECTOR (table, new_buckets);
|
|
|
|
|
|
SCM_SET_HASHTABLE_N_ITEMS (table, 0);
|
|
|
|
|
|
|
2005-01-02 20:11:15 +00:00
|
|
|
|
old_size = SCM_SIMPLE_VECTOR_LENGTH (buckets);
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
for (i = 0; i < old_size; ++i)
|
|
|
|
|
|
{
|
2005-02-23 17:24:19 +00:00
|
|
|
|
SCM ls, cell, handle;
|
|
|
|
|
|
|
|
|
|
|
|
ls = SCM_SIMPLE_VECTOR_REF (buckets, i);
|
2005-02-25 21:22:44 +00:00
|
|
|
|
SCM_SIMPLE_VECTOR_SET (buckets, i, SCM_EOL);
|
|
|
|
|
|
|
2005-02-23 17:24:19 +00:00
|
|
|
|
while (scm_is_pair (ls))
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
{
|
|
|
|
|
|
unsigned long h;
|
2006-06-13 20:17:32 +00:00
|
|
|
|
|
2005-02-23 17:24:19 +00:00
|
|
|
|
cell = ls;
|
|
|
|
|
|
handle = SCM_CAR (cell);
|
|
|
|
|
|
ls = SCM_CDR (ls);
|
2006-06-13 20:17:32 +00:00
|
|
|
|
|
2006-06-25 22:42:19 +00:00
|
|
|
|
if (SCM_WEAK_PAIR_DELETED_P (handle))
|
2006-06-25 22:43:33 +00:00
|
|
|
|
/* HANDLE is a nullified weak pair: skip it. */
|
|
|
|
|
|
continue;
|
2006-06-13 20:17:32 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
h = hash_fn (SCM_CAR (handle), new_size, closure);
|
|
|
|
|
|
if (h >= new_size)
|
* numbers.h, numbers.c, discouraged.h, discouraged.c (scm_short2num,
scm_ushort2num, scm_int2num, scm_uint2num, scm_long2num,
scm_ulong2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
scm_num2ushort, scm_num2int, scm_num2uint, scm_num2long,
scm_num2ulong, scm_num2size, scm_num2ptrdiff, scm_long_long2num,
scm_ulong_long2num, scm_num2long_long, scm_num2ulong_long):
Discouraged by moving to discouraged.h and discouraged.c and
reimplementing in terms of scm_from_* and scm_to_*. Changed all uses
to the new scm_from_* and scm_to_* functions.
2004-08-02 16:14:04 +00:00
|
|
|
|
scm_out_of_range (func_name, scm_from_ulong (h));
|
2005-02-23 17:24:19 +00:00
|
|
|
|
SCM_SETCDR (cell, SCM_SIMPLE_VECTOR_REF (new_buckets, h));
|
|
|
|
|
|
SCM_SIMPLE_VECTOR_SET (new_buckets, h, cell);
|
|
|
|
|
|
SCM_HASHTABLE_INCREMENT (table);
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-05 10:07:07 +01:00
|
|
|
|
void
|
|
|
|
|
|
scm_i_hashtable_print (SCM exp, SCM port, scm_print_state *pstate)
|
2003-02-11 13:49:32 +00:00
|
|
|
|
{
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
scm_puts ("#<", port);
|
|
|
|
|
|
if (SCM_HASHTABLE_WEAK_KEY_P (exp))
|
|
|
|
|
|
scm_puts ("weak-key-", port);
|
|
|
|
|
|
else if (SCM_HASHTABLE_WEAK_VALUE_P (exp))
|
|
|
|
|
|
scm_puts ("weak-value-", port);
|
|
|
|
|
|
else if (SCM_HASHTABLE_DOUBLY_WEAK_P (exp))
|
|
|
|
|
|
scm_puts ("doubly-weak-", port);
|
|
|
|
|
|
scm_puts ("hash-table ", port);
|
* gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
hashtable and guardian machinery but call the relevant functions
directly.
* guardians.h, guardians.c, deprecated.h,
deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
Deprecated and moved into deprecated.[ch].
* guardians.h, guardians.c: Mostly rewritten.
(scm_i_init_guardians_for_gc,
scm_i_identify_inaccessible_guardeds,
scm_i_mark_inaccessible_guardeds): New.
* weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
(SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
(SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
(scm_weaks_prehistory): Removed.
(scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
scm_i_mark_weak_vectors_non_weaks,
scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
(scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
scm_scan_weak_vectors): Removed.
* hashtab.h (scm_i_scan_weak_hashtables): New.
* hashtab.c (make_hash_table, scm_i_rehash): Do not use
SCM_WVECTF_NOSCAN.
(hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
t->n_items.
(scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
to latter. Do not scan the alists themselves, this is done by the
weak vector code now. Just update the element count.
* vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
to latter. The type is now only part of the cell word.
(SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
* init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
2005-07-31 23:04:36 +00:00
|
|
|
|
scm_uintprint (SCM_HASHTABLE_N_ITEMS (exp), 10, port);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
scm_putc ('/', port);
|
2005-01-02 20:11:15 +00:00
|
|
|
|
scm_uintprint (SCM_SIMPLE_VECTOR_LENGTH (SCM_HASHTABLE_VECTOR (exp)),
|
|
|
|
|
|
10, port);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
scm_puts (">", port);
|
2009-12-05 10:07:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2003-02-11 13:49:32 +00:00
|
|
|
|
|
2001-02-02 04:56:25 +00:00
|
|
|
|
SCM
|
2001-05-26 20:51:22 +00:00
|
|
|
|
scm_c_make_hash_table (unsigned long k)
|
2001-02-02 04:56:25 +00:00
|
|
|
|
{
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
return make_hash_table (0, k, "scm_c_make_hash_table");
|
2003-02-11 13:49:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_make_hash_table, "make-hash-table", 0, 1, 0,
|
|
|
|
|
|
(SCM n),
|
2005-03-29 17:47:39 +00:00
|
|
|
|
"Make a new abstract hash table object with minimum number of buckets @var{n}\n")
|
2003-02-11 13:49:32 +00:00
|
|
|
|
#define FUNC_NAME s_scm_make_hash_table
|
|
|
|
|
|
{
|
|
|
|
|
|
if (SCM_UNBNDP (n))
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
return make_hash_table (0, 0, FUNC_NAME);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
else
|
* validate.h, deprecated.h (SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY,
SCM_VALIDATE_BIGINT, SCM_VALIDATE_INUM_MIN,
SCM_VALIDATE_INUM_MIN_COPY,
SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
SCM_VALIDATE_INUM_RANGE_COPY): Deprecated because they make the
fixnum/bignum distinction visible. Changed all uses to scm_to_size_t
or similar.
2004-07-10 14:35:36 +00:00
|
|
|
|
return make_hash_table (0, scm_to_ulong (n), FUNC_NAME);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
2011-04-15 18:31:06 +02:00
|
|
|
|
/* The before-gc C hook only runs if GC_set_start_callback is available,
|
|
|
|
|
|
so if not, fall back on a finalizer-based implementation. */
|
|
|
|
|
|
static int
|
|
|
|
|
|
weak_gc_callback (void **weak)
|
2011-02-24 17:00:30 +01:00
|
|
|
|
{
|
2011-04-15 18:05:23 +02:00
|
|
|
|
void *val = weak[0];
|
|
|
|
|
|
void (*callback) (SCM) = weak[1];
|
2011-02-24 17:00:30 +01:00
|
|
|
|
|
2011-04-15 18:31:06 +02:00
|
|
|
|
if (!val)
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
|
|
callback (PTR2SCM (val));
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_GC_SET_START_CALLBACK
|
|
|
|
|
|
static void*
|
|
|
|
|
|
weak_gc_hook (void *hook_data, void *fn_data, void *data)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!weak_gc_callback (fn_data))
|
|
|
|
|
|
scm_c_hook_remove (&scm_before_gc_c_hook, weak_gc_hook, fn_data);
|
2011-02-24 17:00:30 +01:00
|
|
|
|
|
2011-04-15 18:05:23 +02:00
|
|
|
|
return NULL;
|
2011-02-24 17:00:30 +01:00
|
|
|
|
}
|
2011-04-15 18:31:06 +02:00
|
|
|
|
#else
|
|
|
|
|
|
static void
|
|
|
|
|
|
weak_gc_finalizer (void *ptr, void *data)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (weak_gc_callback (ptr))
|
|
|
|
|
|
GC_REGISTER_FINALIZER_NO_ORDER (ptr, weak_gc_finalizer, data, NULL, NULL);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|
2011-02-24 17:00:30 +01:00
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
|
scm_c_register_weak_gc_callback (SCM obj, void (*callback) (SCM))
|
|
|
|
|
|
{
|
2011-04-15 18:05:23 +02:00
|
|
|
|
void **weak = GC_MALLOC_ATOMIC (sizeof (void*) * 2);
|
2011-02-24 17:00:30 +01:00
|
|
|
|
|
2011-04-15 18:05:23 +02:00
|
|
|
|
weak[0] = SCM2PTR (obj);
|
|
|
|
|
|
weak[1] = (void*)callback;
|
2011-02-24 17:00:30 +01:00
|
|
|
|
GC_GENERAL_REGISTER_DISAPPEARING_LINK (weak, SCM2PTR (obj));
|
|
|
|
|
|
|
2011-04-15 18:31:06 +02:00
|
|
|
|
#ifdef HAVE_GC_SET_START_CALLBACK
|
|
|
|
|
|
scm_c_hook_add (&scm_before_gc_c_hook, weak_gc_hook, weak, 0);
|
|
|
|
|
|
#else
|
|
|
|
|
|
GC_REGISTER_FINALIZER_NO_ORDER (weak, weak_gc_finalizer, NULL, NULL, NULL);
|
|
|
|
|
|
#endif
|
2011-02-24 17:00:30 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
SCM_DEFINE (scm_make_weak_key_hash_table, "make-weak-key-hash-table", 0, 1, 0,
|
|
|
|
|
|
(SCM n),
|
|
|
|
|
|
"@deffnx {Scheme Procedure} make-weak-value-hash-table size\n"
|
|
|
|
|
|
"@deffnx {Scheme Procedure} make-doubly-weak-hash-table size\n"
|
2005-03-29 17:47:39 +00:00
|
|
|
|
"Return a weak hash table with @var{size} buckets.\n"
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
"\n"
|
|
|
|
|
|
"You can modify weak hash tables in exactly the same way you\n"
|
|
|
|
|
|
"would modify regular hash tables. (@pxref{Hash Tables})")
|
|
|
|
|
|
#define FUNC_NAME s_scm_make_weak_key_hash_table
|
2003-02-11 13:49:32 +00:00
|
|
|
|
{
|
2011-02-25 10:48:35 +01:00
|
|
|
|
SCM ret;
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
if (SCM_UNBNDP (n))
|
2011-02-25 10:48:35 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CAR, 0, FUNC_NAME);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
else
|
2011-02-25 10:48:35 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CAR,
|
|
|
|
|
|
scm_to_ulong (n), FUNC_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
scm_c_register_weak_gc_callback (ret, vacuum_weak_hash_table);
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_make_weak_value_hash_table, "make-weak-value-hash-table", 0, 1, 0,
|
|
|
|
|
|
(SCM n),
|
|
|
|
|
|
"Return a hash table with weak values with @var{size} buckets.\n"
|
|
|
|
|
|
"(@pxref{Hash Tables})")
|
|
|
|
|
|
#define FUNC_NAME s_scm_make_weak_value_hash_table
|
|
|
|
|
|
{
|
2011-02-24 17:00:30 +01:00
|
|
|
|
SCM ret;
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
if (SCM_UNBNDP (n))
|
2011-02-24 17:00:30 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CDR, 0, FUNC_NAME);
|
2003-02-11 13:49:32 +00:00
|
|
|
|
else
|
2011-02-24 17:00:30 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CDR,
|
|
|
|
|
|
scm_to_ulong (n), FUNC_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
scm_c_register_weak_gc_callback (ret, vacuum_weak_hash_table);
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
2003-02-11 13:49:32 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_make_doubly_weak_hash_table, "make-doubly-weak-hash-table", 1, 0, 0,
|
|
|
|
|
|
(SCM n),
|
|
|
|
|
|
"Return a hash table with weak keys and values with @var{size}\n"
|
|
|
|
|
|
"buckets. (@pxref{Hash Tables})")
|
|
|
|
|
|
#define FUNC_NAME s_scm_make_doubly_weak_hash_table
|
|
|
|
|
|
{
|
2011-02-24 17:00:30 +01:00
|
|
|
|
SCM ret;
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
if (SCM_UNBNDP (n))
|
2011-02-24 17:00:30 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CAR | SCM_HASHTABLEF_WEAK_CDR,
|
|
|
|
|
|
0, FUNC_NAME);
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
else
|
2011-02-24 17:00:30 +01:00
|
|
|
|
ret = make_hash_table (SCM_HASHTABLEF_WEAK_CAR | SCM_HASHTABLEF_WEAK_CDR,
|
|
|
|
|
|
scm_to_ulong (n), FUNC_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
scm_c_register_weak_gc_callback (ret, vacuum_weak_hash_table);
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
2003-02-11 13:49:32 +00:00
|
|
|
|
}
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_hash_table_p, "hash-table?", 1, 0, 0,
|
|
|
|
|
|
(SCM obj),
|
2005-03-29 17:47:39 +00:00
|
|
|
|
"Return @code{#t} if @var{obj} is an abstract hash table object.")
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_table_p
|
|
|
|
|
|
{
|
2004-07-06 10:59:25 +00:00
|
|
|
|
return scm_from_bool (SCM_HASHTABLE_P (obj));
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_weak_key_hash_table_p, "weak-key-hash-table?", 1, 0, 0,
|
|
|
|
|
|
(SCM obj),
|
|
|
|
|
|
"@deffnx {Scheme Procedure} weak-value-hash-table? obj\n"
|
|
|
|
|
|
"@deffnx {Scheme Procedure} doubly-weak-hash-table? obj\n"
|
|
|
|
|
|
"Return @code{#t} if @var{obj} is the specified weak hash\n"
|
|
|
|
|
|
"table. Note that a doubly weak hash table is neither a weak key\n"
|
|
|
|
|
|
"nor a weak value hash table.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_weak_key_hash_table_p
|
|
|
|
|
|
{
|
2004-07-06 10:59:25 +00:00
|
|
|
|
return scm_from_bool (SCM_HASHTABLE_P (obj) && SCM_HASHTABLE_WEAK_KEY_P (obj));
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_weak_value_hash_table_p, "weak-value-hash-table?", 1, 0, 0,
|
|
|
|
|
|
(SCM obj),
|
|
|
|
|
|
"Return @code{#t} if @var{obj} is a weak value hash table.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_weak_value_hash_table_p
|
|
|
|
|
|
{
|
2004-07-06 10:59:25 +00:00
|
|
|
|
return scm_from_bool (SCM_HASHTABLE_P (obj) && SCM_HASHTABLE_WEAK_VALUE_P (obj));
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_doubly_weak_hash_table_p, "doubly-weak-hash-table?", 1, 0, 0,
|
|
|
|
|
|
(SCM obj),
|
|
|
|
|
|
"Return @code{#t} if @var{obj} is a doubly weak hash table.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_doubly_weak_hash_table_p
|
|
|
|
|
|
{
|
2004-07-06 10:59:25 +00:00
|
|
|
|
return scm_from_bool (SCM_HASHTABLE_P (obj) && SCM_HASHTABLE_DOUBLY_WEAK_P (obj));
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
|
|
|
|
|
|
/* Accessing hash table entries. */
|
2001-03-30 15:03:23 +00:00
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
SCM
|
2009-10-20 00:10:18 +02:00
|
|
|
|
scm_hash_fn_get_handle (SCM table, SCM obj,
|
|
|
|
|
|
scm_t_hash_fn hash_fn, scm_t_assoc_fn assoc_fn,
|
|
|
|
|
|
void * closure)
|
2001-03-30 15:03:23 +00:00
|
|
|
|
#define FUNC_NAME "scm_hash_fn_get_handle"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-05-26 20:51:22 +00:00
|
|
|
|
unsigned long k;
|
2009-10-30 11:31:51 +01:00
|
|
|
|
SCM buckets, h;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (SCM_ARG1, table);
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
2006-04-09 16:13:22 +00:00
|
|
|
|
|
|
|
|
|
|
if (SCM_SIMPLE_VECTOR_LENGTH (buckets) == 0)
|
2001-03-30 15:03:23 +00:00
|
|
|
|
return SCM_BOOL_F;
|
2006-04-09 16:13:22 +00:00
|
|
|
|
k = hash_fn (obj, SCM_SIMPLE_VECTOR_LENGTH (buckets), closure);
|
|
|
|
|
|
if (k >= SCM_SIMPLE_VECTOR_LENGTH (buckets))
|
2011-01-07 07:44:27 -08:00
|
|
|
|
scm_out_of_range (FUNC_NAME, scm_from_ulong (k));
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table))
|
2009-10-30 11:31:51 +01:00
|
|
|
|
h = weak_bucket_assoc (table, buckets, k, hash_fn,
|
|
|
|
|
|
assoc_fn, obj, closure);
|
|
|
|
|
|
else
|
|
|
|
|
|
h = assoc_fn (obj, SCM_SIMPLE_VECTOR_REF (buckets, k), closure);
|
2006-04-09 16:13:01 +00:00
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
return h;
|
|
|
|
|
|
}
|
2001-03-30 15:03:23 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2011-01-07 08:36:39 -08:00
|
|
|
|
/* This procedure implements three optimizations, with respect to the
|
|
|
|
|
|
raw get_handle():
|
|
|
|
|
|
|
|
|
|
|
|
1. For weak tables, it's assumed that calling the predicate in the
|
|
|
|
|
|
allocation lock is safe. In practice this means that the predicate
|
|
|
|
|
|
cannot call arbitrary scheme functions.
|
|
|
|
|
|
|
|
|
|
|
|
2. We don't check for overflow / underflow and rehash.
|
|
|
|
|
|
|
|
|
|
|
|
3. We don't actually have to allocate a key -- instead we get the
|
|
|
|
|
|
hash value directly. This is useful for, for example, looking up
|
|
|
|
|
|
strings in the symbol table.
|
|
|
|
|
|
*/
|
|
|
|
|
|
SCM
|
|
|
|
|
|
scm_hash_fn_get_handle_by_hash (SCM table, unsigned long raw_hash,
|
|
|
|
|
|
scm_t_hash_predicate_fn predicate_fn,
|
|
|
|
|
|
void *closure)
|
|
|
|
|
|
#define FUNC_NAME "scm_hash_fn_ref_by_hash"
|
|
|
|
|
|
{
|
|
|
|
|
|
unsigned long k;
|
|
|
|
|
|
SCM buckets, alist, h = SCM_BOOL_F;
|
|
|
|
|
|
|
|
|
|
|
|
SCM_VALIDATE_HASHTABLE (SCM_ARG1, table);
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_SIMPLE_VECTOR_LENGTH (buckets) == 0)
|
|
|
|
|
|
return SCM_BOOL_F;
|
|
|
|
|
|
|
|
|
|
|
|
k = raw_hash % SCM_SIMPLE_VECTOR_LENGTH (buckets);
|
|
|
|
|
|
alist = SCM_SIMPLE_VECTOR_REF (buckets, k);
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table))
|
|
|
|
|
|
{
|
|
|
|
|
|
struct assoc_by_hash_data args;
|
|
|
|
|
|
|
|
|
|
|
|
args.alist = alist;
|
|
|
|
|
|
args.ret = SCM_BOOL_F;
|
|
|
|
|
|
args.predicate = predicate_fn;
|
|
|
|
|
|
args.closure = closure;
|
|
|
|
|
|
GC_call_with_alloc_lock (weak_bucket_assoc_by_hash, &args);
|
|
|
|
|
|
h = args.ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
for (; scm_is_pair (alist); alist = SCM_CDR (alist))
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM pair = SCM_CAR (alist);
|
|
|
|
|
|
if (predicate_fn (SCM_CAR (pair), closure))
|
|
|
|
|
|
{
|
|
|
|
|
|
h = pair;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return h;
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
SCM
|
2009-10-26 23:38:13 +01:00
|
|
|
|
scm_hash_fn_create_handle_x (SCM table, SCM obj, SCM init,
|
|
|
|
|
|
scm_t_hash_fn hash_fn, scm_t_assoc_fn assoc_fn,
|
|
|
|
|
|
void * closure)
|
2000-07-07 15:28:56 +00:00
|
|
|
|
#define FUNC_NAME "scm_hash_fn_create_handle_x"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-05-26 20:51:22 +00:00
|
|
|
|
unsigned long k;
|
2009-10-30 11:31:51 +01:00
|
|
|
|
SCM buckets, it;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (SCM_ARG1, table);
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
|
|
|
|
|
|
2005-01-02 20:11:15 +00:00
|
|
|
|
if (SCM_SIMPLE_VECTOR_LENGTH (buckets) == 0)
|
2000-07-07 15:28:56 +00:00
|
|
|
|
SCM_MISC_ERROR ("void hashtable", SCM_EOL);
|
|
|
|
|
|
|
2005-01-02 20:11:15 +00:00
|
|
|
|
k = hash_fn (obj, SCM_SIMPLE_VECTOR_LENGTH (buckets), closure);
|
|
|
|
|
|
if (k >= SCM_SIMPLE_VECTOR_LENGTH (buckets))
|
* numbers.h, numbers.c, discouraged.h, discouraged.c (scm_short2num,
scm_ushort2num, scm_int2num, scm_uint2num, scm_long2num,
scm_ulong2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
scm_num2ushort, scm_num2int, scm_num2uint, scm_num2long,
scm_num2ulong, scm_num2size, scm_num2ptrdiff, scm_long_long2num,
scm_ulong_long2num, scm_num2long_long, scm_num2ulong_long):
Discouraged by moving to discouraged.h and discouraged.c and
reimplementing in terms of scm_from_* and scm_to_*. Changed all uses
to the new scm_from_* and scm_to_* functions.
2004-08-02 16:14:04 +00:00
|
|
|
|
scm_out_of_range ("hash_fn_create_handle_x", scm_from_ulong (k));
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table))
|
2009-10-30 11:31:51 +01:00
|
|
|
|
it = weak_bucket_assoc (table, buckets, k, hash_fn,
|
|
|
|
|
|
assoc_fn, obj, closure);
|
|
|
|
|
|
else
|
|
|
|
|
|
it = assoc_fn (obj, SCM_SIMPLE_VECTOR_REF (buckets, k), closure);
|
2006-04-09 16:13:01 +00:00
|
|
|
|
|
2008-09-10 23:51:21 +02:00
|
|
|
|
if (scm_is_pair (it))
|
2003-02-13 10:42:59 +00:00
|
|
|
|
return it;
|
2008-01-18 23:33:41 +00:00
|
|
|
|
else if (scm_is_true (it))
|
|
|
|
|
|
scm_wrong_type_arg_msg (NULL, 0, it, "a pair");
|
2001-10-08 21:23:00 +00:00
|
|
|
|
else
|
|
|
|
|
|
{
|
2005-02-25 22:35:26 +00:00
|
|
|
|
/* When this is a weak hashtable, running the GC can change it.
|
|
|
|
|
|
Thus, we must allocate the new cells first and can only then
|
|
|
|
|
|
access BUCKETS. Also, we need to fetch the bucket vector
|
|
|
|
|
|
again since the hashtable might have been rehashed. This
|
|
|
|
|
|
necessitates a new hash value as well.
|
2005-02-23 17:24:19 +00:00
|
|
|
|
*/
|
2006-04-04 21:28:13 +00:00
|
|
|
|
SCM handle, new_bucket;
|
|
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table))
|
2006-04-04 21:28:13 +00:00
|
|
|
|
{
|
2006-05-09 22:11:09 +00:00
|
|
|
|
/* FIXME: We don't support weak alist vectors. */
|
2006-04-04 21:28:13 +00:00
|
|
|
|
/* Use a weak cell. */
|
|
|
|
|
|
if (SCM_HASHTABLE_DOUBLY_WEAK_P (table))
|
2006-06-25 22:42:19 +00:00
|
|
|
|
handle = scm_doubly_weak_pair (obj, init);
|
2006-04-04 21:28:13 +00:00
|
|
|
|
else if (SCM_HASHTABLE_WEAK_KEY_P (table))
|
2006-06-25 22:42:19 +00:00
|
|
|
|
handle = scm_weak_car_pair (obj, init);
|
2006-04-04 21:28:13 +00:00
|
|
|
|
else
|
2006-06-25 22:42:19 +00:00
|
|
|
|
handle = scm_weak_cdr_pair (obj, init);
|
2006-04-04 21:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
/* Use a regular, non-weak cell. */
|
|
|
|
|
|
handle = scm_cons (obj, init);
|
|
|
|
|
|
|
|
|
|
|
|
new_bucket = scm_cons (handle, SCM_EOL);
|
|
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (!scm_is_eq (SCM_HASHTABLE_VECTOR (table), buckets))
|
2005-02-25 22:35:26 +00:00
|
|
|
|
{
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
|
|
|
|
|
k = hash_fn (obj, SCM_SIMPLE_VECTOR_LENGTH (buckets), closure);
|
|
|
|
|
|
if (k >= SCM_SIMPLE_VECTOR_LENGTH (buckets))
|
|
|
|
|
|
scm_out_of_range ("hash_fn_create_handle_x", scm_from_ulong (k));
|
|
|
|
|
|
}
|
2005-02-23 17:24:19 +00:00
|
|
|
|
SCM_SETCDR (new_bucket, SCM_SIMPLE_VECTOR_REF (buckets, k));
|
2005-01-02 20:11:15 +00:00
|
|
|
|
SCM_SIMPLE_VECTOR_SET (buckets, k, new_bucket);
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_HASHTABLE_INCREMENT (table);
|
2011-02-23 11:59:38 +01:00
|
|
|
|
|
2011-02-24 17:00:30 +01:00
|
|
|
|
/* Maybe rehash the table. */
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (SCM_HASHTABLE_N_ITEMS (table) < SCM_HASHTABLE_LOWER (table)
|
|
|
|
|
|
|| SCM_HASHTABLE_N_ITEMS (table) > SCM_HASHTABLE_UPPER (table))
|
|
|
|
|
|
scm_i_rehash (table, hash_fn, closure, FUNC_NAME);
|
2001-10-08 21:23:00 +00:00
|
|
|
|
return SCM_CAR (new_bucket);
|
|
|
|
|
|
}
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
2000-07-07 15:28:56 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
chars.c, chars.h, continuations.c, continuations.h, debug.c,
debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
declare functions with prototypes. (Patch thanks to Marius
Vollmer.)
1996-10-14 01:33:50 +00:00
|
|
|
|
|
2009-10-26 23:38:13 +01:00
|
|
|
|
SCM
|
|
|
|
|
|
scm_hash_fn_ref (SCM table, SCM obj, SCM dflt,
|
|
|
|
|
|
scm_t_hash_fn hash_fn, scm_t_assoc_fn assoc_fn,
|
|
|
|
|
|
void *closure)
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-03-30 15:03:23 +00:00
|
|
|
|
SCM it = scm_hash_fn_get_handle (table, obj, hash_fn, assoc_fn, closure);
|
2004-09-22 17:41:37 +00:00
|
|
|
|
if (scm_is_pair (it))
|
1996-07-25 22:56:11 +00:00
|
|
|
|
return SCM_CDR (it);
|
2001-03-30 15:03:23 +00:00
|
|
|
|
else
|
|
|
|
|
|
return dflt;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
chars.c, chars.h, continuations.c, continuations.h, debug.c,
debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
declare functions with prototypes. (Patch thanks to Marius
Vollmer.)
1996-10-14 01:33:50 +00:00
|
|
|
|
|
2011-05-01 18:01:42 +02:00
|
|
|
|
struct set_weak_cdr_data
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM pair;
|
|
|
|
|
|
SCM new_val;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void*
|
|
|
|
|
|
set_weak_cdr (void *data)
|
|
|
|
|
|
{
|
|
|
|
|
|
struct set_weak_cdr_data *d = data;
|
|
|
|
|
|
|
|
|
|
|
|
if (SCM_NIMP (SCM_WEAK_PAIR_CDR (d->pair)) && !SCM_NIMP (d->new_val))
|
|
|
|
|
|
{
|
2011-05-13 13:18:11 +02:00
|
|
|
|
GC_unregister_disappearing_link ((GC_PTR) SCM_CDRLOC (d->pair));
|
2011-05-01 18:01:42 +02:00
|
|
|
|
SCM_SETCDR (d->pair, d->new_val);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM_SETCDR (d->pair, d->new_val);
|
2011-05-13 13:18:11 +02:00
|
|
|
|
SCM_I_REGISTER_DISAPPEARING_LINK ((GC_PTR) SCM_CDRLOC (d->pair),
|
|
|
|
|
|
(GC_PTR) SCM2PTR (d->new_val));
|
2011-05-01 18:01:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-10-26 23:38:13 +01:00
|
|
|
|
SCM
|
|
|
|
|
|
scm_hash_fn_set_x (SCM table, SCM obj, SCM val,
|
|
|
|
|
|
scm_t_hash_fn hash_fn, scm_t_assoc_fn assoc_fn,
|
|
|
|
|
|
void *closure)
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 18:01:42 +02:00
|
|
|
|
SCM pair;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2011-05-01 18:01:42 +02:00
|
|
|
|
pair = scm_hash_fn_create_handle_x (table, obj, val,
|
|
|
|
|
|
hash_fn, assoc_fn, closure);
|
2010-09-23 11:51:28 +02:00
|
|
|
|
|
2011-05-01 18:01:42 +02:00
|
|
|
|
if (SCM_UNLIKELY (!scm_is_eq (SCM_CDR (pair), val)))
|
|
|
|
|
|
{
|
|
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_WEAK_VALUE_P (table)))
|
|
|
|
|
|
{
|
|
|
|
|
|
struct set_weak_cdr_data data;
|
2010-09-23 11:51:28 +02:00
|
|
|
|
|
2011-05-01 18:01:42 +02:00
|
|
|
|
data.pair = pair;
|
|
|
|
|
|
data.new_val = val;
|
|
|
|
|
|
|
|
|
|
|
|
GC_call_with_alloc_lock (set_weak_cdr, &data);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
SCM_SETCDR (pair, val);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
return val;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-04-09 16:13:22 +00:00
|
|
|
|
SCM
|
2005-03-29 17:47:39 +00:00
|
|
|
|
scm_hash_fn_remove_x (SCM table, SCM obj,
|
2009-10-26 23:38:13 +01:00
|
|
|
|
scm_t_hash_fn hash_fn,
|
|
|
|
|
|
scm_t_assoc_fn assoc_fn,
|
2005-03-29 17:47:39 +00:00
|
|
|
|
void *closure)
|
2011-01-07 07:44:27 -08:00
|
|
|
|
#define FUNC_NAME "hash_fn_remove_x"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-05-26 20:51:22 +00:00
|
|
|
|
unsigned long k;
|
2009-10-30 11:31:51 +01:00
|
|
|
|
SCM buckets, h;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (SCM_ARG1, table);
|
|
|
|
|
|
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
|
|
|
|
|
|
2009-12-05 10:07:07 +01:00
|
|
|
|
if (SCM_SIMPLE_VECTOR_LENGTH (buckets) == 0)
|
1996-07-25 22:56:11 +00:00
|
|
|
|
return SCM_EOL;
|
2003-02-12 09:55:10 +00:00
|
|
|
|
|
2005-01-02 20:11:15 +00:00
|
|
|
|
k = hash_fn (obj, SCM_SIMPLE_VECTOR_LENGTH (buckets), closure);
|
|
|
|
|
|
if (k >= SCM_SIMPLE_VECTOR_LENGTH (buckets))
|
2011-01-07 07:44:27 -08:00
|
|
|
|
scm_out_of_range (FUNC_NAME, scm_from_ulong (k));
|
2006-04-04 21:28:13 +00:00
|
|
|
|
|
2011-01-07 07:44:27 -08:00
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table))
|
2009-10-30 11:31:51 +01:00
|
|
|
|
h = weak_bucket_assoc (table, buckets, k, hash_fn,
|
|
|
|
|
|
assoc_fn, obj, closure);
|
|
|
|
|
|
else
|
|
|
|
|
|
h = assoc_fn (obj, SCM_SIMPLE_VECTOR_REF (buckets, k), closure);
|
2006-04-09 16:13:01 +00:00
|
|
|
|
|
2004-07-06 10:59:25 +00:00
|
|
|
|
if (scm_is_true (h))
|
2003-02-12 09:55:10 +00:00
|
|
|
|
{
|
2005-01-02 20:11:15 +00:00
|
|
|
|
SCM_SIMPLE_VECTOR_SET
|
2005-03-29 17:47:39 +00:00
|
|
|
|
(buckets, k, scm_delq_x (h, SCM_SIMPLE_VECTOR_REF (buckets, k)));
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_HASHTABLE_DECREMENT (table);
|
|
|
|
|
|
if (SCM_HASHTABLE_N_ITEMS (table) < SCM_HASHTABLE_LOWER (table))
|
|
|
|
|
|
scm_i_rehash (table, hash_fn, closure, FUNC_NAME);
|
2003-02-12 09:55:10 +00:00
|
|
|
|
}
|
1996-07-25 22:56:11 +00:00
|
|
|
|
return h;
|
|
|
|
|
|
}
|
2011-01-07 07:44:27 -08:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_clear_x, "hash-clear!", 1, 0, 0,
|
|
|
|
|
|
(SCM table),
|
2005-03-29 17:47:39 +00:00
|
|
|
|
"Remove all items from @var{table} (without triggering a resize).")
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_clear_x
|
|
|
|
|
|
{
|
2011-01-07 07:44:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (SCM_ARG1, table);
|
|
|
|
|
|
|
|
|
|
|
|
scm_vector_fill_x (SCM_HASHTABLE_VECTOR (table), SCM_EOL);
|
|
|
|
|
|
SCM_SET_HASHTABLE_N_ITEMS (table, 0);
|
|
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
return SCM_UNSPECIFIED;
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashq_get_handle, "hashq-get-handle", 2, 0, 0,
|
2001-03-30 15:03:23 +00:00
|
|
|
|
(SCM table, SCM key),
|
|
|
|
|
|
"This procedure returns the @code{(key . value)} pair from the\n"
|
|
|
|
|
|
"hash table @var{table}. If @var{table} does not hold an\n"
|
|
|
|
|
|
"associated value for @var{key}, @code{#f} is returned.\n"
|
|
|
|
|
|
"Uses @code{eq?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashq_get_handle
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_get_handle (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashq,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assq,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashq_create_handle_x, "hashq-create-handle!", 3, 0, 0,
|
2000-03-02 23:41:22 +00:00
|
|
|
|
(SCM table, SCM key, SCM init),
|
|
|
|
|
|
"This function looks up @var{key} in @var{table} and returns its handle.\n"
|
* alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
weaks.c: Converted docstrings to ANSI C format.
2000-01-18 11:24:03 +00:00
|
|
|
|
"If @var{key} is not already present, a new handle is created which\n"
|
|
|
|
|
|
"associates @var{key} with @var{init}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashq_create_handle_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_create_handle_x (table, key, init,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashq,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assq,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashq_ref, "hashq-ref", 2, 1, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM dflt),
|
* alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
weaks.c: Converted docstrings to ANSI C format.
2000-01-18 11:24:03 +00:00
|
|
|
|
"Look up @var{key} in the hash table @var{table}, and return the\n"
|
|
|
|
|
|
"value (if any) associated with it. If @var{key} is not found,\n"
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"return @var{default} (or @code{#f} if no @var{default} argument\n"
|
|
|
|
|
|
"is supplied). Uses @code{eq?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashq_ref
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2000-04-03 08:47:51 +00:00
|
|
|
|
if (SCM_UNBNDP (dflt))
|
1996-07-25 22:56:11 +00:00
|
|
|
|
dflt = SCM_BOOL_F;
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_ref (table, key, dflt,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashq,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assq,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashq_set_x, "hashq-set!", 3, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM val),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Find the entry in @var{table} associated with @var{key}, and\n"
|
|
|
|
|
|
"store @var{value} there. Uses @code{eq?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashq_set_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_set_x (table, key, val,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashq,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assq,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashq_remove_x, "hashq-remove!", 2, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Remove @var{key} (and any value associated with it) from\n"
|
|
|
|
|
|
"@var{table}. Uses @code{eq?} for equality tests.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashq_remove_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_remove_x (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashq,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assq,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashv_get_handle, "hashv-get-handle", 2, 0, 0,
|
2001-03-30 15:03:23 +00:00
|
|
|
|
(SCM table, SCM key),
|
|
|
|
|
|
"This procedure returns the @code{(key . value)} pair from the\n"
|
|
|
|
|
|
"hash table @var{table}. If @var{table} does not hold an\n"
|
|
|
|
|
|
"associated value for @var{key}, @code{#f} is returned.\n"
|
|
|
|
|
|
"Uses @code{eqv?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashv_get_handle
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_get_handle (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashv,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assv,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashv_create_handle_x, "hashv-create-handle!", 3, 0, 0,
|
2000-03-02 23:41:22 +00:00
|
|
|
|
(SCM table, SCM key, SCM init),
|
|
|
|
|
|
"This function looks up @var{key} in @var{table} and returns its handle.\n"
|
|
|
|
|
|
"If @var{key} is not already present, a new handle is created which\n"
|
|
|
|
|
|
"associates @var{key} with @var{init}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashv_create_handle_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_create_handle_x (table, key, init,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashv,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assv,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashv_ref, "hashv-ref", 2, 1, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM dflt),
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"Look up @var{key} in the hash table @var{table}, and return the\n"
|
|
|
|
|
|
"value (if any) associated with it. If @var{key} is not found,\n"
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"return @var{default} (or @code{#f} if no @var{default} argument\n"
|
|
|
|
|
|
"is supplied). Uses @code{eqv?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashv_ref
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2000-04-03 08:47:51 +00:00
|
|
|
|
if (SCM_UNBNDP (dflt))
|
1996-07-25 22:56:11 +00:00
|
|
|
|
dflt = SCM_BOOL_F;
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_ref (table, key, dflt,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashv,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assv,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashv_set_x, "hashv-set!", 3, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM val),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Find the entry in @var{table} associated with @var{key}, and\n"
|
|
|
|
|
|
"store @var{value} there. Uses @code{eqv?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashv_set_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_set_x (table, key, val,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashv,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assv,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashv_remove_x, "hashv-remove!", 2, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Remove @var{key} (and any value associated with it) from\n"
|
|
|
|
|
|
"@var{table}. Uses @code{eqv?} for equality tests.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashv_remove_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_remove_x (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihashv,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assv,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_get_handle, "hash-get-handle", 2, 0, 0,
|
2001-03-30 15:03:23 +00:00
|
|
|
|
(SCM table, SCM key),
|
|
|
|
|
|
"This procedure returns the @code{(key . value)} pair from the\n"
|
|
|
|
|
|
"hash table @var{table}. If @var{table} does not hold an\n"
|
|
|
|
|
|
"associated value for @var{key}, @code{#f} is returned.\n"
|
|
|
|
|
|
"Uses @code{equal?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_get_handle
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_get_handle (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihash,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assoc,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_create_handle_x, "hash-create-handle!", 3, 0, 0,
|
2000-03-02 23:41:22 +00:00
|
|
|
|
(SCM table, SCM key, SCM init),
|
|
|
|
|
|
"This function looks up @var{key} in @var{table} and returns its handle.\n"
|
|
|
|
|
|
"If @var{key} is not already present, a new handle is created which\n"
|
|
|
|
|
|
"associates @var{key} with @var{init}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_create_handle_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_create_handle_x (table, key, init,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihash,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assoc,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_ref, "hash-ref", 2, 1, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM dflt),
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"Look up @var{key} in the hash table @var{table}, and return the\n"
|
|
|
|
|
|
"value (if any) associated with it. If @var{key} is not found,\n"
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"return @var{default} (or @code{#f} if no @var{default} argument\n"
|
|
|
|
|
|
"is supplied). Uses @code{equal?} for equality testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_ref
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2000-04-03 08:47:51 +00:00
|
|
|
|
if (SCM_UNBNDP (dflt))
|
1996-07-25 22:56:11 +00:00
|
|
|
|
dflt = SCM_BOOL_F;
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_ref (table, key, dflt,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihash,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assoc,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_set_x, "hash-set!", 3, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key, SCM val),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Find the entry in @var{table} associated with @var{key}, and\n"
|
|
|
|
|
|
"store @var{value} there. Uses @code{equal?} for equality\n"
|
|
|
|
|
|
"testing.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_set_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_set_x (table, key, val,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihash,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assoc,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hash_remove_x, "hash-remove!", 2, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM table, SCM key),
|
* list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
(scm_length, scm_append, scm_reverse, scm_list_ref),
(scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
(scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
(scm_delete1_x), gc.c (scm_map_free_list),
(scm_free_list_length), hash.c (scm_hashq, scm_hashv),
(scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
(scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
(scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
(scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
(scm_current_pstate), scmsigs.c (scm_usleep), goops.c
(scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
* weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
(scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
symbols.c (scm_symbol_interned_p), numbers.c
(scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
markup.
2001-03-16 10:00:17 +00:00
|
|
|
|
"Remove @var{key} (and any value associated with it) from\n"
|
|
|
|
|
|
"@var{table}. Uses @code{equal?} for equality tests.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hash_remove_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
return scm_hash_fn_remove_x (table, key,
|
|
|
|
|
|
(scm_t_hash_fn) scm_ihash,
|
|
|
|
|
|
(scm_t_assoc_fn) scm_sloppy_assoc,
|
|
|
|
|
|
0);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-06-14 19:50:43 +00:00
|
|
|
|
typedef struct scm_t_ihashx_closure
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
|
|
|
|
|
SCM hash;
|
|
|
|
|
|
SCM assoc;
|
2001-06-14 19:50:43 +00:00
|
|
|
|
} scm_t_ihashx_closure;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
chars.c, chars.h, continuations.c, continuations.h, debug.c,
debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
declare functions with prototypes. (Patch thanks to Marius
Vollmer.)
1996-10-14 01:33:50 +00:00
|
|
|
|
|
2001-05-26 20:51:22 +00:00
|
|
|
|
static unsigned long
|
2009-10-20 00:10:18 +02:00
|
|
|
|
scm_ihashx (SCM obj, unsigned long n, void *arg)
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
SCM answer;
|
|
|
|
|
|
scm_t_ihashx_closure *closure = (scm_t_ihashx_closure *) arg;
|
|
|
|
|
|
answer = scm_call_2 (closure->hash, obj, scm_from_ulong (n));
|
* validate.h, deprecated.h (SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY,
SCM_VALIDATE_BIGINT, SCM_VALIDATE_INUM_MIN,
SCM_VALIDATE_INUM_MIN_COPY,
SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
SCM_VALIDATE_INUM_RANGE_COPY): Deprecated because they make the
fixnum/bignum distinction visible. Changed all uses to scm_to_size_t
or similar.
2004-07-10 14:35:36 +00:00
|
|
|
|
return scm_to_ulong (answer);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
chars.c, chars.h, continuations.c, continuations.h, debug.c,
debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
declare functions with prototypes. (Patch thanks to Marius
Vollmer.)
1996-10-14 01:33:50 +00:00
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
static SCM
|
2009-10-20 00:10:18 +02:00
|
|
|
|
scm_sloppy_assx (SCM obj, SCM alist, void *arg)
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2009-10-20 00:10:18 +02:00
|
|
|
|
scm_t_ihashx_closure *closure = (scm_t_ihashx_closure *) arg;
|
2003-02-12 09:55:10 +00:00
|
|
|
|
return scm_call_2 (closure->assoc, obj, alist);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashx_get_handle, "hashx-get-handle", 4, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM hash, SCM assoc, SCM table, SCM key),
|
|
|
|
|
|
"This behaves the same way as the corresponding\n"
|
|
|
|
|
|
"@code{-get-handle} function, but uses @var{hash} as a hash\n"
|
|
|
|
|
|
"function and @var{assoc} to compare keys. @code{hash} must be\n"
|
|
|
|
|
|
"a function that takes two arguments, a key to be hashed and a\n"
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"table size. @code{assoc} must be an associator function, like\n"
|
|
|
|
|
|
"@code{assoc}, @code{assq} or @code{assv}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashx_get_handle
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-06-14 19:50:43 +00:00
|
|
|
|
scm_t_ihashx_closure closure;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
closure.hash = hash;
|
|
|
|
|
|
closure.assoc = assoc;
|
2011-05-01 20:34:47 +02:00
|
|
|
|
|
|
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2001-04-03 13:19:05 +00:00
|
|
|
|
return scm_hash_fn_get_handle (table, key, scm_ihashx, scm_sloppy_assx,
|
2003-02-12 09:55:10 +00:00
|
|
|
|
(void *) &closure);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashx_create_handle_x, "hashx-create-handle!", 5, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM hash, SCM assoc, SCM table, SCM key, SCM init),
|
|
|
|
|
|
"This behaves the same way as the corresponding\n"
|
|
|
|
|
|
"@code{-create-handle} function, but uses @var{hash} as a hash\n"
|
|
|
|
|
|
"function and @var{assoc} to compare keys. @code{hash} must be\n"
|
|
|
|
|
|
"a function that takes two arguments, a key to be hashed and a\n"
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"table size. @code{assoc} must be an associator function, like\n"
|
|
|
|
|
|
"@code{assoc}, @code{assq} or @code{assv}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashx_create_handle_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-06-14 19:50:43 +00:00
|
|
|
|
scm_t_ihashx_closure closure;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
closure.hash = hash;
|
|
|
|
|
|
closure.assoc = assoc;
|
2011-05-01 20:34:47 +02:00
|
|
|
|
|
|
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_P (table) && SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2001-04-03 13:19:05 +00:00
|
|
|
|
return scm_hash_fn_create_handle_x (table, key, init, scm_ihashx,
|
|
|
|
|
|
scm_sloppy_assx, (void *)&closure);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashx_ref, "hashx-ref", 4, 1, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM hash, SCM assoc, SCM table, SCM key, SCM dflt),
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"This behaves the same way as the corresponding @code{ref}\n"
|
2001-04-03 13:19:05 +00:00
|
|
|
|
"function, but uses @var{hash} as a hash function and\n"
|
|
|
|
|
|
"@var{assoc} to compare keys. @code{hash} must be a function\n"
|
|
|
|
|
|
"that takes two arguments, a key to be hashed and a table size.\n"
|
|
|
|
|
|
"@code{assoc} must be an associator function, like @code{assoc},\n"
|
|
|
|
|
|
"@code{assq} or @code{assv}.\n"
|
|
|
|
|
|
"\n"
|
|
|
|
|
|
"By way of illustration, @code{hashq-ref table key} is\n"
|
|
|
|
|
|
"equivalent to @code{hashx-ref hashq assq table key}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashx_ref
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-06-14 19:50:43 +00:00
|
|
|
|
scm_t_ihashx_closure closure;
|
2000-04-03 08:47:51 +00:00
|
|
|
|
if (SCM_UNBNDP (dflt))
|
1996-07-25 22:56:11 +00:00
|
|
|
|
dflt = SCM_BOOL_F;
|
|
|
|
|
|
closure.hash = hash;
|
|
|
|
|
|
closure.assoc = assoc;
|
2001-04-03 13:19:05 +00:00
|
|
|
|
return scm_hash_fn_ref (table, key, dflt, scm_ihashx, scm_sloppy_assx,
|
|
|
|
|
|
(void *)&closure);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-05 19:05:23 +00:00
|
|
|
|
SCM_DEFINE (scm_hashx_set_x, "hashx-set!", 5, 0, 0,
|
2001-04-03 13:19:05 +00:00
|
|
|
|
(SCM hash, SCM assoc, SCM table, SCM key, SCM val),
|
2000-03-02 23:41:22 +00:00
|
|
|
|
"This behaves the same way as the corresponding @code{set!}\n"
|
2001-04-03 13:19:05 +00:00
|
|
|
|
"function, but uses @var{hash} as a hash function and\n"
|
|
|
|
|
|
"@var{assoc} to compare keys. @code{hash} must be a function\n"
|
|
|
|
|
|
"that takes two arguments, a key to be hashed and a table size.\n"
|
|
|
|
|
|
"@code{assoc} must be an associator function, like @code{assoc},\n"
|
|
|
|
|
|
"@code{assq} or @code{assv}.\n"
|
|
|
|
|
|
"\n"
|
|
|
|
|
|
" By way of illustration, @code{hashq-set! table key} is\n"
|
|
|
|
|
|
"equivalent to @code{hashx-set! hashq assq table key}.")
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#define FUNC_NAME s_scm_hashx_set_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-06-14 19:50:43 +00:00
|
|
|
|
scm_t_ihashx_closure closure;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
closure.hash = hash;
|
|
|
|
|
|
closure.assoc = assoc;
|
2001-04-03 13:19:05 +00:00
|
|
|
|
return scm_hash_fn_set_x (table, key, val, scm_ihashx, scm_sloppy_assx,
|
|
|
|
|
|
(void *)&closure);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
1999-12-12 02:36:16 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2005-03-29 17:47:39 +00:00
|
|
|
|
SCM_DEFINE (scm_hashx_remove_x, "hashx-remove!", 4, 0, 0,
|
|
|
|
|
|
(SCM hash, SCM assoc, SCM table, SCM obj),
|
|
|
|
|
|
"This behaves the same way as the corresponding @code{remove!}\n"
|
|
|
|
|
|
"function, but uses @var{hash} as a hash function and\n"
|
|
|
|
|
|
"@var{assoc} to compare keys. @code{hash} must be a function\n"
|
|
|
|
|
|
"that takes two arguments, a key to be hashed and a table size.\n"
|
|
|
|
|
|
"@code{assoc} must be an associator function, like @code{assoc},\n"
|
|
|
|
|
|
"@code{assq} or @code{assv}.\n"
|
|
|
|
|
|
"\n"
|
|
|
|
|
|
" By way of illustration, @code{hashq-remove! table key} is\n"
|
|
|
|
|
|
"equivalent to @code{hashx-remove! hashq assq #f table key}.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_hashx_remove_x
|
1996-07-25 22:56:11 +00:00
|
|
|
|
{
|
2001-06-14 19:50:43 +00:00
|
|
|
|
scm_t_ihashx_closure closure;
|
1996-07-25 22:56:11 +00:00
|
|
|
|
closure.hash = hash;
|
|
|
|
|
|
closure.assoc = assoc;
|
2005-04-22 23:33:15 +00:00
|
|
|
|
return scm_hash_fn_remove_x (table, obj, scm_ihashx, scm_sloppy_assx,
|
|
|
|
|
|
(void *) &closure);
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
2005-03-29 17:47:39 +00:00
|
|
|
|
#undef FUNC_NAME
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
2004-02-13 23:15:37 +00:00
|
|
|
|
/* Hash table iterators */
|
1999-07-31 09:04:46 +00:00
|
|
|
|
|
2010-06-09 23:27:33 +02:00
|
|
|
|
SCM_DEFINE (scm_hash_fold, "hash-fold", 3, 0, 0,
|
|
|
|
|
|
(SCM proc, SCM init, SCM table),
|
|
|
|
|
|
"An iterator over hash-table elements.\n"
|
|
|
|
|
|
"Accumulates and returns a result by applying PROC successively.\n"
|
|
|
|
|
|
"The arguments to PROC are \"(key value prior-result)\" where key\n"
|
|
|
|
|
|
"and value are successive pairs from the hash table TABLE, and\n"
|
|
|
|
|
|
"prior-result is either INIT (for the first application of PROC)\n"
|
|
|
|
|
|
"or the return value of the previous application of PROC.\n"
|
|
|
|
|
|
"For example, @code{(hash-fold acons '() tab)} will convert a hash\n"
|
|
|
|
|
|
"table into an a-list of key-value pairs.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_hash_fold
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM_VALIDATE_PROC (1, proc);
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (3, table);
|
2010-06-09 23:27:33 +02:00
|
|
|
|
return scm_internal_hash_fold ((scm_t_hash_fold_fn) scm_call_3,
|
|
|
|
|
|
(void *) SCM_UNPACK (proc), init, table);
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
static SCM
|
|
|
|
|
|
for_each_proc (void *proc, SCM handle)
|
|
|
|
|
|
{
|
|
|
|
|
|
return scm_call_2 (SCM_PACK (proc), SCM_CAR (handle), SCM_CDR (handle));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_hash_for_each, "hash-for-each", 2, 0, 0,
|
|
|
|
|
|
(SCM proc, SCM table),
|
|
|
|
|
|
"An iterator over hash-table elements.\n"
|
|
|
|
|
|
"Applies PROC successively on all hash table items.\n"
|
|
|
|
|
|
"The arguments to PROC are \"(key value)\" where key\n"
|
|
|
|
|
|
"and value are successive pairs from the hash table TABLE.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_hash_for_each
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM_VALIDATE_PROC (1, proc);
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (2, table);
|
2010-06-09 23:27:33 +02:00
|
|
|
|
|
|
|
|
|
|
scm_internal_hash_for_each_handle (for_each_proc,
|
|
|
|
|
|
(void *) SCM_UNPACK (proc),
|
|
|
|
|
|
table);
|
|
|
|
|
|
return SCM_UNSPECIFIED;
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_hash_for_each_handle, "hash-for-each-handle", 2, 0, 0,
|
|
|
|
|
|
(SCM proc, SCM table),
|
|
|
|
|
|
"An iterator over hash-table elements.\n"
|
|
|
|
|
|
"Applies PROC successively on all hash table handles.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_hash_for_each_handle
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM_ASSERT (scm_is_true (scm_procedure_p (proc)), proc, 1, FUNC_NAME);
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (2, table);
|
2010-06-09 23:27:33 +02:00
|
|
|
|
|
2011-05-01 20:34:47 +02:00
|
|
|
|
if (SCM_UNLIKELY (SCM_HASHTABLE_WEAK_P (table)))
|
|
|
|
|
|
SCM_MISC_ERROR ("Handle access not permitted on weak table", SCM_EOL);
|
|
|
|
|
|
|
2010-06-09 23:27:33 +02:00
|
|
|
|
scm_internal_hash_for_each_handle ((scm_t_hash_handle_fn) scm_call_1,
|
|
|
|
|
|
(void *) SCM_UNPACK (proc),
|
|
|
|
|
|
table);
|
|
|
|
|
|
return SCM_UNSPECIFIED;
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
static SCM
|
|
|
|
|
|
map_proc (void *proc, SCM key, SCM data, SCM value)
|
|
|
|
|
|
{
|
|
|
|
|
|
return scm_cons (scm_call_2 (SCM_PACK (proc), key, data), value);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCM_DEFINE (scm_hash_map_to_list, "hash-map->list", 2, 0, 0,
|
|
|
|
|
|
(SCM proc, SCM table),
|
|
|
|
|
|
"An iterator over hash-table elements.\n"
|
|
|
|
|
|
"Accumulates and returns as a list the results of applying PROC successively.\n"
|
|
|
|
|
|
"The arguments to PROC are \"(key value)\" where key\n"
|
|
|
|
|
|
"and value are successive pairs from the hash table TABLE.")
|
|
|
|
|
|
#define FUNC_NAME s_scm_hash_map_to_list
|
|
|
|
|
|
{
|
|
|
|
|
|
SCM_VALIDATE_PROC (1, proc);
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (2, table);
|
2010-06-09 23:27:33 +02:00
|
|
|
|
return scm_internal_hash_fold (map_proc,
|
|
|
|
|
|
(void *) SCM_UNPACK (proc),
|
|
|
|
|
|
SCM_EOL,
|
|
|
|
|
|
table);
|
|
|
|
|
|
}
|
|
|
|
|
|
#undef FUNC_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-03-14 16:48:50 +00:00
|
|
|
|
|
|
|
|
|
|
SCM
|
2009-10-26 23:56:03 +01:00
|
|
|
|
scm_internal_hash_fold (scm_t_hash_fold_fn fn, void *closure,
|
|
|
|
|
|
SCM init, SCM table)
|
2011-01-07 22:01:27 -08:00
|
|
|
|
#define FUNC_NAME s_scm_hash_fold
|
1999-03-14 16:48:50 +00:00
|
|
|
|
{
|
2003-02-12 09:55:10 +00:00
|
|
|
|
long i, n;
|
|
|
|
|
|
SCM buckets, result = init;
|
|
|
|
|
|
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (0, table);
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
2003-02-13 10:42:59 +00:00
|
|
|
|
|
2005-01-02 20:11:15 +00:00
|
|
|
|
n = SCM_SIMPLE_VECTOR_LENGTH (buckets);
|
1999-03-14 16:48:50 +00:00
|
|
|
|
for (i = 0; i < n; ++i)
|
|
|
|
|
|
{
|
2011-05-30 11:33:10 +02:00
|
|
|
|
SCM ls, handle;
|
2006-05-09 22:11:09 +00:00
|
|
|
|
|
2011-05-30 11:33:10 +02:00
|
|
|
|
for (ls = SCM_SIMPLE_VECTOR_REF (buckets, i); !scm_is_null (ls);
|
|
|
|
|
|
ls = SCM_CDR (ls))
|
1999-03-14 16:48:50 +00:00
|
|
|
|
{
|
|
|
|
|
|
handle = SCM_CAR (ls);
|
2011-05-30 11:33:10 +02:00
|
|
|
|
|
|
|
|
|
|
if (SCM_HASHTABLE_WEAK_P (table) && SCM_WEAK_PAIR_DELETED_P (handle))
|
|
|
|
|
|
/* Don't try to unlink this weak pair, as we're not within
|
|
|
|
|
|
the allocation lock. Instead rely on
|
|
|
|
|
|
vacuum_weak_hash_table to do its job. */
|
|
|
|
|
|
continue;
|
|
|
|
|
|
else
|
|
|
|
|
|
result = fn (closure, SCM_CAR (handle), SCM_CDR (handle), result);
|
1999-03-14 16:48:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2003-02-12 09:55:10 +00:00
|
|
|
|
|
1999-03-14 16:48:50 +00:00
|
|
|
|
return result;
|
|
|
|
|
|
}
|
2011-01-07 22:01:27 -08:00
|
|
|
|
#undef FUNC_NAME
|
1999-03-14 16:48:50 +00:00
|
|
|
|
|
2004-02-13 23:15:37 +00:00
|
|
|
|
/* The following redundant code is here in order to be able to support
|
|
|
|
|
|
hash-for-each-handle. An alternative would have been to replace
|
|
|
|
|
|
this code and scm_internal_hash_fold above with a single
|
|
|
|
|
|
scm_internal_hash_fold_handles, but we don't want to promote such
|
|
|
|
|
|
an API. */
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2009-10-26 23:56:03 +01:00
|
|
|
|
scm_internal_hash_for_each_handle (scm_t_hash_handle_fn fn, void *closure,
|
|
|
|
|
|
SCM table)
|
2011-01-07 22:01:27 -08:00
|
|
|
|
#define FUNC_NAME s_scm_hash_for_each
|
2004-02-13 23:15:37 +00:00
|
|
|
|
{
|
|
|
|
|
|
long i, n;
|
|
|
|
|
|
SCM buckets;
|
|
|
|
|
|
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_VALIDATE_HASHTABLE (0, table);
|
|
|
|
|
|
buckets = SCM_HASHTABLE_VECTOR (table);
|
2005-01-02 20:11:15 +00:00
|
|
|
|
n = SCM_SIMPLE_VECTOR_LENGTH (buckets);
|
2011-01-07 22:01:27 -08:00
|
|
|
|
|
2004-02-13 23:15:37 +00:00
|
|
|
|
for (i = 0; i < n; ++i)
|
|
|
|
|
|
{
|
2005-01-02 20:11:15 +00:00
|
|
|
|
SCM ls = SCM_SIMPLE_VECTOR_REF (buckets, i), handle;
|
2004-09-22 17:41:37 +00:00
|
|
|
|
while (!scm_is_null (ls))
|
2004-02-13 23:15:37 +00:00
|
|
|
|
{
|
2004-09-22 17:41:37 +00:00
|
|
|
|
if (!scm_is_pair (ls))
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_WRONG_TYPE_ARG (SCM_ARG3, buckets);
|
2004-02-13 23:15:37 +00:00
|
|
|
|
handle = SCM_CAR (ls);
|
2004-09-22 17:41:37 +00:00
|
|
|
|
if (!scm_is_pair (handle))
|
2011-01-07 22:01:27 -08:00
|
|
|
|
SCM_WRONG_TYPE_ARG (SCM_ARG3, buckets);
|
2004-02-13 23:15:37 +00:00
|
|
|
|
fn (closure, handle);
|
|
|
|
|
|
ls = SCM_CDR (ls);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2011-01-07 22:01:27 -08:00
|
|
|
|
#undef FUNC_NAME
|
2004-02-13 23:15:37 +00:00
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
chars.c, chars.h, continuations.c, continuations.h, debug.c,
debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
declare functions with prototypes. (Patch thanks to Marius
Vollmer.)
1996-10-14 01:33:50 +00:00
|
|
|
|
|
* hooks.c (scm_c_hook_add): Fixed bug in append mode.
* environments.c (obarray_enter, obarray_retrieve, obarray_remove,
leaf_environment_fold, obarray_remove_all): Use hashtable
accessors.
* gc.c (scm_init_storage): Moved hook initialization to
scm_storage_prehistory.
(scm_storage_prehistory): New function.
(scm_igc): Added commentary about placement of
scm_after_sweep_c_hook.
* gc-mark.c (scm_mark_all): Use hashtable accessors.
(scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
SCM_WVECT_WEAK_VALUE_P.
* hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
functions.
(scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
Removed.
(scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
scm_make_doubly_weak_hash_table): Moved here from weaks.c.
* init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
calls to scm_storage_prehistory and scm_hashtab_prehistory.
* modules.c (module-reverse-lookup): Use hashtable accessors.
* symbols.c, symbols.h (scm_i_hash_symbol): New function.
* weaks.c, weaks.h (scm_make_weak_key_alist_vector,
scm_make_weak_value_alist_vector,
scm_make_doubly_weak_alist_vector): New functions.
* weaks.c (scm_init_weaks_builtins): New function.
* weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
SCM_WVECT_NOSCAN_P): New macros.
* weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
and SCM_WVECT_WEAK_VALUE_P.
* weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
allocate_weak_vector and exported.
* Makefile.am (ice9_sources): Added weak-vector.scm.
* weak-vector.scm: New file.
* boot-9.scm (module-clear!): Use hash-clear!.
(module-for-each): Use hash-for-each.
(module-map): Use hash-map.
2003-02-19 15:04:51 +00:00
|
|
|
|
void
|
|
|
|
|
|
scm_init_hashtab ()
|
|
|
|
|
|
{
|
2000-04-21 14:16:44 +00:00
|
|
|
|
#include "libguile/hashtab.x"
|
1996-07-25 22:56:11 +00:00
|
|
|
|
}
|
2000-03-19 19:01:16 +00:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
|
c-file-style: "gnu"
|
|
|
|
|
|
End:
|
|
|
|
|
|
*/
|