file as.info-6 was initially added on branch binutils-2_10-branch.
[binutils.git] / libiberty / hashtab.c
blob16c5d3e4b12eb08569ad745f20cfaba701db8ba3
1 /* An expandable hash tables datatype.
2 Copyright (C) 1999 Free Software Foundation, Inc.
3 Contributed by Vladimir Makarov (vmakarov@cygnus.com).
5 This file is part of the libiberty library.
6 Libiberty is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 Libiberty is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with libiberty; see the file COPYING.LIB. If
18 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* This package implements basic hash table functionality. It is possible
22 to search for an entry, create an entry and destroy an entry.
24 Elements in the table are generic pointers.
26 The size of the table is not fixed; if the occupancy of the table
27 grows too high the hash table will be expanded.
29 The abstract data implementation is based on generalized Algorithm D
30 from Knuth's book "The art of computer programming". Hash table is
31 expanded by creation of new hash table and transferring elements from
32 the old table to the new table. */
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif
38 #include <sys/types.h>
40 #ifdef HAVE_STDLIB_H
41 #include <stdlib.h>
42 #endif
44 #include <stdio.h>
46 #include "libiberty.h"
47 #include "hashtab.h"
49 /* This macro defines reserved value for empty table entry. */
51 #define EMPTY_ENTRY ((void *) 0)
53 /* This macro defines reserved value for table entry which contained
54 a deleted element. */
56 #define DELETED_ENTRY ((void *) 1)
58 /* The following function returns the nearest prime number which is
59 greater than given source number. */
61 static unsigned long
62 higher_prime_number (n)
63 unsigned long n;
65 unsigned long i;
67 n |= 0x01; /* Force N to be odd. */
68 if (n < 9)
69 return n; /* All odd numbers < 9 are prime. */
71 next:
72 n += 2;
73 i = 3;
76 if (n % i == 0)
77 goto next;
78 i += 2;
80 while ((i * i) <= n);
82 return n;
85 /* This function creates table with length slightly longer than given
86 source length. Created hash table is initiated as empty (all the
87 hash table entries are EMPTY_ENTRY). The function returns the
88 created hash table. */
90 htab_t
91 htab_create (size, hash_f, eq_f, del_f)
92 size_t size;
93 htab_hash hash_f;
94 htab_eq eq_f;
95 htab_del del_f;
97 htab_t result;
99 size = higher_prime_number (size);
100 result = (htab_t) xcalloc (1, sizeof (struct htab));
101 result->entries = (void **) xcalloc (size, sizeof (void *));
102 result->size = size;
103 result->hash_f = hash_f;
104 result->eq_f = eq_f;
105 result->del_f = del_f;
106 return result;
109 /* This function frees all memory allocated for given hash table.
110 Naturally the hash table must already exist. */
112 void
113 htab_delete (htab)
114 htab_t htab;
116 int i;
117 if (htab->del_f)
118 for (i = htab->size - 1; i >= 0; i--)
120 if (htab->entries[i] != EMPTY_ENTRY
121 && htab->entries[i] != DELETED_ENTRY)
122 (*htab->del_f) (htab->entries[i]);
125 free (htab->entries);
126 free (htab);
129 /* This function clears all entries in the given hash table. */
131 void
132 htab_empty (htab)
133 htab_t htab;
135 int i;
136 if (htab->del_f)
137 for (i = htab->size - 1; i >= 0; i--)
139 if (htab->entries[i] != EMPTY_ENTRY
140 && htab->entries[i] != DELETED_ENTRY)
141 (*htab->del_f) (htab->entries[i]);
144 memset (htab->entries, 0, htab->size * sizeof (void *));
147 /* Similar to htab_find_slot, but without several unwanted side effects:
148 - Does not call htab->eq_f when it finds an existing entry.
149 - Does not change the count of elements/searches/collisions in the
150 hash table.
151 This function also assumes there are no deleted entries in the table.
152 HASH is the hash value for the element to be inserted. */
153 static void **
154 find_empty_slot_for_expand (htab, hash)
155 htab_t htab;
156 unsigned int hash;
158 size_t size = htab->size;
159 unsigned int hash2 = 1 + hash % (size - 2);
160 unsigned int index = hash % size;
162 for (;;)
164 void **slot = htab->entries + index;
165 if (*slot == EMPTY_ENTRY)
166 return slot;
168 if (*slot == DELETED_ENTRY)
169 abort ();
171 index += hash2;
172 if (index >= size)
173 index -= size;
177 /* The following function changes size of memory allocated for the
178 entries and repeatedly inserts the table elements. The occupancy
179 of the table after the call will be about 50%. Naturally the hash
180 table must already exist. Remember also that the place of the
181 table entries is changed. */
183 static void
184 htab_expand (htab)
185 htab_t htab;
187 void **oentries;
188 void **olimit;
189 void **p;
191 oentries = htab->entries;
192 olimit = oentries + htab->size;
194 htab->size = higher_prime_number (htab->size * 2);
195 htab->entries = xcalloc (htab->size, sizeof (void **));
197 htab->n_elements -= htab->n_deleted;
198 htab->n_deleted = 0;
200 p = oentries;
203 void *x = *p;
204 if (x != EMPTY_ENTRY && x != DELETED_ENTRY)
206 void **q = find_empty_slot_for_expand (htab, (*htab->hash_f) (x));
207 *q = x;
209 p++;
211 while (p < olimit);
212 free (oentries);
215 /* This function searches for a hash table entry equal to the given
216 element. It cannot be used to insert or delete an element. */
218 void *
219 htab_find_with_hash (htab, element, hash)
220 htab_t htab;
221 const void *element;
222 unsigned int hash;
224 unsigned int index, hash2;
225 size_t size;
227 htab->searches++;
228 size = htab->size;
229 hash2 = 1 + hash % (size - 2);
230 index = hash % size;
232 for (;;)
234 void *entry = htab->entries[index];
235 if (entry == EMPTY_ENTRY)
236 return NULL;
237 else if (entry != DELETED_ENTRY && (*htab->eq_f) (entry, element))
238 return entry;
240 htab->collisions++;
241 index += hash2;
242 if (index >= size)
243 index -= size;
247 /* Like htab_find_slot_with_hash, but compute the hash value from the
248 element. */
249 void *
250 htab_find (htab, element)
251 htab_t htab;
252 const void *element;
254 return htab_find_with_hash (htab, element, (*htab->hash_f) (element));
257 /* This function searches for a hash table slot containing an entry
258 equal to the given element. To delete an entry, call this with
259 INSERT = 0, then call htab_clear_slot on the slot returned (possibly
260 after doing some checks). To insert an entry, call this with
261 INSERT = 1, then write the value you want into the returned slot. */
263 void **
264 htab_find_slot_with_hash (htab, element, hash, insert)
265 htab_t htab;
266 const void *element;
267 unsigned int hash;
268 int insert;
270 void **first_deleted_slot;
271 unsigned int index, hash2;
272 size_t size;
274 if (insert && htab->size * 3 <= htab->n_elements * 4)
275 htab_expand (htab);
277 size = htab->size;
278 hash2 = 1 + hash % (size - 2);
279 index = hash % size;
281 htab->searches++;
282 first_deleted_slot = NULL;
284 for (;;)
286 void *entry = htab->entries[index];
287 if (entry == EMPTY_ENTRY)
289 if (!insert)
290 return NULL;
292 htab->n_elements++;
294 if (first_deleted_slot)
296 *first_deleted_slot = EMPTY_ENTRY;
297 return first_deleted_slot;
300 return &htab->entries[index];
303 if (entry == DELETED_ENTRY)
305 if (!first_deleted_slot)
306 first_deleted_slot = &htab->entries[index];
308 else
310 if ((*htab->eq_f) (entry, element))
311 return &htab->entries[index];
314 htab->collisions++;
315 index += hash2;
316 if (index >= size)
317 index -= size;
321 /* Like htab_find_slot_with_hash, but compute the hash value from the
322 element. */
323 void **
324 htab_find_slot (htab, element, insert)
325 htab_t htab;
326 const void *element;
327 int insert;
329 return htab_find_slot_with_hash (htab, element, (*htab->hash_f) (element),
330 insert);
333 /* This function deletes an element with the given value from hash
334 table. If there is no matching element in the hash table, this
335 function does nothing. */
337 void
338 htab_remove_elt (htab, element)
339 htab_t htab;
340 void *element;
342 void **slot;
344 slot = htab_find_slot (htab, element, 0);
345 if (*slot == EMPTY_ENTRY)
346 return;
348 if (htab->del_f)
349 (*htab->del_f) (*slot);
351 *slot = DELETED_ENTRY;
352 htab->n_deleted++;
355 /* This function clears a specified slot in a hash table. It is
356 useful when you've already done the lookup and don't want to do it
357 again. */
359 void
360 htab_clear_slot (htab, slot)
361 htab_t htab;
362 void **slot;
364 if (slot < htab->entries || slot >= htab->entries + htab->size
365 || *slot == EMPTY_ENTRY || *slot == DELETED_ENTRY)
366 abort ();
367 if (htab->del_f)
368 (*htab->del_f) (*slot);
369 *slot = DELETED_ENTRY;
370 htab->n_deleted++;
373 /* This function scans over the entire hash table calling
374 CALLBACK for each live entry. If CALLBACK returns false,
375 the iteration stops. INFO is passed as CALLBACK's second
376 argument. */
378 void
379 htab_traverse (htab, callback, info)
380 htab_t htab;
381 htab_trav callback;
382 void *info;
384 void **slot, **limit;
385 slot = htab->entries;
386 limit = slot + htab->size;
389 void *x = *slot;
390 if (x != EMPTY_ENTRY && x != DELETED_ENTRY)
391 if (!(*callback) (slot, info))
392 break;
394 while (++slot < limit);
397 /* The following function returns current size of given hash table. */
399 size_t
400 htab_size (htab)
401 htab_t htab;
403 return htab->size;
406 /* The following function returns current number of elements in given
407 hash table. */
409 size_t
410 htab_elements (htab)
411 htab_t htab;
413 return htab->n_elements - htab->n_deleted;
416 /* The following function returns number of percents of fixed
417 collisions during all work with given hash table. */
419 double
420 htab_collisions (htab)
421 htab_t htab;
423 int searches;
425 searches = htab->searches;
426 if (searches == 0)
427 return 0.0;
428 return (double)htab->collisions / (double)searches;