Merge reload-branch up to revision 101000
[official-gcc.git] / libobjc / objc / hash.h
blobd9f3aee86bbcbdc0fdeba0f20b3d43ef58e8616a
1 /* Hash tables for Objective C method dispatch.
2 Copyright (C) 1993, 1995, 1996, 2004 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GCC 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
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* As a special exception, if you link this library with files
22 compiled with GCC to produce an executable, this does not cause
23 the resulting executable to be covered by the GNU General Public License.
24 This exception does not however invalidate any other reasons why
25 the executable file might be covered by the GNU General Public License. */
28 #ifndef __hash_INCLUDE_GNU
29 #define __hash_INCLUDE_GNU
31 #include <stddef.h>
32 #include <string.h>
33 #include "objc.h"
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
40 * This data structure is used to hold items
41 * stored in a hash table. Each node holds
42 * a key/value pair.
44 * Items in the cache are really of type void *.
46 typedef struct cache_node
48 struct cache_node *next; /* Pointer to next entry on the list.
49 NULL indicates end of list. */
50 const void *key; /* Key used to locate the value. Used
51 to locate value when more than one
52 key computes the same hash
53 value. */
54 void *value; /* Value stored for the key. */
55 } *node_ptr;
59 * This data type is the function that computes a hash code given a key.
60 * Therefore, the key can be a pointer to anything and the function specific
61 * to the key type.
63 * Unfortunately there is a mutual data structure reference problem with this
64 * typedef. Therefore, to remove compiler warnings the functions passed to
65 * objc_hash_new will have to be casted to this type.
67 typedef unsigned int (*hash_func_type) (void *, const void *);
70 * This data type is the function that compares two hash keys and returns an
71 * integer greater than, equal to, or less than 0, according as the first
72 * parameter is lexicographically greater than, equal to, or less than the
73 * second.
76 typedef int (*compare_func_type) (const void *, const void *);
80 * This data structure is the cache.
82 * It must be passed to all of the hashing routines
83 * (except for new).
85 typedef struct cache
87 /* Variables used to implement the hash itself. */
88 node_ptr *node_table; /* Pointer to an array of hash nodes. */
89 /* Variables used to track the size of the hash table so to determine
90 when to resize it. */
91 unsigned int size; /* Number of buckets allocated for the hash table
92 (number of array entries allocated for
93 "node_table"). Must be a power of two. */
94 unsigned int used; /* Current number of entries in the hash table. */
95 unsigned int mask; /* Precomputed mask. */
97 /* Variables used to implement indexing through the hash table. */
99 unsigned int last_bucket; /* Tracks which entry in the array where
100 the last value was returned. */
101 /* Function used to compute a hash code given a key.
102 This function is specified when the hash table is created. */
103 hash_func_type hash_func;
104 /* Function used to compare two hash keys to see if they are equal. */
105 compare_func_type compare_func;
106 } *cache_ptr;
109 /* Two important hash tables. */
110 extern cache_ptr module_hash_table, class_hash_table;
112 /* Allocate and initialize a hash table. */
114 cache_ptr objc_hash_new (unsigned int size,
115 hash_func_type hash_func,
116 compare_func_type compare_func);
118 /* Deallocate all of the hash nodes and the cache itself. */
120 void objc_hash_delete (cache_ptr cache);
122 /* Add the key/value pair to the hash table. If the
123 hash table reaches a level of fullness then it will be resized.
125 assert if the key is already in the hash. */
127 void objc_hash_add (cache_ptr *cachep, const void *key, void *value);
129 /* Remove the key/value pair from the hash table.
130 assert if the key isn't in the table. */
132 void objc_hash_remove (cache_ptr cache, const void *key);
134 /* Used to index through the hash table. Start with NULL
135 to get the first entry.
137 Successive calls pass the value returned previously.
138 ** Don't modify the hash during this operation ***
140 Cache nodes are returned such that key or value can
141 be extracted. */
143 node_ptr objc_hash_next (cache_ptr cache, node_ptr node);
145 /* Used to return a value from a hash table using a given key. */
147 void *objc_hash_value_for_key (cache_ptr cache, const void *key);
149 /* Used to determine if the given key exists in the hash table */
151 BOOL objc_hash_is_key_in_hash (cache_ptr cache, const void *key);
153 /************************************************
155 Useful hashing functions.
157 Declared inline for your pleasure.
159 ************************************************/
161 /* Calculate a hash code by performing some
162 manipulation of the key pointer. (Use the lowest bits
163 except for those likely to be 0 due to alignment.) */
165 static inline unsigned int
166 objc_hash_ptr (cache_ptr cache, const void *key)
168 return ((size_t)key / sizeof (void *)) & cache->mask;
172 /* Calculate a hash code by iterating over a NULL
173 terminate string. */
174 static inline unsigned int
175 objc_hash_string (cache_ptr cache, const void *key)
177 unsigned int ret = 0;
178 unsigned int ctr = 0;
179 const char *ckey = (const char *) key;
181 while (*ckey) {
182 ret ^= *ckey++ << ctr;
183 ctr = (ctr + 1) % sizeof (void *);
186 return ret & cache->mask;
190 /* Compare two pointers for equality. */
191 static inline int
192 objc_compare_ptrs (const void *k1, const void *k2)
194 return (k1 == k2);
198 /* Compare two strings. */
199 static inline int
200 objc_compare_strings (const void *k1, const void *k2)
202 if (k1 == k2)
203 return 1;
204 else if (k1 == 0 || k2 == 0)
205 return 0;
206 else
207 return ! strcmp ((const char *) k1, (const char *) k2);
210 #ifndef OBJC_IGNORE_DEPRECATED_API
211 /* Deprecated as of 4.0 */
213 static inline cache_ptr
214 hash_new (unsigned int size,
215 hash_func_type hash_func,
216 compare_func_type compare_func) __attribute__ ((deprecated));
217 static inline cache_ptr
218 hash_new (unsigned int size,
219 hash_func_type hash_func,
220 compare_func_type compare_func)
222 return objc_hash_new(size, hash_func, compare_func);
225 static inline void
226 hash_delete(cache_ptr cache) __attribute__ ((deprecated));
227 static inline void
228 hash_delete(cache_ptr cache)
230 objc_hash_delete(cache);
233 static inline void
234 hash_add (cache_ptr *cachep,
235 const void *key,
236 void *value) __attribute__ ((deprecated));
237 static inline void
238 hash_add (cache_ptr *cachep, const void *key, void *value)
240 objc_hash_add(cachep, key, value);
243 static inline void
244 hash_remove (cache_ptr cache, const void *key) __attribute__ ((deprecated));
245 static inline void
246 hash_remove (cache_ptr cache, const void *key)
248 objc_hash_remove (cache, key);
251 static inline node_ptr
252 hash_next (cache_ptr cache, node_ptr node) __attribute__ ((deprecated));
253 static inline node_ptr
254 hash_next (cache_ptr cache, node_ptr node)
256 return objc_hash_next (cache, node);
259 static inline void *
260 hash_value_for_key (cache_ptr cache,
261 const void *key) __attribute__ ((deprecated));
262 static inline void *
263 hash_value_for_key (cache_ptr cache, const void *key)
265 return objc_hash_value_for_key (cache, key);
268 static inline BOOL
269 hash_is_key_in_hash (cache_ptr cache,
270 const void *key) __attribute__ ((deprecated));
271 static inline BOOL
272 hash_is_key_in_hash (cache_ptr cache, const void *key)
274 return objc_hash_is_key_in_hash (cache, key);
277 static inline unsigned int
278 hash_ptr (cache_ptr cache, const void *key) __attribute__ ((deprecated));
279 static inline unsigned int
280 hash_ptr (cache_ptr cache, const void *key)
282 return objc_hash_ptr (cache, key);
285 static inline unsigned int
286 hash_string (cache_ptr cache, const void *key) __attribute__ ((deprecated));
287 static inline unsigned int
288 hash_string (cache_ptr cache, const void *key)
290 return objc_hash_string (cache, key);
293 static inline int
294 compare_ptrs (const void *k1, const void *k2) __attribute__ ((deprecated));
295 static inline int
296 compare_ptrs (const void *k1, const void *k2)
298 return objc_compare_ptrs (k1, k2);
301 static inline int
302 compare_strings (const void *k1, const void *k2) __attribute__ ((deprecated));
303 static inline int
304 compare_strings (const void *k1, const void *k2)
306 return objc_compare_strings (k1, k2);
308 #endif /* OBJC_IGNORE_DEPRECATED_API */
311 #ifdef __cplusplus
313 #endif /* __cplusplus */
316 #endif /* not __hash_INCLUDE_GNU */