Import GCC-8 to a new vendor branch
[dragonfly.git] / contrib / gcc-8.0 / libstdc++-v3 / include / ext / pb_ds / detail / thin_heap_ / erase_fn_imps.hpp
blob77db25ebf722cb483c468412bcde06d9bb91be2c
1 // -*- C++ -*-
3 // Copyright (C) 2005-2018 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 thin_heap_/erase_fn_imps.hpp
38 * Contains an implementation for thin_heap_.
41 PB_DS_CLASS_T_DEC
42 void
43 PB_DS_CLASS_C_DEC::
44 pop()
46 PB_DS_ASSERT_VALID((*this))
47 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
48 _GLIBCXX_DEBUG_ASSERT(m_p_max != 0);
50 node_pointer p_nd = m_p_max;
51 remove_max_node();
52 base_type::actual_erase_node(p_nd);
53 PB_DS_ASSERT_VALID((*this))
56 PB_DS_CLASS_T_DEC
57 inline void
58 PB_DS_CLASS_C_DEC::
59 remove_max_node()
61 to_aux_except_max();
62 make_from_aux();
65 PB_DS_CLASS_T_DEC
66 void
67 PB_DS_CLASS_C_DEC::
68 to_aux_except_max()
70 node_pointer p_add = base_type::m_p_root;
71 while (p_add != m_p_max)
73 node_pointer p_next_add = p_add->m_p_next_sibling;
74 add_to_aux(p_add);
75 p_add = p_next_add;
78 p_add = m_p_max->m_p_l_child;
79 while (p_add != 0)
81 node_pointer p_next_add = p_add->m_p_next_sibling;
82 p_add->m_metadata = p_add->m_p_l_child == 0 ?
83 0 : p_add->m_p_l_child->m_metadata + 1;
85 add_to_aux(p_add);
86 p_add = p_next_add;
89 p_add = m_p_max->m_p_next_sibling;
90 while (p_add != 0)
92 node_pointer p_next_add = p_add->m_p_next_sibling;
93 add_to_aux(p_add);
94 p_add = p_next_add;
98 PB_DS_CLASS_T_DEC
99 inline void
100 PB_DS_CLASS_C_DEC::
101 add_to_aux(node_pointer p_nd)
103 size_type r = p_nd->m_metadata;
104 while (m_a_aux[r] != 0)
106 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata < rank_bound());
107 if (Cmp_Fn::operator()(m_a_aux[r]->m_value, p_nd->m_value))
108 make_child_of(m_a_aux[r], p_nd);
109 else
111 make_child_of(p_nd, m_a_aux[r]);
112 p_nd = m_a_aux[r];
115 m_a_aux[r] = 0;
116 ++r;
119 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata < rank_bound());
121 m_a_aux[r] = p_nd;
124 PB_DS_CLASS_T_DEC
125 inline void
126 PB_DS_CLASS_C_DEC::
127 make_child_of(node_pointer p_nd, node_pointer p_new_parent)
129 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == p_new_parent->m_metadata);
130 _GLIBCXX_DEBUG_ASSERT(m_a_aux[p_nd->m_metadata] == p_nd ||
131 m_a_aux[p_nd->m_metadata] == p_new_parent);
133 ++p_new_parent->m_metadata;
134 base_type::make_child_of(p_nd, p_new_parent);
137 PB_DS_CLASS_T_DEC
138 inline void
139 PB_DS_CLASS_C_DEC::
140 make_from_aux()
142 base_type::m_p_root = m_p_max = 0;
143 const size_type rnk_bnd = rank_bound();
144 size_type i = 0;
145 while (i < rnk_bnd)
147 if (m_a_aux[i] != 0)
149 make_root_and_link(m_a_aux[i]);
150 m_a_aux[i] = 0;
152 ++i;
155 PB_DS_ASSERT_AUX_NULL((*this))
158 PB_DS_CLASS_T_DEC
159 inline void
160 PB_DS_CLASS_C_DEC::
161 remove_node(node_pointer p_nd)
163 node_pointer p_parent = p_nd;
164 while (base_type::parent(p_parent) != 0)
165 p_parent = base_type::parent(p_parent);
167 base_type::bubble_to_top(p_nd);
168 m_p_max = p_nd;
170 node_pointer p_fix = base_type::m_p_root;
171 while (p_fix != 0&& p_fix->m_p_next_sibling != p_parent)
172 p_fix = p_fix->m_p_next_sibling;
174 if (p_fix != 0)
175 p_fix->m_p_next_sibling = p_nd;
177 remove_max_node();
180 PB_DS_CLASS_T_DEC
181 inline void
182 PB_DS_CLASS_C_DEC::
183 clear()
185 base_type::clear();
186 m_p_max = 0;
189 PB_DS_CLASS_T_DEC
190 void
191 PB_DS_CLASS_C_DEC::
192 erase(point_iterator it)
194 PB_DS_ASSERT_VALID((*this))
195 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
197 node_pointer p_nd = it.m_p_nd;
198 remove_node(p_nd);
199 base_type::actual_erase_node(p_nd);
200 PB_DS_ASSERT_VALID((*this))
203 PB_DS_CLASS_T_DEC
204 template<typename Pred>
205 typename PB_DS_CLASS_C_DEC::size_type
206 PB_DS_CLASS_C_DEC::
207 erase_if(Pred pred)
209 PB_DS_ASSERT_VALID((*this))
210 if (base_type::empty())
212 PB_DS_ASSERT_VALID((*this))
213 return 0;
216 base_type::to_linked_list();
217 node_pointer p_out = base_type::prune(pred);
218 size_type ersd = 0;
219 while (p_out != 0)
221 ++ersd;
222 node_pointer p_next = p_out->m_p_next_sibling;
223 base_type::actual_erase_node(p_out);
224 p_out = p_next;
227 node_pointer p_cur = base_type::m_p_root;
228 m_p_max = base_type::m_p_root = 0;
229 while (p_cur != 0)
231 node_pointer p_next = p_cur->m_p_next_sibling;
232 make_root_and_link(p_cur);
233 p_cur = p_next;
236 PB_DS_ASSERT_VALID((*this))
237 return ersd;
240 PB_DS_CLASS_T_DEC
241 inline typename PB_DS_CLASS_C_DEC::size_type
242 PB_DS_CLASS_C_DEC::
243 rank_bound()
245 using namespace std;
246 const size_t* const p_upper =
247 std::upper_bound(g_a_rank_bounds,
248 g_a_rank_bounds + num_distinct_rank_bounds,
249 base_type::m_size);
251 if (p_upper == g_a_rank_bounds + num_distinct_rank_bounds)
252 return max_rank;
254 return (p_upper - g_a_rank_bounds);