]> gcc.gnu.org Git - gcc.git/blame - include/hashtab.h
i386.c (ix86_expand_binary_operator, [...]): Check no_new_pseudos instead of reload_i...
[gcc.git] / include / hashtab.h
CommitLineData
a6ee63bb 1/* An expandable hash tables datatype.
b13eb66b 2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
a6ee63bb
VM
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
17Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
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
39#include <ansidecl.h>
40
b13eb66b
MM
41/* The type for a hash code. */
42typedef unsigned int hashval_t;
43
5194cf08 44/* Callback function pointer types. */
a6ee63bb 45
5194cf08 46/* Calculate hash of a table entry. */
b13eb66b 47typedef hashval_t (*htab_hash) PARAMS ((const void *));
5194cf08
ZW
48
49/* Compare a table entry with a possible entry. The entry already in
8c5d513f
BS
50 the table always comes first, so the second element can be of a
51 different type (but in this case htab_find and htab_find_slot
52 cannot be used; instead the variants that accept a hash value
53 must be used). */
5194cf08
ZW
54typedef int (*htab_eq) PARAMS ((const void *, const void *));
55
5dc9cffd
ZW
56/* Cleanup function called whenever a live element is removed from
57 the hash table. */
58typedef void (*htab_del) PARAMS ((void *));
59
5194cf08 60/* Function called by htab_traverse for each live element. The first
8c5d513f
BS
61 arg is the slot of the element (which can be passed to htab_clear_slot
62 if desired), the second arg is the auxiliary pointer handed to
63 htab_traverse. Return 1 to continue scan, 0 to stop. */
64typedef int (*htab_trav) PARAMS ((void **, void *));
a6ee63bb
VM
65
66/* Hash tables are of the following type. The structure
67 (implementation) of this type is not needed for using the hash
68 tables. All work with hash table should be executed only through
69 functions mentioned below. */
70
5194cf08 71struct htab
a6ee63bb 72{
5194cf08
ZW
73 /* Pointer to hash function. */
74 htab_hash hash_f;
75
5dc9cffd 76 /* Pointer to comparison function. */
5194cf08
ZW
77 htab_eq eq_f;
78
5dc9cffd
ZW
79 /* Pointer to cleanup function. */
80 htab_del del_f;
81
82 /* Table itself. */
5194cf08
ZW
83 void **entries;
84
a6ee63bb
VM
85 /* Current size (in entries) of the hash table */
86 size_t size;
5194cf08 87
a6ee63bb 88 /* Current number of elements including also deleted elements */
5194cf08
ZW
89 size_t n_elements;
90
a6ee63bb 91 /* Current number of deleted elements in the table */
5194cf08
ZW
92 size_t n_deleted;
93
a6ee63bb 94 /* The following member is used for debugging. Its value is number
5194cf08
ZW
95 of all calls of `htab_find_slot' for the hash table. */
96 unsigned int searches;
97
a6ee63bb
VM
98 /* The following member is used for debugging. Its value is number
99 of collisions fixed for time of work with the hash table. */
5194cf08
ZW
100 unsigned int collisions;
101};
a6ee63bb 102
5194cf08 103typedef struct htab *htab_t;
a6ee63bb
VM
104
105/* The prototypes of the package functions. */
106
5dc9cffd
ZW
107extern htab_t htab_create PARAMS ((size_t, htab_hash,
108 htab_eq, htab_del));
5194cf08
ZW
109extern void htab_delete PARAMS ((htab_t));
110extern void htab_empty PARAMS ((htab_t));
a6ee63bb 111
5194cf08
ZW
112extern void *htab_find PARAMS ((htab_t, const void *));
113extern void **htab_find_slot PARAMS ((htab_t, const void *, int));
8c5d513f 114extern void *htab_find_with_hash PARAMS ((htab_t, const void *,
b13eb66b 115 hashval_t));
8c5d513f 116extern void **htab_find_slot_with_hash PARAMS ((htab_t, const void *,
b13eb66b 117 hashval_t, int));
5194cf08
ZW
118extern void htab_clear_slot PARAMS ((htab_t, void **));
119extern void htab_remove_elt PARAMS ((htab_t, void *));
a6ee63bb 120
5194cf08 121extern void htab_traverse PARAMS ((htab_t, htab_trav, void *));
a6ee63bb 122
5194cf08
ZW
123extern size_t htab_size PARAMS ((htab_t));
124extern size_t htab_elements PARAMS ((htab_t));
125extern double htab_collisions PARAMS ((htab_t));
a6ee63bb
VM
126
127#ifdef __cplusplus
128}
129#endif /* __cplusplus */
130
131#endif /* __HASHTAB_H */
This page took 0.076771 seconds and 5 git commands to generate.