* configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
[official-gcc.git] / gcc / hashtable.c
blob88b1a293456bb4f8a04db3b67744d1c8a57b0a21
1 /* Hash tables.
2 Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
7 later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 In other words, you are welcome to use, share and improve this program.
19 You are forbidden to forbid anyone else to use, share and improve
20 what you give them. Help stamp out software-hoarding! */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "hashtable.h"
28 /* The code below is a specialization of Vladimir Makarov's expandable
29 hash tables (see libiberty/hashtab.c). The abstraction penalty was
30 too high to continue using the generic form. This code knows
31 intrinsically how to calculate a hash value, and how to compare an
32 existing entry with a potential new one. Also, the ability to
33 delete members from the table has been removed. */
35 static unsigned int calc_hash (const unsigned char *, unsigned int);
36 static void ht_expand (hash_table *);
38 /* Calculate the hash of the string STR of length LEN. */
40 static unsigned int
41 calc_hash (const unsigned char *str, unsigned int len)
43 unsigned int n = len;
44 unsigned int r = 0;
45 #define HASHSTEP(r, c) ((r) * 67 + ((c) - 113));
47 while (n--)
48 r = HASHSTEP (r, *str++);
50 return r + len;
51 #undef HASHSTEP
54 /* Initialize an identifier hashtable. */
56 hash_table *
57 ht_create (unsigned int order)
59 unsigned int nslots = 1 << order;
60 hash_table *table;
62 table = (hash_table *) xmalloc (sizeof (hash_table));
63 memset (table, 0, sizeof (hash_table));
65 /* Strings need no alignment. */
66 gcc_obstack_init (&table->stack);
67 obstack_alignment_mask (&table->stack) = 0;
69 table->entries = (hashnode *) xcalloc (nslots, sizeof (hashnode));
70 table->nslots = nslots;
71 return table;
74 /* Frees all memory associated with a hash table. */
76 void
77 ht_destroy (hash_table *table)
79 obstack_free (&table->stack, NULL);
80 free (table->entries);
81 free (table);
84 /* Returns the hash entry for the a STR of length LEN. If that string
85 already exists in the table, returns the existing entry, and, if
86 INSERT is CPP_ALLOCED, frees the last obstack object. If the
87 identifier hasn't been seen before, and INSERT is CPP_NO_INSERT,
88 returns NULL. Otherwise insert and returns a new entry. A new
89 string is alloced if INSERT is CPP_ALLOC, otherwise INSERT is
90 CPP_ALLOCED and the item is assumed to be at the top of the
91 obstack. */
92 hashnode
93 ht_lookup (hash_table *table, const unsigned char *str, unsigned int len,
94 enum ht_lookup_option insert)
96 unsigned int hash = calc_hash (str, len);
97 unsigned int hash2;
98 unsigned int index;
99 size_t sizemask;
100 hashnode node;
102 sizemask = table->nslots - 1;
103 index = hash & sizemask;
105 /* hash2 must be odd, so we're guaranteed to visit every possible
106 location in the table during rehashing. */
107 hash2 = ((hash * 17) & sizemask) | 1;
108 table->searches++;
110 for (;;)
112 node = table->entries[index];
114 if (node == NULL)
115 break;
117 if (node->hash_value == hash && HT_LEN (node) == len
118 && !memcmp (HT_STR (node), str, len))
120 if (insert == HT_ALLOCED)
121 /* The string we search for was placed at the end of the
122 obstack. Release it. */
123 obstack_free (&table->stack, (void *) str);
124 return node;
127 index = (index + hash2) & sizemask;
128 table->collisions++;
131 if (insert == HT_NO_INSERT)
132 return NULL;
134 node = (*table->alloc_node) (table);
135 table->entries[index] = node;
137 HT_LEN (node) = len;
138 node->hash_value = hash;
139 if (insert == HT_ALLOC)
140 HT_STR (node) = obstack_copy0 (&table->stack, str, len);
141 else
142 HT_STR (node) = str;
144 if (++table->nelements * 4 >= table->nslots * 3)
145 /* Must expand the string table. */
146 ht_expand (table);
148 return node;
151 /* Double the size of a hash table, re-hashing existing entries. */
153 static void
154 ht_expand (hash_table *table)
156 hashnode *nentries, *p, *limit;
157 unsigned int size, sizemask;
159 size = table->nslots * 2;
160 nentries = (hashnode *) xcalloc (size, sizeof (hashnode));
161 sizemask = size - 1;
163 p = table->entries;
164 limit = p + table->nslots;
166 if (*p)
168 unsigned int index, hash, hash2;
170 hash = (*p)->hash_value;
171 hash2 = ((hash * 17) & sizemask) | 1;
172 index = hash & sizemask;
174 for (;;)
176 if (! nentries[index])
178 nentries[index] = *p;
179 break;
182 index = (index + hash2) & sizemask;
185 while (++p < limit);
187 free (table->entries);
188 table->entries = nentries;
189 table->nslots = size;
192 /* For all nodes in TABLE, callback CB with parameters TABLE->PFILE,
193 the node, and V. */
194 void
195 ht_forall (hash_table *table, ht_cb cb, const void *v)
197 hashnode *p, *limit;
199 p = table->entries;
200 limit = p + table->nslots;
202 if (*p)
204 if ((*cb) (table->pfile, *p, v) == 0)
205 break;
207 while (++p < limit);
210 /* Dump allocation statistics to stderr. */
212 void
213 ht_dump_statistics (hash_table *table)
215 size_t nelts, nids, overhead, headers;
216 size_t total_bytes, longest, sum_of_squares;
217 double exp_len, exp_len2, exp2_len;
218 hashnode *p, *limit;
220 #define SCALE(x) ((unsigned long) ((x) < 1024*10 \
221 ? (x) \
222 : ((x) < 1024*1024*10 \
223 ? (x) / 1024 \
224 : (x) / (1024*1024))))
225 #define LABEL(x) ((x) < 1024*10 ? ' ' : ((x) < 1024*1024*10 ? 'k' : 'M'))
227 total_bytes = longest = sum_of_squares = nids = 0;
228 p = table->entries;
229 limit = p + table->nslots;
231 if (*p)
233 size_t n = HT_LEN (*p);
235 total_bytes += n;
236 sum_of_squares += n * n;
237 if (n > longest)
238 longest = n;
239 nids++;
241 while (++p < limit);
243 nelts = table->nelements;
244 overhead = obstack_memory_used (&table->stack) - total_bytes;
245 headers = table->nslots * sizeof (hashnode);
247 fprintf (stderr, "\nString pool\nentries\t\t%lu\n",
248 (unsigned long) nelts);
249 fprintf (stderr, "identifiers\t%lu (%.2f%%)\n",
250 (unsigned long) nids, nids * 100.0 / nelts);
251 fprintf (stderr, "slots\t\t%lu\n",
252 (unsigned long) table->nslots);
253 fprintf (stderr, "bytes\t\t%lu%c (%lu%c overhead)\n",
254 SCALE (total_bytes), LABEL (total_bytes),
255 SCALE (overhead), LABEL (overhead));
256 fprintf (stderr, "table size\t%lu%c\n",
257 SCALE (headers), LABEL (headers));
259 exp_len = (double)total_bytes / (double)nelts;
260 exp2_len = exp_len * exp_len;
261 exp_len2 = (double) sum_of_squares / (double) nelts;
263 fprintf (stderr, "coll/search\t%.4f\n",
264 (double) table->collisions / (double) table->searches);
265 fprintf (stderr, "ins/search\t%.4f\n",
266 (double) nelts / (double) table->searches);
267 fprintf (stderr, "avg. entry\t%.2f bytes (+/- %.2f)\n",
268 exp_len, approx_sqrt (exp_len2 - exp2_len));
269 fprintf (stderr, "longest entry\t%lu\n",
270 (unsigned long) longest);
271 #undef SCALE
272 #undef LABEL
275 /* Return the approximate positive square root of a number N. This is for
276 statistical reports, not code generation. */
277 double
278 approx_sqrt (double x)
280 double s, d;
282 if (x < 0)
283 abort ();
284 if (x == 0)
285 return 0;
287 s = x;
290 d = (s * s - x) / (2 * s);
291 s -= d;
293 while (d > .0001);
294 return s;