Fix hash of WIDEN_*_EXPR
[official-gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / gp_hash_table_map_ / constructor_destructor_fn_imps.hpp
blob6ed744910c103f11a98864992cc9f1aa80fcbea5
1 // -*- C++ -*-
3 // Copyright (C) 2005-2024 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the terms
7 // of the GNU General Public License as published by the Free Software
8 // Foundation; either version 3, or (at your option) any later
9 // version.
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
27 // Permission to use, copy, modify, sell, and distribute this software
28 // is hereby granted without fee, provided that the above copyright
29 // notice appears in all copies, and that both that copyright notice
30 // and this permission notice appear in supporting documentation. None
31 // of the above authors, nor IBM Haifa Research Laboratories, make any
32 // representation about the suitability of this software for any
33 // purpose. It is provided "as is" without express or implied
34 // warranty.
36 /**
37 * @file gp_hash_table_map_/constructor_destructor_fn_imps.hpp
38 * Contains implementations of gp_ht_map_'s constructors, destructor,
39 * and related functions.
42 #ifdef PB_DS_CLASS_C_DEC
44 PB_DS_CLASS_T_DEC
45 typename PB_DS_CLASS_C_DEC::entry_allocator
46 PB_DS_CLASS_C_DEC::s_entry_allocator;
48 PB_DS_CLASS_T_DEC
49 template<typename It>
50 void
51 PB_DS_CLASS_C_DEC::
52 copy_from_range(It first_it, It last_it)
54 while (first_it != last_it)
55 insert(*(first_it++));
58 PB_DS_CLASS_T_DEC
59 PB_DS_CLASS_C_DEC::
60 PB_DS_GP_HASH_NAME()
61 : ranged_probe_fn_base(resize_base::get_nearest_larger_size(1)),
62 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
63 m_entries(s_entry_allocator.allocate(m_num_e))
65 initialize();
66 PB_DS_ASSERT_VALID((*this))
69 PB_DS_CLASS_T_DEC
70 PB_DS_CLASS_C_DEC::
71 PB_DS_GP_HASH_NAME(const Hash_Fn& r_hash_fn)
72 : ranged_probe_fn_base(resize_base::get_nearest_larger_size(1), r_hash_fn),
73 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
74 m_entries(s_entry_allocator.allocate(m_num_e))
76 initialize();
77 PB_DS_ASSERT_VALID((*this))
80 PB_DS_CLASS_T_DEC
81 PB_DS_CLASS_C_DEC::
82 PB_DS_GP_HASH_NAME(const Hash_Fn& r_hash_fn, const Eq_Fn& r_eq_fn)
83 : hash_eq_fn_base(r_eq_fn),
84 ranged_probe_fn_base(resize_base::get_nearest_larger_size(1), r_hash_fn),
85 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
86 m_entries(s_entry_allocator.allocate(m_num_e))
88 initialize();
89 PB_DS_ASSERT_VALID((*this))
92 PB_DS_CLASS_T_DEC
93 PB_DS_CLASS_C_DEC::
94 PB_DS_GP_HASH_NAME(const Hash_Fn& r_hash_fn, const Eq_Fn& r_eq_fn,
95 const Comb_Probe_Fn& r_comb_hash_fn)
96 : hash_eq_fn_base(r_eq_fn),
97 ranged_probe_fn_base(resize_base::get_nearest_larger_size(1),
98 r_hash_fn, r_comb_hash_fn),
99 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
100 m_entries(s_entry_allocator.allocate(m_num_e))
102 initialize();
103 PB_DS_ASSERT_VALID((*this))
106 PB_DS_CLASS_T_DEC
107 PB_DS_CLASS_C_DEC::
108 PB_DS_GP_HASH_NAME(const Hash_Fn& r_hash_fn, const Eq_Fn& r_eq_fn,
109 const Comb_Probe_Fn& comb_hash_fn, const Probe_Fn& prober)
110 : hash_eq_fn_base(r_eq_fn),
111 ranged_probe_fn_base(resize_base::get_nearest_larger_size(1),
112 r_hash_fn, comb_hash_fn, prober),
113 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
114 m_entries(s_entry_allocator.allocate(m_num_e))
116 initialize();
117 PB_DS_ASSERT_VALID((*this))
120 PB_DS_CLASS_T_DEC
121 PB_DS_CLASS_C_DEC::
122 PB_DS_GP_HASH_NAME(const Hash_Fn& r_hash_fn, const Eq_Fn& r_eq_fn,
123 const Comb_Probe_Fn& comb_hash_fn, const Probe_Fn& prober,
124 const Resize_Policy& r_resize_policy)
125 : hash_eq_fn_base(r_eq_fn), resize_base(r_resize_policy),
126 ranged_probe_fn_base(resize_base::get_nearest_larger_size(1),
127 r_hash_fn, comb_hash_fn, prober),
128 m_num_e(resize_base::get_nearest_larger_size(1)), m_num_used_e(0),
129 m_entries(s_entry_allocator.allocate(m_num_e))
131 initialize();
132 PB_DS_ASSERT_VALID((*this))
135 PB_DS_CLASS_T_DEC
136 PB_DS_CLASS_C_DEC::
137 PB_DS_GP_HASH_NAME(const PB_DS_CLASS_C_DEC& other) :
138 #ifdef _GLIBCXX_DEBUG
139 debug_base(other),
140 #endif
141 hash_eq_fn_base(other),
142 resize_base(other),
143 ranged_probe_fn_base(other),
144 m_num_e(other.m_num_e),
145 m_num_used_e(other.m_num_used_e),
146 m_entries(s_entry_allocator.allocate(m_num_e))
148 for (size_type i = 0; i < m_num_e; ++i)
149 m_entries[i].m_stat = (entry_status)empty_entry_status;
151 __try
153 for (size_type i = 0; i < m_num_e; ++i)
155 m_entries[i].m_stat = other.m_entries[i].m_stat;
156 if (m_entries[i].m_stat == valid_entry_status)
157 new (m_entries + i) entry(other.m_entries[i]);
160 __catch(...)
162 deallocate_all();
163 __throw_exception_again;
165 PB_DS_ASSERT_VALID((*this))
168 PB_DS_CLASS_T_DEC
169 PB_DS_CLASS_C_DEC::
170 ~PB_DS_GP_HASH_NAME()
171 { deallocate_all(); }
173 PB_DS_CLASS_T_DEC
174 void
175 PB_DS_CLASS_C_DEC::
176 swap(PB_DS_CLASS_C_DEC& other)
178 PB_DS_ASSERT_VALID((*this))
179 PB_DS_ASSERT_VALID(other)
180 std::swap(m_num_e, other.m_num_e);
181 std::swap(m_num_used_e, other.m_num_used_e);
182 std::swap(m_entries, other.m_entries);
183 ranged_probe_fn_base::swap(other);
184 hash_eq_fn_base::swap(other);
185 resize_base::swap(other);
186 _GLIBCXX_DEBUG_ONLY(debug_base::swap(other));
187 PB_DS_ASSERT_VALID((*this))
188 PB_DS_ASSERT_VALID(other)
191 PB_DS_CLASS_T_DEC
192 void
193 PB_DS_CLASS_C_DEC::
194 deallocate_all()
196 clear();
197 erase_all_valid_entries(m_entries, m_num_e);
198 s_entry_allocator.deallocate(m_entries, m_num_e);
201 PB_DS_CLASS_T_DEC
202 void
203 PB_DS_CLASS_C_DEC::
204 erase_all_valid_entries(entry_array a_entries_resized, size_type len)
206 for (size_type pos = 0; pos < len; ++pos)
208 entry_pointer p_e = &a_entries_resized[pos];
209 if (p_e->m_stat == valid_entry_status)
210 p_e->m_value.~value_type();
214 PB_DS_CLASS_T_DEC
215 void
216 PB_DS_CLASS_C_DEC::
217 initialize()
219 Resize_Policy::notify_resized(m_num_e);
220 Resize_Policy::notify_cleared();
221 ranged_probe_fn_base::notify_resized(m_num_e);
222 for (size_type i = 0; i < m_num_e; ++i)
223 m_entries[i].m_stat = empty_entry_status;
226 #endif