Home | History | Annotate | Line # | Download | only in libiberty
hashtab.c revision 1.1
      1  1.1  christos /* An expandable hash tables datatype.
      2  1.1  christos    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2009, 2010
      3  1.1  christos    Free Software Foundation, Inc.
      4  1.1  christos    Contributed by Vladimir Makarov (vmakarov (at) cygnus.com).
      5  1.1  christos 
      6  1.1  christos This file is part of the libiberty library.
      7  1.1  christos Libiberty is free software; you can redistribute it and/or
      8  1.1  christos modify it under the terms of the GNU Library General Public
      9  1.1  christos License as published by the Free Software Foundation; either
     10  1.1  christos version 2 of the License, or (at your option) any later version.
     11  1.1  christos 
     12  1.1  christos Libiberty is distributed in the hope that it will be useful,
     13  1.1  christos but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  1.1  christos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     15  1.1  christos Library General Public License for more details.
     16  1.1  christos 
     17  1.1  christos You should have received a copy of the GNU Library General Public
     18  1.1  christos License along with libiberty; see the file COPYING.LIB.  If
     19  1.1  christos not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
     20  1.1  christos Boston, MA 02110-1301, USA.  */
     21  1.1  christos 
     22  1.1  christos /* This package implements basic hash table functionality.  It is possible
     23  1.1  christos    to search for an entry, create an entry and destroy an entry.
     24  1.1  christos 
     25  1.1  christos    Elements in the table are generic pointers.
     26  1.1  christos 
     27  1.1  christos    The size of the table is not fixed; if the occupancy of the table
     28  1.1  christos    grows too high the hash table will be expanded.
     29  1.1  christos 
     30  1.1  christos    The abstract data implementation is based on generalized Algorithm D
     31  1.1  christos    from Knuth's book "The art of computer programming".  Hash table is
     32  1.1  christos    expanded by creation of new hash table and transferring elements from
     33  1.1  christos    the old table to the new table. */
     34  1.1  christos 
     35  1.1  christos #ifdef HAVE_CONFIG_H
     36  1.1  christos #include "config.h"
     37  1.1  christos #endif
     38  1.1  christos 
     39  1.1  christos #include <sys/types.h>
     40  1.1  christos 
     41  1.1  christos #ifdef HAVE_STDLIB_H
     42  1.1  christos #include <stdlib.h>
     43  1.1  christos #endif
     44  1.1  christos #ifdef HAVE_STRING_H
     45  1.1  christos #include <string.h>
     46  1.1  christos #endif
     47  1.1  christos #ifdef HAVE_MALLOC_H
     48  1.1  christos #include <malloc.h>
     49  1.1  christos #endif
     50  1.1  christos #ifdef HAVE_LIMITS_H
     51  1.1  christos #include <limits.h>
     52  1.1  christos #endif
     53  1.1  christos #ifdef HAVE_INTTYPES_H
     54  1.1  christos #include <inttypes.h>
     55  1.1  christos #endif
     56  1.1  christos #ifdef HAVE_STDINT_H
     57  1.1  christos #include <stdint.h>
     58  1.1  christos #endif
     59  1.1  christos 
     60  1.1  christos #include <stdio.h>
     61  1.1  christos 
     62  1.1  christos #include "libiberty.h"
     63  1.1  christos #include "ansidecl.h"
     64  1.1  christos #include "hashtab.h"
     65  1.1  christos 
     66  1.1  christos #ifndef CHAR_BIT
     67  1.1  christos #define CHAR_BIT 8
     68  1.1  christos #endif
     69  1.1  christos 
     70  1.1  christos static unsigned int higher_prime_index (unsigned long);
     71  1.1  christos static hashval_t htab_mod_1 (hashval_t, hashval_t, hashval_t, int);
     72  1.1  christos static hashval_t htab_mod (hashval_t, htab_t);
     73  1.1  christos static hashval_t htab_mod_m2 (hashval_t, htab_t);
     74  1.1  christos static hashval_t hash_pointer (const void *);
     75  1.1  christos static int eq_pointer (const void *, const void *);
     76  1.1  christos static int htab_expand (htab_t);
     77  1.1  christos static PTR *find_empty_slot_for_expand (htab_t, hashval_t);
     78  1.1  christos 
     79  1.1  christos /* At some point, we could make these be NULL, and modify the
     80  1.1  christos    hash-table routines to handle NULL specially; that would avoid
     81  1.1  christos    function-call overhead for the common case of hashing pointers.  */
     82  1.1  christos htab_hash htab_hash_pointer = hash_pointer;
     83  1.1  christos htab_eq htab_eq_pointer = eq_pointer;
     84  1.1  christos 
     85  1.1  christos /* Table of primes and multiplicative inverses.
     86  1.1  christos 
     87  1.1  christos    Note that these are not minimally reduced inverses.  Unlike when generating
     88  1.1  christos    code to divide by a constant, we want to be able to use the same algorithm
     89  1.1  christos    all the time.  All of these inverses (are implied to) have bit 32 set.
     90  1.1  christos 
     91  1.1  christos    For the record, here's the function that computed the table; it's a
     92  1.1  christos    vastly simplified version of the function of the same name from gcc.  */
     93  1.1  christos 
     94  1.1  christos #if 0
     95  1.1  christos unsigned int
     96  1.1  christos ceil_log2 (unsigned int x)
     97  1.1  christos {
     98  1.1  christos   int i;
     99  1.1  christos   for (i = 31; i >= 0 ; --i)
    100  1.1  christos     if (x > (1u << i))
    101  1.1  christos       return i+1;
    102  1.1  christos   abort ();
    103  1.1  christos }
    104  1.1  christos 
    105  1.1  christos unsigned int
    106  1.1  christos choose_multiplier (unsigned int d, unsigned int *mlp, unsigned char *shiftp)
    107  1.1  christos {
    108  1.1  christos   unsigned long long mhigh;
    109  1.1  christos   double nx;
    110  1.1  christos   int lgup, post_shift;
    111  1.1  christos   int pow, pow2;
    112  1.1  christos   int n = 32, precision = 32;
    113  1.1  christos 
    114  1.1  christos   lgup = ceil_log2 (d);
    115  1.1  christos   pow = n + lgup;
    116  1.1  christos   pow2 = n + lgup - precision;
    117  1.1  christos 
    118  1.1  christos   nx = ldexp (1.0, pow) + ldexp (1.0, pow2);
    119  1.1  christos   mhigh = nx / d;
    120  1.1  christos 
    121  1.1  christos   *shiftp = lgup - 1;
    122  1.1  christos   *mlp = mhigh;
    123  1.1  christos   return mhigh >> 32;
    124  1.1  christos }
    125  1.1  christos #endif
    126  1.1  christos 
    127  1.1  christos struct prime_ent
    128  1.1  christos {
    129  1.1  christos   hashval_t prime;
    130  1.1  christos   hashval_t inv;
    131  1.1  christos   hashval_t inv_m2;	/* inverse of prime-2 */
    132  1.1  christos   hashval_t shift;
    133  1.1  christos };
    134  1.1  christos 
    135  1.1  christos static struct prime_ent const prime_tab[] = {
    136  1.1  christos   {          7, 0x24924925, 0x9999999b, 2 },
    137  1.1  christos   {         13, 0x3b13b13c, 0x745d1747, 3 },
    138  1.1  christos   {         31, 0x08421085, 0x1a7b9612, 4 },
    139  1.1  christos   {         61, 0x0c9714fc, 0x15b1e5f8, 5 },
    140  1.1  christos   {        127, 0x02040811, 0x0624dd30, 6 },
    141  1.1  christos   {        251, 0x05197f7e, 0x073260a5, 7 },
    142  1.1  christos   {        509, 0x01824366, 0x02864fc8, 8 },
    143  1.1  christos   {       1021, 0x00c0906d, 0x014191f7, 9 },
    144  1.1  christos   {       2039, 0x0121456f, 0x0161e69e, 10 },
    145  1.1  christos   {       4093, 0x00300902, 0x00501908, 11 },
    146  1.1  christos   {       8191, 0x00080041, 0x00180241, 12 },
    147  1.1  christos   {      16381, 0x000c0091, 0x00140191, 13 },
    148  1.1  christos   {      32749, 0x002605a5, 0x002a06e6, 14 },
    149  1.1  christos   {      65521, 0x000f00e2, 0x00110122, 15 },
    150  1.1  christos   {     131071, 0x00008001, 0x00018003, 16 },
    151  1.1  christos   {     262139, 0x00014002, 0x0001c004, 17 },
    152  1.1  christos   {     524287, 0x00002001, 0x00006001, 18 },
    153  1.1  christos   {    1048573, 0x00003001, 0x00005001, 19 },
    154  1.1  christos   {    2097143, 0x00004801, 0x00005801, 20 },
    155  1.1  christos   {    4194301, 0x00000c01, 0x00001401, 21 },
    156  1.1  christos   {    8388593, 0x00001e01, 0x00002201, 22 },
    157  1.1  christos   {   16777213, 0x00000301, 0x00000501, 23 },
    158  1.1  christos   {   33554393, 0x00001381, 0x00001481, 24 },
    159  1.1  christos   {   67108859, 0x00000141, 0x000001c1, 25 },
    160  1.1  christos   {  134217689, 0x000004e1, 0x00000521, 26 },
    161  1.1  christos   {  268435399, 0x00000391, 0x000003b1, 27 },
    162  1.1  christos   {  536870909, 0x00000019, 0x00000029, 28 },
    163  1.1  christos   { 1073741789, 0x0000008d, 0x00000095, 29 },
    164  1.1  christos   { 2147483647, 0x00000003, 0x00000007, 30 },
    165  1.1  christos   /* Avoid "decimal constant so large it is unsigned" for 4294967291.  */
    166  1.1  christos   { 0xfffffffb, 0x00000006, 0x00000008, 31 }
    167  1.1  christos };
    168  1.1  christos 
    169  1.1  christos /* The following function returns an index into the above table of the
    170  1.1  christos    nearest prime number which is greater than N, and near a power of two. */
    171  1.1  christos 
    172  1.1  christos static unsigned int
    173  1.1  christos higher_prime_index (unsigned long n)
    174  1.1  christos {
    175  1.1  christos   unsigned int low = 0;
    176  1.1  christos   unsigned int high = sizeof(prime_tab) / sizeof(prime_tab[0]);
    177  1.1  christos 
    178  1.1  christos   while (low != high)
    179  1.1  christos     {
    180  1.1  christos       unsigned int mid = low + (high - low) / 2;
    181  1.1  christos       if (n > prime_tab[mid].prime)
    182  1.1  christos 	low = mid + 1;
    183  1.1  christos       else
    184  1.1  christos 	high = mid;
    185  1.1  christos     }
    186  1.1  christos 
    187  1.1  christos   /* If we've run out of primes, abort.  */
    188  1.1  christos   if (n > prime_tab[low].prime)
    189  1.1  christos     {
    190  1.1  christos       fprintf (stderr, "Cannot find prime bigger than %lu\n", n);
    191  1.1  christos       abort ();
    192  1.1  christos     }
    193  1.1  christos 
    194  1.1  christos   return low;
    195  1.1  christos }
    196  1.1  christos 
    197  1.1  christos /* Returns a hash code for P.  */
    198  1.1  christos 
    199  1.1  christos static hashval_t
    200  1.1  christos hash_pointer (const PTR p)
    201  1.1  christos {
    202  1.1  christos   return (hashval_t) ((intptr_t)p >> 3);
    203  1.1  christos }
    204  1.1  christos 
    205  1.1  christos /* Returns non-zero if P1 and P2 are equal.  */
    206  1.1  christos 
    207  1.1  christos static int
    208  1.1  christos eq_pointer (const PTR p1, const PTR p2)
    209  1.1  christos {
    210  1.1  christos   return p1 == p2;
    211  1.1  christos }
    212  1.1  christos 
    213  1.1  christos 
    214  1.1  christos /* The parens around the function names in the next two definitions
    215  1.1  christos    are essential in order to prevent macro expansions of the name.
    216  1.1  christos    The bodies, however, are expanded as expected, so they are not
    217  1.1  christos    recursive definitions.  */
    218  1.1  christos 
    219  1.1  christos /* Return the current size of given hash table.  */
    220  1.1  christos 
    221  1.1  christos #define htab_size(htab)  ((htab)->size)
    222  1.1  christos 
    223  1.1  christos size_t
    224  1.1  christos (htab_size) (htab_t htab)
    225  1.1  christos {
    226  1.1  christos   return htab_size (htab);
    227  1.1  christos }
    228  1.1  christos 
    229  1.1  christos /* Return the current number of elements in given hash table. */
    230  1.1  christos 
    231  1.1  christos #define htab_elements(htab)  ((htab)->n_elements - (htab)->n_deleted)
    232  1.1  christos 
    233  1.1  christos size_t
    234  1.1  christos (htab_elements) (htab_t htab)
    235  1.1  christos {
    236  1.1  christos   return htab_elements (htab);
    237  1.1  christos }
    238  1.1  christos 
    239  1.1  christos /* Return X % Y.  */
    240  1.1  christos 
    241  1.1  christos static inline hashval_t
    242  1.1  christos htab_mod_1 (hashval_t x, hashval_t y, hashval_t inv, int shift)
    243  1.1  christos {
    244  1.1  christos   /* The multiplicative inverses computed above are for 32-bit types, and
    245  1.1  christos      requires that we be able to compute a highpart multiply.  */
    246  1.1  christos #ifdef UNSIGNED_64BIT_TYPE
    247  1.1  christos   __extension__ typedef UNSIGNED_64BIT_TYPE ull;
    248  1.1  christos   if (sizeof (hashval_t) * CHAR_BIT <= 32)
    249  1.1  christos     {
    250  1.1  christos       hashval_t t1, t2, t3, t4, q, r;
    251  1.1  christos 
    252  1.1  christos       t1 = ((ull)x * inv) >> 32;
    253  1.1  christos       t2 = x - t1;
    254  1.1  christos       t3 = t2 >> 1;
    255  1.1  christos       t4 = t1 + t3;
    256  1.1  christos       q  = t4 >> shift;
    257  1.1  christos       r  = x - (q * y);
    258  1.1  christos 
    259  1.1  christos       return r;
    260  1.1  christos     }
    261  1.1  christos #endif
    262  1.1  christos 
    263  1.1  christos   /* Otherwise just use the native division routines.  */
    264  1.1  christos   return x % y;
    265  1.1  christos }
    266  1.1  christos 
    267  1.1  christos /* Compute the primary hash for HASH given HTAB's current size.  */
    268  1.1  christos 
    269  1.1  christos static inline hashval_t
    270  1.1  christos htab_mod (hashval_t hash, htab_t htab)
    271  1.1  christos {
    272  1.1  christos   const struct prime_ent *p = &prime_tab[htab->size_prime_index];
    273  1.1  christos   return htab_mod_1 (hash, p->prime, p->inv, p->shift);
    274  1.1  christos }
    275  1.1  christos 
    276  1.1  christos /* Compute the secondary hash for HASH given HTAB's current size.  */
    277  1.1  christos 
    278  1.1  christos static inline hashval_t
    279  1.1  christos htab_mod_m2 (hashval_t hash, htab_t htab)
    280  1.1  christos {
    281  1.1  christos   const struct prime_ent *p = &prime_tab[htab->size_prime_index];
    282  1.1  christos   return 1 + htab_mod_1 (hash, p->prime - 2, p->inv_m2, p->shift);
    283  1.1  christos }
    284  1.1  christos 
    285  1.1  christos /* This function creates table with length slightly longer than given
    286  1.1  christos    source length.  Created hash table is initiated as empty (all the
    287  1.1  christos    hash table entries are HTAB_EMPTY_ENTRY).  The function returns the
    288  1.1  christos    created hash table, or NULL if memory allocation fails.  */
    289  1.1  christos 
    290  1.1  christos htab_t
    291  1.1  christos htab_create_alloc (size_t size, htab_hash hash_f, htab_eq eq_f,
    292  1.1  christos                    htab_del del_f, htab_alloc alloc_f, htab_free free_f)
    293  1.1  christos {
    294  1.1  christos   return htab_create_typed_alloc (size, hash_f, eq_f, del_f, alloc_f, alloc_f,
    295  1.1  christos 				  free_f);
    296  1.1  christos }
    297  1.1  christos 
    298  1.1  christos /* As above, but uses the variants of ALLOC_F and FREE_F which accept
    299  1.1  christos    an extra argument.  */
    300  1.1  christos 
    301  1.1  christos htab_t
    302  1.1  christos htab_create_alloc_ex (size_t size, htab_hash hash_f, htab_eq eq_f,
    303  1.1  christos 		      htab_del del_f, void *alloc_arg,
    304  1.1  christos 		      htab_alloc_with_arg alloc_f,
    305  1.1  christos 		      htab_free_with_arg free_f)
    306  1.1  christos {
    307  1.1  christos   htab_t result;
    308  1.1  christos   unsigned int size_prime_index;
    309  1.1  christos 
    310  1.1  christos   size_prime_index = higher_prime_index (size);
    311  1.1  christos   size = prime_tab[size_prime_index].prime;
    312  1.1  christos 
    313  1.1  christos   result = (htab_t) (*alloc_f) (alloc_arg, 1, sizeof (struct htab));
    314  1.1  christos   if (result == NULL)
    315  1.1  christos     return NULL;
    316  1.1  christos   result->entries = (PTR *) (*alloc_f) (alloc_arg, size, sizeof (PTR));
    317  1.1  christos   if (result->entries == NULL)
    318  1.1  christos     {
    319  1.1  christos       if (free_f != NULL)
    320  1.1  christos 	(*free_f) (alloc_arg, result);
    321  1.1  christos       return NULL;
    322  1.1  christos     }
    323  1.1  christos   result->size = size;
    324  1.1  christos   result->size_prime_index = size_prime_index;
    325  1.1  christos   result->hash_f = hash_f;
    326  1.1  christos   result->eq_f = eq_f;
    327  1.1  christos   result->del_f = del_f;
    328  1.1  christos   result->alloc_arg = alloc_arg;
    329  1.1  christos   result->alloc_with_arg_f = alloc_f;
    330  1.1  christos   result->free_with_arg_f = free_f;
    331  1.1  christos   return result;
    332  1.1  christos }
    333  1.1  christos 
    334  1.1  christos /*
    335  1.1  christos 
    336  1.1  christos @deftypefn Supplemental htab_t htab_create_typed_alloc (size_t @var{size}, @
    337  1.1  christos htab_hash @var{hash_f}, htab_eq @var{eq_f}, htab_del @var{del_f}, @
    338  1.1  christos htab_alloc @var{alloc_tab_f}, htab_alloc @var{alloc_f}, @
    339  1.1  christos htab_free @var{free_f})
    340  1.1  christos 
    341  1.1  christos This function creates a hash table that uses two different allocators
    342  1.1  christos @var{alloc_tab_f} and @var{alloc_f} to use for allocating the table itself
    343  1.1  christos and its entries respectively.  This is useful when variables of different
    344  1.1  christos types need to be allocated with different allocators.
    345  1.1  christos 
    346  1.1  christos The created hash table is slightly larger than @var{size} and it is
    347  1.1  christos initially empty (all the hash table entries are @code{HTAB_EMPTY_ENTRY}).
    348  1.1  christos The function returns the created hash table, or @code{NULL} if memory
    349  1.1  christos allocation fails.
    350  1.1  christos 
    351  1.1  christos @end deftypefn
    352  1.1  christos 
    353  1.1  christos */
    354  1.1  christos 
    355  1.1  christos htab_t
    356  1.1  christos htab_create_typed_alloc (size_t size, htab_hash hash_f, htab_eq eq_f,
    357  1.1  christos 			 htab_del del_f, htab_alloc alloc_tab_f,
    358  1.1  christos 			 htab_alloc alloc_f, htab_free free_f)
    359  1.1  christos {
    360  1.1  christos   htab_t result;
    361  1.1  christos   unsigned int size_prime_index;
    362  1.1  christos 
    363  1.1  christos   size_prime_index = higher_prime_index (size);
    364  1.1  christos   size = prime_tab[size_prime_index].prime;
    365  1.1  christos 
    366  1.1  christos   result = (htab_t) (*alloc_tab_f) (1, sizeof (struct htab));
    367  1.1  christos   if (result == NULL)
    368  1.1  christos     return NULL;
    369  1.1  christos   result->entries = (PTR *) (*alloc_f) (size, sizeof (PTR));
    370  1.1  christos   if (result->entries == NULL)
    371  1.1  christos     {
    372  1.1  christos       if (free_f != NULL)
    373  1.1  christos 	(*free_f) (result);
    374  1.1  christos       return NULL;
    375  1.1  christos     }
    376  1.1  christos   result->size = size;
    377  1.1  christos   result->size_prime_index = size_prime_index;
    378  1.1  christos   result->hash_f = hash_f;
    379  1.1  christos   result->eq_f = eq_f;
    380  1.1  christos   result->del_f = del_f;
    381  1.1  christos   result->alloc_f = alloc_f;
    382  1.1  christos   result->free_f = free_f;
    383  1.1  christos   return result;
    384  1.1  christos }
    385  1.1  christos 
    386  1.1  christos 
    387  1.1  christos /* Update the function pointers and allocation parameter in the htab_t.  */
    388  1.1  christos 
    389  1.1  christos void
    390  1.1  christos htab_set_functions_ex (htab_t htab, htab_hash hash_f, htab_eq eq_f,
    391  1.1  christos                        htab_del del_f, PTR alloc_arg,
    392  1.1  christos                        htab_alloc_with_arg alloc_f, htab_free_with_arg free_f)
    393  1.1  christos {
    394  1.1  christos   htab->hash_f = hash_f;
    395  1.1  christos   htab->eq_f = eq_f;
    396  1.1  christos   htab->del_f = del_f;
    397  1.1  christos   htab->alloc_arg = alloc_arg;
    398  1.1  christos   htab->alloc_with_arg_f = alloc_f;
    399  1.1  christos   htab->free_with_arg_f = free_f;
    400  1.1  christos }
    401  1.1  christos 
    402  1.1  christos /* These functions exist solely for backward compatibility.  */
    403  1.1  christos 
    404  1.1  christos #undef htab_create
    405  1.1  christos htab_t
    406  1.1  christos htab_create (size_t size, htab_hash hash_f, htab_eq eq_f, htab_del del_f)
    407  1.1  christos {
    408  1.1  christos   return htab_create_alloc (size, hash_f, eq_f, del_f, xcalloc, free);
    409  1.1  christos }
    410  1.1  christos 
    411  1.1  christos htab_t
    412  1.1  christos htab_try_create (size_t size, htab_hash hash_f, htab_eq eq_f, htab_del del_f)
    413  1.1  christos {
    414  1.1  christos   return htab_create_alloc (size, hash_f, eq_f, del_f, calloc, free);
    415  1.1  christos }
    416  1.1  christos 
    417  1.1  christos /* This function frees all memory allocated for given hash table.
    418  1.1  christos    Naturally the hash table must already exist. */
    419  1.1  christos 
    420  1.1  christos void
    421  1.1  christos htab_delete (htab_t htab)
    422  1.1  christos {
    423  1.1  christos   size_t size = htab_size (htab);
    424  1.1  christos   PTR *entries = htab->entries;
    425  1.1  christos   int i;
    426  1.1  christos 
    427  1.1  christos   if (htab->del_f)
    428  1.1  christos     for (i = size - 1; i >= 0; i--)
    429  1.1  christos       if (entries[i] != HTAB_EMPTY_ENTRY && entries[i] != HTAB_DELETED_ENTRY)
    430  1.1  christos 	(*htab->del_f) (entries[i]);
    431  1.1  christos 
    432  1.1  christos   if (htab->free_f != NULL)
    433  1.1  christos     {
    434  1.1  christos       (*htab->free_f) (entries);
    435  1.1  christos       (*htab->free_f) (htab);
    436  1.1  christos     }
    437  1.1  christos   else if (htab->free_with_arg_f != NULL)
    438  1.1  christos     {
    439  1.1  christos       (*htab->free_with_arg_f) (htab->alloc_arg, entries);
    440  1.1  christos       (*htab->free_with_arg_f) (htab->alloc_arg, htab);
    441  1.1  christos     }
    442  1.1  christos }
    443  1.1  christos 
    444  1.1  christos /* This function clears all entries in the given hash table.  */
    445  1.1  christos 
    446  1.1  christos void
    447  1.1  christos htab_empty (htab_t htab)
    448  1.1  christos {
    449  1.1  christos   size_t size = htab_size (htab);
    450  1.1  christos   PTR *entries = htab->entries;
    451  1.1  christos   int i;
    452  1.1  christos 
    453  1.1  christos   if (htab->del_f)
    454  1.1  christos     for (i = size - 1; i >= 0; i--)
    455  1.1  christos       if (entries[i] != HTAB_EMPTY_ENTRY && entries[i] != HTAB_DELETED_ENTRY)
    456  1.1  christos 	(*htab->del_f) (entries[i]);
    457  1.1  christos 
    458  1.1  christos   /* Instead of clearing megabyte, downsize the table.  */
    459  1.1  christos   if (size > 1024*1024 / sizeof (PTR))
    460  1.1  christos     {
    461  1.1  christos       int nindex = higher_prime_index (1024 / sizeof (PTR));
    462  1.1  christos       int nsize = prime_tab[nindex].prime;
    463  1.1  christos 
    464  1.1  christos       if (htab->free_f != NULL)
    465  1.1  christos 	(*htab->free_f) (htab->entries);
    466  1.1  christos       else if (htab->free_with_arg_f != NULL)
    467  1.1  christos 	(*htab->free_with_arg_f) (htab->alloc_arg, htab->entries);
    468  1.1  christos       if (htab->alloc_with_arg_f != NULL)
    469  1.1  christos 	htab->entries = (PTR *) (*htab->alloc_with_arg_f) (htab->alloc_arg, nsize,
    470  1.1  christos 						           sizeof (PTR *));
    471  1.1  christos       else
    472  1.1  christos 	htab->entries = (PTR *) (*htab->alloc_f) (nsize, sizeof (PTR *));
    473  1.1  christos      htab->size = nsize;
    474  1.1  christos      htab->size_prime_index = nindex;
    475  1.1  christos     }
    476  1.1  christos   else
    477  1.1  christos     memset (entries, 0, size * sizeof (PTR));
    478  1.1  christos   htab->n_deleted = 0;
    479  1.1  christos   htab->n_elements = 0;
    480  1.1  christos }
    481  1.1  christos 
    482  1.1  christos /* Similar to htab_find_slot, but without several unwanted side effects:
    483  1.1  christos     - Does not call htab->eq_f when it finds an existing entry.
    484  1.1  christos     - Does not change the count of elements/searches/collisions in the
    485  1.1  christos       hash table.
    486  1.1  christos    This function also assumes there are no deleted entries in the table.
    487  1.1  christos    HASH is the hash value for the element to be inserted.  */
    488  1.1  christos 
    489  1.1  christos static PTR *
    490  1.1  christos find_empty_slot_for_expand (htab_t htab, hashval_t hash)
    491  1.1  christos {
    492  1.1  christos   hashval_t index = htab_mod (hash, htab);
    493  1.1  christos   size_t size = htab_size (htab);
    494  1.1  christos   PTR *slot = htab->entries + index;
    495  1.1  christos   hashval_t hash2;
    496  1.1  christos 
    497  1.1  christos   if (*slot == HTAB_EMPTY_ENTRY)
    498  1.1  christos     return slot;
    499  1.1  christos   else if (*slot == HTAB_DELETED_ENTRY)
    500  1.1  christos     abort ();
    501  1.1  christos 
    502  1.1  christos   hash2 = htab_mod_m2 (hash, htab);
    503  1.1  christos   for (;;)
    504  1.1  christos     {
    505  1.1  christos       index += hash2;
    506  1.1  christos       if (index >= size)
    507  1.1  christos 	index -= size;
    508  1.1  christos 
    509  1.1  christos       slot = htab->entries + index;
    510  1.1  christos       if (*slot == HTAB_EMPTY_ENTRY)
    511  1.1  christos 	return slot;
    512  1.1  christos       else if (*slot == HTAB_DELETED_ENTRY)
    513  1.1  christos 	abort ();
    514  1.1  christos     }
    515  1.1  christos }
    516  1.1  christos 
    517  1.1  christos /* The following function changes size of memory allocated for the
    518  1.1  christos    entries and repeatedly inserts the table elements.  The occupancy
    519  1.1  christos    of the table after the call will be about 50%.  Naturally the hash
    520  1.1  christos    table must already exist.  Remember also that the place of the
    521  1.1  christos    table entries is changed.  If memory allocation failures are allowed,
    522  1.1  christos    this function will return zero, indicating that the table could not be
    523  1.1  christos    expanded.  If all goes well, it will return a non-zero value.  */
    524  1.1  christos 
    525  1.1  christos static int
    526  1.1  christos htab_expand (htab_t htab)
    527  1.1  christos {
    528  1.1  christos   PTR *oentries;
    529  1.1  christos   PTR *olimit;
    530  1.1  christos   PTR *p;
    531  1.1  christos   PTR *nentries;
    532  1.1  christos   size_t nsize, osize, elts;
    533  1.1  christos   unsigned int oindex, nindex;
    534  1.1  christos 
    535  1.1  christos   oentries = htab->entries;
    536  1.1  christos   oindex = htab->size_prime_index;
    537  1.1  christos   osize = htab->size;
    538  1.1  christos   olimit = oentries + osize;
    539  1.1  christos   elts = htab_elements (htab);
    540  1.1  christos 
    541  1.1  christos   /* Resize only when table after removal of unused elements is either
    542  1.1  christos      too full or too empty.  */
    543  1.1  christos   if (elts * 2 > osize || (elts * 8 < osize && osize > 32))
    544  1.1  christos     {
    545  1.1  christos       nindex = higher_prime_index (elts * 2);
    546  1.1  christos       nsize = prime_tab[nindex].prime;
    547  1.1  christos     }
    548  1.1  christos   else
    549  1.1  christos     {
    550  1.1  christos       nindex = oindex;
    551  1.1  christos       nsize = osize;
    552  1.1  christos     }
    553  1.1  christos 
    554  1.1  christos   if (htab->alloc_with_arg_f != NULL)
    555  1.1  christos     nentries = (PTR *) (*htab->alloc_with_arg_f) (htab->alloc_arg, nsize,
    556  1.1  christos 						  sizeof (PTR *));
    557  1.1  christos   else
    558  1.1  christos     nentries = (PTR *) (*htab->alloc_f) (nsize, sizeof (PTR *));
    559  1.1  christos   if (nentries == NULL)
    560  1.1  christos     return 0;
    561  1.1  christos   htab->entries = nentries;
    562  1.1  christos   htab->size = nsize;
    563  1.1  christos   htab->size_prime_index = nindex;
    564  1.1  christos   htab->n_elements -= htab->n_deleted;
    565  1.1  christos   htab->n_deleted = 0;
    566  1.1  christos 
    567  1.1  christos   p = oentries;
    568  1.1  christos   do
    569  1.1  christos     {
    570  1.1  christos       PTR x = *p;
    571  1.1  christos 
    572  1.1  christos       if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
    573  1.1  christos 	{
    574  1.1  christos 	  PTR *q = find_empty_slot_for_expand (htab, (*htab->hash_f) (x));
    575  1.1  christos 
    576  1.1  christos 	  *q = x;
    577  1.1  christos 	}
    578  1.1  christos 
    579  1.1  christos       p++;
    580  1.1  christos     }
    581  1.1  christos   while (p < olimit);
    582  1.1  christos 
    583  1.1  christos   if (htab->free_f != NULL)
    584  1.1  christos     (*htab->free_f) (oentries);
    585  1.1  christos   else if (htab->free_with_arg_f != NULL)
    586  1.1  christos     (*htab->free_with_arg_f) (htab->alloc_arg, oentries);
    587  1.1  christos   return 1;
    588  1.1  christos }
    589  1.1  christos 
    590  1.1  christos /* This function searches for a hash table entry equal to the given
    591  1.1  christos    element.  It cannot be used to insert or delete an element.  */
    592  1.1  christos 
    593  1.1  christos PTR
    594  1.1  christos htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash)
    595  1.1  christos {
    596  1.1  christos   hashval_t index, hash2;
    597  1.1  christos   size_t size;
    598  1.1  christos   PTR entry;
    599  1.1  christos 
    600  1.1  christos   htab->searches++;
    601  1.1  christos   size = htab_size (htab);
    602  1.1  christos   index = htab_mod (hash, htab);
    603  1.1  christos 
    604  1.1  christos   entry = htab->entries[index];
    605  1.1  christos   if (entry == HTAB_EMPTY_ENTRY
    606  1.1  christos       || (entry != HTAB_DELETED_ENTRY && (*htab->eq_f) (entry, element)))
    607  1.1  christos     return entry;
    608  1.1  christos 
    609  1.1  christos   hash2 = htab_mod_m2 (hash, htab);
    610  1.1  christos   for (;;)
    611  1.1  christos     {
    612  1.1  christos       htab->collisions++;
    613  1.1  christos       index += hash2;
    614  1.1  christos       if (index >= size)
    615  1.1  christos 	index -= size;
    616  1.1  christos 
    617  1.1  christos       entry = htab->entries[index];
    618  1.1  christos       if (entry == HTAB_EMPTY_ENTRY
    619  1.1  christos 	  || (entry != HTAB_DELETED_ENTRY && (*htab->eq_f) (entry, element)))
    620  1.1  christos 	return entry;
    621  1.1  christos     }
    622  1.1  christos }
    623  1.1  christos 
    624  1.1  christos /* Like htab_find_slot_with_hash, but compute the hash value from the
    625  1.1  christos    element.  */
    626  1.1  christos 
    627  1.1  christos PTR
    628  1.1  christos htab_find (htab_t htab, const PTR element)
    629  1.1  christos {
    630  1.1  christos   return htab_find_with_hash (htab, element, (*htab->hash_f) (element));
    631  1.1  christos }
    632  1.1  christos 
    633  1.1  christos /* This function searches for a hash table slot containing an entry
    634  1.1  christos    equal to the given element.  To delete an entry, call this with
    635  1.1  christos    insert=NO_INSERT, then call htab_clear_slot on the slot returned
    636  1.1  christos    (possibly after doing some checks).  To insert an entry, call this
    637  1.1  christos    with insert=INSERT, then write the value you want into the returned
    638  1.1  christos    slot.  When inserting an entry, NULL may be returned if memory
    639  1.1  christos    allocation fails.  */
    640  1.1  christos 
    641  1.1  christos PTR *
    642  1.1  christos htab_find_slot_with_hash (htab_t htab, const PTR element,
    643  1.1  christos                           hashval_t hash, enum insert_option insert)
    644  1.1  christos {
    645  1.1  christos   PTR *first_deleted_slot;
    646  1.1  christos   hashval_t index, hash2;
    647  1.1  christos   size_t size;
    648  1.1  christos   PTR entry;
    649  1.1  christos 
    650  1.1  christos   size = htab_size (htab);
    651  1.1  christos   if (insert == INSERT && size * 3 <= htab->n_elements * 4)
    652  1.1  christos     {
    653  1.1  christos       if (htab_expand (htab) == 0)
    654  1.1  christos 	return NULL;
    655  1.1  christos       size = htab_size (htab);
    656  1.1  christos     }
    657  1.1  christos 
    658  1.1  christos   index = htab_mod (hash, htab);
    659  1.1  christos 
    660  1.1  christos   htab->searches++;
    661  1.1  christos   first_deleted_slot = NULL;
    662  1.1  christos 
    663  1.1  christos   entry = htab->entries[index];
    664  1.1  christos   if (entry == HTAB_EMPTY_ENTRY)
    665  1.1  christos     goto empty_entry;
    666  1.1  christos   else if (entry == HTAB_DELETED_ENTRY)
    667  1.1  christos     first_deleted_slot = &htab->entries[index];
    668  1.1  christos   else if ((*htab->eq_f) (entry, element))
    669  1.1  christos     return &htab->entries[index];
    670  1.1  christos 
    671  1.1  christos   hash2 = htab_mod_m2 (hash, htab);
    672  1.1  christos   for (;;)
    673  1.1  christos     {
    674  1.1  christos       htab->collisions++;
    675  1.1  christos       index += hash2;
    676  1.1  christos       if (index >= size)
    677  1.1  christos 	index -= size;
    678  1.1  christos 
    679  1.1  christos       entry = htab->entries[index];
    680  1.1  christos       if (entry == HTAB_EMPTY_ENTRY)
    681  1.1  christos 	goto empty_entry;
    682  1.1  christos       else if (entry == HTAB_DELETED_ENTRY)
    683  1.1  christos 	{
    684  1.1  christos 	  if (!first_deleted_slot)
    685  1.1  christos 	    first_deleted_slot = &htab->entries[index];
    686  1.1  christos 	}
    687  1.1  christos       else if ((*htab->eq_f) (entry, element))
    688  1.1  christos 	return &htab->entries[index];
    689  1.1  christos     }
    690  1.1  christos 
    691  1.1  christos  empty_entry:
    692  1.1  christos   if (insert == NO_INSERT)
    693  1.1  christos     return NULL;
    694  1.1  christos 
    695  1.1  christos   if (first_deleted_slot)
    696  1.1  christos     {
    697  1.1  christos       htab->n_deleted--;
    698  1.1  christos       *first_deleted_slot = HTAB_EMPTY_ENTRY;
    699  1.1  christos       return first_deleted_slot;
    700  1.1  christos     }
    701  1.1  christos 
    702  1.1  christos   htab->n_elements++;
    703  1.1  christos   return &htab->entries[index];
    704  1.1  christos }
    705  1.1  christos 
    706  1.1  christos /* Like htab_find_slot_with_hash, but compute the hash value from the
    707  1.1  christos    element.  */
    708  1.1  christos 
    709  1.1  christos PTR *
    710  1.1  christos htab_find_slot (htab_t htab, const PTR element, enum insert_option insert)
    711  1.1  christos {
    712  1.1  christos   return htab_find_slot_with_hash (htab, element, (*htab->hash_f) (element),
    713  1.1  christos 				   insert);
    714  1.1  christos }
    715  1.1  christos 
    716  1.1  christos /* This function deletes an element with the given value from hash
    717  1.1  christos    table (the hash is computed from the element).  If there is no matching
    718  1.1  christos    element in the hash table, this function does nothing.  */
    719  1.1  christos 
    720  1.1  christos void
    721  1.1  christos htab_remove_elt (htab_t htab, PTR element)
    722  1.1  christos {
    723  1.1  christos   htab_remove_elt_with_hash (htab, element, (*htab->hash_f) (element));
    724  1.1  christos }
    725  1.1  christos 
    726  1.1  christos 
    727  1.1  christos /* This function deletes an element with the given value from hash
    728  1.1  christos    table.  If there is no matching element in the hash table, this
    729  1.1  christos    function does nothing.  */
    730  1.1  christos 
    731  1.1  christos void
    732  1.1  christos htab_remove_elt_with_hash (htab_t htab, PTR element, hashval_t hash)
    733  1.1  christos {
    734  1.1  christos   PTR *slot;
    735  1.1  christos 
    736  1.1  christos   slot = htab_find_slot_with_hash (htab, element, hash, NO_INSERT);
    737  1.1  christos   if (*slot == HTAB_EMPTY_ENTRY)
    738  1.1  christos     return;
    739  1.1  christos 
    740  1.1  christos   if (htab->del_f)
    741  1.1  christos     (*htab->del_f) (*slot);
    742  1.1  christos 
    743  1.1  christos   *slot = HTAB_DELETED_ENTRY;
    744  1.1  christos   htab->n_deleted++;
    745  1.1  christos }
    746  1.1  christos 
    747  1.1  christos /* This function clears a specified slot in a hash table.  It is
    748  1.1  christos    useful when you've already done the lookup and don't want to do it
    749  1.1  christos    again.  */
    750  1.1  christos 
    751  1.1  christos void
    752  1.1  christos htab_clear_slot (htab_t htab, PTR *slot)
    753  1.1  christos {
    754  1.1  christos   if (slot < htab->entries || slot >= htab->entries + htab_size (htab)
    755  1.1  christos       || *slot == HTAB_EMPTY_ENTRY || *slot == HTAB_DELETED_ENTRY)
    756  1.1  christos     abort ();
    757  1.1  christos 
    758  1.1  christos   if (htab->del_f)
    759  1.1  christos     (*htab->del_f) (*slot);
    760  1.1  christos 
    761  1.1  christos   *slot = HTAB_DELETED_ENTRY;
    762  1.1  christos   htab->n_deleted++;
    763  1.1  christos }
    764  1.1  christos 
    765  1.1  christos /* This function scans over the entire hash table calling
    766  1.1  christos    CALLBACK for each live entry.  If CALLBACK returns false,
    767  1.1  christos    the iteration stops.  INFO is passed as CALLBACK's second
    768  1.1  christos    argument.  */
    769  1.1  christos 
    770  1.1  christos void
    771  1.1  christos htab_traverse_noresize (htab_t htab, htab_trav callback, PTR info)
    772  1.1  christos {
    773  1.1  christos   PTR *slot;
    774  1.1  christos   PTR *limit;
    775  1.1  christos 
    776  1.1  christos   slot = htab->entries;
    777  1.1  christos   limit = slot + htab_size (htab);
    778  1.1  christos 
    779  1.1  christos   do
    780  1.1  christos     {
    781  1.1  christos       PTR x = *slot;
    782  1.1  christos 
    783  1.1  christos       if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
    784  1.1  christos 	if (!(*callback) (slot, info))
    785  1.1  christos 	  break;
    786  1.1  christos     }
    787  1.1  christos   while (++slot < limit);
    788  1.1  christos }
    789  1.1  christos 
    790  1.1  christos /* Like htab_traverse_noresize, but does resize the table when it is
    791  1.1  christos    too empty to improve effectivity of subsequent calls.  */
    792  1.1  christos 
    793  1.1  christos void
    794  1.1  christos htab_traverse (htab_t htab, htab_trav callback, PTR info)
    795  1.1  christos {
    796  1.1  christos   size_t size = htab_size (htab);
    797  1.1  christos   if (htab_elements (htab) * 8 < size && size > 32)
    798  1.1  christos     htab_expand (htab);
    799  1.1  christos 
    800  1.1  christos   htab_traverse_noresize (htab, callback, info);
    801  1.1  christos }
    802  1.1  christos 
    803  1.1  christos /* Return the fraction of fixed collisions during all work with given
    804  1.1  christos    hash table. */
    805  1.1  christos 
    806  1.1  christos double
    807  1.1  christos htab_collisions (htab_t htab)
    808  1.1  christos {
    809  1.1  christos   if (htab->searches == 0)
    810  1.1  christos     return 0.0;
    811  1.1  christos 
    812  1.1  christos   return (double) htab->collisions / (double) htab->searches;
    813  1.1  christos }
    814  1.1  christos 
    815  1.1  christos /* Hash P as a null-terminated string.
    816  1.1  christos 
    817  1.1  christos    Copied from gcc/hashtable.c.  Zack had the following to say with respect
    818  1.1  christos    to applicability, though note that unlike hashtable.c, this hash table
    819  1.1  christos    implementation re-hashes rather than chain buckets.
    820  1.1  christos 
    821  1.1  christos    http://gcc.gnu.org/ml/gcc-patches/2001-08/msg01021.html
    822  1.1  christos    From: Zack Weinberg <zackw (at) panix.com>
    823  1.1  christos    Date: Fri, 17 Aug 2001 02:15:56 -0400
    824  1.1  christos 
    825  1.1  christos    I got it by extracting all the identifiers from all the source code
    826  1.1  christos    I had lying around in mid-1999, and testing many recurrences of
    827  1.1  christos    the form "H_n = H_{n-1} * K + c_n * L + M" where K, L, M were either
    828  1.1  christos    prime numbers or the appropriate identity.  This was the best one.
    829  1.1  christos    I don't remember exactly what constituted "best", except I was
    830  1.1  christos    looking at bucket-length distributions mostly.
    831  1.1  christos 
    832  1.1  christos    So it should be very good at hashing identifiers, but might not be
    833  1.1  christos    as good at arbitrary strings.
    834  1.1  christos 
    835  1.1  christos    I'll add that it thoroughly trounces the hash functions recommended
    836  1.1  christos    for this use at http://burtleburtle.net/bob/hash/index.html, both
    837  1.1  christos    on speed and bucket distribution.  I haven't tried it against the
    838  1.1  christos    function they just started using for Perl's hashes.  */
    839  1.1  christos 
    840  1.1  christos hashval_t
    841  1.1  christos htab_hash_string (const PTR p)
    842  1.1  christos {
    843  1.1  christos   const unsigned char *str = (const unsigned char *) p;
    844  1.1  christos   hashval_t r = 0;
    845  1.1  christos   unsigned char c;
    846  1.1  christos 
    847  1.1  christos   while ((c = *str++) != 0)
    848  1.1  christos     r = r * 67 + c - 113;
    849  1.1  christos 
    850  1.1  christos   return r;
    851  1.1  christos }
    852  1.1  christos 
    853  1.1  christos /* DERIVED FROM:
    854  1.1  christos --------------------------------------------------------------------
    855  1.1  christos lookup2.c, by Bob Jenkins, December 1996, Public Domain.
    856  1.1  christos hash(), hash2(), hash3, and mix() are externally useful functions.
    857  1.1  christos Routines to test the hash are included if SELF_TEST is defined.
    858  1.1  christos You can use this free for any purpose.  It has no warranty.
    859  1.1  christos --------------------------------------------------------------------
    860  1.1  christos */
    861  1.1  christos 
    862  1.1  christos /*
    863  1.1  christos --------------------------------------------------------------------
    864  1.1  christos mix -- mix 3 32-bit values reversibly.
    865  1.1  christos For every delta with one or two bit set, and the deltas of all three
    866  1.1  christos   high bits or all three low bits, whether the original value of a,b,c
    867  1.1  christos   is almost all zero or is uniformly distributed,
    868  1.1  christos * If mix() is run forward or backward, at least 32 bits in a,b,c
    869  1.1  christos   have at least 1/4 probability of changing.
    870  1.1  christos * If mix() is run forward, every bit of c will change between 1/3 and
    871  1.1  christos   2/3 of the time.  (Well, 22/100 and 78/100 for some 2-bit deltas.)
    872  1.1  christos mix() was built out of 36 single-cycle latency instructions in a
    873  1.1  christos   structure that could supported 2x parallelism, like so:
    874  1.1  christos       a -= b;
    875  1.1  christos       a -= c; x = (c>>13);
    876  1.1  christos       b -= c; a ^= x;
    877  1.1  christos       b -= a; x = (a<<8);
    878  1.1  christos       c -= a; b ^= x;
    879  1.1  christos       c -= b; x = (b>>13);
    880  1.1  christos       ...
    881  1.1  christos   Unfortunately, superscalar Pentiums and Sparcs can't take advantage
    882  1.1  christos   of that parallelism.  They've also turned some of those single-cycle
    883  1.1  christos   latency instructions into multi-cycle latency instructions.  Still,
    884  1.1  christos   this is the fastest good hash I could find.  There were about 2^^68
    885  1.1  christos   to choose from.  I only looked at a billion or so.
    886  1.1  christos --------------------------------------------------------------------
    887  1.1  christos */
    888  1.1  christos /* same, but slower, works on systems that might have 8 byte hashval_t's */
    889  1.1  christos #define mix(a,b,c) \
    890  1.1  christos { \
    891  1.1  christos   a -= b; a -= c; a ^= (c>>13); \
    892  1.1  christos   b -= c; b -= a; b ^= (a<< 8); \
    893  1.1  christos   c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
    894  1.1  christos   a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
    895  1.1  christos   b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
    896  1.1  christos   c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
    897  1.1  christos   a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
    898  1.1  christos   b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
    899  1.1  christos   c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
    900  1.1  christos }
    901  1.1  christos 
    902  1.1  christos /*
    903  1.1  christos --------------------------------------------------------------------
    904  1.1  christos hash() -- hash a variable-length key into a 32-bit value
    905  1.1  christos   k     : the key (the unaligned variable-length array of bytes)
    906  1.1  christos   len   : the length of the key, counting by bytes
    907  1.1  christos   level : can be any 4-byte value
    908  1.1  christos Returns a 32-bit value.  Every bit of the key affects every bit of
    909  1.1  christos the return value.  Every 1-bit and 2-bit delta achieves avalanche.
    910  1.1  christos About 36+6len instructions.
    911  1.1  christos 
    912  1.1  christos The best hash table sizes are powers of 2.  There is no need to do
    913  1.1  christos mod a prime (mod is sooo slow!).  If you need less than 32 bits,
    914  1.1  christos use a bitmask.  For example, if you need only 10 bits, do
    915  1.1  christos   h = (h & hashmask(10));
    916  1.1  christos In which case, the hash table should have hashsize(10) elements.
    917  1.1  christos 
    918  1.1  christos If you are hashing n strings (ub1 **)k, do it like this:
    919  1.1  christos   for (i=0, h=0; i<n; ++i) h = hash( k[i], len[i], h);
    920  1.1  christos 
    921  1.1  christos By Bob Jenkins, 1996.  bob_jenkins (at) burtleburtle.net.  You may use this
    922  1.1  christos code any way you wish, private, educational, or commercial.  It's free.
    923  1.1  christos 
    924  1.1  christos See http://burtleburtle.net/bob/hash/evahash.html
    925  1.1  christos Use for hash table lookup, or anything where one collision in 2^32 is
    926  1.1  christos acceptable.  Do NOT use for cryptographic purposes.
    927  1.1  christos --------------------------------------------------------------------
    928  1.1  christos */
    929  1.1  christos 
    930  1.1  christos hashval_t
    931  1.1  christos iterative_hash (const PTR k_in /* the key */,
    932  1.1  christos                 register size_t  length /* the length of the key */,
    933  1.1  christos                 register hashval_t initval /* the previous hash, or
    934  1.1  christos                                               an arbitrary value */)
    935  1.1  christos {
    936  1.1  christos   register const unsigned char *k = (const unsigned char *)k_in;
    937  1.1  christos   register hashval_t a,b,c,len;
    938  1.1  christos 
    939  1.1  christos   /* Set up the internal state */
    940  1.1  christos   len = length;
    941  1.1  christos   a = b = 0x9e3779b9;  /* the golden ratio; an arbitrary value */
    942  1.1  christos   c = initval;           /* the previous hash value */
    943  1.1  christos 
    944  1.1  christos   /*---------------------------------------- handle most of the key */
    945  1.1  christos #ifndef WORDS_BIGENDIAN
    946  1.1  christos   /* On a little-endian machine, if the data is 4-byte aligned we can hash
    947  1.1  christos      by word for better speed.  This gives nondeterministic results on
    948  1.1  christos      big-endian machines.  */
    949  1.1  christos   if (sizeof (hashval_t) == 4 && (((size_t)k)&3) == 0)
    950  1.1  christos     while (len >= 12)    /* aligned */
    951  1.1  christos       {
    952  1.1  christos 	a += *(hashval_t *)(k+0);
    953  1.1  christos 	b += *(hashval_t *)(k+4);
    954  1.1  christos 	c += *(hashval_t *)(k+8);
    955  1.1  christos 	mix(a,b,c);
    956  1.1  christos 	k += 12; len -= 12;
    957  1.1  christos       }
    958  1.1  christos   else /* unaligned */
    959  1.1  christos #endif
    960  1.1  christos     while (len >= 12)
    961  1.1  christos       {
    962  1.1  christos 	a += (k[0] +((hashval_t)k[1]<<8) +((hashval_t)k[2]<<16) +((hashval_t)k[3]<<24));
    963  1.1  christos 	b += (k[4] +((hashval_t)k[5]<<8) +((hashval_t)k[6]<<16) +((hashval_t)k[7]<<24));
    964  1.1  christos 	c += (k[8] +((hashval_t)k[9]<<8) +((hashval_t)k[10]<<16)+((hashval_t)k[11]<<24));
    965  1.1  christos 	mix(a,b,c);
    966  1.1  christos 	k += 12; len -= 12;
    967  1.1  christos       }
    968  1.1  christos 
    969  1.1  christos   /*------------------------------------- handle the last 11 bytes */
    970  1.1  christos   c += length;
    971  1.1  christos   switch(len)              /* all the case statements fall through */
    972  1.1  christos     {
    973  1.1  christos     case 11: c+=((hashval_t)k[10]<<24);
    974  1.1  christos     case 10: c+=((hashval_t)k[9]<<16);
    975  1.1  christos     case 9 : c+=((hashval_t)k[8]<<8);
    976  1.1  christos       /* the first byte of c is reserved for the length */
    977  1.1  christos     case 8 : b+=((hashval_t)k[7]<<24);
    978  1.1  christos     case 7 : b+=((hashval_t)k[6]<<16);
    979  1.1  christos     case 6 : b+=((hashval_t)k[5]<<8);
    980  1.1  christos     case 5 : b+=k[4];
    981  1.1  christos     case 4 : a+=((hashval_t)k[3]<<24);
    982  1.1  christos     case 3 : a+=((hashval_t)k[2]<<16);
    983  1.1  christos     case 2 : a+=((hashval_t)k[1]<<8);
    984  1.1  christos     case 1 : a+=k[0];
    985  1.1  christos       /* case 0: nothing left to add */
    986  1.1  christos     }
    987  1.1  christos   mix(a,b,c);
    988  1.1  christos   /*-------------------------------------------- report the result */
    989  1.1  christos   return c;
    990  1.1  christos }
    991