1 /* An expandable hash tables datatype.
2 Copyright (C) 1999, 2000, 2001 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. */
38 #include <sys/types.h>
50 #include "libiberty.h"
53 /* This macro defines reserved value for empty table entry. */
55 #define EMPTY_ENTRY ((PTR) 0)
57 /* This macro defines reserved value for table entry which contained
60 #define DELETED_ENTRY ((PTR) 1)
62 static unsigned long higher_prime_number
PARAMS ((unsigned long));
63 static hashval_t hash_pointer
PARAMS ((const void *));
64 static int eq_pointer
PARAMS ((const void *, const void *));
65 static int htab_expand
PARAMS ((htab_t
));
66 static PTR
*find_empty_slot_for_expand
PARAMS ((htab_t
, hashval_t
));
68 /* At some point, we could make these be NULL, and modify the
69 hash-table routines to handle NULL specially; that would avoid
70 function-call overhead for the common case of hashing pointers. */
71 htab_hash htab_hash_pointer
= hash_pointer
;
72 htab_eq htab_eq_pointer
= eq_pointer
;
74 /* The following function returns a nearest prime number which is
75 greater than N, and near a power of two. */
78 higher_prime_number (n
)
81 /* These are primes that are near, but slightly smaller than, a
83 static const unsigned long primes
[] = {
96 (unsigned long) 16381,
97 (unsigned long) 32749,
98 (unsigned long) 65521,
99 (unsigned long) 131071,
100 (unsigned long) 262139,
101 (unsigned long) 524287,
102 (unsigned long) 1048573,
103 (unsigned long) 2097143,
104 (unsigned long) 4194301,
105 (unsigned long) 8388593,
106 (unsigned long) 16777213,
107 (unsigned long) 33554393,
108 (unsigned long) 67108859,
109 (unsigned long) 134217689,
110 (unsigned long) 268435399,
111 (unsigned long) 536870909,
112 (unsigned long) 1073741789,
113 (unsigned long) 2147483647,
115 ((unsigned long) 2147483647) + ((unsigned long) 2147483644),
118 const unsigned long *low
= &primes
[0];
119 const unsigned long *high
= &primes
[sizeof(primes
) / sizeof(primes
[0])];
123 const unsigned long *mid
= low
+ (high
- low
) / 2;
130 /* If we've run out of primes, abort. */
133 fprintf (stderr
, "Cannot find prime bigger than %lu\n", n
);
140 /* Returns a hash code for P. */
146 return (hashval_t
) ((long)p
>> 3);
149 /* Returns non-zero if P1 and P2 are equal. */
159 /* This function creates table with length slightly longer than given
160 source length. Created hash table is initiated as empty (all the
161 hash table entries are EMPTY_ENTRY). The function returns the
162 created hash table. Memory allocation must not fail. */
165 htab_create (size
, hash_f
, eq_f
, del_f
)
173 size
= higher_prime_number (size
);
174 result
= (htab_t
) xcalloc (1, sizeof (struct htab
));
175 result
->entries
= (PTR
*) xcalloc (size
, sizeof (PTR
));
177 result
->hash_f
= hash_f
;
179 result
->del_f
= del_f
;
180 result
->return_allocation_failure
= 0;
184 /* This function creates table with length slightly longer than given
185 source length. The created hash table is initiated as empty (all the
186 hash table entries are EMPTY_ENTRY). The function returns the created
187 hash table. Memory allocation may fail; it may return NULL. */
190 htab_try_create (size
, hash_f
, eq_f
, del_f
)
198 size
= higher_prime_number (size
);
199 result
= (htab_t
) calloc (1, sizeof (struct htab
));
203 result
->entries
= (PTR
*) calloc (size
, sizeof (PTR
));
204 if (result
->entries
== NULL
)
211 result
->hash_f
= hash_f
;
213 result
->del_f
= del_f
;
214 result
->return_allocation_failure
= 1;
218 /* This function frees all memory allocated for given hash table.
219 Naturally the hash table must already exist. */
228 for (i
= htab
->size
- 1; i
>= 0; i
--)
229 if (htab
->entries
[i
] != EMPTY_ENTRY
230 && htab
->entries
[i
] != DELETED_ENTRY
)
231 (*htab
->del_f
) (htab
->entries
[i
]);
233 free (htab
->entries
);
237 /* This function clears all entries in the given hash table. */
246 for (i
= htab
->size
- 1; i
>= 0; i
--)
247 if (htab
->entries
[i
] != EMPTY_ENTRY
248 && htab
->entries
[i
] != DELETED_ENTRY
)
249 (*htab
->del_f
) (htab
->entries
[i
]);
251 memset (htab
->entries
, 0, htab
->size
* sizeof (PTR
));
254 /* Similar to htab_find_slot, but without several unwanted side effects:
255 - Does not call htab->eq_f when it finds an existing entry.
256 - Does not change the count of elements/searches/collisions in the
258 This function also assumes there are no deleted entries in the table.
259 HASH is the hash value for the element to be inserted. */
262 find_empty_slot_for_expand (htab
, hash
)
266 size_t size
= htab
->size
;
267 hashval_t hash2
= 1 + hash
% (size
- 2);
268 unsigned int index
= hash
% size
;
272 PTR
*slot
= htab
->entries
+ index
;
274 if (*slot
== EMPTY_ENTRY
)
276 else if (*slot
== DELETED_ENTRY
)
285 /* The following function changes size of memory allocated for the
286 entries and repeatedly inserts the table elements. The occupancy
287 of the table after the call will be about 50%. Naturally the hash
288 table must already exist. Remember also that the place of the
289 table entries is changed. If memory allocation failures are allowed,
290 this function will return zero, indicating that the table could not be
291 expanded. If all goes well, it will return a non-zero value. */
301 oentries
= htab
->entries
;
302 olimit
= oentries
+ htab
->size
;
304 htab
->size
= higher_prime_number (htab
->size
* 2);
306 if (htab
->return_allocation_failure
)
308 PTR
*nentries
= (PTR
*) calloc (htab
->size
, sizeof (PTR
*));
309 if (nentries
== NULL
)
311 htab
->entries
= nentries
;
314 htab
->entries
= (PTR
*) xcalloc (htab
->size
, sizeof (PTR
*));
316 htab
->n_elements
-= htab
->n_deleted
;
324 if (x
!= EMPTY_ENTRY
&& x
!= DELETED_ENTRY
)
326 PTR
*q
= find_empty_slot_for_expand (htab
, (*htab
->hash_f
) (x
));
339 /* This function searches for a hash table entry equal to the given
340 element. It cannot be used to insert or delete an element. */
343 htab_find_with_hash (htab
, element
, hash
)
357 entry
= htab
->entries
[index
];
358 if (entry
== EMPTY_ENTRY
359 || (entry
!= DELETED_ENTRY
&& (*htab
->eq_f
) (entry
, element
)))
362 hash2
= 1 + hash
% (size
- 2);
371 entry
= htab
->entries
[index
];
372 if (entry
== EMPTY_ENTRY
373 || (entry
!= DELETED_ENTRY
&& (*htab
->eq_f
) (entry
, element
)))
378 /* Like htab_find_slot_with_hash, but compute the hash value from the
382 htab_find (htab
, element
)
386 return htab_find_with_hash (htab
, element
, (*htab
->hash_f
) (element
));
389 /* This function searches for a hash table slot containing an entry
390 equal to the given element. To delete an entry, call this with
391 INSERT = 0, then call htab_clear_slot on the slot returned (possibly
392 after doing some checks). To insert an entry, call this with
393 INSERT = 1, then write the value you want into the returned slot.
394 When inserting an entry, NULL may be returned if memory allocation
398 htab_find_slot_with_hash (htab
, element
, hash
, insert
)
402 enum insert_option insert
;
404 PTR
*first_deleted_slot
;
409 if (insert
== INSERT
&& htab
->size
* 3 <= htab
->n_elements
* 4
410 && htab_expand (htab
) == 0)
414 hash2
= 1 + hash
% (size
- 2);
418 first_deleted_slot
= NULL
;
422 PTR entry
= htab
->entries
[index
];
423 if (entry
== EMPTY_ENTRY
)
425 if (insert
== NO_INSERT
)
430 if (first_deleted_slot
)
432 *first_deleted_slot
= EMPTY_ENTRY
;
433 return first_deleted_slot
;
436 return &htab
->entries
[index
];
439 if (entry
== DELETED_ENTRY
)
441 if (!first_deleted_slot
)
442 first_deleted_slot
= &htab
->entries
[index
];
444 else if ((*htab
->eq_f
) (entry
, element
))
445 return &htab
->entries
[index
];
454 /* Like htab_find_slot_with_hash, but compute the hash value from the
458 htab_find_slot (htab
, element
, insert
)
461 enum insert_option insert
;
463 return htab_find_slot_with_hash (htab
, element
, (*htab
->hash_f
) (element
),
467 /* This function deletes an element with the given value from hash
468 table. If there is no matching element in the hash table, this
469 function does nothing. */
472 htab_remove_elt (htab
, element
)
478 slot
= htab_find_slot (htab
, element
, NO_INSERT
);
479 if (*slot
== EMPTY_ENTRY
)
483 (*htab
->del_f
) (*slot
);
485 *slot
= DELETED_ENTRY
;
489 /* This function clears a specified slot in a hash table. It is
490 useful when you've already done the lookup and don't want to do it
494 htab_clear_slot (htab
, slot
)
498 if (slot
< htab
->entries
|| slot
>= htab
->entries
+ htab
->size
499 || *slot
== EMPTY_ENTRY
|| *slot
== DELETED_ENTRY
)
503 (*htab
->del_f
) (*slot
);
505 *slot
= DELETED_ENTRY
;
509 /* This function scans over the entire hash table calling
510 CALLBACK for each live entry. If CALLBACK returns false,
511 the iteration stops. INFO is passed as CALLBACK's second
515 htab_traverse (htab
, callback
, info
)
520 PTR
*slot
= htab
->entries
;
521 PTR
*limit
= slot
+ htab
->size
;
527 if (x
!= EMPTY_ENTRY
&& x
!= DELETED_ENTRY
)
528 if (!(*callback
) (slot
, info
))
531 while (++slot
< limit
);
534 /* Return the current size of given hash table. */
543 /* Return the current number of elements in given hash table. */
549 return htab
->n_elements
- htab
->n_deleted
;
552 /* Return the fraction of fixed collisions during all work with given
556 htab_collisions (htab
)
559 if (htab
->searches
== 0)
562 return (double) htab
->collisions
/ (double) htab
->searches
;
565 /* Hash P as a null-terminated string.
567 Copied from gcc/hashtable.c. Zack had the following to say with respect
568 to applicability, though note that unlike hashtable.c, this hash table
569 implementation re-hashes rather than chain buckets.
571 http://gcc.gnu.org/ml/gcc-patches/2001-08/msg01021.html
572 From: Zack Weinberg <zackw@panix.com>
573 Date: Fri, 17 Aug 2001 02:15:56 -0400
575 I got it by extracting all the identifiers from all the source code
576 I had lying around in mid-1999, and testing many recurrences of
577 the form "H_n = H_{n-1} * K + c_n * L + M" where K, L, M were either
578 prime numbers or the appropriate identity. This was the best one.
579 I don't remember exactly what constituted "best", except I was
580 looking at bucket-length distributions mostly.
582 So it should be very good at hashing identifiers, but might not be
583 as good at arbitrary strings.
585 I'll add that it thoroughly trounces the hash functions recommended
586 for this use at http://burtleburtle.net/bob/hash/index.html, both
587 on speed and bucket distribution. I haven't tried it against the
588 function they just started using for Perl's hashes. */
594 const unsigned char *str
= (const unsigned char *) p
;
598 while ((c
= *str
++) != 0)
599 r
= r
* 67 + c
- 113;