e42f1feb9b50894cd368075fcc5457ad5097f881
[mesa.git] / src / gallium / auxiliary / cso_cache / cso_hash.c
1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 *
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:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
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 VMWARE 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.
25 *
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Zack Rusin <zackr@vmware.com>
31 */
32
33 #include "util/u_debug.h"
34 #include "util/u_memory.h"
35
36 #include "cso_hash.h"
37
38 #ifndef MAX
39 #define MAX(a, b) ((a > b) ? (a) : (b))
40 #endif
41
42 static const int MinNumBits = 4;
43
44 static const unsigned char prime_deltas[] = {
45 0, 0, 1, 3, 1, 5, 3, 3, 1, 9, 7, 5, 3, 9, 25, 3,
46 1, 21, 3, 21, 7, 15, 9, 5, 3, 29, 15, 0, 0, 0, 0, 0
47 };
48
49 static int primeForNumBits(int numBits)
50 {
51 return (1 << numBits) + prime_deltas[numBits];
52 }
53
54 /*
55 Returns the smallest integer n such that
56 primeForNumBits(n) >= hint.
57 */
58 static int countBits(int hint)
59 {
60 int numBits = 0;
61 int bits = hint;
62
63 while (bits > 1) {
64 bits >>= 1;
65 numBits++;
66 }
67
68 if (numBits >= (int)sizeof(prime_deltas)) {
69 numBits = sizeof(prime_deltas) - 1;
70 } else if (primeForNumBits(numBits) < hint) {
71 ++numBits;
72 }
73 return numBits;
74 }
75
76 static struct cso_node *
77 cso_hash_create_node(struct cso_hash *hash,
78 unsigned akey, void *avalue,
79 struct cso_node **anextNode)
80 {
81 struct cso_node *node = MALLOC(sizeof(struct cso_node));
82
83 if (!node)
84 return NULL;
85
86 node->key = akey;
87 node->value = avalue;
88
89 node->next = *anextNode;
90 *anextNode = node;
91 ++hash->data.d->size;
92 return node;
93 }
94
95 static void cso_data_rehash(struct cso_hash_data *hash, int hint)
96 {
97 if (hint < 0) {
98 hint = countBits(-hint);
99 if (hint < MinNumBits)
100 hint = MinNumBits;
101 hash->userNumBits = (short)hint;
102 while (primeForNumBits(hint) < (hash->size >> 1))
103 ++hint;
104 } else if (hint < MinNumBits) {
105 hint = MinNumBits;
106 }
107
108 if (hash->numBits != hint) {
109 struct cso_node *e = (struct cso_node *)hash;
110 struct cso_node **oldBuckets = hash->buckets;
111 int oldNumBuckets = hash->numBuckets;
112 int i = 0;
113
114 hash->numBits = (short)hint;
115 hash->numBuckets = primeForNumBits(hint);
116 hash->buckets = MALLOC(sizeof(struct cso_node*) * hash->numBuckets);
117 for (i = 0; i < hash->numBuckets; ++i)
118 hash->buckets[i] = e;
119
120 for (i = 0; i < oldNumBuckets; ++i) {
121 struct cso_node *firstNode = oldBuckets[i];
122 while (firstNode != e) {
123 unsigned h = firstNode->key;
124 struct cso_node *lastNode = firstNode;
125 struct cso_node *afterLastNode;
126 struct cso_node **beforeFirstNode;
127
128 while (lastNode->next != e && lastNode->next->key == h)
129 lastNode = lastNode->next;
130
131 afterLastNode = lastNode->next;
132 beforeFirstNode = &hash->buckets[h % hash->numBuckets];
133 while (*beforeFirstNode != e)
134 beforeFirstNode = &(*beforeFirstNode)->next;
135 lastNode->next = *beforeFirstNode;
136 *beforeFirstNode = firstNode;
137 firstNode = afterLastNode;
138 }
139 }
140 FREE(oldBuckets);
141 }
142 }
143
144 static void cso_data_might_grow(struct cso_hash_data *hash)
145 {
146 if (hash->size >= hash->numBuckets)
147 cso_data_rehash(hash, hash->numBits + 1);
148 }
149
150 static void cso_data_has_shrunk(struct cso_hash_data *hash)
151 {
152 if (hash->size <= (hash->numBuckets >> 3) &&
153 hash->numBits > hash->userNumBits) {
154 int max = MAX(hash->numBits-2, hash->userNumBits);
155 cso_data_rehash(hash, max);
156 }
157 }
158
159 static struct cso_node *cso_data_first_node(struct cso_hash_data *hash)
160 {
161 struct cso_node *e = (struct cso_node *)hash;
162 struct cso_node **bucket = hash->buckets;
163 int n = hash->numBuckets;
164
165 while (n--) {
166 if (*bucket != e)
167 return *bucket;
168 ++bucket;
169 }
170 return e;
171 }
172
173 struct cso_hash_iter cso_hash_insert(struct cso_hash *hash,
174 unsigned key, void *data)
175 {
176 cso_data_might_grow(hash->data.d);
177
178 struct cso_node **nextNode = cso_hash_find_node(hash, key);
179 struct cso_node *node = cso_hash_create_node(hash, key, data, nextNode);
180 if (!node) {
181 struct cso_hash_iter null_iter = {hash, 0};
182 return null_iter;
183 }
184
185 struct cso_hash_iter iter = {hash, node};
186 return iter;
187 }
188
189 bool cso_hash_init(struct cso_hash *hash)
190 {
191 hash->data.d = MALLOC_STRUCT(cso_hash_data);
192 if (!hash->data.d)
193 return false;
194
195 hash->data.d->fakeNext = 0;
196 hash->data.d->buckets = 0;
197 hash->data.d->size = 0;
198 hash->data.d->userNumBits = (short)MinNumBits;
199 hash->data.d->numBits = 0;
200 hash->data.d->numBuckets = 0;
201 return true;
202 }
203
204 void cso_hash_deinit(struct cso_hash *hash)
205 {
206 struct cso_node *e_for_x = (struct cso_node *)hash->data.d;
207 struct cso_node **bucket = hash->data.d->buckets;
208 int n = hash->data.d->numBuckets;
209
210 while (n--) {
211 struct cso_node *cur = *bucket++;
212 while (cur != e_for_x) {
213 struct cso_node *next = cur->next;
214 FREE(cur);
215 cur = next;
216 }
217 }
218 FREE(hash->data.d->buckets);
219 FREE(hash->data.d);
220 hash->data.d = NULL;
221 }
222
223 unsigned cso_hash_iter_key(struct cso_hash_iter iter)
224 {
225 if (!iter.node || iter.hash->data.e == iter.node)
226 return 0;
227 return iter.node->key;
228 }
229
230 struct cso_node *cso_hash_data_next(struct cso_node *node)
231 {
232 union {
233 struct cso_node *next;
234 struct cso_node *e;
235 struct cso_hash_data *d;
236 } a;
237 int start;
238 struct cso_node **bucket;
239 int n;
240
241 a.next = node->next;
242 if (!a.next) {
243 debug_printf("iterating beyond the last element\n");
244 return NULL;
245 }
246 if (a.next->next)
247 return a.next;
248
249 start = (node->key % a.d->numBuckets) + 1;
250 bucket = a.d->buckets + start;
251 n = a.d->numBuckets - start;
252 while (n--) {
253 if (*bucket != a.e)
254 return *bucket;
255 ++bucket;
256 }
257 return a.e;
258 }
259
260
261 static struct cso_node *cso_hash_data_prev(struct cso_node *node)
262 {
263 union {
264 struct cso_node *e;
265 struct cso_hash_data *d;
266 } a;
267 int start;
268 struct cso_node *sentinel;
269 struct cso_node **bucket;
270
271 a.e = node;
272 while (a.e->next)
273 a.e = a.e->next;
274
275 if (node == a.e)
276 start = a.d->numBuckets - 1;
277 else
278 start = node->key % a.d->numBuckets;
279
280 sentinel = node;
281 bucket = a.d->buckets + start;
282 while (start >= 0) {
283 if (*bucket != sentinel) {
284 struct cso_node *prev = *bucket;
285 while (prev->next != sentinel)
286 prev = prev->next;
287 return prev;
288 }
289
290 sentinel = a.e;
291 --bucket;
292 --start;
293 }
294 debug_printf("iterating backward beyond first element\n");
295 return a.e;
296 }
297
298 void *cso_hash_take(struct cso_hash *hash, unsigned akey)
299 {
300 struct cso_node **node = cso_hash_find_node(hash, akey);
301
302 if (*node != hash->data.e) {
303 void *t = (*node)->value;
304 struct cso_node *next = (*node)->next;
305 FREE(*node);
306 *node = next;
307 --hash->data.d->size;
308 cso_data_has_shrunk(hash->data.d);
309 return t;
310 }
311 return NULL;
312 }
313
314 struct cso_hash_iter cso_hash_iter_prev(struct cso_hash_iter iter)
315 {
316 struct cso_hash_iter prev = {iter.hash,
317 cso_hash_data_prev(iter.node)};
318 return prev;
319 }
320
321 struct cso_hash_iter cso_hash_first_node(struct cso_hash *hash)
322 {
323 struct cso_hash_iter iter = {hash, cso_data_first_node(hash->data.d)};
324 return iter;
325 }
326
327 int cso_hash_size(struct cso_hash *hash)
328 {
329 return hash->data.d->size;
330 }
331
332 struct cso_hash_iter cso_hash_erase(struct cso_hash *hash, struct cso_hash_iter iter)
333 {
334 struct cso_hash_iter ret = iter;
335 struct cso_node *node = iter.node;
336 struct cso_node **node_ptr;
337
338 if (node == hash->data.e)
339 return iter;
340
341 ret = cso_hash_iter_next(ret);
342 node_ptr = &hash->data.d->buckets[node->key % hash->data.d->numBuckets];
343 while (*node_ptr != node)
344 node_ptr = &(*node_ptr)->next;
345 *node_ptr = node->next;
346 FREE(node);
347 --hash->data.d->size;
348 return ret;
349 }
350
351 bool cso_hash_contains(struct cso_hash *hash, unsigned key)
352 {
353 struct cso_node **node = cso_hash_find_node(hash, key);
354 return *node != hash->data.e;
355 }