2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / hash-table.h
blob00637789923ea5a47955990a7787a7428a7a33b5
1 /* A type-safe hash table template.
2 Copyright (C) 2012-2013 Free Software Foundation, Inc.
3 Contributed by Lawrence Crowl <crowl@google.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* This file implements a typed hash table.
23 The implementation borrows from libiberty's htab_t in hashtab.h.
26 INTRODUCTION TO TYPES
28 Users of the hash table generally need to be aware of three types.
30 1. The type being placed into the hash table. This type is called
31 the value type.
33 2. The type used to describe how to handle the value type within
34 the hash table. This descriptor type provides the hash table with
35 several things.
37 - A typedef named 'value_type' to the value type (from above).
39 - A static member function named 'hash' that takes a value_type
40 pointer and returns a hashval_t value.
42 - A typedef named 'compare_type' that is used to test when an value
43 is found. This type is the comparison type. Usually, it will be the
44 same as value_type. If it is not the same type, you must generally
45 explicitly compute hash values and pass them to the hash table.
47 - A static member function named 'equal' that takes a value_type
48 pointer and a compare_type pointer, and returns a bool.
50 - A static function named 'remove' that takes an value_type pointer
51 and frees the memory allocated by it. This function is used when
52 individual elements of the table need to be disposed of (e.g.,
53 when deleting a hash table, removing elements from the table, etc).
55 3. The type of the hash table itself. (More later.)
57 In very special circumstances, users may need to know about a fourth type.
59 4. The template type used to describe how hash table memory
60 is allocated. This type is called the allocator type. It is
61 parameterized on the value type. It provides four functions.
63 - A static member function named 'control_alloc'. This function
64 allocates the control data blocks for the table.
66 - A static member function named 'control_free'. This function
67 frees the control data blocks for the table.
69 - A static member function named 'data_alloc'. This function
70 allocates the data elements in the table.
72 - A static member function named 'data_free'. This function
73 deallocates the data elements in the table.
75 Hash table are instantiated with two type arguments.
77 * The descriptor type, (2) above.
79 * The allocator type, (4) above. In general, you will not need to
80 provide your own allocator type. By default, hash tables will use
81 the class template xcallocator, which uses malloc/free for allocation.
84 DEFINING A DESCRIPTOR TYPE
86 The first task in using the hash table is to describe the element type.
87 We compose this into a few steps.
89 1. Decide on a removal policy for values stored in the table.
90 This header provides class templates for the two most common
91 policies.
93 * typed_free_remove implements the static 'remove' member function
94 by calling free().
96 * typed_noop_remove implements the static 'remove' member function
97 by doing nothing.
99 You can use these policies by simply deriving the descriptor type
100 from one of those class template, with the appropriate argument.
102 Otherwise, you need to write the static 'remove' member function
103 in the descriptor class.
105 2. Choose a hash function. Write the static 'hash' member function.
107 3. Choose an equality testing function. In most cases, its two
108 arguments will be value_type pointers. If not, the first argument must
109 be a value_type pointer, and the second argument a compare_type pointer.
112 AN EXAMPLE DESCRIPTOR TYPE
114 Suppose you want to put some_type into the hash table. You could define
115 the descriptor type as follows.
117 struct some_type_hasher : typed_noop_remove <some_type>
118 // Deriving from typed_noop_remove means that we get a 'remove' that does
119 // nothing. This choice is good for raw values.
121 typedef some_type value_type;
122 typedef some_type compare_type;
123 static inline hashval_t hash (const value_type *);
124 static inline bool equal (const value_type *, const compare_type *);
127 inline hashval_t
128 some_type_hasher::hash (const value_type *e)
129 { ... compute and return a hash value for E ... }
131 inline bool
132 some_type_hasher::equal (const value_type *p1, const compare_type *p2)
133 { ... compare P1 vs P2. Return true if they are the 'same' ... }
136 AN EXAMPLE HASH_TABLE DECLARATION
138 To instantiate a hash table for some_type:
140 hash_table <some_type_hasher> some_type_hash_table;
142 There is no need to mention some_type directly, as the hash table will
143 obtain it using some_type_hasher::value_type.
145 You can then used any of the functions in hash_table's public interface.
146 See hash_table for details. The interface is very similar to libiberty's
147 htab_t.
150 EASY DESCRIPTORS FOR POINTERS
152 The class template pointer_hash provides everything you need to hash
153 pointers (as opposed to what they point to). So, to instantiate a hash
154 table over pointers to whatever_type,
156 hash_table <pointer_hash <whatever_type>> whatever_type_hash_table;
159 HASH TABLE ITERATORS
161 The hash table provides standard C++ iterators. For example, consider a
162 hash table of some_info. We wish to consume each element of the table:
164 extern void consume (some_info *);
166 We define a convenience typedef and the hash table:
168 typedef hash_table <some_info_hasher> info_table_type;
169 info_table_type info_table;
171 Then we write the loop in typical C++ style:
173 for (info_table_type::iterator iter = info_table.begin ();
174 iter != info_table.end ();
175 ++iter)
176 if ((*iter).status == INFO_READY)
177 consume (&*iter);
179 Or with common sub-expression elimination:
181 for (info_table_type::iterator iter = info_table.begin ();
182 iter != info_table.end ();
183 ++iter)
185 some_info &elem = *iter;
186 if (elem.status == INFO_READY)
187 consume (&elem);
190 One can also use a more typical GCC style:
192 typedef some_info *some_info_p;
193 some_info *elem_ptr;
194 info_table_type::iterator iter;
195 FOR_EACH_HASH_TABLE_ELEMENT (info_table, elem_ptr, some_info_p, iter)
196 if (elem_ptr->status == INFO_READY)
197 consume (elem_ptr);
202 #ifndef TYPED_HASHTAB_H
203 #define TYPED_HASHTAB_H
205 #include "hashtab.h"
208 /* The ordinary memory allocator. */
209 /* FIXME (crowl): This allocator may be extracted for wider sharing later. */
211 template <typename Type>
212 struct xcallocator
214 static Type *control_alloc (size_t count);
215 static Type *data_alloc (size_t count);
216 static void control_free (Type *memory);
217 static void data_free (Type *memory);
221 /* Allocate memory for COUNT control blocks. */
223 template <typename Type>
224 inline Type *
225 xcallocator <Type>::control_alloc (size_t count)
227 return static_cast <Type *> (xcalloc (count, sizeof (Type)));
231 /* Allocate memory for COUNT data blocks. */
233 template <typename Type>
234 inline Type *
235 xcallocator <Type>::data_alloc (size_t count)
237 return static_cast <Type *> (xcalloc (count, sizeof (Type)));
241 /* Free memory for control blocks. */
243 template <typename Type>
244 inline void
245 xcallocator <Type>::control_free (Type *memory)
247 return ::free (memory);
251 /* Free memory for data blocks. */
253 template <typename Type>
254 inline void
255 xcallocator <Type>::data_free (Type *memory)
257 return ::free (memory);
261 /* Helpful type for removing with free. */
263 template <typename Type>
264 struct typed_free_remove
266 static inline void remove (Type *p);
270 /* Remove with free. */
272 template <typename Type>
273 inline void
274 typed_free_remove <Type>::remove (Type *p)
276 free (p);
280 /* Helpful type for a no-op remove. */
282 template <typename Type>
283 struct typed_noop_remove
285 static inline void remove (Type *p);
289 /* Remove doing nothing. */
291 template <typename Type>
292 inline void
293 typed_noop_remove <Type>::remove (Type *p ATTRIBUTE_UNUSED)
298 /* Pointer hash with a no-op remove method. */
300 template <typename Type>
301 struct pointer_hash : typed_noop_remove <Type>
303 typedef Type value_type;
304 typedef Type compare_type;
306 static inline hashval_t
307 hash (const value_type *);
309 static inline int
310 equal (const value_type *existing, const compare_type *candidate);
313 template <typename Type>
314 inline hashval_t
315 pointer_hash <Type>::hash (const value_type *candidate)
317 /* This is a really poor hash function, but it is what the current code uses,
318 so I am reusing it to avoid an additional axis in testing. */
319 return (hashval_t) ((intptr_t)candidate >> 3);
322 template <typename Type>
323 inline int
324 pointer_hash <Type>::equal (const value_type *existing,
325 const compare_type *candidate)
327 return existing == candidate;
331 /* Table of primes and their inversion information. */
333 struct prime_ent
335 hashval_t prime;
336 hashval_t inv;
337 hashval_t inv_m2; /* inverse of prime-2 */
338 hashval_t shift;
341 extern struct prime_ent const prime_tab[];
344 /* Functions for computing hash table indexes. */
346 extern unsigned int hash_table_higher_prime_index (unsigned long n);
347 extern hashval_t hash_table_mod1 (hashval_t hash, unsigned int index);
348 extern hashval_t hash_table_mod2 (hashval_t hash, unsigned int index);
351 /* Internal implementation type. */
353 template <typename T>
354 struct hash_table_control
356 /* Table itself. */
357 T **entries;
359 /* Current size (in entries) of the hash table. */
360 size_t size;
362 /* Current number of elements including also deleted elements. */
363 size_t n_elements;
365 /* Current number of deleted elements in the table. */
366 size_t n_deleted;
368 /* The following member is used for debugging. Its value is number
369 of all calls of `htab_find_slot' for the hash table. */
370 unsigned int searches;
372 /* The following member is used for debugging. Its value is number
373 of collisions fixed for time of work with the hash table. */
374 unsigned int collisions;
376 /* Current size (in entries) of the hash table, as an index into the
377 table of primes. */
378 unsigned int size_prime_index;
382 /* User-facing hash table type.
384 The table stores elements of type Descriptor::value_type.
386 It hashes values with the hash member function.
387 The table currently works with relatively weak hash functions.
388 Use typed_pointer_hash <Value> when hashing pointers instead of objects.
390 It compares elements with the equal member function.
391 Two elements with the same hash may not be equal.
392 Use typed_pointer_equal <Value> when hashing pointers instead of objects.
394 It removes elements with the remove member function.
395 This feature is useful for freeing memory.
396 Derive from typed_null_remove <Value> when not freeing objects.
397 Derive from typed_free_remove <Value> when doing a simple object free.
399 Specify the template Allocator to allocate and free memory.
400 The default is xcallocator.
404 template <typename Descriptor,
405 template <typename Type> class Allocator = xcallocator>
406 class hash_table
408 public:
409 typedef typename Descriptor::value_type value_type;
410 typedef typename Descriptor::compare_type compare_type;
412 class iterator
414 public:
415 inline iterator ();
416 inline iterator (value_type **, value_type **);
417 inline value_type &operator * ();
418 void slide ();
419 inline iterator &operator ++ ();
420 inline bool operator != (const iterator &) const;
421 private:
422 value_type **slot_;
423 value_type **limit_;
426 private:
427 hash_table_control <value_type> *htab;
429 value_type **find_empty_slot_for_expand (hashval_t hash);
430 void expand ();
432 public:
433 hash_table ();
434 void create (size_t initial_slots);
435 bool is_created ();
436 void dispose ();
437 value_type *find (const value_type *value);
438 value_type *find_with_hash (const compare_type *comparable, hashval_t hash);
439 value_type **find_slot (const value_type *value, enum insert_option insert);
440 value_type **find_slot_with_hash (const compare_type *comparable,
441 hashval_t hash, enum insert_option insert);
442 void empty ();
443 void clear_slot (value_type **slot);
444 void remove_elt (const value_type *value);
445 void remove_elt_with_hash (const compare_type *comparable, hashval_t hash);
446 size_t size ();
447 size_t elements ();
448 size_t elements_with_deleted ();
449 double collisions ();
451 template <typename Argument,
452 int (*Callback) (value_type **slot, Argument argument)>
453 void traverse_noresize (Argument argument);
455 template <typename Argument,
456 int (*Callback) (value_type **slot, Argument argument)>
457 void traverse (Argument argument);
459 iterator begin();
460 iterator end();
464 /* Construct the hash table. The only useful operation next is create. */
466 template <typename Descriptor,
467 template <typename Type> class Allocator>
468 inline
469 hash_table <Descriptor, Allocator>::hash_table ()
470 : htab (NULL)
475 /* See if the table has been created, as opposed to constructed. */
477 template <typename Descriptor,
478 template <typename Type> class Allocator>
479 inline bool
480 hash_table <Descriptor, Allocator>::is_created ()
482 return htab != NULL;
486 /* Like find_with_hash, but compute the hash value from the element. */
488 template <typename Descriptor,
489 template <typename Type> class Allocator>
490 inline typename Descriptor::value_type *
491 hash_table <Descriptor, Allocator>::find (const value_type *value)
493 return find_with_hash (value, Descriptor::hash (value));
497 /* Like find_slot_with_hash, but compute the hash value from the element. */
499 template <typename Descriptor,
500 template <typename Type> class Allocator>
501 inline typename Descriptor::value_type **
502 hash_table <Descriptor, Allocator>
503 ::find_slot (const value_type *value, enum insert_option insert)
505 return find_slot_with_hash (value, Descriptor::hash (value), insert);
509 /* Like remove_elt_with_hash, but compute the hash value from the element. */
511 template <typename Descriptor,
512 template <typename Type> class Allocator>
513 inline void
514 hash_table <Descriptor, Allocator>::remove_elt (const value_type *value)
516 remove_elt_with_hash (value, Descriptor::hash (value));
520 /* Return the current size of this hash table. */
522 template <typename Descriptor,
523 template <typename Type> class Allocator>
524 inline size_t
525 hash_table <Descriptor, Allocator>::size()
527 return htab->size;
531 /* Return the current number of elements in this hash table. */
533 template <typename Descriptor,
534 template <typename Type> class Allocator>
535 inline size_t
536 hash_table <Descriptor, Allocator>::elements ()
538 return htab->n_elements - htab->n_deleted;
542 /* Return the current number of elements in this hash table. */
544 template <typename Descriptor,
545 template <typename Type> class Allocator>
546 inline size_t
547 hash_table <Descriptor, Allocator>::elements_with_deleted ()
549 return htab->n_elements;
553 /* Return the fraction of fixed collisions during all work with given
554 hash table. */
556 template <typename Descriptor,
557 template <typename Type> class Allocator>
558 inline double
559 hash_table <Descriptor, Allocator>::collisions()
561 if (htab->searches == 0)
562 return 0.0;
564 return static_cast <double> (htab->collisions) / htab->searches;
568 /* Create a hash table with at least the given number of INITIAL_SLOTS. */
570 template <typename Descriptor,
571 template <typename Type> class Allocator>
572 void
573 hash_table <Descriptor, Allocator>::create (size_t size)
575 unsigned int size_prime_index;
577 size_prime_index = hash_table_higher_prime_index (size);
578 size = prime_tab[size_prime_index].prime;
580 htab = Allocator <hash_table_control <value_type> > ::control_alloc (1);
581 gcc_assert (htab != NULL);
582 htab->entries = Allocator <value_type*> ::data_alloc (size);
583 gcc_assert (htab->entries != NULL);
584 htab->size = size;
585 htab->size_prime_index = size_prime_index;
589 /* Dispose of a hash table. Free all memory and return this hash table to
590 the non-created state. Naturally the hash table must already exist. */
592 template <typename Descriptor,
593 template <typename Type> class Allocator>
594 void
595 hash_table <Descriptor, Allocator>::dispose ()
597 size_t size = htab->size;
598 value_type **entries = htab->entries;
600 for (int i = size - 1; i >= 0; i--)
601 if (entries[i] != HTAB_EMPTY_ENTRY && entries[i] != HTAB_DELETED_ENTRY)
602 Descriptor::remove (entries[i]);
604 Allocator <value_type *> ::data_free (entries);
605 Allocator <hash_table_control <value_type> > ::control_free (htab);
606 htab = NULL;
610 /* Similar to find_slot, but without several unwanted side effects:
611 - Does not call equal when it finds an existing entry.
612 - Does not change the count of elements/searches/collisions in the
613 hash table.
614 This function also assumes there are no deleted entries in the table.
615 HASH is the hash value for the element to be inserted. */
617 template <typename Descriptor,
618 template <typename Type> class Allocator>
619 typename Descriptor::value_type **
620 hash_table <Descriptor, Allocator>::find_empty_slot_for_expand (hashval_t hash)
622 hashval_t index = hash_table_mod1 (hash, htab->size_prime_index);
623 size_t size = htab->size;
624 value_type **slot = htab->entries + index;
625 hashval_t hash2;
627 if (*slot == HTAB_EMPTY_ENTRY)
628 return slot;
629 else if (*slot == HTAB_DELETED_ENTRY)
630 abort ();
632 hash2 = hash_table_mod2 (hash, htab->size_prime_index);
633 for (;;)
635 index += hash2;
636 if (index >= size)
637 index -= size;
639 slot = htab->entries + index;
640 if (*slot == HTAB_EMPTY_ENTRY)
641 return slot;
642 else if (*slot == HTAB_DELETED_ENTRY)
643 abort ();
648 /* The following function changes size of memory allocated for the
649 entries and repeatedly inserts the table elements. The occupancy
650 of the table after the call will be about 50%. Naturally the hash
651 table must already exist. Remember also that the place of the
652 table entries is changed. If memory allocation fails, this function
653 will abort. */
655 template <typename Descriptor,
656 template <typename Type> class Allocator>
657 void
658 hash_table <Descriptor, Allocator>::expand ()
660 value_type **oentries;
661 value_type **olimit;
662 value_type **p;
663 value_type **nentries;
664 size_t nsize, osize, elts;
665 unsigned int oindex, nindex;
667 oentries = htab->entries;
668 oindex = htab->size_prime_index;
669 osize = htab->size;
670 olimit = oentries + osize;
671 elts = elements ();
673 /* Resize only when table after removal of unused elements is either
674 too full or too empty. */
675 if (elts * 2 > osize || (elts * 8 < osize && osize > 32))
677 nindex = hash_table_higher_prime_index (elts * 2);
678 nsize = prime_tab[nindex].prime;
680 else
682 nindex = oindex;
683 nsize = osize;
686 nentries = Allocator <value_type *> ::data_alloc (nsize);
687 gcc_assert (nentries != NULL);
688 htab->entries = nentries;
689 htab->size = nsize;
690 htab->size_prime_index = nindex;
691 htab->n_elements -= htab->n_deleted;
692 htab->n_deleted = 0;
694 p = oentries;
697 value_type *x = *p;
699 if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
701 value_type **q = find_empty_slot_for_expand (Descriptor::hash (x));
703 *q = x;
706 p++;
708 while (p < olimit);
710 Allocator <value_type *> ::data_free (oentries);
714 /* This function searches for a hash table entry equal to the given
715 COMPARABLE element starting with the given HASH value. It cannot
716 be used to insert or delete an element. */
718 template <typename Descriptor,
719 template <typename Type> class Allocator>
720 typename Descriptor::value_type *
721 hash_table <Descriptor, Allocator>
722 ::find_with_hash (const compare_type *comparable, hashval_t hash)
724 hashval_t index, hash2;
725 size_t size;
726 value_type *entry;
728 htab->searches++;
729 size = htab->size;
730 index = hash_table_mod1 (hash, htab->size_prime_index);
732 entry = htab->entries[index];
733 if (entry == HTAB_EMPTY_ENTRY
734 || (entry != HTAB_DELETED_ENTRY && Descriptor::equal (entry, comparable)))
735 return entry;
737 hash2 = hash_table_mod2 (hash, htab->size_prime_index);
738 for (;;)
740 htab->collisions++;
741 index += hash2;
742 if (index >= size)
743 index -= size;
745 entry = htab->entries[index];
746 if (entry == HTAB_EMPTY_ENTRY
747 || (entry != HTAB_DELETED_ENTRY
748 && Descriptor::equal (entry, comparable)))
749 return entry;
754 /* This function searches for a hash table slot containing an entry
755 equal to the given COMPARABLE element and starting with the given
756 HASH. To delete an entry, call this with insert=NO_INSERT, then
757 call clear_slot on the slot returned (possibly after doing some
758 checks). To insert an entry, call this with insert=INSERT, then
759 write the value you want into the returned slot. When inserting an
760 entry, NULL may be returned if memory allocation fails. */
762 template <typename Descriptor,
763 template <typename Type> class Allocator>
764 typename Descriptor::value_type **
765 hash_table <Descriptor, Allocator>
766 ::find_slot_with_hash (const compare_type *comparable, hashval_t hash,
767 enum insert_option insert)
769 value_type **first_deleted_slot;
770 hashval_t index, hash2;
771 size_t size;
772 value_type *entry;
774 size = htab->size;
775 if (insert == INSERT && size * 3 <= htab->n_elements * 4)
777 expand ();
778 size = htab->size;
781 index = hash_table_mod1 (hash, htab->size_prime_index);
783 htab->searches++;
784 first_deleted_slot = NULL;
786 entry = htab->entries[index];
787 if (entry == HTAB_EMPTY_ENTRY)
788 goto empty_entry;
789 else if (entry == HTAB_DELETED_ENTRY)
790 first_deleted_slot = &htab->entries[index];
791 else if (Descriptor::equal (entry, comparable))
792 return &htab->entries[index];
794 hash2 = hash_table_mod2 (hash, htab->size_prime_index);
795 for (;;)
797 htab->collisions++;
798 index += hash2;
799 if (index >= size)
800 index -= size;
802 entry = htab->entries[index];
803 if (entry == HTAB_EMPTY_ENTRY)
804 goto empty_entry;
805 else if (entry == HTAB_DELETED_ENTRY)
807 if (!first_deleted_slot)
808 first_deleted_slot = &htab->entries[index];
810 else if (Descriptor::equal (entry, comparable))
811 return &htab->entries[index];
814 empty_entry:
815 if (insert == NO_INSERT)
816 return NULL;
818 if (first_deleted_slot)
820 htab->n_deleted--;
821 *first_deleted_slot = static_cast <value_type *> (HTAB_EMPTY_ENTRY);
822 return first_deleted_slot;
825 htab->n_elements++;
826 return &htab->entries[index];
830 /* This function clears all entries in the given hash table. */
832 template <typename Descriptor,
833 template <typename Type> class Allocator>
834 void
835 hash_table <Descriptor, Allocator>::empty ()
837 size_t size = htab->size;
838 value_type **entries = htab->entries;
839 int i;
841 for (i = size - 1; i >= 0; i--)
842 if (entries[i] != HTAB_EMPTY_ENTRY && entries[i] != HTAB_DELETED_ENTRY)
843 Descriptor::remove (entries[i]);
845 /* Instead of clearing megabyte, downsize the table. */
846 if (size > 1024*1024 / sizeof (PTR))
848 int nindex = hash_table_higher_prime_index (1024 / sizeof (PTR));
849 int nsize = prime_tab[nindex].prime;
851 Allocator <value_type *> ::data_free (htab->entries);
852 htab->entries = Allocator <value_type *> ::data_alloc (nsize);
853 htab->size = nsize;
854 htab->size_prime_index = nindex;
856 else
857 memset (entries, 0, size * sizeof (value_type *));
858 htab->n_deleted = 0;
859 htab->n_elements = 0;
863 /* This function clears a specified SLOT in a hash table. It is
864 useful when you've already done the lookup and don't want to do it
865 again. */
867 template <typename Descriptor,
868 template <typename Type> class Allocator>
869 void
870 hash_table <Descriptor, Allocator>::clear_slot (value_type **slot)
872 if (slot < htab->entries || slot >= htab->entries + htab->size
873 || *slot == HTAB_EMPTY_ENTRY || *slot == HTAB_DELETED_ENTRY)
874 abort ();
876 Descriptor::remove (*slot);
878 *slot = static_cast <value_type *> (HTAB_DELETED_ENTRY);
879 htab->n_deleted++;
883 /* This function deletes an element with the given COMPARABLE value
884 from hash table starting with the given HASH. If there is no
885 matching element in the hash table, this function does nothing. */
887 template <typename Descriptor,
888 template <typename Type> class Allocator>
889 void
890 hash_table <Descriptor, Allocator>
891 ::remove_elt_with_hash (const compare_type *comparable, hashval_t hash)
893 value_type **slot;
895 slot = find_slot_with_hash (comparable, hash, NO_INSERT);
896 if (*slot == HTAB_EMPTY_ENTRY)
897 return;
899 Descriptor::remove (*slot);
901 *slot = static_cast <value_type *> (HTAB_DELETED_ENTRY);
902 htab->n_deleted++;
906 /* This function scans over the entire hash table calling CALLBACK for
907 each live entry. If CALLBACK returns false, the iteration stops.
908 ARGUMENT is passed as CALLBACK's second argument. */
910 template <typename Descriptor,
911 template <typename Type> class Allocator>
912 template <typename Argument,
913 int (*Callback) (typename Descriptor::value_type **slot, Argument argument)>
914 void
915 hash_table <Descriptor, Allocator>::traverse_noresize (Argument argument)
917 value_type **slot;
918 value_type **limit;
920 slot = htab->entries;
921 limit = slot + htab->size;
925 value_type *x = *slot;
927 if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
928 if (! Callback (slot, argument))
929 break;
931 while (++slot < limit);
935 /* Like traverse_noresize, but does resize the table when it is too empty
936 to improve effectivity of subsequent calls. */
938 template <typename Descriptor,
939 template <typename Type> class Allocator>
940 template <typename Argument,
941 int (*Callback) (typename Descriptor::value_type **slot,
942 Argument argument)>
943 void
944 hash_table <Descriptor, Allocator>::traverse (Argument argument)
946 size_t size = htab->size;
947 if (elements () * 8 < size && size > 32)
948 expand ();
950 traverse_noresize <Argument, Callback> (argument);
954 /* Iterator definitions. */
956 /* The default constructor produces the end value. */
958 template <typename Descriptor,
959 template <typename Type> class Allocator>
960 inline
961 hash_table <Descriptor, Allocator>::iterator::iterator ()
962 : slot_ (NULL), limit_ (NULL)
966 /* The parameterized constructor produces the begin value. */
968 template <typename Descriptor,
969 template <typename Type> class Allocator>
970 inline
971 hash_table <Descriptor, Allocator>::iterator::iterator
972 (value_type **slot, value_type **limit)
973 : slot_ (slot), limit_ (limit)
977 /* Obtain the element. */
979 template <typename Descriptor,
980 template <typename Type> class Allocator>
981 inline typename hash_table <Descriptor, Allocator>::value_type &
982 hash_table <Descriptor, Allocator>::iterator::operator * ()
984 return **slot_;
987 /* Slide down the iterator slots until an active entry is found. */
989 template <typename Descriptor,
990 template <typename Type> class Allocator>
991 void
992 hash_table <Descriptor, Allocator>::iterator::slide ()
994 for ( ; slot_ < limit_; ++slot_ )
996 value_type *x = *slot_;
997 if (x != HTAB_EMPTY_ENTRY && x != HTAB_DELETED_ENTRY)
998 return;
1000 slot_ = NULL;
1001 limit_ = NULL;
1004 /* Bump the iterator. */
1006 template <typename Descriptor,
1007 template <typename Type> class Allocator>
1008 inline typename hash_table <Descriptor, Allocator>::iterator &
1009 hash_table <Descriptor, Allocator>::iterator::operator ++ ()
1011 ++slot_;
1012 slide ();
1013 return *this;
1016 /* Compare iterators. */
1018 template <typename Descriptor,
1019 template <typename Type> class Allocator>
1020 inline bool
1021 hash_table <Descriptor, Allocator>::iterator::
1022 operator != (const iterator &other) const
1024 return slot_ != other.slot_ || limit_ != other.limit_;
1027 /* Hash table iterator producers. */
1029 /* The beginning of a hash table iteration. */
1031 template <typename Descriptor,
1032 template <typename Type> class Allocator>
1033 inline typename hash_table <Descriptor, Allocator>::iterator
1034 hash_table <Descriptor, Allocator>::begin ()
1036 iterator hti (htab->entries, htab->entries + htab->size);
1037 hti.slide ();
1038 return hti;
1041 /* The end of a hash table iteration. */
1043 template <typename Descriptor,
1044 template <typename Type> class Allocator>
1045 inline typename hash_table <Descriptor, Allocator>::iterator
1046 hash_table <Descriptor, Allocator>::end ()
1048 return iterator ();
1051 /* Iterate through the elements of hash_table HTAB,
1052 using hash_table <....>::iterator ITER,
1053 storing each element in RESULT, which is of type TYPE.
1055 This macro has this form for compatibility with the
1056 FOR_EACH_HTAB_ELEMENT currently defined in tree-flow.h. */
1058 #define FOR_EACH_HASH_TABLE_ELEMENT(HTAB, RESULT, TYPE, ITER) \
1059 for ((ITER) = (HTAB).begin (); \
1060 (ITER) != (HTAB).end () ? (RESULT = &*(ITER) , true) : false; \
1061 ++(ITER))
1063 #endif /* TYPED_HASHTAB_H */