libstdc++
gp_hash_table_map_/constructor_destructor_fn_imps.hpp
Go to the documentation of this file.
1 // -*- C++ -*-
2 
3 // Copyright (C) 2005-2020 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.
10 
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.
15 
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.
19 
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/>.
24 
25 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
26 
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.
35 
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.
40  */
41 
42 #ifdef PB_DS_CLASS_C_DEC
43 
44 PB_DS_CLASS_T_DEC
45 typename PB_DS_CLASS_C_DEC::entry_allocator
46 PB_DS_CLASS_C_DEC::s_entry_allocator;
47 
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)
53 {
54  while (first_it != last_it)
55  insert(*(first_it++));
56 }
57 
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))
64 {
65  initialize();
66  PB_DS_ASSERT_VALID((*this))
67 }
68 
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))
75 {
76  initialize();
77  PB_DS_ASSERT_VALID((*this))
78 }
79 
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))
87 {
88  initialize();
89  PB_DS_ASSERT_VALID((*this))
90 }
91 
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))
101 {
102  initialize();
103  PB_DS_ASSERT_VALID((*this))
104 }
105 
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))
115 {
116  initialize();
117  PB_DS_ASSERT_VALID((*this))
118 }
119 
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))
130 {
131  initialize();
132  PB_DS_ASSERT_VALID((*this))
133 }
134 
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))
147 {
148  for (size_type i = 0; i < m_num_e; ++i)
149  m_entries[i].m_stat = (entry_status)empty_entry_status;
150 
151  __try
152  {
153  for (size_type i = 0; i < m_num_e; ++i)
154  {
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]);
158  }
159  }
160  __catch(...)
161  {
162  deallocate_all();
163  __throw_exception_again;
164  }
165  PB_DS_ASSERT_VALID((*this))
166 }
167 
168 PB_DS_CLASS_T_DEC
169 PB_DS_CLASS_C_DEC::
170 ~PB_DS_GP_HASH_NAME()
171 { deallocate_all(); }
172 
173 PB_DS_CLASS_T_DEC
174 void
175 PB_DS_CLASS_C_DEC::
176 swap(PB_DS_CLASS_C_DEC& other)
177 {
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)
189 }
190 
191 PB_DS_CLASS_T_DEC
192 void
193 PB_DS_CLASS_C_DEC::
194 deallocate_all()
195 {
196  clear();
197  erase_all_valid_entries(m_entries, m_num_e);
198  s_entry_allocator.deallocate(m_entries, m_num_e);
199 }
200 
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)
205 {
206  for (size_type pos = 0; pos < len; ++pos)
207  {
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();
211  }
212 }
213 
214 PB_DS_CLASS_T_DEC
215 void
216 PB_DS_CLASS_C_DEC::
217 initialize()
218 {
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;
224 }
225 
226 #endif
void swap(basic_regex< _Ch_type, _Rx_traits > &__lhs, basic_regex< _Ch_type, _Rx_traits > &__rhs)
Swaps the contents of two regular expression objects.
Definition: regex.h:849
ISO C++ entities toplevel namespace is std.