dbghelp: Dwarf & type references.
[wine/multimedia.git] / dlls / dbghelp / storage.c
blob3aef566d4b93b41a109f6938643b3f648aad4bcf
1 /*
2 * Various storage structures (pool allocation, vector, hash table)
4 * Copyright (C) 1993, Eric Youngdale.
5 * 2004, Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include <assert.h>
25 #include <stdlib.h>
26 #include "wine/debug.h"
28 #include "dbghelp_private.h"
29 #ifdef USE_STATS
30 #include <math.h>
31 #endif
33 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
35 struct pool_arena
37 struct pool_arena* next;
38 char* current;
41 void pool_init(struct pool* a, unsigned arena_size)
43 a->arena_size = arena_size;
44 a->first = NULL;
47 void pool_destroy(struct pool* pool)
49 struct pool_arena* arena;
50 struct pool_arena* next;
52 #ifdef USE_STATS
53 unsigned alloc, used, num;
55 for (alloc = used = num = 0, arena = pool->first; arena; arena = arena->next)
57 alloc += pool->arena_size;
58 used += arena->current - (char*)arena;
59 num++;
61 FIXME("STATS: pool %p has allocated %u kbytes, used %u kbytes in %u arenas,\n"
62 "\t\t\t\tnon-allocation ratio: %.2f%%\n",
63 pool, alloc >> 10, used >> 10, num, 100.0 - (float)used / (float)alloc * 100.0);
64 #endif
66 for (arena = pool->first; arena; arena = next)
68 next = arena->next;
69 HeapFree(GetProcessHeap(), 0, arena);
71 pool_init(pool, 0);
74 void* pool_alloc(struct pool* pool, unsigned len)
76 struct pool_arena** parena;
77 struct pool_arena* arena;
78 void* ret;
80 len = (len + 3) & ~3; /* round up size on DWORD boundary */
81 assert(sizeof(struct pool_arena) + len <= pool->arena_size && len);
83 for (parena = &pool->first; *parena; parena = &(*parena)->next)
85 if ((char*)(*parena) + pool->arena_size - (*parena)->current >= len)
87 ret = (*parena)->current;
88 (*parena)->current += len;
89 return ret;
93 arena = HeapAlloc(GetProcessHeap(), 0, pool->arena_size);
94 if (!arena) {FIXME("OOM\n");return NULL;}
96 *parena = arena;
98 ret = (char*)arena + sizeof(*arena);
99 arena->next = NULL;
100 arena->current = (char*)ret + len;
101 return ret;
104 static struct pool_arena* pool_is_last(struct pool* pool, void* p, unsigned old_size)
106 struct pool_arena* arena;
108 for (arena = pool->first; arena; arena = arena->next)
110 if (arena->current == (char*)p + old_size) return arena;
112 return NULL;
115 static void* pool_realloc(struct pool* pool, void* p, unsigned old_size, unsigned new_size)
117 struct pool_arena* arena;
118 void* new;
120 if ((arena = pool_is_last(pool, p, old_size)) &&
121 (char*)p + new_size <= (char*)arena + pool->arena_size)
123 arena->current = (char*)p + new_size;
124 return p;
126 if ((new = pool_alloc(pool, new_size)) && old_size)
127 memcpy(new, p, min(old_size, new_size));
128 return new;
131 char* pool_strdup(struct pool* pool, const char* str)
133 char* ret;
134 if ((ret = pool_alloc(pool, strlen(str) + 1))) strcpy(ret, str);
135 return ret;
138 void vector_init(struct vector* v, unsigned esz, unsigned bucket_sz)
140 v->buckets = NULL;
141 /* align size on DWORD boundaries */
142 v->elt_size = (esz + 3) & ~3;
143 switch (bucket_sz)
145 case 2: v->shift = 1; break;
146 case 4: v->shift = 2; break;
147 case 8: v->shift = 3; break;
148 case 16: v->shift = 4; break;
149 case 32: v->shift = 5; break;
150 case 64: v->shift = 6; break;
151 case 128: v->shift = 7; break;
152 case 256: v->shift = 8; break;
153 case 512: v->shift = 9; break;
154 case 1024: v->shift = 10; break;
155 default: assert(0);
157 v->num_buckets = 0;
158 v->num_elts = 0;
161 unsigned vector_length(const struct vector* v)
163 return v->num_elts;
166 void* vector_at(const struct vector* v, unsigned pos)
168 unsigned o;
170 if (pos >= v->num_elts) return NULL;
171 o = pos & ((1 << v->shift) - 1);
172 return (char*)v->buckets[pos >> v->shift] + o * v->elt_size;
175 void* vector_add(struct vector* v, struct pool* pool)
177 unsigned ncurr = v->num_elts++;
179 /* check that we don't wrap around */
180 assert(v->num_elts > ncurr);
181 if (ncurr == (v->num_buckets << v->shift))
183 v->buckets = pool_realloc(pool, v->buckets,
184 v->num_buckets * sizeof(void*),
185 (v->num_buckets + 1) * sizeof(void*));
186 v->buckets[v->num_buckets] = pool_alloc(pool, v->elt_size << v->shift);
187 return v->buckets[v->num_buckets++];
189 return vector_at(v, ncurr);
192 static unsigned vector_position(const struct vector* v, const void* elt)
194 int i;
196 for (i = 0; i < v->num_buckets; i++)
198 if (v->buckets[i] <= elt &&
199 (const char*)elt < (const char*)v->buckets[i] + (v->elt_size << v->shift))
201 return (i << v->shift) +
202 ((const char*)elt - (const char*)v->buckets[i]) / v->elt_size;
205 assert(0);
206 return 0;
209 void* vector_iter_up(const struct vector* v, void* elt)
211 unsigned pos;
213 if (!elt) return vector_at(v, 0);
214 pos = vector_position(v, elt) + 1;
215 if (pos >= vector_length(v)) return NULL;
216 return vector_at(v, pos);
219 void* vector_iter_down(const struct vector* v, void* elt)
221 unsigned pos;
222 if (!elt) return vector_at(v, vector_length(v) - 1);
223 pos = vector_position(v, elt);
224 if (pos == 0) return NULL;
225 return vector_at(v, pos - 1);
228 /* We construct the sparse array as two vectors (of equal size)
229 * The first vector (key2index) is the lookup table between the key and
230 * an index in the second vector (elements)
231 * When inserting an element, it's always appended in second vector (and
232 * never moved in memory later on), only the first vector is reordered
234 struct key2index
236 unsigned long key;
237 unsigned index;
240 void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz)
242 vector_init(&sa->key2index, sizeof(struct key2index), bucket_sz);
243 vector_init(&sa->elements, elt_sz, bucket_sz);
246 /******************************************************************
247 * spare_array_lookup
249 * Returns the first index which key is >= at passed key
251 static struct key2index* spare_array_lookup(const struct sparse_array* sa,
252 unsigned long key, unsigned* idx)
254 struct key2index* pk2i;
256 /* FIXME: should use bsearch here */
257 for (*idx = 0; *idx < sa->elements.num_elts; (*idx)++)
259 pk2i = vector_at(&sa->key2index, *idx);
260 if (pk2i && pk2i->key >= key) return pk2i;
262 return NULL;
265 void* sparse_array_find(const struct sparse_array* sa, unsigned long key)
267 unsigned idx;
268 struct key2index* pk2i;
270 if ((pk2i = spare_array_lookup(sa, key, &idx)) && pk2i->key == key)
271 return vector_at(&sa->elements, pk2i->index);
272 return NULL;
275 void* sparse_array_add(struct sparse_array* sa, unsigned long key,
276 struct pool* pool)
278 unsigned idx, i;
279 struct key2index* pk2i;
280 struct key2index* to;
282 pk2i = spare_array_lookup(sa, key, &idx);
283 if (pk2i && pk2i->key == key)
285 FIXME("re adding an existing key\n");
286 return NULL;
288 to = vector_add(&sa->key2index, pool);
289 if (pk2i)
291 /* we need to shift vector's content... */
292 /* let's do it brute force... (FIXME) */
293 assert(sa->key2index.num_elts >= 2);
294 for (i = sa->key2index.num_elts - 1; i > idx; i--)
296 pk2i = vector_at(&sa->key2index, i - 1);
297 *to = *pk2i;
298 to = pk2i;
302 to->key = key;
303 to->index = sa->elements.num_elts;
305 return vector_add(&sa->elements, pool);
308 unsigned sparse_array_length(const struct sparse_array* sa)
310 return sa->elements.num_elts;
313 unsigned hash_table_hash(const char* name, unsigned num_buckets)
315 unsigned hash = 0;
316 while (*name)
318 hash += *name++;
319 hash += (hash << 10);
320 hash ^= (hash >> 6);
322 hash += (hash << 3);
323 hash ^= (hash >> 11);
324 hash += (hash << 15);
325 return hash % num_buckets;
328 void hash_table_init(struct pool* pool, struct hash_table* ht, unsigned num_buckets)
330 ht->buckets = pool_alloc(pool, num_buckets * sizeof(struct hash_table_elt*));
331 assert(ht->buckets);
332 ht->num_buckets = num_buckets;
333 memset(ht->buckets, 0, num_buckets * sizeof(struct hash_table_elt*));
336 void hash_table_destroy(struct hash_table* ht)
338 #if defined(USE_STATS)
339 int i;
340 unsigned len;
341 unsigned num = 0, min = 0xffffffff, max = 0, sq = 0;
342 struct hash_table_elt* elt;
343 double mean, variance;
345 for (i = 0; i < ht->num_buckets; i++)
347 for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++;
348 if (len < min) min = len;
349 if (len > max) max = len;
350 num += len;
351 sq += len * len;
353 mean = (double)num / ht->num_buckets;
354 variance = (double)sq / ht->num_buckets - mean * mean;
355 FIXME("STATS: elts[num:%-4u size:%u mean:%f] buckets[min:%-4u variance:%+f max:%-4u]\n",
356 num, ht->num_buckets, mean, min, variance, max);
357 #if 1
358 for (i = 0; i < ht->num_buckets; i++)
360 for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++;
361 if (len == max)
363 FIXME("Longuest bucket:\n");
364 for (elt = ht->buckets[i]; elt; elt = elt->next)
365 FIXME("\t%s\n", elt->name);
366 break;
370 #endif
371 #endif
374 void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)
376 unsigned hash = hash_table_hash(elt->name, ht->num_buckets);
377 struct hash_table_elt** p;
379 /* in some cases, we need to get back the symbols of same name in the order
380 * in which they've been inserted. So insert new elements at the end of the list.
382 for (p = &ht->buckets[hash]; *p; p = &((*p)->next));
383 *p = elt;
384 elt->next = NULL;
387 void* hash_table_find(const struct hash_table* ht, const char* name)
389 unsigned hash = hash_table_hash(name, ht->num_buckets);
390 struct hash_table_elt* elt;
392 for (elt = ht->buckets[hash]; elt; elt = elt->next)
393 if (!strcmp(name, elt->name)) return elt;
394 return NULL;
397 void hash_table_iter_init(const struct hash_table* ht,
398 struct hash_table_iter* hti, const char* name)
400 hti->ht = ht;
401 if (name)
403 hti->last = hash_table_hash(name, ht->num_buckets);
404 hti->index = hti->last - 1;
406 else
408 hti->last = ht->num_buckets - 1;
409 hti->index = -1;
411 hti->element = NULL;
414 void* hash_table_iter_up(struct hash_table_iter* hti)
416 if (hti->element) hti->element = hti->element->next;
417 while (!hti->element && hti->index < hti->last)
418 hti->element = hti->ht->buckets[++hti->index];
419 return hti->element;