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. */
38 #include <sys/types.h>
46 #include "libiberty.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
56 #define DELETED_ENTRY ((void *) 1)
58 /* The following function returns the nearest prime number which is
59 greater than given source number. */
62 higher_prime_number (n
)
67 n
|= 0x01; /* Force N to be odd. */
69 return n
; /* All odd numbers < 9 are prime. */
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. */
91 htab_create (size
, hash_f
, eq_f
, del_f
)
99 size
= higher_prime_number (size
);
100 result
= (htab_t
) xcalloc (1, sizeof (struct htab
));
101 result
->entries
= (void **) xcalloc (size
, sizeof (void *));
103 result
->hash_f
= hash_f
;
105 result
->del_f
= del_f
;
109 /* This function frees all memory allocated for given hash table.
110 Naturally the hash table must already exist. */
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
);
129 /* This function clears all entries in the given hash table. */
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
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. */
154 find_empty_slot_for_expand (htab
, hash
)
158 size_t size
= htab
->size
;
159 unsigned int hash2
= 1 + hash
% (size
- 2);
160 unsigned int index
= hash
% size
;
164 void **slot
= htab
->entries
+ index
;
165 if (*slot
== EMPTY_ENTRY
)
168 if (*slot
== DELETED_ENTRY
)
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. */
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
;
204 if (x
!= EMPTY_ENTRY
&& x
!= DELETED_ENTRY
)
206 void **q
= find_empty_slot_for_expand (htab
, (*htab
->hash_f
) (x
));
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. */
219 htab_find_with_hash (htab
, element
, hash
)
224 unsigned int index
, hash2
;
229 hash2
= 1 + hash
% (size
- 2);
234 void *entry
= htab
->entries
[index
];
235 if (entry
== EMPTY_ENTRY
)
237 else if (entry
!= DELETED_ENTRY
&& (*htab
->eq_f
) (entry
, element
))
247 /* Like htab_find_slot_with_hash, but compute the hash value from the
250 htab_find (htab
, 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. */
264 htab_find_slot_with_hash (htab
, element
, hash
, insert
)
270 void **first_deleted_slot
;
271 unsigned int index
, hash2
;
274 if (insert
&& htab
->size
* 3 <= htab
->n_elements
* 4)
278 hash2
= 1 + hash
% (size
- 2);
282 first_deleted_slot
= NULL
;
286 void *entry
= htab
->entries
[index
];
287 if (entry
== EMPTY_ENTRY
)
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
];
310 if ((*htab
->eq_f
) (entry
, element
))
311 return &htab
->entries
[index
];
321 /* Like htab_find_slot_with_hash, but compute the hash value from the
324 htab_find_slot (htab
, element
, insert
)
329 return htab_find_slot_with_hash (htab
, element
, (*htab
->hash_f
) (element
),
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. */
338 htab_remove_elt (htab
, element
)
344 slot
= htab_find_slot (htab
, element
, 0);
345 if (*slot
== EMPTY_ENTRY
)
349 (*htab
->del_f
) (*slot
);
351 *slot
= DELETED_ENTRY
;
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
360 htab_clear_slot (htab
, slot
)
364 if (slot
< htab
->entries
|| slot
>= htab
->entries
+ htab
->size
365 || *slot
== EMPTY_ENTRY
|| *slot
== DELETED_ENTRY
)
368 (*htab
->del_f
) (*slot
);
369 *slot
= DELETED_ENTRY
;
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
379 htab_traverse (htab
, callback
, info
)
384 void **slot
, **limit
;
385 slot
= htab
->entries
;
386 limit
= slot
+ htab
->size
;
390 if (x
!= EMPTY_ENTRY
&& x
!= DELETED_ENTRY
)
391 if (!(*callback
) (slot
, info
))
394 while (++slot
< limit
);
397 /* The following function returns current size of given hash table. */
406 /* The following function returns current number of elements in given
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. */
420 htab_collisions (htab
)
425 searches
= htab
->searches
;
428 return (double)htab
->collisions
/ (double)searches
;