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