1 /* A type-safe hash set.
2 Copyright (C) 2014-2023 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
24 /* Class hash_set is a hash-value based container for objects of
26 KeyId may be a non-trivial (non-POD) type provided a suitabe Traits
27 class. Default Traits specializations are provided for basic types
28 such as integers, pointers, and std::pair. Inserted elements are
29 value-initialized either to zero for POD types or by invoking their
30 default ctor. Removed elements are destroyed by invoking their dtor.
31 On hash_set destruction all elements are removed. Objects of
32 hash_set type are copy-constructible but not assignable. */
34 template<typename KeyId
, bool Lazy
= false,
35 typename Traits
= default_hash_traits
<KeyId
> >
39 typedef typename
Traits::value_type Key
;
40 explicit hash_set (size_t n
= 13, bool ggc
= false CXX_MEM_STAT_INFO
)
41 : m_table (n
, ggc
, true, GATHER_STATISTICS
, HASH_SET_ORIGIN PASS_MEM_STAT
) {}
43 /* Create a hash_set in gc memory with space for at least n elements. */
48 hash_set
*set
= ggc_alloc
<hash_set
> ();
49 new (set
) hash_set (n
, true);
53 /* If key k isn't already in the map add it to the map, and
54 return false. Otherwise return true. */
56 bool add (const Key
&k
)
58 Key
*e
= m_table
.find_slot_with_hash (k
, Traits::hash (k
), INSERT
);
59 bool existed
= !Traits::is_empty (*e
);
63 // Catch attempts to insert e.g. a NULL pointer.
64 gcc_checking_assert (!Traits::is_empty (*e
)
65 && !Traits::is_deleted (*e
));
71 /* if the passed in key is in the map return its value otherwise NULL. */
73 bool contains (const Key
&k
)
76 return (m_table
.find_slot_with_hash (k
, Traits::hash (k
), NO_INSERT
)
78 Key
&e
= m_table
.find_with_hash (k
, Traits::hash (k
));
79 return !Traits::is_empty (e
);
82 void remove (const Key
&k
)
84 m_table
.remove_elt_with_hash (k
, Traits::hash (k
));
87 /* Call the call back on each pair of key and value with the passed in
90 template<typename Arg
, bool (*f
)(const typename
Traits::value_type
&, Arg
)>
91 void traverse (Arg a
) const
93 for (typename hash_table
<Traits
, Lazy
>::iterator iter
= m_table
.begin ();
94 iter
!= m_table
.end (); ++iter
)
98 /* Return the number of elements in the set. */
100 size_t elements () const { return m_table
.elements (); }
102 /* Clear the hash table. */
104 void empty () { m_table
.empty (); }
106 /* Return true when there are no elements in this hash set. */
107 bool is_empty () const { return m_table
.is_empty (); }
112 explicit iterator (const typename hash_table
<Traits
,
113 Lazy
>::iterator
&iter
) :
116 iterator
&operator++ ()
129 operator != (const iterator
&other
) const
131 return m_iter
!= other
.m_iter
;
135 typename hash_table
<Traits
, Lazy
>::iterator m_iter
;
138 /* Standard iterator retrieval methods. */
140 iterator
begin () const { return iterator (m_table
.begin ()); }
141 iterator
end () const { return iterator (m_table
.end ()); }
146 template<typename T
, typename U
>
147 friend void gt_ggc_mx (hash_set
<T
, false, U
> *);
148 template<typename T
, typename U
>
149 friend void gt_pch_nx (hash_set
<T
, false, U
> *);
150 template<typename T
, typename U
>
151 friend void gt_pch_nx (hash_set
<T
, false, U
> *, gt_pointer_operator
, void *);
153 hash_table
<Traits
, Lazy
> m_table
;
156 /* Generic hash_set<TYPE> debug helper.
158 This needs to be instantiated for each hash_set<TYPE> used throughout
159 the compiler like this:
161 DEFINE_DEBUG_HASH_SET (TYPE)
163 The reason we have a debug_helper() is because GDB can't
164 disambiguate a plain call to debug(some_hash), and it must be called
165 like debug<TYPE>(some_hash). */
168 debug_helper (hash_set
<T
> &ref
)
170 for (typename hash_set
<T
>::iterator it
= ref
.begin ();
171 it
!= ref
.end (); ++it
)
174 fputc ('\n', stderr
);
178 #define DEFINE_DEBUG_HASH_SET(T) \
179 template void debug_helper (hash_set<T> &); \
180 DEBUG_FUNCTION void \
181 debug (hash_set<T> &ref) \
183 debug_helper <T> (ref); \
185 DEBUG_FUNCTION void \
186 debug (hash_set<T> *ptr) \
191 fprintf (stderr, "<nil>\n"); \
194 /* ggc marking routines. */
196 template<typename K
, typename H
>
198 gt_ggc_mx (hash_set
<K
, false, H
> *h
)
200 gt_ggc_mx (&h
->m_table
);
203 template<typename K
, typename H
>
205 gt_pch_nx (hash_set
<K
, false, H
> *h
)
207 gt_pch_nx (&h
->m_table
);
210 template<typename K
, typename H
>
212 gt_pch_nx (hash_set
<K
, false, H
> *h
, gt_pointer_operator op
, void *cookie
)
214 op (&h
->m_table
.m_entries
, NULL
, cookie
);