1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
30 * Zack Rusin <zack@tungstengraphics.com>
33 #include "util/u_debug.h"
34 #include "util/u_memory.h"
38 #define MAX(a, b) ((a > b) ? (a) : (b))
40 static const int MinNumBits
= 4;
42 static const unsigned char prime_deltas
[] = {
43 0, 0, 1, 3, 1, 5, 3, 3, 1, 9, 7, 5, 3, 9, 25, 3,
44 1, 21, 3, 21, 7, 15, 9, 5, 3, 29, 15, 0, 0, 0, 0, 0
47 static int primeForNumBits(int numBits
)
49 return (1 << numBits
) + prime_deltas
[numBits
];
53 Returns the smallest integer n such that
54 primeForNumBits(n) >= hint.
56 static int countBits(int hint
)
66 if (numBits
>= (int)sizeof(prime_deltas
)) {
67 numBits
= sizeof(prime_deltas
) - 1;
68 } else if (primeForNumBits(numBits
) < hint
) {
75 struct cso_node
*next
;
80 struct cso_hash_data
{
81 struct cso_node
*fakeNext
;
82 struct cso_node
**buckets
;
92 struct cso_hash_data
*d
;
97 static void *cso_data_allocate_node(struct cso_hash_data
*hash
)
99 return MALLOC(hash
->nodeSize
);
102 static void cso_free_node(struct cso_node
*node
)
107 static struct cso_node
*
108 cso_hash_create_node(struct cso_hash
*hash
,
109 unsigned akey
, void *avalue
,
110 struct cso_node
**anextNode
)
112 struct cso_node
*node
= cso_data_allocate_node(hash
->data
.d
);
118 node
->value
= avalue
;
120 node
->next
= (struct cso_node
*)(*anextNode
);
122 ++hash
->data
.d
->size
;
126 static void cso_data_rehash(struct cso_hash_data
*hash
, int hint
)
129 hint
= countBits(-hint
);
130 if (hint
< MinNumBits
)
132 hash
->userNumBits
= (short)hint
;
133 while (primeForNumBits(hint
) < (hash
->size
>> 1))
135 } else if (hint
< MinNumBits
) {
139 if (hash
->numBits
!= hint
) {
140 struct cso_node
*e
= (struct cso_node
*)(hash
);
141 struct cso_node
**oldBuckets
= hash
->buckets
;
142 int oldNumBuckets
= hash
->numBuckets
;
145 hash
->numBits
= (short)hint
;
146 hash
->numBuckets
= primeForNumBits(hint
);
147 hash
->buckets
= MALLOC(sizeof(struct cso_node
*) * hash
->numBuckets
);
148 for (i
= 0; i
< hash
->numBuckets
; ++i
)
149 hash
->buckets
[i
] = e
;
151 for (i
= 0; i
< oldNumBuckets
; ++i
) {
152 struct cso_node
*firstNode
= oldBuckets
[i
];
153 while (firstNode
!= e
) {
154 unsigned h
= firstNode
->key
;
155 struct cso_node
*lastNode
= firstNode
;
156 struct cso_node
*afterLastNode
;
157 struct cso_node
**beforeFirstNode
;
159 while (lastNode
->next
!= e
&& lastNode
->next
->key
== h
)
160 lastNode
= lastNode
->next
;
162 afterLastNode
= lastNode
->next
;
163 beforeFirstNode
= &hash
->buckets
[h
% hash
->numBuckets
];
164 while (*beforeFirstNode
!= e
)
165 beforeFirstNode
= &(*beforeFirstNode
)->next
;
166 lastNode
->next
= *beforeFirstNode
;
167 *beforeFirstNode
= firstNode
;
168 firstNode
= afterLastNode
;
175 static void cso_data_might_grow(struct cso_hash_data
*hash
)
177 if (hash
->size
>= hash
->numBuckets
)
178 cso_data_rehash(hash
, hash
->numBits
+ 1);
181 static void cso_data_has_shrunk(struct cso_hash_data
*hash
)
183 if (hash
->size
<= (hash
->numBuckets
>> 3) &&
184 hash
->numBits
> hash
->userNumBits
) {
185 int max
= MAX(hash
->numBits
-2, hash
->userNumBits
);
186 cso_data_rehash(hash
, max
);
190 static struct cso_node
*cso_data_first_node(struct cso_hash_data
*hash
)
192 struct cso_node
*e
= (struct cso_node
*)(hash
);
193 struct cso_node
**bucket
= hash
->buckets
;
194 int n
= hash
->numBuckets
;
203 static struct cso_node
**cso_hash_find_node(struct cso_hash
*hash
, unsigned akey
)
205 struct cso_node
**node
;
207 if (hash
->data
.d
->numBuckets
) {
208 node
= (struct cso_node
**)(&hash
->data
.d
->buckets
[akey
% hash
->data
.d
->numBuckets
]);
209 assert(*node
== hash
->data
.e
|| (*node
)->next
);
210 while (*node
!= hash
->data
.e
&& (*node
)->key
!= akey
)
211 node
= &(*node
)->next
;
213 node
= (struct cso_node
**)((const struct cso_node
* const *)(&hash
->data
.e
));
218 struct cso_hash_iter
cso_hash_insert(struct cso_hash
*hash
,
219 unsigned key
, void *data
)
221 cso_data_might_grow(hash
->data
.d
);
224 struct cso_node
**nextNode
= cso_hash_find_node(hash
, key
);
225 struct cso_node
*node
= cso_hash_create_node(hash
, key
, data
, nextNode
);
227 struct cso_hash_iter null_iter
= {hash
, 0};
232 struct cso_hash_iter iter
= {hash
, node
};
238 struct cso_hash
* cso_hash_create(void)
240 struct cso_hash
*hash
= MALLOC_STRUCT(cso_hash
);
244 hash
->data
.d
= MALLOC_STRUCT(cso_hash_data
);
250 hash
->data
.d
->fakeNext
= 0;
251 hash
->data
.d
->buckets
= 0;
252 hash
->data
.d
->size
= 0;
253 hash
->data
.d
->nodeSize
= sizeof(struct cso_node
);
254 hash
->data
.d
->userNumBits
= (short)MinNumBits
;
255 hash
->data
.d
->numBits
= 0;
256 hash
->data
.d
->numBuckets
= 0;
261 void cso_hash_delete(struct cso_hash
*hash
)
263 struct cso_node
*e_for_x
= (struct cso_node
*)(hash
->data
.d
);
264 struct cso_node
**bucket
= (struct cso_node
**)(hash
->data
.d
->buckets
);
265 int n
= hash
->data
.d
->numBuckets
;
267 struct cso_node
*cur
= *bucket
++;
268 while (cur
!= e_for_x
) {
269 struct cso_node
*next
= cur
->next
;
274 FREE(hash
->data
.d
->buckets
);
279 struct cso_hash_iter
cso_hash_find(struct cso_hash
*hash
,
282 struct cso_node
**nextNode
= cso_hash_find_node(hash
, key
);
283 struct cso_hash_iter iter
= {hash
, *nextNode
};
287 unsigned cso_hash_iter_key(struct cso_hash_iter iter
)
289 if (!iter
.node
|| iter
.hash
->data
.e
== iter
.node
)
291 return iter
.node
->key
;
294 void * cso_hash_iter_data(struct cso_hash_iter iter
)
296 if (!iter
.node
|| iter
.hash
->data
.e
== iter
.node
)
298 return iter
.node
->value
;
301 static struct cso_node
*cso_hash_data_next(struct cso_node
*node
)
304 struct cso_node
*next
;
306 struct cso_hash_data
*d
;
309 struct cso_node
**bucket
;
314 debug_printf("iterating beyond the last element\n");
320 start
= (node
->key
% a
.d
->numBuckets
) + 1;
321 bucket
= a
.d
->buckets
+ start
;
322 n
= a
.d
->numBuckets
- start
;
332 static struct cso_node
*cso_hash_data_prev(struct cso_node
*node
)
336 struct cso_hash_data
*d
;
339 struct cso_node
*sentinel
;
340 struct cso_node
**bucket
;
347 start
= a
.d
->numBuckets
- 1;
349 start
= node
->key
% a
.d
->numBuckets
;
352 bucket
= a
.d
->buckets
+ start
;
354 if (*bucket
!= sentinel
) {
355 struct cso_node
*prev
= *bucket
;
356 while (prev
->next
!= sentinel
)
365 debug_printf("iterating backward beyond first element\n");
369 struct cso_hash_iter
cso_hash_iter_next(struct cso_hash_iter iter
)
371 struct cso_hash_iter next
= {iter
.hash
, cso_hash_data_next(iter
.node
)};
375 int cso_hash_iter_is_null(struct cso_hash_iter iter
)
377 if (!iter
.node
|| iter
.node
== iter
.hash
->data
.e
)
382 void * cso_hash_take(struct cso_hash
*hash
,
385 struct cso_node
**node
= cso_hash_find_node(hash
, akey
);
386 if (*node
!= hash
->data
.e
) {
387 void *t
= (*node
)->value
;
388 struct cso_node
*next
= (*node
)->next
;
389 cso_free_node(*node
);
391 --hash
->data
.d
->size
;
392 cso_data_has_shrunk(hash
->data
.d
);
398 struct cso_hash_iter
cso_hash_iter_prev(struct cso_hash_iter iter
)
400 struct cso_hash_iter prev
= {iter
.hash
,
401 cso_hash_data_prev(iter
.node
)};
405 struct cso_hash_iter
cso_hash_first_node(struct cso_hash
*hash
)
407 struct cso_hash_iter iter
= {hash
, cso_data_first_node(hash
->data
.d
)};
411 int cso_hash_size(struct cso_hash
*hash
)
413 return hash
->data
.d
->size
;
416 struct cso_hash_iter
cso_hash_erase(struct cso_hash
*hash
, struct cso_hash_iter iter
)
418 struct cso_hash_iter ret
= iter
;
419 struct cso_node
*node
= iter
.node
;
420 struct cso_node
**node_ptr
;
422 if (node
== hash
->data
.e
)
425 ret
= cso_hash_iter_next(ret
);
426 node_ptr
= (struct cso_node
**)(&hash
->data
.d
->buckets
[node
->key
% hash
->data
.d
->numBuckets
]);
427 while (*node_ptr
!= node
)
428 node_ptr
= &(*node_ptr
)->next
;
429 *node_ptr
= node
->next
;
431 --hash
->data
.d
->size
;
435 boolean
cso_hash_contains(struct cso_hash
*hash
, unsigned key
)
437 struct cso_node
**node
= cso_hash_find_node(hash
, key
);
438 return (*node
!= hash
->data
.e
);