annotate src/elhash.c @ 404:2f8bb876ab1d r21-2-32

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