Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / include / ext / pb_assoc / detail / lu_map_ / constructor_destructor_fn_imps.hpp
blob4b6738973c346d3b55aee749f7f7b03f32c30a1b
1 // -*- C++ -*-
3 // Copyright (C) 2005 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
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
30 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
32 // Permission to use, copy, modify, sell, and distribute this software
33 // is hereby granted without fee, provided that the above copyright
34 // notice appears in all copies, and that both that copyright notice and
35 // this permission notice appear in supporting documentation. None of
36 // the above authors, nor IBM Haifa Research Laboratories, make any
37 // representation about the suitability of this software for any
38 // purpose. It is provided "as is" without express or implied warranty.
40 /**
41 * @file constructor_destructor_fn_imps.hpp
42 * Contains implementations of PB_ASSOC_CLASS_NAME.
45 PB_ASSOC_CLASS_T_DEC
46 typename PB_ASSOC_CLASS_C_DEC::entry_allocator
47 PB_ASSOC_CLASS_C_DEC::s_entry_allocator;
49 PB_ASSOC_CLASS_T_DEC
50 template<class It>
51 void
52 PB_ASSOC_CLASS_C_DEC::
53 copy_from_range(It first_it, It last_it)
55 while (first_it != last_it)
56 insert(*(first_it++));
59 PB_ASSOC_CLASS_T_DEC
60 PB_ASSOC_CLASS_C_DEC::
61 PB_ASSOC_CLASS_NAME() :
62 m_p_l(s_entry_allocator.allocate(1)),
63 m_size(0)
65 initialize();
67 PB_ASSOC_DBG_ONLY(assert_valid();)
70 PB_ASSOC_CLASS_T_DEC
71 PB_ASSOC_CLASS_C_DEC::
72 PB_ASSOC_CLASS_NAME(const Eq_Fn& r_eq_fn) :
73 Eq_Fn(r_eq_fn),
74 m_p_l(s_entry_allocator.allocate(1)),
75 m_size(0)
77 initialize();
79 PB_ASSOC_DBG_ONLY(assert_valid();)
82 PB_ASSOC_CLASS_T_DEC
83 PB_ASSOC_CLASS_C_DEC::
84 PB_ASSOC_CLASS_NAME(const Eq_Fn& r_eq_fn, const Update_Policy& r_update_policy) :
85 Eq_Fn(r_eq_fn),
86 Update_Policy(r_update_policy),
87 m_p_l(s_entry_allocator.allocate(1)),
88 m_size(0)
90 initialize();
92 PB_ASSOC_DBG_ONLY(assert_valid();)
95 PB_ASSOC_CLASS_T_DEC
96 PB_ASSOC_CLASS_C_DEC::
97 PB_ASSOC_CLASS_NAME(const PB_ASSOC_CLASS_C_DEC& r_other) :
98 Eq_Fn(r_other),
99 Update_Policy(r_other),
100 m_p_l(s_entry_allocator.allocate(1)),
101 m_size(0)
103 initialize();
107 copy_from_range(r_other.begin(), r_other.end());
109 catch(...)
111 deallocate_all(true);
113 throw;
116 PB_ASSOC_DBG_ONLY(assert_valid();)
119 PB_ASSOC_CLASS_T_DEC
120 void
121 PB_ASSOC_CLASS_C_DEC::
122 swap(PB_ASSOC_CLASS_C_DEC& r_other)
124 PB_ASSOC_DBG_ONLY(assert_valid();)
125 PB_ASSOC_DBG_ONLY(r_other.assert_valid();)
127 std::swap(m_p_l, r_other.m_p_l);
129 std::swap(m_size, r_other.m_size);
131 std::swap((Eq_Fn& )(*this), (Eq_Fn& )r_other);
133 Update_Policy::swap(r_other);
135 PB_ASSOC_DBG_ONLY(my_map_debug_base::swap(r_other);)
137 PB_ASSOC_DBG_ONLY(assert_valid();)
138 PB_ASSOC_DBG_ONLY(r_other.assert_valid();)
141 PB_ASSOC_CLASS_T_DEC
142 void
143 PB_ASSOC_CLASS_C_DEC::
144 deallocate_all(bool deallocate_root)
146 entry_pointer p_l = m_p_l->m_p_next;
148 while (p_l != NULL)
150 entry_pointer p_next_l = p_l->m_p_next;
152 p_l->~entry();
154 s_entry_allocator.deallocate(p_l, 1);
156 p_l = p_next_l;
159 if (deallocate_root)
160 s_entry_allocator.deallocate(m_p_l, 1);
161 else
162 m_p_l->m_p_next = NULL;
165 PB_ASSOC_CLASS_T_DEC
166 PB_ASSOC_CLASS_C_DEC::
167 ~PB_ASSOC_CLASS_NAME()
169 deallocate_all(true);
172 PB_ASSOC_CLASS_T_DEC
173 void
174 PB_ASSOC_CLASS_C_DEC::
175 initialize()
177 m_p_l->m_p_next = NULL;