annotate src/elhash.c @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 41dbb7a9d5f2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1 /* Implementation of the hash table lisp object type.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
4 Copyright (C) 1997 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCNTABILITY or
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include "lisp.h"
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
27 #include "bytecode.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
30 Lisp_Object Qhash_tablep;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
31 static Lisp_Object Qhashtable, Qhash_table;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
32 static Lisp_Object Qweakness, Qvalue;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
33 static Lisp_Object Vall_weak_hash_tables;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
34 static Lisp_Object Qrehash_size, Qrehash_threshold;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
35 static Lisp_Object Q_size, Q_test, Q_weakness, Q_rehash_size, Q_rehash_threshold;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
36
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
37 /* obsolete as of 19990901 in xemacs-21.2 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
38 static Lisp_Object Qweak, Qkey_weak, Qvalue_weak, Qnon_weak, Q_type;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
39
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
40 typedef struct hentry
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
41 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
42 Lisp_Object key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
43 Lisp_Object value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
44 } hentry;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
46 struct Lisp_Hash_Table
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 struct lcrecord_header header;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
49 size_t size;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
50 size_t count;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
51 size_t rehash_count;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
52 double rehash_size;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
53 double rehash_threshold;
394
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 380
diff changeset
54 size_t golden_ratio;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
55 hash_table_hash_function_t hash_function;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
56 hash_table_test_function_t test_function;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
57 hentry *hentries;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
58 enum hash_table_weakness weakness;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
59 Lisp_Object next_weak; /* Used to chain together all of the weak
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
60 hash tables. Don't mark through this. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 };
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
62 typedef struct Lisp_Hash_Table Lisp_Hash_Table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
64 #define HENTRY_CLEAR_P(hentry) ((*(EMACS_UINT*)(&((hentry)->key))) == 0)
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
65 #define CLEAR_HENTRY(hentry) \
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
66 ((*(EMACS_UINT*)(&((hentry)->key))) = 0, \
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
67 (*(EMACS_UINT*)(&((hentry)->value))) = 0)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
68
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
69 #define HASH_TABLE_DEFAULT_SIZE 16
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
70 #define HASH_TABLE_DEFAULT_REHASH_SIZE 1.3
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
71 #define HASH_TABLE_MIN_SIZE 10
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
72
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
73 #define HASH_CODE(key, ht) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
74 (((((ht)->hash_function ? (ht)->hash_function (key) : LISP_HASH (key)) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
75 * (ht)->golden_ratio) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
76 % (ht)->size))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
77
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
78 #define KEYS_EQUAL_P(key1, key2, testfun) \
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
79 (EQ ((key1), (key2)) || ((testfun) && (testfun) ((key1), (key2))))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
80
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
81 #define LINEAR_PROBING_LOOP(probe, entries, size) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
82 for (; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
83 !HENTRY_CLEAR_P (probe) || \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
84 (probe == entries + size ? \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
85 (probe = entries, !HENTRY_CLEAR_P (probe)) : 0); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
86 probe++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
87
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
88 #ifndef ERROR_CHECK_HASH_TABLE
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
89 # ifdef ERROR_CHECK_TYPECHECK
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
90 # define ERROR_CHECK_HASH_TABLE 1
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
91 # else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
92 # define ERROR_CHECK_HASH_TABLE 0
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
93 # endif
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
94 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
96 #if ERROR_CHECK_HASH_TABLE
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
97 static void
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
98 check_hash_table_invariants (Lisp_Hash_Table *ht)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
100 assert (ht->count < ht->size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
101 assert (ht->count <= ht->rehash_count);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
102 assert (ht->rehash_count < ht->size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
103 assert ((double) ht->count * ht->rehash_threshold - 1 <= (double) ht->rehash_count);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
104 assert (HENTRY_CLEAR_P (ht->hentries + ht->size));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
105 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
106 #else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
107 #define check_hash_table_invariants(ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
108 #endif
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
109
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
110 /* We use linear probing instead of double hashing, despite its lack
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
111 of blessing by Knuth and company, because, as a result of the
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
112 increasing discrepancy between CPU speeds and memory speeds, cache
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
113 behavior is becoming increasingly important, e.g:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
114
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
115 For a trivial loop, the penalty for non-sequential access of an array is:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
116 - a factor of 3-4 on Pentium Pro 200 Mhz
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
117 - a factor of 10 on Ultrasparc 300 Mhz */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
119 /* Return a suitable size for a hash table, with at least SIZE slots. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
120 static size_t
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
121 hash_table_size (size_t requested_size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
122 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
123 /* Return some prime near, but greater than or equal to, SIZE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
124 Decades from the time of writing, someone will have a system large
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
125 enough that the list below will be too short... */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
126 static CONST size_t primes [] =
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
127 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
128 19, 29, 41, 59, 79, 107, 149, 197, 263, 347, 457, 599, 787, 1031,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
129 1361, 1777, 2333, 3037, 3967, 5167, 6719, 8737, 11369, 14783,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
130 19219, 24989, 32491, 42257, 54941, 71429, 92861, 120721, 156941,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
131 204047, 265271, 344857, 448321, 582821, 757693, 985003, 1280519,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
132 1664681, 2164111, 2813353, 3657361, 4754591, 6180989, 8035301,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
133 10445899, 13579681, 17653589, 22949669, 29834603, 38784989,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
134 50420551, 65546729, 85210757, 110774011, 144006217, 187208107,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
135 243370577, 316381771, 411296309, 534685237, 695090819, 903618083,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
136 1174703521, 1527114613, 1985248999, 2580823717UL, 3355070839UL
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
137 };
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
138 /* We've heard of binary search. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
139 int low, high;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
140 for (low = 0, high = countof (primes) - 1; high - low > 1;)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
142 /* Loop Invariant: size < primes [high] */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
143 int mid = (low + high) / 2;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
144 if (primes [mid] < requested_size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
145 low = mid;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
146 else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
147 high = mid;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
149 return primes [high];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
151
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
152
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
153 #if 0 /* I don't think these are needed any more.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
154 If using the general lisp_object_equal_*() functions
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
155 causes efficiency problems, these can be resurrected. --ben */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
156 /* equality and hash functions for Lisp strings */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
157 int
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
158 lisp_string_equal (Lisp_Object str1, Lisp_Object str2)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
159 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
160 /* This is wrong anyway. You can't use strcmp() on Lisp strings,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
161 because they can contain zero characters. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
162 return !strcmp ((char *) XSTRING_DATA (str1), (char *) XSTRING_DATA (str2));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
163 }
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
164
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
165 static hashcode_t
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
166 lisp_string_hash (Lisp_Object obj)
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
167 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
168 return hash_string (XSTRING_DATA (str), XSTRING_LENGTH (str));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
169 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
170
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
171 #endif /* 0 */
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
172
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
173 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
174 lisp_object_eql_equal (Lisp_Object obj1, Lisp_Object obj2)
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
175 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
176 return EQ (obj1, obj2) || (FLOATP (obj1) && internal_equal (obj1, obj2, 0));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
177 }
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
178
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
179 static hashcode_t
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
180 lisp_object_eql_hash (Lisp_Object obj)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
181 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
182 return FLOATP (obj) ? internal_hash (obj, 0) : LISP_HASH (obj);
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
183 }
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
184
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
185 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
186 lisp_object_equal_equal (Lisp_Object obj1, Lisp_Object obj2)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
187 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
188 return internal_equal (obj1, obj2, 0);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
189 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
190
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
191 static hashcode_t
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
192 lisp_object_equal_hash (Lisp_Object obj)
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
193 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
194 return internal_hash (obj, 0);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
195 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
196
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
197
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
198 static Lisp_Object
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
199 mark_hash_table (Lisp_Object obj)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
200 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
201 Lisp_Hash_Table *ht = XHASH_TABLE (obj);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
202
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
203 /* If the hash table is weak, we don't want to mark the keys and
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
204 values (we scan over them after everything else has been marked,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
205 and mark or remove them as necessary). */
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
206 if (ht->weakness == HASH_TABLE_NON_WEAK)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
207 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
208 hentry *e, *sentinel;
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
209
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
210 for (e = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
211 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
212 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
213 mark_object (e->key);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
214 mark_object (e->value);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
215 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
216 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
217 return Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
218 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
219
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
220 /* Equality of hash tables. Two hash tables are equal when they are of
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
221 the same weakness and test function, they have the same number of
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
222 elements, and for each key in the hash table, the values are `equal'.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
223
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
224 This is similar to Common Lisp `equalp' of hash tables, with the
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
225 difference that CL requires the keys to be compared with the test
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
226 function, which we don't do. Doing that would require consing, and
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
227 consing is a bad idea in `equal'. Anyway, our method should provide
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
228 the same result -- if the keys are not equal according to the test
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
229 function, then Fgethash() in hash_table_equal_mapper() will fail. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
230 static int
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
231 hash_table_equal (Lisp_Object hash_table1, Lisp_Object hash_table2, int depth)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
232 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
233 Lisp_Hash_Table *ht1 = XHASH_TABLE (hash_table1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
234 Lisp_Hash_Table *ht2 = XHASH_TABLE (hash_table2);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
235 hentry *e, *sentinel;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
236
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
237 if ((ht1->test_function != ht2->test_function) ||
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
238 (ht1->weakness != ht2->weakness) ||
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
239 (ht1->count != ht2->count))
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
240 return 0;
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
241
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
242 depth++;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
243
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
244 for (e = ht1->hentries, sentinel = e + ht1->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
245 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
246 /* Look up the key in the other hash table, and compare the values. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
247 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
248 Lisp_Object value_in_other = Fgethash (e->key, hash_table2, Qunbound);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
249 if (UNBOUNDP (value_in_other) ||
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
250 !internal_equal (e->value, value_in_other, depth))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
251 return 0; /* Give up */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
252 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
253
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
254 return 1;
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
255 }
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
256
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
257 /* Printing hash tables.
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
258
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
259 This is non-trivial, because we use a readable structure-style
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
260 syntax for hash tables. This means that a typical hash table will be
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
261 readably printed in the form of:
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
262
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
263 #s(hash-table size 2 data (key1 value1 key2 value2))
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
264
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
265 The supported hash table structure keywords and their values are:
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
266 `test' (eql (or nil), eq or equal)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
267 `size' (a natnum or nil)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
268 `rehash-size' (a float)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
269 `rehash-threshold' (a float)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
270 `weakness' (nil, t, key or value)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
271 `data' (a list)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
272
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
273 If `print-readably' is non-nil, then a simpler syntax is used; for
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
274 instance:
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
275
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
276 #<hash-table size 2/13 data (key1 value1 key2 value2) 0x874d>
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
277
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
278 The data is truncated to four pairs, and the rest is shown with
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
279 `...'. This printer does not cons. */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
280
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
281
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
282 /* Print the data of the hash table. This maps through a Lisp
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
283 hash table and prints key/value pairs using PRINTCHARFUN. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
284 static void
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
285 print_hash_table_data (Lisp_Hash_Table *ht, Lisp_Object printcharfun)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
286 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
287 int count = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
288 hentry *e, *sentinel;
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
289
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
290 write_c_string (" data (", printcharfun);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
291
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
292 for (e = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
293 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
294 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
295 if (count > 0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
296 write_c_string (" ", printcharfun);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
297 if (!print_readably && count > 3)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
298 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
299 write_c_string ("...", printcharfun);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
300 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
301 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
302 print_internal (e->key, printcharfun, 1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
303 write_c_string (" ", printcharfun);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
304 print_internal (e->value, printcharfun, 1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
305 count++;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
306 }
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
307
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
308 write_c_string (")", printcharfun);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
309 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
310
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
311 static void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
312 print_hash_table (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
313 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
314 Lisp_Hash_Table *ht = XHASH_TABLE (obj);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
315 char buf[128];
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
316
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
317 write_c_string (print_readably ? "#s(hash-table" : "#<hash-table",
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
318 printcharfun);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
319
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
320 /* These checks have a kludgy look to them, but they are safe.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
321 Due to nature of hashing, you cannot use arbitrary
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
322 test functions anyway. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
323 if (!ht->test_function)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
324 write_c_string (" test eq", printcharfun);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
325 else if (ht->test_function == lisp_object_equal_equal)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
326 write_c_string (" test equal", printcharfun);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
327 else if (ht->test_function == lisp_object_eql_equal)
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 223
diff changeset
328 DO_NOTHING;
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
329 else
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
330 abort ();
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
331
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
332 if (ht->count || !print_readably)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
333 {
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
334 if (print_readably)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
335 sprintf (buf, " size %lu", (unsigned long) ht->count);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
336 else
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
337 sprintf (buf, " size %lu/%lu",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
338 (unsigned long) ht->count,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
339 (unsigned long) ht->size);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
340 write_c_string (buf, printcharfun);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
341 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
342
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
343 if (ht->weakness != HASH_TABLE_NON_WEAK)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
344 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
345 sprintf (buf, " weakness %s",
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
346 (ht->weakness == HASH_TABLE_WEAK ? "t" :
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
347 ht->weakness == HASH_TABLE_KEY_WEAK ? "key" :
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
348 ht->weakness == HASH_TABLE_VALUE_WEAK ? "value" :
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
349 "you-d-better-not-see-this"));
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
350 write_c_string (buf, printcharfun);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
351 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
352
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
353 if (ht->count)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
354 print_hash_table_data (ht, printcharfun);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
355
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 if (print_readably)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
357 write_c_string (")", printcharfun);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
358 else
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
359 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
360 sprintf (buf, " 0x%x>", ht->header.uid);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
361 write_c_string (buf, printcharfun);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
362 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
363 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
364
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
365 static void
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
366 finalize_hash_table (void *header, int for_disksave)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
367 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
368 if (!for_disksave)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
369 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
370 Lisp_Hash_Table *ht = (Lisp_Hash_Table *) header;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
371
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
372 xfree (ht->hentries);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
373 ht->hentries = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
374 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
375 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
376
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
377 static const struct lrecord_description hentry_description_1[] = {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
378 { XD_LISP_OBJECT, offsetof(hentry, key), 2 },
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
379 { XD_END }
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
380 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
381
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
382 static const struct struct_description hentry_description = {
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
383 sizeof(hentry),
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
384 hentry_description_1
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
385 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
386
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
387 const struct lrecord_description hash_table_description[] = {
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
388 { XD_SIZE_T, offsetof(Lisp_Hash_Table, size) },
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
389 { XD_STRUCT_PTR, offsetof(Lisp_Hash_Table, hentries), XD_INDIRECT(0, 1), &hentry_description },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
390 { XD_LO_LINK, offsetof(Lisp_Hash_Table, next_weak) },
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
391 { XD_END }
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
392 };
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
393
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
394 DEFINE_LRECORD_IMPLEMENTATION ("hash-table", hash_table,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
395 mark_hash_table, print_hash_table,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
396 finalize_hash_table,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
397 /* #### Implement hash_table_hash()! */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
398 hash_table_equal, 0,
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 412
diff changeset
399 hash_table_description,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
400 Lisp_Hash_Table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
401
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
402 static Lisp_Hash_Table *
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
403 xhash_table (Lisp_Object hash_table)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
404 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
405 if (!gc_in_progress)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
406 CHECK_HASH_TABLE (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
407 check_hash_table_invariants (XHASH_TABLE (hash_table));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
408 return XHASH_TABLE (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
409 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
410
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
411
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
412 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
413 /* Creation of Hash Tables */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
414 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
415
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
416 /* Creation of hash tables, without error-checking. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
417 static double
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
418 hash_table_rehash_threshold (Lisp_Hash_Table *ht)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
419 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
420 return
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
421 ht->rehash_threshold > 0.0 ? ht->rehash_threshold :
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
422 ht->size > 4096 && !ht->test_function ? 0.7 : 0.6;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
423 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
424
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
425 static void
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
426 compute_hash_table_derived_values (Lisp_Hash_Table *ht)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
427 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
428 ht->rehash_count = (size_t)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
429 ((double) ht->size * hash_table_rehash_threshold (ht));
394
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 380
diff changeset
430 ht->golden_ratio = (size_t)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
431 ((double) ht->size * (.6180339887 / (double) sizeof (Lisp_Object)));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
432 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
433
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
434 Lisp_Object
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
435 make_general_lisp_hash_table (enum hash_table_test test,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
436 size_t size,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
437 double rehash_size,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
438 double rehash_threshold,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
439 enum hash_table_weakness weakness)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
440 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
441 Lisp_Object hash_table;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
442 Lisp_Hash_Table *ht = alloc_lcrecord_type (Lisp_Hash_Table, &lrecord_hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
443
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
444 ht->rehash_size = rehash_size;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
445 ht->rehash_threshold = rehash_threshold;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
446 ht->weakness = weakness;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
447
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
448 switch (test)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
449 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
450 case HASH_TABLE_EQ:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
451 ht->test_function = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
452 ht->hash_function = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
453 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
454
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
455 case HASH_TABLE_EQL:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
456 ht->test_function = lisp_object_eql_equal;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
457 ht->hash_function = lisp_object_eql_hash;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
458 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
459
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
460 case HASH_TABLE_EQUAL:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
461 ht->test_function = lisp_object_equal_equal;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
462 ht->hash_function = lisp_object_equal_hash;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
463 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
464
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
465 default:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
466 abort ();
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
467 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
468
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
469 if (ht->rehash_size <= 0.0)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
470 ht->rehash_size = HASH_TABLE_DEFAULT_REHASH_SIZE;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
471 if (size < HASH_TABLE_MIN_SIZE)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
472 size = HASH_TABLE_MIN_SIZE;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
473 if (rehash_threshold < 0.0)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
474 rehash_threshold = 0.75;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
475 ht->size =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
476 hash_table_size ((size_t) ((double) size / hash_table_rehash_threshold (ht)) + 1);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
477 ht->count = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
478 compute_hash_table_derived_values (ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
479
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
480 /* We leave room for one never-occupied sentinel hentry at the end. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
481 ht->hentries = xnew_array (hentry, ht->size + 1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
482
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
483 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
484 hentry *e, *sentinel;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
485 for (e = ht->hentries, sentinel = e + ht->size; e <= sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
486 CLEAR_HENTRY (e);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
487 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
488
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
489 XSETHASH_TABLE (hash_table, ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
490
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
491 if (weakness == HASH_TABLE_NON_WEAK)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
492 ht->next_weak = Qunbound;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
493 else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
494 ht->next_weak = Vall_weak_hash_tables, Vall_weak_hash_tables = hash_table;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
495
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
496 return hash_table;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
497 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
498
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
499 Lisp_Object
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
500 make_lisp_hash_table (size_t size,
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
501 enum hash_table_weakness weakness,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
502 enum hash_table_test test)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
503 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
504 return make_general_lisp_hash_table
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
505 (test, size, HASH_TABLE_DEFAULT_REHASH_SIZE, -1.0, weakness);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
506 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
507
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
508 /* Pretty reading of hash tables.
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
509
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
510 Here we use the existing structures mechanism (which is,
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
511 unfortunately, pretty cumbersome) for validating and instantiating
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
512 the hash tables. The idea is that the side-effect of reading a
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
513 #s(hash-table PLIST) object is creation of a hash table with desired
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
514 properties, and that the hash table is returned. */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
515
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
516 /* Validation functions: each keyword provides its own validation
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
517 function. The errors should maybe be continuable, but it is
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
518 unclear how this would cope with ERRB. */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
519 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
520 hash_table_size_validate (Lisp_Object keyword, Lisp_Object value,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
521 Error_behavior errb)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
522 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
523 if (NATNUMP (value))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
524 return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
525
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
526 maybe_signal_error (Qwrong_type_argument, list2 (Qnatnump, value),
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
527 Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
528 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
529 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
530
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
531 static size_t
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
532 decode_hash_table_size (Lisp_Object obj)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
533 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
534 return NILP (obj) ? HASH_TABLE_DEFAULT_SIZE : XINT (obj);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
535 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
536
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
537 static int
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
538 hash_table_weakness_validate (Lisp_Object keyword, Lisp_Object value,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
539 Error_behavior errb)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
540 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
541 if (EQ (value, Qnil)) return 1;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
542 if (EQ (value, Qt)) return 1;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
543 if (EQ (value, Qkey)) return 1;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
544 if (EQ (value, Qvalue)) return 1;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
545
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
546 /* Following values are obsolete as of 19990901 in xemacs-21.2 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
547 if (EQ (value, Qnon_weak)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
548 if (EQ (value, Qweak)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
549 if (EQ (value, Qkey_weak)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
550 if (EQ (value, Qvalue_weak)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
551
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
552 maybe_signal_simple_error ("Invalid hash table weakness",
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
553 value, Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
554 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
555 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
556
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
557 static enum hash_table_weakness
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
558 decode_hash_table_weakness (Lisp_Object obj)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
559 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
560 if (EQ (obj, Qnil)) return HASH_TABLE_NON_WEAK;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
561 if (EQ (obj, Qt)) return HASH_TABLE_WEAK;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
562 if (EQ (obj, Qkey)) return HASH_TABLE_KEY_WEAK;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
563 if (EQ (obj, Qvalue)) return HASH_TABLE_VALUE_WEAK;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
564
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
565 /* Following values are obsolete as of 19990901 in xemacs-21.2 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
566 if (EQ (obj, Qnon_weak)) return HASH_TABLE_NON_WEAK;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
567 if (EQ (obj, Qweak)) return HASH_TABLE_WEAK;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
568 if (EQ (obj, Qkey_weak)) return HASH_TABLE_KEY_WEAK;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
569 if (EQ (obj, Qvalue_weak)) return HASH_TABLE_VALUE_WEAK;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
570
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
571 signal_simple_error ("Invalid hash table weakness", obj);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
572 return HASH_TABLE_NON_WEAK; /* not reached */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
573 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
574
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
575 static int
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
576 hash_table_test_validate (Lisp_Object keyword, Lisp_Object value,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
577 Error_behavior errb)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
578 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
579 if (EQ (value, Qnil)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
580 if (EQ (value, Qeq)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
581 if (EQ (value, Qequal)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
582 if (EQ (value, Qeql)) return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
583
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
584 maybe_signal_simple_error ("Invalid hash table test",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
585 value, Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
586 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
587 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
588
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
589 static enum hash_table_test
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
590 decode_hash_table_test (Lisp_Object obj)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
591 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
592 if (EQ (obj, Qnil)) return HASH_TABLE_EQL;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
593 if (EQ (obj, Qeq)) return HASH_TABLE_EQ;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
594 if (EQ (obj, Qequal)) return HASH_TABLE_EQUAL;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
595 if (EQ (obj, Qeql)) return HASH_TABLE_EQL;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
596
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
597 signal_simple_error ("Invalid hash table test", obj);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
598 return HASH_TABLE_EQ; /* not reached */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
599 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
600
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
601 static int
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
602 hash_table_rehash_size_validate (Lisp_Object keyword, Lisp_Object value,
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
603 Error_behavior errb)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
604 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
605 if (!FLOATP (value))
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
606 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
607 maybe_signal_error (Qwrong_type_argument, list2 (Qfloatp, value),
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
608 Qhash_table, errb);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
609 return 0;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
610 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
611
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
612 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
613 double rehash_size = XFLOAT_DATA (value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
614 if (rehash_size <= 1.0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
615 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
616 maybe_signal_simple_error
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
617 ("Hash table rehash size must be greater than 1.0",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
618 value, Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
619 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
620 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
621 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
622
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
623 return 1;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
624 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
625
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
626 static double
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
627 decode_hash_table_rehash_size (Lisp_Object rehash_size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
628 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
629 return NILP (rehash_size) ? -1.0 : XFLOAT_DATA (rehash_size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
630 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
631
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
632 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
633 hash_table_rehash_threshold_validate (Lisp_Object keyword, Lisp_Object value,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
634 Error_behavior errb)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
635 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
636 if (!FLOATP (value))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
637 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
638 maybe_signal_error (Qwrong_type_argument, list2 (Qfloatp, value),
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
639 Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
640 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
641 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
642
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
643 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
644 double rehash_threshold = XFLOAT_DATA (value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
645 if (rehash_threshold <= 0.0 || rehash_threshold >= 1.0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
646 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
647 maybe_signal_simple_error
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
648 ("Hash table rehash threshold must be between 0.0 and 1.0",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
649 value, Qhash_table, errb);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
650 return 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
651 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
652 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
653
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
654 return 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
655 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
656
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
657 static double
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
658 decode_hash_table_rehash_threshold (Lisp_Object rehash_threshold)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
659 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
660 return NILP (rehash_threshold) ? -1.0 : XFLOAT_DATA (rehash_threshold);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
661 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
662
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
663 static int
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
664 hash_table_data_validate (Lisp_Object keyword, Lisp_Object value,
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
665 Error_behavior errb)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
666 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
667 int len;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
668
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
669 GET_EXTERNAL_LIST_LENGTH (value, len);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
670
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
671 if (len & 1)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
672 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
673 maybe_signal_simple_error
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
674 ("Hash table data must have alternating key/value pairs",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
675 value, Qhash_table, errb);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
676 return 0;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
677 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
678 return 1;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
679 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
680
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
681 /* The actual instantiation of a hash table. This does practically no
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
682 error checking, because it relies on the fact that the paranoid
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
683 functions above have error-checked everything to the last details.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
684 If this assumption is wrong, we will get a crash immediately (with
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
685 error-checking compiled in), and we'll know if there is a bug in
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
686 the structure mechanism. So there. */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
687 static Lisp_Object
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
688 hash_table_instantiate (Lisp_Object plist)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
689 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
690 Lisp_Object hash_table;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
691 Lisp_Object test = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
692 Lisp_Object size = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
693 Lisp_Object rehash_size = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
694 Lisp_Object rehash_threshold = Qnil;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
695 Lisp_Object weakness = Qnil;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
696 Lisp_Object data = Qnil;
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
697
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
698 while (!NILP (plist))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
699 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
700 Lisp_Object key, value;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
701 key = XCAR (plist); plist = XCDR (plist);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
702 value = XCAR (plist); plist = XCDR (plist);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
703
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
704 if (EQ (key, Qtest)) test = value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
705 else if (EQ (key, Qsize)) size = value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
706 else if (EQ (key, Qrehash_size)) rehash_size = value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
707 else if (EQ (key, Qrehash_threshold)) rehash_threshold = value;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
708 else if (EQ (key, Qweakness)) weakness = value;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
709 else if (EQ (key, Qdata)) data = value;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
710 else if (EQ (key, Qtype))/*obsolete*/ weakness = value;
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
711 else
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
712 abort ();
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
713 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
714
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
715 /* Create the hash table. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
716 hash_table = make_general_lisp_hash_table
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
717 (decode_hash_table_test (test),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
718 decode_hash_table_size (size),
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
719 decode_hash_table_rehash_size (rehash_size),
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
720 decode_hash_table_rehash_threshold (rehash_threshold),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
721 decode_hash_table_weakness (weakness));
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
722
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
723 /* I'm not sure whether this can GC, but better safe than sorry. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
724 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
725 struct gcpro gcpro1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
726 GCPRO1 (hash_table);
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
727
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
728 /* And fill it with data. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
729 while (!NILP (data))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
730 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
731 Lisp_Object key, value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
732 key = XCAR (data); data = XCDR (data);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
733 value = XCAR (data); data = XCDR (data);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
734 Fputhash (key, value, hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
735 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
736 UNGCPRO;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
737 }
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
738
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
739 return hash_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 static void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
743 structure_type_create_hash_table_structure_name (Lisp_Object structure_name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
745 struct structure_type *st;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
747 st = define_structure_type (structure_name, 0, hash_table_instantiate);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
748 define_structure_type_keyword (st, Qtest, hash_table_test_validate);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
749 define_structure_type_keyword (st, Qsize, hash_table_size_validate);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
750 define_structure_type_keyword (st, Qrehash_size, hash_table_rehash_size_validate);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
751 define_structure_type_keyword (st, Qrehash_threshold, hash_table_rehash_threshold_validate);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
752 define_structure_type_keyword (st, Qweakness, hash_table_weakness_validate);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
753 define_structure_type_keyword (st, Qdata, hash_table_data_validate);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
754
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
755 /* obsolete as of 19990901 in xemacs-21.2 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
756 define_structure_type_keyword (st, Qtype, hash_table_weakness_validate);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
759 /* Create a built-in Lisp structure type named `hash-table'.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
760 We make #s(hashtable ...) equivalent to #s(hash-table ...),
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
761 for backward compatibility.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
762 This is called from emacs.c. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
764 structure_type_create_hash_table (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
766 structure_type_create_hash_table_structure_name (Qhash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
767 structure_type_create_hash_table_structure_name (Qhashtable); /* compat */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
771 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
772 /* Definition of Lisp-visible methods */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
773 /************************************************************************/
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
775 DEFUN ("hash-table-p", Fhash_table_p, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
776 Return t if OBJECT is a hash table, else nil.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
777 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
778 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
780 return HASH_TABLEP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
783 DEFUN ("make-hash-table", Fmake_hash_table, 0, MANY, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
784 Return a new empty hash table object.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
785 Use Common Lisp style keywords to specify hash table properties.
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
786 (make-hash-table &key test size rehash-size rehash-threshold weakness)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
787
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
788 Keyword :test can be `eq', `eql' (default) or `equal'.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
789 Comparison between keys is done using this function.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
790 If speed is important, consider using `eq'.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
791 When storing strings in the hash table, you will likely need to use `equal'.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
792
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
793 Keyword :size specifies the number of keys likely to be inserted.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
794 This number of entries can be inserted without enlarging the hash table.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
795
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
796 Keyword :rehash-size must be a float greater than 1.0, and specifies
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
797 the factor by which to increase the size of the hash table when enlarging.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
798
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
799 Keyword :rehash-threshold must be a float between 0.0 and 1.0,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
800 and specifies the load factor of the hash table which triggers enlarging.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
801
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
802 Non-standard keyword :weakness can be `nil' (default), `t', `key' or `value'.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
803
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
804 A weak hash table is one whose pointers do not count as GC referents:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
805 for any key-value pair in the hash table, if the only remaining pointer
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
806 to either the key or the value is in a weak hash table, then the pair
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
807 will be removed from the hash table, and the key and value collected.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
808 A non-weak hash table (or any other pointer) would prevent the object
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
809 from being collected.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
810
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
811 A key-weak hash table is similar to a fully-weak hash table except that
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
812 a key-value pair will be removed only if the key remains unmarked
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
813 outside of weak hash tables. The pair will remain in the hash table if
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
814 the key is pointed to by something other than a weak hash table, even
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
815 if the value is not.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
816
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
817 A value-weak hash table is similar to a fully-weak hash table except
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
818 that a key-value pair will be removed only if the value remains
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
819 unmarked outside of weak hash tables. The pair will remain in the
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
820 hash table if the value is pointed to by something other than a weak
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
821 hash table, even if the key is not.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
822 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
823 (int nargs, Lisp_Object *args))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
825 int i = 0;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
826 Lisp_Object test = Qnil;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
827 Lisp_Object size = Qnil;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
828 Lisp_Object rehash_size = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
829 Lisp_Object rehash_threshold = Qnil;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
830 Lisp_Object weakness = Qnil;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
831
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
832 while (i + 1 < nargs)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
833 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
834 Lisp_Object keyword = args[i++];
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
835 Lisp_Object value = args[i++];
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
836
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
837 if (EQ (keyword, Q_test)) test = value;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
838 else if (EQ (keyword, Q_size)) size = value;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
839 else if (EQ (keyword, Q_rehash_size)) rehash_size = value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
840 else if (EQ (keyword, Q_rehash_threshold)) rehash_threshold = value;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
841 else if (EQ (keyword, Q_weakness)) weakness = value;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
842 else if (EQ (keyword, Q_type))/*obsolete*/ weakness = value;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
843 else signal_simple_error ("Invalid hash table property keyword", keyword);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
844 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
845
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
846 if (i < nargs)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
847 signal_simple_error ("Hash table property requires a value", args[i]);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
848
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
849 #define VALIDATE_VAR(var) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
850 if (!NILP (var)) hash_table_##var##_validate (Q##var, var, ERROR_ME);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
851
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
852 VALIDATE_VAR (test);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
853 VALIDATE_VAR (size);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
854 VALIDATE_VAR (rehash_size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
855 VALIDATE_VAR (rehash_threshold);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
856 VALIDATE_VAR (weakness);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
857
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
858 return make_general_lisp_hash_table
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
859 (decode_hash_table_test (test),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
860 decode_hash_table_size (size),
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
861 decode_hash_table_rehash_size (rehash_size),
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
862 decode_hash_table_rehash_threshold (rehash_threshold),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
863 decode_hash_table_weakness (weakness));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
866 DEFUN ("copy-hash-table", Fcopy_hash_table, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
867 Return a new hash table containing the same keys and values as HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
868 The keys and values will not themselves be copied.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
869 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
870 (hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
872 CONST Lisp_Hash_Table *ht_old = xhash_table (hash_table);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 394
diff changeset
873 Lisp_Hash_Table *ht = alloc_lcrecord_type (Lisp_Hash_Table, &lrecord_hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
874
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
875 copy_lcrecord (ht, ht_old);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
876
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
877 ht->hentries = xnew_array (hentry, ht_old->size + 1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
878 memcpy (ht->hentries, ht_old->hentries, (ht_old->size + 1) * sizeof (hentry));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
879
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
880 XSETHASH_TABLE (hash_table, ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
881
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
882 if (! EQ (ht->next_weak, Qunbound))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
883 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
884 ht->next_weak = Vall_weak_hash_tables;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
885 Vall_weak_hash_tables = hash_table;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
886 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
887
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
888 return hash_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
891 static void
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
892 resize_hash_table (Lisp_Hash_Table *ht, size_t new_size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
894 hentry *old_entries, *new_entries, *old_sentinel, *new_sentinel, *e;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
895 size_t old_size;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
896
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
897 old_size = ht->size;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
898 ht->size = new_size;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
899
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
900 old_entries = ht->hentries;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
901
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
902 ht->hentries = xnew_array (hentry, new_size + 1);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
903 new_entries = ht->hentries;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
904
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
905 old_sentinel = old_entries + old_size;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
906 new_sentinel = new_entries + new_size;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
907
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
908 for (e = new_entries; e <= new_sentinel; e++)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
909 CLEAR_HENTRY (e);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
910
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
911 compute_hash_table_derived_values (ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
912
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
913 for (e = old_entries; e < old_sentinel; e++)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
914 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
915 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
916 hentry *probe = new_entries + HASH_CODE (e->key, ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
917 LINEAR_PROBING_LOOP (probe, new_entries, new_size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
918 ;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
919 *probe = *e;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
920 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
922 if (!DUMPEDP (old_entries))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
923 xfree (old_entries);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
924 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
925
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
926 void
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
927 reorganize_hash_table (Lisp_Hash_Table *ht)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
928 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
929 resize_hash_table (ht, ht->size);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
930 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
931
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
932 static void
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
933 enlarge_hash_table (Lisp_Hash_Table *ht)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
934 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
935 size_t new_size =
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
936 hash_table_size ((size_t) ((double) ht->size * ht->rehash_size));
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
937 resize_hash_table (ht, new_size);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
938 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
939
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
940 static hentry *
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
941 find_hentry (Lisp_Object key, CONST Lisp_Hash_Table *ht)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
942 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
943 hash_table_test_function_t test_function = ht->test_function;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
944 hentry *entries = ht->hentries;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
945 hentry *probe = entries + HASH_CODE (key, ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
946
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
947 LINEAR_PROBING_LOOP (probe, entries, ht->size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
948 if (KEYS_EQUAL_P (probe->key, key, test_function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
951 return probe;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
952 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
954 DEFUN ("gethash", Fgethash, 2, 3, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
955 Find hash value for KEY in HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
956 If there is no corresponding value, return DEFAULT (which defaults to nil).
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
957 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
958 (key, hash_table, default_))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
959 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
960 CONST Lisp_Hash_Table *ht = xhash_table (hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
961 hentry *e = find_hentry (key, ht);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
963 return HENTRY_CLEAR_P (e) ? default_ : e->value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
966 DEFUN ("puthash", Fputhash, 3, 3, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
967 Hash KEY to VALUE in HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
968 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
969 (key, value, hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
971 Lisp_Hash_Table *ht = xhash_table (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
972 hentry *e = find_hentry (key, ht);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
974 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
975 return e->value = value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
977 e->key = key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
978 e->value = value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
979
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
980 if (++ht->count >= ht->rehash_count)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
981 enlarge_hash_table (ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
982
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
983 return value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
986 /* Remove hentry pointed at by PROBE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
987 Subsequent entries are removed and reinserted.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
988 We don't use tombstones - too wasteful. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
989 static void
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
990 remhash_1 (Lisp_Hash_Table *ht, hentry *entries, hentry *probe)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
992 size_t size = ht->size;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
993 CLEAR_HENTRY (probe);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
994 probe++;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
995 ht->count--;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
997 LINEAR_PROBING_LOOP (probe, entries, size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
999 Lisp_Object key = probe->key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1000 hentry *probe2 = entries + HASH_CODE (key, ht);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1001 LINEAR_PROBING_LOOP (probe2, entries, size)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1002 if (EQ (probe2->key, key))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1003 /* hentry at probe doesn't need to move. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1004 goto continue_outer_loop;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1005 /* Move hentry from probe to new home at probe2. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1006 *probe2 = *probe;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1007 CLEAR_HENTRY (probe);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1008 continue_outer_loop: continue;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1012 DEFUN ("remhash", Fremhash, 2, 2, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1013 Remove the entry for KEY from HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1014 Do nothing if there is no entry for KEY in HASH-TABLE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1015 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1016 (key, hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1018 Lisp_Hash_Table *ht = xhash_table (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1019 hentry *e = find_hentry (key, ht);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1021 if (HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1022 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1024 remhash_1 (ht, ht->hentries, e);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1025 return Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1028 DEFUN ("clrhash", Fclrhash, 1, 1, 0, /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1029 Remove all entries from HASH-TABLE, leaving it empty.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1030 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1031 (hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1033 Lisp_Hash_Table *ht = xhash_table (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1034 hentry *e, *sentinel;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1035
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1036 for (e = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1037 CLEAR_HENTRY (e);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1038 ht->count = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1039
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1040 return hash_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1043 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1044 /* Accessor Functions */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1045 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1046
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1047 DEFUN ("hash-table-count", Fhash_table_count, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1048 Return the number of entries in HASH-TABLE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1049 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1050 (hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1052 return make_int (xhash_table (hash_table)->count);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1055 DEFUN ("hash-table-test", Fhash_table_test, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1056 Return the test function of HASH-TABLE.
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1057 This can be one of `eq', `eql' or `equal'.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1058 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1059 (hash_table))
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1060 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1061 hash_table_test_function_t fun = xhash_table (hash_table)->test_function;
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1062
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1063 return (fun == lisp_object_eql_equal ? Qeql :
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1064 fun == lisp_object_equal_equal ? Qequal :
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1065 Qeq);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1066 }
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1067
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1068 DEFUN ("hash-table-size", Fhash_table_size, 1, 1, 0, /*
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1069 Return the size of HASH-TABLE.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1070 This is the current number of slots in HASH-TABLE, whether occupied or not.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1071 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1072 (hash_table))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1073 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1074 return make_int (xhash_table (hash_table)->size);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1075 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1076
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1077 DEFUN ("hash-table-rehash-size", Fhash_table_rehash_size, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1078 Return the current rehash size of HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1079 This is a float greater than 1.0; the factor by which HASH-TABLE
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1080 is enlarged when the rehash threshold is exceeded.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1081 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1082 (hash_table))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1083 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1084 return make_float (xhash_table (hash_table)->rehash_size);
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
1085 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1087 DEFUN ("hash-table-rehash-threshold", Fhash_table_rehash_threshold, 1, 1, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1088 Return the current rehash threshold of HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1089 This is a float between 0.0 and 1.0; the maximum `load factor' of HASH-TABLE,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1090 beyond which the HASH-TABLE is enlarged by rehashing.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1091 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1092 (hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1094 return make_float (hash_table_rehash_threshold (xhash_table (hash_table)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1097 DEFUN ("hash-table-weakness", Fhash_table_weakness, 1, 1, 0, /*
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1098 Return the weakness of HASH-TABLE.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1099 This can be one of `nil', `t', `key' or `value'.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1100 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1101 (hash_table))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1102 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1103 switch (xhash_table (hash_table)->weakness)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1104 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1105 case HASH_TABLE_WEAK: return Qt;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1106 case HASH_TABLE_KEY_WEAK: return Qkey;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1107 case HASH_TABLE_VALUE_WEAK: return Qvalue;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1108 default: return Qnil;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1109 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1110 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1111
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1112 /* obsolete as of 19990901 in xemacs-21.2 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1113 DEFUN ("hash-table-type", Fhash_table_type, 1, 1, 0, /*
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1114 Return the type of HASH-TABLE.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1115 This can be one of `non-weak', `weak', `key-weak' or `value-weak'.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1116 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1117 (hash_table))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1118 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1119 switch (xhash_table (hash_table)->weakness)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1120 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1121 case HASH_TABLE_WEAK: return Qweak;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1122 case HASH_TABLE_KEY_WEAK: return Qkey_weak;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1123 case HASH_TABLE_VALUE_WEAK: return Qvalue_weak;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1124 default: return Qnon_weak;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1125 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1126 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1127
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1128 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1129 /* Mapping Functions */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1130 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1131 DEFUN ("maphash", Fmaphash, 2, 2, 0, /*
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1132 Map FUNCTION over entries in HASH-TABLE, calling it with two args,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1133 each key and value in HASH-TABLE.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1134
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1135 FUNCTION may not modify HASH-TABLE, with the one exception that FUNCTION
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1136 may remhash or puthash the entry currently being processed by FUNCTION.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1137 */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1138 (function, hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1140 CONST Lisp_Hash_Table *ht = xhash_table (hash_table);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1141 CONST hentry *e, *sentinel;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1143 for (e = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1144 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1145 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1146 Lisp_Object args[3], key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1147 again:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1148 key = e->key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1149 args[0] = function;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1150 args[1] = key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1151 args[2] = e->value;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1152 Ffuncall (countof (args), args);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1153 /* Has FUNCTION done a remhash? */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1154 if (!EQ (key, e->key) && !HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1155 goto again;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1156 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1161 /* Map *C* function FUNCTION over the elements of a lisp hash table. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1163 elisp_maphash (maphash_function_t function,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1164 Lisp_Object hash_table, void *extra_arg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1166 CONST Lisp_Hash_Table *ht = XHASH_TABLE (hash_table);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1167 CONST hentry *e, *sentinel;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1169 for (e = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1170 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1171 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1172 Lisp_Object key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1173 again:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1174 key = e->key;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1175 if (function (key, e->value, extra_arg))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1176 return;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1177 /* Has FUNCTION done a remhash? */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1178 if (!EQ (key, e->key) && !HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1179 goto again;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1180 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1183 /* Remove all elements of a lisp hash table satisfying *C* predicate PREDICATE. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1185 elisp_map_remhash (maphash_function_t predicate,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1186 Lisp_Object hash_table, void *extra_arg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1188 Lisp_Hash_Table *ht = XHASH_TABLE (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1189 hentry *e, *entries, *sentinel;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1191 for (e = entries = ht->hentries, sentinel = e + ht->size; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1192 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1193 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1194 again:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1195 if (predicate (e->key, e->value, extra_arg))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1196 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1197 remhash_1 (ht, entries, e);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1198 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1199 goto again;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1200 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1201 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1204
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1205 /************************************************************************/
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1206 /* garbage collecting weak hash tables */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1207 /************************************************************************/
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1209 /* Complete the marking for semi-weak hash tables. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 int
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1211 finish_marking_weak_hash_tables (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1213 Lisp_Object hash_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 int did_mark = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1216 for (hash_table = Vall_weak_hash_tables;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1217 !NILP (hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1218 hash_table = XHASH_TABLE (hash_table)->next_weak)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1220 CONST Lisp_Hash_Table *ht = XHASH_TABLE (hash_table);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1221 CONST hentry *e = ht->hentries;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1222 CONST hentry *sentinel = e + ht->size;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1223
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1224 if (! marked_p (hash_table))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1225 /* The hash table is probably garbage. Ignore it. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1226 continue;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1228 /* Now, scan over all the pairs. For all pairs that are
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1229 half-marked, we may need to mark the other half if we're
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1230 keeping this pair. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1231 #define MARK_OBJ(obj) \
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1232 do { if (!marked_p (obj)) mark_object (obj), did_mark = 1; } while (0)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1233
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1234 switch (ht->weakness)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1236 case HASH_TABLE_KEY_WEAK:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1237 for (; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1238 if (!HENTRY_CLEAR_P (e))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1239 if (marked_p (e->key))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1240 MARK_OBJ (e->value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1241 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1243 case HASH_TABLE_VALUE_WEAK:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1244 for (; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1245 if (!HENTRY_CLEAR_P (e))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1246 if (marked_p (e->value))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1247 MARK_OBJ (e->key);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1248 break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1250 case HASH_TABLE_KEY_CAR_WEAK:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1251 for (; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1252 if (!HENTRY_CLEAR_P (e))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1253 if (!CONSP (e->key) || marked_p (XCAR (e->key)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1254 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1255 MARK_OBJ (e->key);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1256 MARK_OBJ (e->value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1257 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1258 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1259
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1260 case HASH_TABLE_VALUE_CAR_WEAK:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1261 for (; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1262 if (!HENTRY_CLEAR_P (e))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1263 if (!CONSP (e->value) || marked_p (XCAR (e->value)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1264 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1265 MARK_OBJ (e->key);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1266 MARK_OBJ (e->value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1267 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1268 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1269
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1270 default:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1271 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1272 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 return did_mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1278 void
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1279 prune_weak_hash_tables (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1281 Lisp_Object hash_table, prev = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1282 for (hash_table = Vall_weak_hash_tables;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1283 !NILP (hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1284 hash_table = XHASH_TABLE (hash_table)->next_weak)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1286 if (! marked_p (hash_table))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1288 /* This hash table itself is garbage. Remove it from the list. */
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1289 if (NILP (prev))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1290 Vall_weak_hash_tables = XHASH_TABLE (hash_table)->next_weak;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 else
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1292 XHASH_TABLE (prev)->next_weak = XHASH_TABLE (hash_table)->next_weak;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 /* Now, scan over all the pairs. Remove all of the pairs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 in which the key or value, or both, is unmarked
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1298 (depending on the weakness of the hash table). */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1299 Lisp_Hash_Table *ht = XHASH_TABLE (hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1300 hentry *entries = ht->hentries;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1301 hentry *sentinel = entries + ht->size;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1302 hentry *e;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1303
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1304 for (e = entries; e < sentinel; e++)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1305 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1306 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1307 again:
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1308 if (!marked_p (e->key) || !marked_p (e->value))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1309 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1310 remhash_1 (ht, entries, e);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1311 if (!HENTRY_CLEAR_P (e))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1312 goto again;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1313 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1314 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1315
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1316 prev = hash_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 /* Return a hash value for an array of Lisp_Objects of size SIZE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1323 hashcode_t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 internal_array_hash (Lisp_Object *arr, int size, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 int i;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1327 unsigned long hash = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 if (size <= 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 for (i = 0; i < size; i++)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1332 hash = HASH2 (hash, internal_hash (arr[i], depth + 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 return hash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1335
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 /* just pick five elements scattered throughout the array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 A slightly better approach would be to offset by some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 noise factor from the points chosen below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 for (i = 0; i < 5; i++)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1340 hash = HASH2 (hash, internal_hash (arr[i*size/5], depth + 1));
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 173
diff changeset
1341
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 return hash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 /* Return a hash value for a Lisp_Object. This is for use when hashing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 objects with the comparison being `equal' (for `eq', you can just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 use the Lisp_Object itself as the hash value). You need to make a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 tradeoff between the speed of the hash function and how good the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 hashing is. In particular, the hash function needs to be FAST,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 so you can't just traipse down the whole tree hashing everything
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 together. Most of the time, objects will differ in the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 few elements you hash. Thus, we only go to a short depth (5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 and only hash at most 5 elements out of a vector. Theoretically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 we could still take 5^5 time (a big big number) to compute a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 hash, but practically this won't ever happen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1357 hashcode_t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 internal_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 if (depth > 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 if (CONSP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 /* no point in worrying about tail recursion, since we're not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 going very deep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 return HASH2 (internal_hash (XCAR (obj), depth + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 internal_hash (XCDR (obj), depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1369 if (STRINGP (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1371 return hash_string (XSTRING_DATA (obj), XSTRING_LENGTH (obj));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1372 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1373 if (VECTORP (obj))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1374 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1375 return HASH2 (XVECTOR_LENGTH (obj),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1376 internal_array_hash (XVECTOR_DATA (obj),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1377 XVECTOR_LENGTH (obj),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1378 depth + 1));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1379 }
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1380 if (LRECORDP (obj))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1382 CONST struct lrecord_implementation
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 207
diff changeset
1383 *imp = XRECORD_LHEADER_IMPLEMENTATION (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 if (imp->hash)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1385 return imp->hash (obj, depth);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 return LISP_HASH (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1391 DEFUN ("sxhash", Fsxhash, 1, 1, 0, /*
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1392 Return a hash value for OBJECT.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1393 (equal obj1 obj2) implies (= (sxhash obj1) (sxhash obj2)).
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1394 */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1395 (object))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1396 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1397 return make_int (internal_hash (object, 0));
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1398 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1399
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1400 #if 0
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1401 xxDEFUN ("internal-hash-value", Finternal_hash_value, 1, 1, 0, /*
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1402 Hash value of OBJECT. For debugging.
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1403 The value is returned as (HIGH . LOW).
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1404 */
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1405 (object))
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1406 {
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1407 /* This function is pretty 32bit-centric. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1408 unsigned long hash = internal_hash (object, 0);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1409 return Fcons (hash >> 16, hash & 0xffff);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1410 }
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1411 #endif
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1412
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 syms_of_elhash (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1421 DEFSUBR (Fhash_table_p);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1422 DEFSUBR (Fmake_hash_table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1423 DEFSUBR (Fcopy_hash_table);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1424 DEFSUBR (Fgethash);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1425 DEFSUBR (Fremhash);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1426 DEFSUBR (Fputhash);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1427 DEFSUBR (Fclrhash);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 14
diff changeset
1428 DEFSUBR (Fmaphash);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1429 DEFSUBR (Fhash_table_count);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1430 DEFSUBR (Fhash_table_test);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1431 DEFSUBR (Fhash_table_size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1432 DEFSUBR (Fhash_table_rehash_size);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1433 DEFSUBR (Fhash_table_rehash_threshold);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1434 DEFSUBR (Fhash_table_weakness);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1435 DEFSUBR (Fhash_table_type); /* obsolete */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1436 DEFSUBR (Fsxhash);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1437 #if 0
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1438 DEFSUBR (Finternal_hash_value);
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 231
diff changeset
1439 #endif
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1440
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1441 defsymbol (&Qhash_tablep, "hash-table-p");
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1442 defsymbol (&Qhash_table, "hash-table");
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 211
diff changeset
1443 defsymbol (&Qhashtable, "hashtable");
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1444 defsymbol (&Qweakness, "weakness");
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1445 defsymbol (&Qvalue, "value");
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1446 defsymbol (&Qrehash_size, "rehash-size");
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1447 defsymbol (&Qrehash_threshold, "rehash-threshold");
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1448
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1449 defsymbol (&Qweak, "weak"); /* obsolete */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1450 defsymbol (&Qkey_weak, "key-weak"); /* obsolete */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1451 defsymbol (&Qvalue_weak, "value-weak"); /* obsolete */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1452 defsymbol (&Qnon_weak, "non-weak"); /* obsolete */
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1453
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1454 defkeyword (&Q_test, ":test");
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1455 defkeyword (&Q_size, ":size");
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1456 defkeyword (&Q_rehash_size, ":rehash-size");
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1457 defkeyword (&Q_rehash_threshold, ":rehash-threshold");
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1458 defkeyword (&Q_weakness, ":weakness");
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1459 defkeyword (&Q_type, ":type"); /* obsolete */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 vars_of_elhash (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1465 /* This must NOT be staticpro'd */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
1466 Vall_weak_hash_tables = Qnil;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
1467 pdump_wire_list (&Vall_weak_hash_tables);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 }