-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhash.fs
253 lines (210 loc) · 6.5 KB
/
hash.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
\ Hashed dictionaries 15jul94py
\ Copyright (C) 1995,1998,2000,2003,2006,2007,2009,2013 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
[IFUNDEF] erase
: erase ( addr len -- ) 0 fill ;
[THEN]
[IFUNDEF] allocate
: reserve-mem here swap allot ;
\ move to a kernel/memory.fs
[ELSE]
: reserve-mem allocate throw ;
[THEN]
[IFUNDEF] hashbits
11 Value hashbits
[THEN]
1 hashbits lshift Value Hashlen
\ compute hash key 15jul94py
has? ec [IF] [IFUNDEF] hash
: hash ( addr len -- key )
over c@ swap 1- IF swap char+ c@ + ELSE nip THEN
[ Hashlen 1- ] literal and ;
[THEN] [THEN]
[IFUNDEF] hash
[IFDEF] (hashkey2)
: hash ( addr len -- key )
hashbits (hashkey2) ;
[ELSE]
: hash ( addr len -- key )
hashbits (hashkey1) ;
[THEN]
[THEN]
Variable insRule insRule on
Variable revealed
\ Memory handling 10oct94py
AVariable HashPointer
Variable HashIndex \ Number of wordlists
Variable HashPop \ Number of words
0 AValue HashTable
\ forward declarations
0 AValue hashsearch-map
Defer hash-alloc ( addr -- addr )
\ DelFix and NewFix are from bigFORTH 15jul94py
: DelFix ( addr root -- ) dup @ 2 pick ! ! ;
: NewFix ( root len # -- addr )
BEGIN 2 pick @ ?dup 0= WHILE 2dup * reserve-mem
over 0 ?DO dup 4 pick DelFix 2 pick + LOOP drop
REPEAT >r drop r@ @ rot ! r@ swap erase r> ;
: bucket ( addr len wordlist -- bucket-addr )
\ @var{bucket-addr} is the address of a cell that points to the first
\ element in the list of the bucket for the string @var{addr len}
wordlist-extend @ -rot hash xor ( bucket# )
cells HashTable + ;
: hash-find ( addr len wordlist -- nfa / false )
>r 2dup r> bucket @ (hashlfind) ;
\ hash vocabularies 16jul94py
: lastlink! ( addr link -- )
BEGIN dup @ dup WHILE nip REPEAT drop ! ;
: (reveal ( nfa wid -- )
over name>string rot bucket >r
HashPointer 2 Cells $400 NewFix
tuck cell+ ! r> insRule @
IF
dup @ 2 pick ! !
ELSE
lastlink!
THEN
revealed on 1 HashPop +! 0 hash-alloc drop ;
: hash-reveal ( nfa wid -- )
2dup (reveal) (reveal ;
: table-reveal ( nfa wid -- )
2dup (nocheck-reveal) (reveal ;
[IFUNDEF] >link ' noop Alias >link [THEN]
: inithash ( wid -- )
wordlist-extend
insRule @ >r insRule off 1 hash-alloc over ! 3 cells -
dup wordlist-id 0 >link -
BEGIN >link @ dup WHILE 2dup swap (reveal REPEAT
2drop r> insRule ! ;
: addall ( -- )
HashPop off voclink
BEGIN @ dup WHILE
dup 0 wordlist-link -
dup wordlist-map @ reveal-method @
dup ['] hash-reveal = swap ['] table-reveal = or
IF inithash ELSE drop THEN
REPEAT drop ;
: clearhash ( -- )
HashTable Hashlen cells bounds
DO I @
BEGIN dup WHILE
dup @ swap HashPointer DelFix
REPEAT
I !
cell +LOOP
HashIndex off
voclink
BEGIN ( wordlist-link-addr )
@ dup
WHILE ( wordlist-link )
dup 0 wordlist-link - ( wordlist-link wid )
dup wordlist-map @ hashsearch-map =
IF ( wordlist-link wid )
0 swap wordlist-extend !
ELSE
drop
THEN
REPEAT
drop ;
: rehashall ( wid -- )
drop revealed @
IF clearhash addall revealed off
THEN ;
: (rehash) ( wid -- )
dup wordlist-extend @ 0=
IF inithash
ELSE rehashall THEN ;
: hashdouble ( -- )
HashTable >r clearhash
1 hashbits 1+ dup to hashbits lshift to hashlen
r> free >r 0 to HashTable
addall r> throw ;
const Create (hashsearch-map)
' hash-find A, ' hash-reveal A, ' (rehash) A, ' (rehash) A,
(hashsearch-map) to hashsearch-map
\ hash allocate and vocabulary initialization 10oct94py
:noname ( n+ -- n )
HashTable 0=
IF Hashlen cells reserve-mem TO HashTable
HashTable Hashlen cells erase THEN
HashIndex @ swap HashIndex +!
HashIndex @ Hashlen >=
[ [IFUNDEF] allocate ]
ABORT" no more space in hashtable"
[ [ELSE] ]
HashPop @ hashlen 2* >= or
IF hashdouble THEN
[ [THEN] ] ; is hash-alloc
\ Hash-Find 01jan93py
has? cross 0=
[IF]
: hash-wordlist ( wid -- )
hashsearch-map swap wordlist-map ! ;
: make-hash
forth-wordlist hash-wordlist
environment-wordlist hash-wordlist
['] Root >body hash-wordlist
addall ;
make-hash \ Baumsuche ist installiert.
[ELSE]
hashsearch-map forth-wordlist wordlist-map !
[THEN]
\ for ec version display that vocabulary goes hashed
: hash-cold ( -- )
[ has? ec [IF] ] ." Hashing..." [ [THEN] ]
HashPointer off 0 TO HashTable HashIndex off
addall
\ voclink
\ BEGIN @ dup WHILE
\ dup 0 wordlist-link - initvoc
\ REPEAT drop
[ has? ec [IF] ] ." Done" cr [ [THEN] ] ;
:noname ( -- )
defers 'cold
hash-cold
; is 'cold
: .words ( -- )
base @ >r hex HashTable Hashlen 0
DO cr i 2 .r ." : " dup i cells +
BEGIN @ dup WHILE
dup cell+ @ name>string type space REPEAT drop
LOOP drop r> base ! ;
\ \ this stuff is for evaluating the hash function
\ : square dup * ;
\ : countwl ( -- sum sumsq )
\ \ gives the number of words in the current wordlist
\ \ and the sum of squares for the sublist lengths
\ 0 0
\ hashtable Hashlen cells bounds DO
\ 0 i BEGIN
\ @ dup WHILE
\ swap 1+ swap
\ REPEAT
\ drop
\ swap over square +
\ >r + r>
\ 1 cells
\ +LOOP ;
\ : chisq ( -- n )
\ \ n should have about the same size as Hashlen
\ countwl Hashlen 2 pick */ swap - ;
\ Create hashhist here $100 cells dup allot erase
\ : .hashhist ( -- ) hashhist $100 cells erase
\ HashTable HashLen cells bounds
\ DO 0 I BEGIN @ dup WHILE swap 1+ swap REPEAT drop
\ 1 swap cells hashhist + +!
\ cell +LOOP
\ 0 0 $100 0 DO
\ hashhist I cells + @ dup IF
\ cr I 0 .r ." : " dup . THEN tuck I * + >r + r>
\ LOOP cr ." Total: " 0 .r ." /" . cr ;