* config/obj-elf.c (obj_elf_type): Add code to support a type of
[deliverable/binutils-gdb.git] / include / hashtab.h
CommitLineData
cc89ffe6 1/* An expandable hash tables datatype.
bb6a587d 2 Copyright (C) 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
cc89ffe6
ILT
3 Contributed by Vladimir Makarov (vmakarov@cygnus.com).
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 2 of the License, or
8(at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program; if not, write to the Free Software
e172dbf8 17Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
cc89ffe6
ILT
18
19/* This package implements basic hash table functionality. It is possible
20 to search for an entry, create an entry and destroy an entry.
21
22 Elements in the table are generic pointers.
23
24 The size of the table is not fixed; if the occupancy of the table
25 grows too high the hash table will be expanded.
26
27 The abstract data implementation is based on generalized Algorithm D
28 from Knuth's book "The art of computer programming". Hash table is
29 expanded by creation of new hash table and transferring elements from
30 the old table to the new table. */
31
32#ifndef __HASHTAB_H__
33#define __HASHTAB_H__
34
35#ifdef __cplusplus
36extern "C" {
37#endif /* __cplusplus */
38
007425f1 39#include "ansidecl.h"
cc89ffe6 40
18893690
DD
41#ifndef GTY
42#define GTY(X)
43#endif
44
b8cdcddf
L
45/* The type for a hash code. */
46typedef unsigned int hashval_t;
47
b4fe2683
JM
48/* Callback function pointer types. */
49
50/* Calculate hash of a table entry. */
49b1fae4 51typedef hashval_t (*htab_hash) (const void *);
b4fe2683
JM
52
53/* Compare a table entry with a possible entry. The entry already in
54 the table always comes first, so the second element can be of a
55 different type (but in this case htab_find and htab_find_slot
56 cannot be used; instead the variants that accept a hash value
57 must be used). */
49b1fae4 58typedef int (*htab_eq) (const void *, const void *);
b4fe2683
JM
59
60/* Cleanup function called whenever a live element is removed from
61 the hash table. */
49b1fae4 62typedef void (*htab_del) (void *);
b4fe2683
JM
63
64/* Function called by htab_traverse for each live element. The first
65 arg is the slot of the element (which can be passed to htab_clear_slot
66 if desired), the second arg is the auxiliary pointer handed to
67 htab_traverse. Return 1 to continue scan, 0 to stop. */
49b1fae4 68typedef int (*htab_trav) (void **, void *);
cc89ffe6 69
18893690
DD
70/* Memory-allocation function, with the same functionality as calloc().
71 Iff it returns NULL, the hash table implementation will pass an error
72 code back to the user, so if your code doesn't handle errors,
73 best if you use xcalloc instead. */
a288642d 74typedef void *(*htab_alloc) (size_t, size_t);
18893690
DD
75
76/* We also need a free() routine. */
a288642d 77typedef void (*htab_free) (void *);
18893690 78
5f9624e3
DJ
79/* Memory allocation and deallocation; variants which take an extra
80 argument. */
a288642d 81typedef void *(*htab_alloc_with_arg) (void *, size_t, size_t);
49b1fae4 82typedef void (*htab_free_with_arg) (void *, void *);
5f9624e3 83
c3cca4c9
DD
84/* This macro defines reserved value for empty table entry. */
85
86#define HTAB_EMPTY_ENTRY ((PTR) 0)
87
88/* This macro defines reserved value for table entry which contained
89 a deleted element. */
90
91#define HTAB_DELETED_ENTRY ((PTR) 1)
92
cc89ffe6
ILT
93/* Hash tables are of the following type. The structure
94 (implementation) of this type is not needed for using the hash
95 tables. All work with hash table should be executed only through
5f9624e3
DJ
96 functions mentioned below. The size of this structure is subject to
97 change. */
cc89ffe6 98
167bdac1 99struct GTY(()) htab {
b4fe2683
JM
100 /* Pointer to hash function. */
101 htab_hash hash_f;
cc89ffe6 102
b4fe2683
JM
103 /* Pointer to comparison function. */
104 htab_eq eq_f;
cc89ffe6 105
b4fe2683
JM
106 /* Pointer to cleanup function. */
107 htab_del del_f;
cc89ffe6 108
b4fe2683 109 /* Table itself. */
a288642d 110 void ** GTY ((use_param, length ("%h.size"))) entries;
cc89ffe6 111
bb6a587d 112 /* Current size (in entries) of the hash table. */
b4fe2683 113 size_t size;
cc89ffe6 114
bb6a587d 115 /* Current number of elements including also deleted elements. */
b4fe2683 116 size_t n_elements;
cc89ffe6 117
bb6a587d 118 /* Current number of deleted elements in the table. */
b4fe2683 119 size_t n_deleted;
cc89ffe6 120
b4fe2683
JM
121 /* The following member is used for debugging. Its value is number
122 of all calls of `htab_find_slot' for the hash table. */
123 unsigned int searches;
cc89ffe6 124
b4fe2683
JM
125 /* The following member is used for debugging. Its value is number
126 of collisions fixed for time of work with the hash table. */
127 unsigned int collisions;
82e7f05e 128
18893690
DD
129 /* Pointers to allocate/free functions. */
130 htab_alloc alloc_f;
131 htab_free free_f;
5f9624e3
DJ
132
133 /* Alternate allocate/free functions, which take an extra argument. */
a288642d 134 void * GTY((skip)) alloc_arg;
5f9624e3
DJ
135 htab_alloc_with_arg alloc_with_arg_f;
136 htab_free_with_arg free_with_arg_f;
bb6a587d
DD
137
138 /* Current size (in entries) of the hash table, as an index into the
139 table of primes. */
140 unsigned int size_prime_index;
b4fe2683 141};
cc89ffe6 142
b4fe2683 143typedef struct htab *htab_t;
cc89ffe6 144
b8cdcddf
L
145/* An enum saying whether we insert into the hash table or not. */
146enum insert_option {NO_INSERT, INSERT};
147
b4fe2683 148/* The prototypes of the package functions. */
cc89ffe6 149
49b1fae4
DD
150extern htab_t htab_create_alloc (size_t, htab_hash,
151 htab_eq, htab_del,
152 htab_alloc, htab_free);
18893690 153
49b1fae4
DD
154extern htab_t htab_create_alloc_ex (size_t, htab_hash,
155 htab_eq, htab_del,
a288642d 156 void *, htab_alloc_with_arg,
49b1fae4 157 htab_free_with_arg);
5f9624e3 158
18893690 159/* Backward-compatibility functions. */
49b1fae4
DD
160extern htab_t htab_create (size_t, htab_hash, htab_eq, htab_del);
161extern htab_t htab_try_create (size_t, htab_hash, htab_eq, htab_del);
162
163extern void htab_set_functions_ex (htab_t, htab_hash,
164 htab_eq, htab_del,
a288642d 165 void *, htab_alloc_with_arg,
49b1fae4
DD
166 htab_free_with_arg);
167
168extern void htab_delete (htab_t);
169extern void htab_empty (htab_t);
170
a288642d
DD
171extern void * htab_find (htab_t, const void *);
172extern void ** htab_find_slot (htab_t, const void *, enum insert_option);
173extern void * htab_find_with_hash (htab_t, const void *, hashval_t);
174extern void ** htab_find_slot_with_hash (htab_t, const void *,
175 hashval_t, enum insert_option);
49b1fae4
DD
176extern void htab_clear_slot (htab_t, void **);
177extern void htab_remove_elt (htab_t, void *);
178extern void htab_remove_elt_with_hash (htab_t, void *, hashval_t);
179
180extern void htab_traverse (htab_t, htab_trav, void *);
181extern void htab_traverse_noresize (htab_t, htab_trav, void *);
182
183extern size_t htab_size (htab_t);
184extern size_t htab_elements (htab_t);
185extern double htab_collisions (htab_t);
cc89ffe6 186
b8cdcddf
L
187/* A hash function for pointers. */
188extern htab_hash htab_hash_pointer;
189
190/* An equality function for pointers. */
191extern htab_eq htab_eq_pointer;
192
8fc34799 193/* A hash function for null-terminated strings. */
a288642d 194extern hashval_t htab_hash_string (const void *);
8fc34799 195
7108c5dc 196/* An iterative hash function for arbitrary data. */
a288642d 197extern hashval_t iterative_hash (const void *, size_t, hashval_t);
7108c5dc 198/* Shorthand for hashing something with an intrinsic size. */
eafaf5eb 199#define iterative_hash_object(OB,INIT) iterative_hash (&OB, sizeof (OB), INIT)
7108c5dc 200
cc89ffe6
ILT
201#ifdef __cplusplus
202}
203#endif /* __cplusplus */
204
205#endif /* __HASHTAB_H */
This page took 0.419594 seconds and 4 git commands to generate.