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 /* The following variable is used for debugging. Its value is number
50 of all calls of `find_hash_table_entry' for all hash tables. */
52 static int all_searches
= 0;
54 /* The following variable is used for debugging. Its value is number
55 of collisions fixed for time of work with all hash tables. */
57 static int all_collisions
= 0;
59 /* The following variable is used for debugging. Its value is number
60 of all table expansions fixed for time of work with all hash
63 static int all_expansions
= 0;
65 /* This macro defines reserved value for empty table entry. */
67 #define EMPTY_ENTRY NULL
69 /* This macro defines reserved value for table entry which contained
72 #define DELETED_ENTRY ((void *) 1)
74 /* The following function returns the nearest prime number which is
75 greater than given source number. */
78 higher_prime_number (number
)
83 for (number
= (number
/ 2) * 2 + 3;; number
+= 2)
85 for (i
= 3; i
* i
<= number
; i
+= 2)
93 /* This function creates table with length slightly longer than given
94 source length. Created hash table is initiated as empty (all the
95 hash table entries are EMPTY_ENTRY). The function returns the
96 created hash table. */
99 create_hash_table (size
, hash_function
, eq_function
)
101 unsigned (*hash_function
) PARAMS ((hash_table_entry_t
));
102 int (*eq_function
) PARAMS ((hash_table_entry_t
, hash_table_entry_t
));
106 size
= higher_prime_number (size
);
107 result
= (hash_table_t
) xmalloc (sizeof (*result
));
109 = (hash_table_entry_t
*) xmalloc (size
* sizeof (hash_table_entry_t
));
111 result
->hash_function
= hash_function
;
112 result
->eq_function
= eq_function
;
113 result
->number_of_elements
= 0;
114 result
->number_of_deleted_elements
= 0;
115 result
->searches
= 0;
116 result
->collisions
= 0;
117 memset (result
->entries
, 0, size
* sizeof (hash_table_entry_t
));
121 /* This function frees all memory allocated for given hash table.
122 Naturally the hash table must already exist. */
125 delete_hash_table (htab
)
128 free (htab
->entries
);
132 /* This function clears all entries in the given hash table. */
135 empty_hash_table (htab
)
138 memset (htab
->entries
, 0, htab
->size
* sizeof (hash_table_entry_t
));
141 /* The following function changes size of memory allocated for the
142 entries and repeatedly inserts the table elements. The occupancy
143 of the table after the call will be about 50%. Naturally the hash
144 table must already exist. Remember also that the place of the
145 table entries is changed. */
148 expand_hash_table (htab
)
151 hash_table_t new_htab
;
152 hash_table_entry_t
*entry_ptr
;
153 hash_table_entry_t
*new_entry_ptr
;
155 new_htab
= create_hash_table (htab
->number_of_elements
* 2,
156 htab
->hash_function
, htab
->eq_function
);
157 for (entry_ptr
= htab
->entries
; entry_ptr
< htab
->entries
+ htab
->size
;
159 if (*entry_ptr
!= EMPTY_ENTRY
&& *entry_ptr
!= DELETED_ENTRY
)
161 new_entry_ptr
= find_hash_table_entry (new_htab
, *entry_ptr
, 1);
162 *new_entry_ptr
= (*entry_ptr
);
164 free (htab
->entries
);
169 /* This function searches for hash table entry which contains element
170 equal to given value or empty entry in which given value can be
171 placed (if the element with given value does not exist in the
172 table). The function works in two regimes. The first regime is
173 used only for search. The second is used for search and
174 reservation empty entry for given value. The table is expanded if
175 occupancy (taking into accout also deleted elements) is more than
176 75%. Naturally the hash table must already exist. If reservation
177 flag is TRUE then the element with given value should be inserted
178 into the table entry before another call of
179 `find_hash_table_entry'. */
182 find_hash_table_entry (htab
, element
, reserve
)
184 hash_table_entry_t element
;
187 hash_table_entry_t
*entry_ptr
;
188 hash_table_entry_t
*first_deleted_entry_ptr
;
189 unsigned index
, hash_value
, secondary_hash_value
;
191 if (htab
->size
* 3 <= htab
->number_of_elements
* 4)
194 expand_hash_table (htab
);
196 hash_value
= (*htab
->hash_function
) (element
);
197 secondary_hash_value
= 1 + hash_value
% (htab
->size
- 2);
198 index
= hash_value
% htab
->size
;
201 first_deleted_entry_ptr
= NULL
;
202 for (;;htab
->collisions
++, all_collisions
++)
204 entry_ptr
= htab
->entries
+ index
;
205 if (*entry_ptr
== EMPTY_ENTRY
)
209 htab
->number_of_elements
++;
210 if (first_deleted_entry_ptr
!= NULL
)
212 entry_ptr
= first_deleted_entry_ptr
;
213 *entry_ptr
= EMPTY_ENTRY
;
218 else if (*entry_ptr
!= DELETED_ENTRY
)
220 if ((*htab
->eq_function
) (*entry_ptr
, element
))
223 else if (first_deleted_entry_ptr
== NULL
)
224 first_deleted_entry_ptr
= entry_ptr
;
225 index
+= secondary_hash_value
;
226 if (index
>= htab
->size
)
232 /* This function deletes element with given value from hash table.
233 The hash table entry value will be `DELETED_ENTRY' after the
234 function call. Naturally the hash table must already exist. Hash
235 table entry for given value should be not empty (or deleted). */
238 remove_element_from_hash_table_entry (htab
, element
)
240 hash_table_entry_t element
;
242 hash_table_entry_t
*entry_ptr
;
244 entry_ptr
= find_hash_table_entry (htab
, element
, 0);
245 *entry_ptr
= DELETED_ENTRY
;
246 htab
->number_of_deleted_elements
++;
249 /* This function clears a specified slot in a hash table.
250 It is useful when you've already done the lookup and don't want to
254 clear_hash_table_slot (htab
, slot
)
256 hash_table_entry_t
*slot
;
258 if (slot
< htab
->entries
|| slot
>= htab
->entries
+ htab
->size
259 || *slot
== EMPTY_ENTRY
|| *slot
== DELETED_ENTRY
)
261 *slot
= DELETED_ENTRY
;
262 htab
->number_of_deleted_elements
++;
265 /* This function scans over the entire hash table calling
266 CALLBACK for each live entry. If CALLBACK returns false,
267 the iteration stops. INFO is passed as CALLBACK's second
271 traverse_hash_table (htab
, callback
, info
)
273 int (*callback
) PARAMS ((hash_table_entry_t
, void *));
276 hash_table_entry_t
*entry_ptr
;
277 for (entry_ptr
= htab
->entries
; entry_ptr
< htab
->entries
+ htab
->size
;
279 if (*entry_ptr
!= EMPTY_ENTRY
&& *entry_ptr
!= DELETED_ENTRY
)
280 if (!callback (*entry_ptr
, info
))
284 /* The following function returns current size of given hash table. */
287 hash_table_size (htab
)
293 /* The following function returns current number of elements in given
297 hash_table_elements_number (htab
)
300 return htab
->number_of_elements
- htab
->number_of_deleted_elements
;
303 /* The following function returns number of percents of fixed
304 collisions during all work with given hash table. */
307 hash_table_collisions (htab
)
312 searches
= htab
->searches
;
315 return htab
->collisions
* 100 / searches
;
318 /* The following function returns number of percents of fixed
319 collisions during all work with all hash tables. */
322 all_hash_table_collisions ()
326 searches
= all_searches
;
329 return all_collisions
* 100 / searches
;