Update copyright years.
[gcc.git] / libstdc++-v3 / include / bits / stl_bvector.h
1 // vector<bool> specialization -*- C++ -*-
2
3 // Copyright (C) 2001-2015 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 3, or (at your option)
9 // any later version.
10
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.
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 /*
26 *
27 * Copyright (c) 1994
28 * Hewlett-Packard Company
29 *
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Hewlett-Packard Company makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
37 *
38 *
39 * Copyright (c) 1996-1999
40 * Silicon Graphics Computer Systems, Inc.
41 *
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Silicon Graphics makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
49 */
50
51 /** @file bits/stl_bvector.h
52 * This is an internal header file, included by other library headers.
53 * Do not attempt to use it directly. @headername{vector}
54 */
55
56 #ifndef _STL_BVECTOR_H
57 #define _STL_BVECTOR_H 1
58
59 #if __cplusplus >= 201103L
60 #include <initializer_list>
61 #endif
62
63 namespace std _GLIBCXX_VISIBILITY(default)
64 {
65 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
66
67 typedef unsigned long _Bit_type;
68 enum { _S_word_bit = int(__CHAR_BIT__ * sizeof(_Bit_type)) };
69
70 struct _Bit_reference
71 {
72 _Bit_type * _M_p;
73 _Bit_type _M_mask;
74
75 _Bit_reference(_Bit_type * __x, _Bit_type __y)
76 : _M_p(__x), _M_mask(__y) { }
77
78 _Bit_reference() _GLIBCXX_NOEXCEPT : _M_p(0), _M_mask(0) { }
79
80 operator bool() const _GLIBCXX_NOEXCEPT
81 { return !!(*_M_p & _M_mask); }
82
83 _Bit_reference&
84 operator=(bool __x) _GLIBCXX_NOEXCEPT
85 {
86 if (__x)
87 *_M_p |= _M_mask;
88 else
89 *_M_p &= ~_M_mask;
90 return *this;
91 }
92
93 _Bit_reference&
94 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT
95 { return *this = bool(__x); }
96
97 bool
98 operator==(const _Bit_reference& __x) const
99 { return bool(*this) == bool(__x); }
100
101 bool
102 operator<(const _Bit_reference& __x) const
103 { return !bool(*this) && bool(__x); }
104
105 void
106 flip() _GLIBCXX_NOEXCEPT
107 { *_M_p ^= _M_mask; }
108 };
109
110 #if __cplusplus >= 201103L
111 inline void
112 swap(_Bit_reference __x, _Bit_reference __y) noexcept
113 {
114 bool __tmp = __x;
115 __x = __y;
116 __y = __tmp;
117 }
118
119 inline void
120 swap(_Bit_reference __x, bool& __y) noexcept
121 {
122 bool __tmp = __x;
123 __x = __y;
124 __y = __tmp;
125 }
126
127 inline void
128 swap(bool& __x, _Bit_reference __y) noexcept
129 {
130 bool __tmp = __x;
131 __x = __y;
132 __y = __tmp;
133 }
134 #endif
135
136 struct _Bit_iterator_base
137 : public std::iterator<std::random_access_iterator_tag, bool>
138 {
139 _Bit_type * _M_p;
140 unsigned int _M_offset;
141
142 _Bit_iterator_base(_Bit_type * __x, unsigned int __y)
143 : _M_p(__x), _M_offset(__y) { }
144
145 void
146 _M_bump_up()
147 {
148 if (_M_offset++ == int(_S_word_bit) - 1)
149 {
150 _M_offset = 0;
151 ++_M_p;
152 }
153 }
154
155 void
156 _M_bump_down()
157 {
158 if (_M_offset-- == 0)
159 {
160 _M_offset = int(_S_word_bit) - 1;
161 --_M_p;
162 }
163 }
164
165 void
166 _M_incr(ptrdiff_t __i)
167 {
168 difference_type __n = __i + _M_offset;
169 _M_p += __n / int(_S_word_bit);
170 __n = __n % int(_S_word_bit);
171 if (__n < 0)
172 {
173 __n += int(_S_word_bit);
174 --_M_p;
175 }
176 _M_offset = static_cast<unsigned int>(__n);
177 }
178
179 bool
180 operator==(const _Bit_iterator_base& __i) const
181 { return _M_p == __i._M_p && _M_offset == __i._M_offset; }
182
183 bool
184 operator<(const _Bit_iterator_base& __i) const
185 {
186 return _M_p < __i._M_p
187 || (_M_p == __i._M_p && _M_offset < __i._M_offset);
188 }
189
190 bool
191 operator!=(const _Bit_iterator_base& __i) const
192 { return !(*this == __i); }
193
194 bool
195 operator>(const _Bit_iterator_base& __i) const
196 { return __i < *this; }
197
198 bool
199 operator<=(const _Bit_iterator_base& __i) const
200 { return !(__i < *this); }
201
202 bool
203 operator>=(const _Bit_iterator_base& __i) const
204 { return !(*this < __i); }
205 };
206
207 inline ptrdiff_t
208 operator-(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y)
209 {
210 return (int(_S_word_bit) * (__x._M_p - __y._M_p)
211 + __x._M_offset - __y._M_offset);
212 }
213
214 struct _Bit_iterator : public _Bit_iterator_base
215 {
216 typedef _Bit_reference reference;
217 typedef _Bit_reference* pointer;
218 typedef _Bit_iterator iterator;
219
220 _Bit_iterator() : _Bit_iterator_base(0, 0) { }
221
222 _Bit_iterator(_Bit_type * __x, unsigned int __y)
223 : _Bit_iterator_base(__x, __y) { }
224
225 iterator
226 _M_const_cast() const
227 { return *this; }
228
229 reference
230 operator*() const
231 { return reference(_M_p, 1UL << _M_offset); }
232
233 iterator&
234 operator++()
235 {
236 _M_bump_up();
237 return *this;
238 }
239
240 iterator
241 operator++(int)
242 {
243 iterator __tmp = *this;
244 _M_bump_up();
245 return __tmp;
246 }
247
248 iterator&
249 operator--()
250 {
251 _M_bump_down();
252 return *this;
253 }
254
255 iterator
256 operator--(int)
257 {
258 iterator __tmp = *this;
259 _M_bump_down();
260 return __tmp;
261 }
262
263 iterator&
264 operator+=(difference_type __i)
265 {
266 _M_incr(__i);
267 return *this;
268 }
269
270 iterator&
271 operator-=(difference_type __i)
272 {
273 *this += -__i;
274 return *this;
275 }
276
277 iterator
278 operator+(difference_type __i) const
279 {
280 iterator __tmp = *this;
281 return __tmp += __i;
282 }
283
284 iterator
285 operator-(difference_type __i) const
286 {
287 iterator __tmp = *this;
288 return __tmp -= __i;
289 }
290
291 reference
292 operator[](difference_type __i) const
293 { return *(*this + __i); }
294 };
295
296 inline _Bit_iterator
297 operator+(ptrdiff_t __n, const _Bit_iterator& __x)
298 { return __x + __n; }
299
300 struct _Bit_const_iterator : public _Bit_iterator_base
301 {
302 typedef bool reference;
303 typedef bool const_reference;
304 typedef const bool* pointer;
305 typedef _Bit_const_iterator const_iterator;
306
307 _Bit_const_iterator() : _Bit_iterator_base(0, 0) { }
308
309 _Bit_const_iterator(_Bit_type * __x, unsigned int __y)
310 : _Bit_iterator_base(__x, __y) { }
311
312 _Bit_const_iterator(const _Bit_iterator& __x)
313 : _Bit_iterator_base(__x._M_p, __x._M_offset) { }
314
315 _Bit_iterator
316 _M_const_cast() const
317 { return _Bit_iterator(_M_p, _M_offset); }
318
319 const_reference
320 operator*() const
321 { return _Bit_reference(_M_p, 1UL << _M_offset); }
322
323 const_iterator&
324 operator++()
325 {
326 _M_bump_up();
327 return *this;
328 }
329
330 const_iterator
331 operator++(int)
332 {
333 const_iterator __tmp = *this;
334 _M_bump_up();
335 return __tmp;
336 }
337
338 const_iterator&
339 operator--()
340 {
341 _M_bump_down();
342 return *this;
343 }
344
345 const_iterator
346 operator--(int)
347 {
348 const_iterator __tmp = *this;
349 _M_bump_down();
350 return __tmp;
351 }
352
353 const_iterator&
354 operator+=(difference_type __i)
355 {
356 _M_incr(__i);
357 return *this;
358 }
359
360 const_iterator&
361 operator-=(difference_type __i)
362 {
363 *this += -__i;
364 return *this;
365 }
366
367 const_iterator
368 operator+(difference_type __i) const
369 {
370 const_iterator __tmp = *this;
371 return __tmp += __i;
372 }
373
374 const_iterator
375 operator-(difference_type __i) const
376 {
377 const_iterator __tmp = *this;
378 return __tmp -= __i;
379 }
380
381 const_reference
382 operator[](difference_type __i) const
383 { return *(*this + __i); }
384 };
385
386 inline _Bit_const_iterator
387 operator+(ptrdiff_t __n, const _Bit_const_iterator& __x)
388 { return __x + __n; }
389
390 inline void
391 __fill_bvector(_Bit_iterator __first, _Bit_iterator __last, bool __x)
392 {
393 for (; __first != __last; ++__first)
394 *__first = __x;
395 }
396
397 inline void
398 fill(_Bit_iterator __first, _Bit_iterator __last, const bool& __x)
399 {
400 if (__first._M_p != __last._M_p)
401 {
402 std::fill(__first._M_p + 1, __last._M_p, __x ? ~0 : 0);
403 __fill_bvector(__first, _Bit_iterator(__first._M_p + 1, 0), __x);
404 __fill_bvector(_Bit_iterator(__last._M_p, 0), __last, __x);
405 }
406 else
407 __fill_bvector(__first, __last, __x);
408 }
409
410 template<typename _Alloc>
411 struct _Bvector_base
412 {
413 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
414 rebind<_Bit_type>::other _Bit_alloc_type;
415 typedef typename __gnu_cxx::__alloc_traits<_Bit_alloc_type>
416 _Bit_alloc_traits;
417 typedef typename _Bit_alloc_traits::pointer _Bit_pointer;
418
419 struct _Bvector_impl
420 : public _Bit_alloc_type
421 {
422 _Bit_iterator _M_start;
423 _Bit_iterator _M_finish;
424 _Bit_pointer _M_end_of_storage;
425
426 _Bvector_impl()
427 : _Bit_alloc_type(), _M_start(), _M_finish(), _M_end_of_storage()
428 { }
429
430 _Bvector_impl(const _Bit_alloc_type& __a)
431 : _Bit_alloc_type(__a), _M_start(), _M_finish(), _M_end_of_storage()
432 { }
433
434 #if __cplusplus >= 201103L
435 _Bvector_impl(_Bit_alloc_type&& __a)
436 : _Bit_alloc_type(std::move(__a)), _M_start(), _M_finish(),
437 _M_end_of_storage()
438 { }
439 #endif
440
441 _Bit_type*
442 _M_end_addr() const _GLIBCXX_NOEXCEPT
443 {
444 if (_M_end_of_storage)
445 return std::__addressof(_M_end_of_storage[-1]) + 1;
446 return 0;
447 }
448 };
449
450 public:
451 typedef _Alloc allocator_type;
452
453 _Bit_alloc_type&
454 _M_get_Bit_allocator() _GLIBCXX_NOEXCEPT
455 { return *static_cast<_Bit_alloc_type*>(&this->_M_impl); }
456
457 const _Bit_alloc_type&
458 _M_get_Bit_allocator() const _GLIBCXX_NOEXCEPT
459 { return *static_cast<const _Bit_alloc_type*>(&this->_M_impl); }
460
461 allocator_type
462 get_allocator() const _GLIBCXX_NOEXCEPT
463 { return allocator_type(_M_get_Bit_allocator()); }
464
465 _Bvector_base()
466 : _M_impl() { }
467
468 _Bvector_base(const allocator_type& __a)
469 : _M_impl(__a) { }
470
471 #if __cplusplus >= 201103L
472 _Bvector_base(_Bvector_base&& __x) noexcept
473 : _M_impl(std::move(__x._M_get_Bit_allocator()))
474 {
475 this->_M_impl._M_start = __x._M_impl._M_start;
476 this->_M_impl._M_finish = __x._M_impl._M_finish;
477 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
478 __x._M_impl._M_start = _Bit_iterator();
479 __x._M_impl._M_finish = _Bit_iterator();
480 __x._M_impl._M_end_of_storage = nullptr;
481 }
482 #endif
483
484 ~_Bvector_base()
485 { this->_M_deallocate(); }
486
487 protected:
488 _Bvector_impl _M_impl;
489
490 _Bit_pointer
491 _M_allocate(size_t __n)
492 { return _Bit_alloc_traits::allocate(_M_impl, _S_nword(__n)); }
493
494 void
495 _M_deallocate()
496 {
497 if (_M_impl._M_start._M_p)
498 {
499 const size_t __n = _M_impl._M_end_addr() - _M_impl._M_start._M_p;
500 _Bit_alloc_traits::deallocate(_M_impl,
501 _M_impl._M_end_of_storage - __n,
502 __n);
503 }
504 }
505
506 static size_t
507 _S_nword(size_t __n)
508 { return (__n + int(_S_word_bit) - 1) / int(_S_word_bit); }
509 };
510
511 _GLIBCXX_END_NAMESPACE_CONTAINER
512 } // namespace std
513
514 // Declare a partial specialization of vector<T, Alloc>.
515 #include <bits/stl_vector.h>
516
517 namespace std _GLIBCXX_VISIBILITY(default)
518 {
519 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
520
521 /**
522 * @brief A specialization of vector for booleans which offers fixed time
523 * access to individual elements in any order.
524 *
525 * @ingroup sequences
526 *
527 * @tparam _Alloc Allocator type.
528 *
529 * Note that vector<bool> does not actually meet the requirements for being
530 * a container. This is because the reference and pointer types are not
531 * really references and pointers to bool. See DR96 for details. @see
532 * vector for function documentation.
533 *
534 * In some terminology a %vector can be described as a dynamic
535 * C-style array, it offers fast and efficient access to individual
536 * elements in any order and saves the user from worrying about
537 * memory and size allocation. Subscripting ( @c [] ) access is
538 * also provided as with C-style arrays.
539 */
540 template<typename _Alloc>
541 class vector<bool, _Alloc> : protected _Bvector_base<_Alloc>
542 {
543 typedef _Bvector_base<_Alloc> _Base;
544 typedef typename _Base::_Bit_pointer _Bit_pointer;
545 typedef typename _Base::_Bit_alloc_traits _Bit_alloc_traits;
546
547 #if __cplusplus >= 201103L
548 template<typename> friend struct hash;
549 #endif
550
551 public:
552 typedef bool value_type;
553 typedef size_t size_type;
554 typedef ptrdiff_t difference_type;
555 typedef _Bit_reference reference;
556 typedef bool const_reference;
557 typedef _Bit_reference* pointer;
558 typedef const bool* const_pointer;
559 typedef _Bit_iterator iterator;
560 typedef _Bit_const_iterator const_iterator;
561 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
562 typedef std::reverse_iterator<iterator> reverse_iterator;
563 typedef _Alloc allocator_type;
564
565 allocator_type get_allocator() const
566 { return _Base::get_allocator(); }
567
568 protected:
569 using _Base::_M_allocate;
570 using _Base::_M_deallocate;
571 using _Base::_S_nword;
572 using _Base::_M_get_Bit_allocator;
573
574 public:
575 vector()
576 : _Base() { }
577
578 explicit
579 vector(const allocator_type& __a)
580 : _Base(__a) { }
581
582 #if __cplusplus >= 201103L
583 explicit
584 vector(size_type __n, const allocator_type& __a = allocator_type())
585 : vector(__n, false, __a)
586 { }
587
588 vector(size_type __n, const bool& __value,
589 const allocator_type& __a = allocator_type())
590 : _Base(__a)
591 {
592 _M_initialize(__n);
593 std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_addr(),
594 __value ? ~0 : 0);
595 }
596 #else
597 explicit
598 vector(size_type __n, const bool& __value = bool(),
599 const allocator_type& __a = allocator_type())
600 : _Base(__a)
601 {
602 _M_initialize(__n);
603 std::fill(this->_M_impl._M_start._M_p, this->_M_impl._M_end_addr(),
604 __value ? ~0 : 0);
605 }
606 #endif
607
608 vector(const vector& __x)
609 : _Base(_Bit_alloc_traits::_S_select_on_copy(__x._M_get_Bit_allocator()))
610 {
611 _M_initialize(__x.size());
612 _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start);
613 }
614
615 #if __cplusplus >= 201103L
616 vector(vector&& __x) noexcept
617 : _Base(std::move(__x)) { }
618
619 vector(vector&& __x, const allocator_type& __a)
620 noexcept(_Bit_alloc_traits::_S_always_equal())
621 : _Base(__a)
622 {
623 if (__x.get_allocator() == __a)
624 {
625 this->_M_impl._M_start = __x._M_impl._M_start;
626 this->_M_impl._M_finish = __x._M_impl._M_finish;
627 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
628 __x._M_impl._M_start = _Bit_iterator();
629 __x._M_impl._M_finish = _Bit_iterator();
630 __x._M_impl._M_end_of_storage = nullptr;
631 }
632 else
633 {
634 _M_initialize(__x.size());
635 _M_copy_aligned(__x.begin(), __x.end(), begin());
636 __x.clear();
637 }
638 }
639
640 vector(const vector& __x, const allocator_type& __a)
641 : _Base(__a)
642 {
643 _M_initialize(__x.size());
644 _M_copy_aligned(__x.begin(), __x.end(), this->_M_impl._M_start);
645 }
646
647 vector(initializer_list<bool> __l,
648 const allocator_type& __a = allocator_type())
649 : _Base(__a)
650 {
651 _M_initialize_range(__l.begin(), __l.end(),
652 random_access_iterator_tag());
653 }
654 #endif
655
656 #if __cplusplus >= 201103L
657 template<typename _InputIterator,
658 typename = std::_RequireInputIter<_InputIterator>>
659 vector(_InputIterator __first, _InputIterator __last,
660 const allocator_type& __a = allocator_type())
661 : _Base(__a)
662 { _M_initialize_dispatch(__first, __last, __false_type()); }
663 #else
664 template<typename _InputIterator>
665 vector(_InputIterator __first, _InputIterator __last,
666 const allocator_type& __a = allocator_type())
667 : _Base(__a)
668 {
669 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
670 _M_initialize_dispatch(__first, __last, _Integral());
671 }
672 #endif
673
674 ~vector() _GLIBCXX_NOEXCEPT { }
675
676 vector&
677 operator=(const vector& __x)
678 {
679 if (&__x == this)
680 return *this;
681 #if __cplusplus >= 201103L
682 if (_Bit_alloc_traits::_S_propagate_on_copy_assign())
683 {
684 if (this->_M_get_Bit_allocator() != __x._M_get_Bit_allocator())
685 {
686 this->_M_deallocate();
687 std::__alloc_on_copy(_M_get_Bit_allocator(),
688 __x._M_get_Bit_allocator());
689 _M_initialize(__x.size());
690 }
691 else
692 std::__alloc_on_copy(_M_get_Bit_allocator(),
693 __x._M_get_Bit_allocator());
694 }
695 #endif
696 if (__x.size() > capacity())
697 {
698 this->_M_deallocate();
699 _M_initialize(__x.size());
700 }
701 this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(),
702 begin());
703 return *this;
704 }
705
706 #if __cplusplus >= 201103L
707 vector&
708 operator=(vector&& __x) noexcept(_Bit_alloc_traits::_S_nothrow_move())
709 {
710 if (_Bit_alloc_traits::_S_propagate_on_move_assign()
711 || this->_M_get_Bit_allocator() == __x._M_get_Bit_allocator())
712 {
713 this->_M_deallocate();
714 this->_M_impl._M_start = __x._M_impl._M_start;
715 this->_M_impl._M_finish = __x._M_impl._M_finish;
716 this->_M_impl._M_end_of_storage = __x._M_impl._M_end_of_storage;
717 __x._M_impl._M_start = _Bit_iterator();
718 __x._M_impl._M_finish = _Bit_iterator();
719 __x._M_impl._M_end_of_storage = nullptr;
720 std::__alloc_on_move(_M_get_Bit_allocator(),
721 __x._M_get_Bit_allocator());
722 }
723 else
724 {
725 if (__x.size() > capacity())
726 {
727 this->_M_deallocate();
728 _M_initialize(__x.size());
729 }
730 this->_M_impl._M_finish = _M_copy_aligned(__x.begin(), __x.end(),
731 begin());
732 __x.clear();
733 }
734 return *this;
735 }
736
737 vector&
738 operator=(initializer_list<bool> __l)
739 {
740 this->assign (__l.begin(), __l.end());
741 return *this;
742 }
743 #endif
744
745 // assign(), a generalized assignment member function. Two
746 // versions: one that takes a count, and one that takes a range.
747 // The range version is a member template, so we dispatch on whether
748 // or not the type is an integer.
749 void
750 assign(size_type __n, const bool& __x)
751 { _M_fill_assign(__n, __x); }
752
753 #if __cplusplus >= 201103L
754 template<typename _InputIterator,
755 typename = std::_RequireInputIter<_InputIterator>>
756 void
757 assign(_InputIterator __first, _InputIterator __last)
758 { _M_assign_dispatch(__first, __last, __false_type()); }
759 #else
760 template<typename _InputIterator>
761 void
762 assign(_InputIterator __first, _InputIterator __last)
763 {
764 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
765 _M_assign_dispatch(__first, __last, _Integral());
766 }
767 #endif
768
769 #if __cplusplus >= 201103L
770 void
771 assign(initializer_list<bool> __l)
772 { this->assign(__l.begin(), __l.end()); }
773 #endif
774
775 iterator
776 begin() _GLIBCXX_NOEXCEPT
777 { return this->_M_impl._M_start; }
778
779 const_iterator
780 begin() const _GLIBCXX_NOEXCEPT
781 { return this->_M_impl._M_start; }
782
783 iterator
784 end() _GLIBCXX_NOEXCEPT
785 { return this->_M_impl._M_finish; }
786
787 const_iterator
788 end() const _GLIBCXX_NOEXCEPT
789 { return this->_M_impl._M_finish; }
790
791 reverse_iterator
792 rbegin() _GLIBCXX_NOEXCEPT
793 { return reverse_iterator(end()); }
794
795 const_reverse_iterator
796 rbegin() const _GLIBCXX_NOEXCEPT
797 { return const_reverse_iterator(end()); }
798
799 reverse_iterator
800 rend() _GLIBCXX_NOEXCEPT
801 { return reverse_iterator(begin()); }
802
803 const_reverse_iterator
804 rend() const _GLIBCXX_NOEXCEPT
805 { return const_reverse_iterator(begin()); }
806
807 #if __cplusplus >= 201103L
808 const_iterator
809 cbegin() const noexcept
810 { return this->_M_impl._M_start; }
811
812 const_iterator
813 cend() const noexcept
814 { return this->_M_impl._M_finish; }
815
816 const_reverse_iterator
817 crbegin() const noexcept
818 { return const_reverse_iterator(end()); }
819
820 const_reverse_iterator
821 crend() const noexcept
822 { return const_reverse_iterator(begin()); }
823 #endif
824
825 size_type
826 size() const _GLIBCXX_NOEXCEPT
827 { return size_type(end() - begin()); }
828
829 size_type
830 max_size() const _GLIBCXX_NOEXCEPT
831 {
832 const size_type __isize =
833 __gnu_cxx::__numeric_traits<difference_type>::__max
834 - int(_S_word_bit) + 1;
835 const size_type __asize
836 = _Bit_alloc_traits::max_size(_M_get_Bit_allocator());
837 return (__asize <= __isize / int(_S_word_bit)
838 ? __asize * int(_S_word_bit) : __isize);
839 }
840
841 size_type
842 capacity() const _GLIBCXX_NOEXCEPT
843 { return size_type(const_iterator(this->_M_impl._M_end_addr(), 0)
844 - begin()); }
845
846 bool
847 empty() const _GLIBCXX_NOEXCEPT
848 { return begin() == end(); }
849
850 reference
851 operator[](size_type __n)
852 {
853 return *iterator(this->_M_impl._M_start._M_p
854 + __n / int(_S_word_bit), __n % int(_S_word_bit));
855 }
856
857 const_reference
858 operator[](size_type __n) const
859 {
860 return *const_iterator(this->_M_impl._M_start._M_p
861 + __n / int(_S_word_bit), __n % int(_S_word_bit));
862 }
863
864 protected:
865 void
866 _M_range_check(size_type __n) const
867 {
868 if (__n >= this->size())
869 __throw_out_of_range_fmt(__N("vector<bool>::_M_range_check: __n "
870 "(which is %zu) >= this->size() "
871 "(which is %zu)"),
872 __n, this->size());
873 }
874
875 public:
876 reference
877 at(size_type __n)
878 { _M_range_check(__n); return (*this)[__n]; }
879
880 const_reference
881 at(size_type __n) const
882 { _M_range_check(__n); return (*this)[__n]; }
883
884 void
885 reserve(size_type __n)
886 {
887 if (__n > max_size())
888 __throw_length_error(__N("vector::reserve"));
889 if (capacity() < __n)
890 _M_reallocate(__n);
891 }
892
893 reference
894 front()
895 { return *begin(); }
896
897 const_reference
898 front() const
899 { return *begin(); }
900
901 reference
902 back()
903 { return *(end() - 1); }
904
905 const_reference
906 back() const
907 { return *(end() - 1); }
908
909 // _GLIBCXX_RESOLVE_LIB_DEFECTS
910 // DR 464. Suggestion for new member functions in standard containers.
911 // N.B. DR 464 says nothing about vector<bool> but we need something
912 // here due to the way we are implementing DR 464 in the debug-mode
913 // vector class.
914 void
915 data() _GLIBCXX_NOEXCEPT { }
916
917 void
918 push_back(bool __x)
919 {
920 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_addr())
921 *this->_M_impl._M_finish++ = __x;
922 else
923 _M_insert_aux(end(), __x);
924 }
925
926 void
927 swap(vector& __x)
928 #if __cplusplus >= 201103L
929 noexcept(_Bit_alloc_traits::_S_nothrow_swap())
930 #endif
931 {
932 std::swap(this->_M_impl._M_start, __x._M_impl._M_start);
933 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish);
934 std::swap(this->_M_impl._M_end_of_storage,
935 __x._M_impl._M_end_of_storage);
936 _Bit_alloc_traits::_S_on_swap(_M_get_Bit_allocator(),
937 __x._M_get_Bit_allocator());
938 }
939
940 // [23.2.5]/1, third-to-last entry in synopsis listing
941 static void
942 swap(reference __x, reference __y) _GLIBCXX_NOEXCEPT
943 {
944 bool __tmp = __x;
945 __x = __y;
946 __y = __tmp;
947 }
948
949 iterator
950 #if __cplusplus >= 201103L
951 insert(const_iterator __position, const bool& __x = bool())
952 #else
953 insert(iterator __position, const bool& __x = bool())
954 #endif
955 {
956 const difference_type __n = __position - begin();
957 if (this->_M_impl._M_finish._M_p != this->_M_impl._M_end_addr()
958 && __position == end())
959 *this->_M_impl._M_finish++ = __x;
960 else
961 _M_insert_aux(__position._M_const_cast(), __x);
962 return begin() + __n;
963 }
964
965 #if __cplusplus >= 201103L
966 template<typename _InputIterator,
967 typename = std::_RequireInputIter<_InputIterator>>
968 iterator
969 insert(const_iterator __position,
970 _InputIterator __first, _InputIterator __last)
971 {
972 difference_type __offset = __position - cbegin();
973 _M_insert_dispatch(__position._M_const_cast(),
974 __first, __last, __false_type());
975 return begin() + __offset;
976 }
977 #else
978 template<typename _InputIterator>
979 void
980 insert(iterator __position,
981 _InputIterator __first, _InputIterator __last)
982 {
983 typedef typename std::__is_integer<_InputIterator>::__type _Integral;
984 _M_insert_dispatch(__position, __first, __last, _Integral());
985 }
986 #endif
987
988 #if __cplusplus >= 201103L
989 iterator
990 insert(const_iterator __position, size_type __n, const bool& __x)
991 {
992 difference_type __offset = __position - cbegin();
993 _M_fill_insert(__position._M_const_cast(), __n, __x);
994 return begin() + __offset;
995 }
996 #else
997 void
998 insert(iterator __position, size_type __n, const bool& __x)
999 { _M_fill_insert(__position, __n, __x); }
1000 #endif
1001
1002 #if __cplusplus >= 201103L
1003 iterator
1004 insert(const_iterator __p, initializer_list<bool> __l)
1005 { return this->insert(__p, __l.begin(), __l.end()); }
1006 #endif
1007
1008 void
1009 pop_back()
1010 { --this->_M_impl._M_finish; }
1011
1012 iterator
1013 #if __cplusplus >= 201103L
1014 erase(const_iterator __position)
1015 #else
1016 erase(iterator __position)
1017 #endif
1018 { return _M_erase(__position._M_const_cast()); }
1019
1020 iterator
1021 #if __cplusplus >= 201103L
1022 erase(const_iterator __first, const_iterator __last)
1023 #else
1024 erase(iterator __first, iterator __last)
1025 #endif
1026 { return _M_erase(__first._M_const_cast(), __last._M_const_cast()); }
1027
1028 void
1029 resize(size_type __new_size, bool __x = bool())
1030 {
1031 if (__new_size < size())
1032 _M_erase_at_end(begin() + difference_type(__new_size));
1033 else
1034 insert(end(), __new_size - size(), __x);
1035 }
1036
1037 #if __cplusplus >= 201103L
1038 void
1039 shrink_to_fit()
1040 { _M_shrink_to_fit(); }
1041 #endif
1042
1043 void
1044 flip() _GLIBCXX_NOEXCEPT
1045 {
1046 _Bit_type * const __end = this->_M_impl._M_end_addr();
1047 for (_Bit_type * __p = this->_M_impl._M_start._M_p; __p != __end; ++__p)
1048 *__p = ~*__p;
1049 }
1050
1051 void
1052 clear() _GLIBCXX_NOEXCEPT
1053 { _M_erase_at_end(begin()); }
1054
1055 #if __cplusplus >= 201103L
1056 template<typename... _Args>
1057 void
1058 emplace_back(_Args&&... __args)
1059 { push_back(bool(__args...)); }
1060
1061 template<typename... _Args>
1062 iterator
1063 emplace(const_iterator __pos, _Args&&... __args)
1064 { return insert(__pos, bool(__args...)); }
1065 #endif
1066
1067 protected:
1068 // Precondition: __first._M_offset == 0 && __result._M_offset == 0.
1069 iterator
1070 _M_copy_aligned(const_iterator __first, const_iterator __last,
1071 iterator __result)
1072 {
1073 _Bit_type* __q = std::copy(__first._M_p, __last._M_p, __result._M_p);
1074 return std::copy(const_iterator(__last._M_p, 0), __last,
1075 iterator(__q, 0));
1076 }
1077
1078 void
1079 _M_initialize(size_type __n)
1080 {
1081 _Bit_pointer __q = this->_M_allocate(__n);
1082 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
1083 this->_M_impl._M_start = iterator(std::__addressof(*__q), 0);
1084 this->_M_impl._M_finish = this->_M_impl._M_start + difference_type(__n);
1085 }
1086
1087 void
1088 _M_reallocate(size_type __n);
1089
1090 #if __cplusplus >= 201103L
1091 bool
1092 _M_shrink_to_fit();
1093 #endif
1094
1095 // Check whether it's an integral type. If so, it's not an iterator.
1096
1097 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1098 // 438. Ambiguity in the "do the right thing" clause
1099 template<typename _Integer>
1100 void
1101 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type)
1102 {
1103 _M_initialize(static_cast<size_type>(__n));
1104 std::fill(this->_M_impl._M_start._M_p,
1105 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1106 }
1107
1108 template<typename _InputIterator>
1109 void
1110 _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
1111 __false_type)
1112 { _M_initialize_range(__first, __last,
1113 std::__iterator_category(__first)); }
1114
1115 template<typename _InputIterator>
1116 void
1117 _M_initialize_range(_InputIterator __first, _InputIterator __last,
1118 std::input_iterator_tag)
1119 {
1120 for (; __first != __last; ++__first)
1121 push_back(*__first);
1122 }
1123
1124 template<typename _ForwardIterator>
1125 void
1126 _M_initialize_range(_ForwardIterator __first, _ForwardIterator __last,
1127 std::forward_iterator_tag)
1128 {
1129 const size_type __n = std::distance(__first, __last);
1130 _M_initialize(__n);
1131 std::copy(__first, __last, this->_M_impl._M_start);
1132 }
1133
1134 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1135 // 438. Ambiguity in the "do the right thing" clause
1136 template<typename _Integer>
1137 void
1138 _M_assign_dispatch(_Integer __n, _Integer __val, __true_type)
1139 { _M_fill_assign(__n, __val); }
1140
1141 template<class _InputIterator>
1142 void
1143 _M_assign_dispatch(_InputIterator __first, _InputIterator __last,
1144 __false_type)
1145 { _M_assign_aux(__first, __last, std::__iterator_category(__first)); }
1146
1147 void
1148 _M_fill_assign(size_t __n, bool __x)
1149 {
1150 if (__n > size())
1151 {
1152 std::fill(this->_M_impl._M_start._M_p,
1153 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1154 insert(end(), __n - size(), __x);
1155 }
1156 else
1157 {
1158 _M_erase_at_end(begin() + __n);
1159 std::fill(this->_M_impl._M_start._M_p,
1160 this->_M_impl._M_end_addr(), __x ? ~0 : 0);
1161 }
1162 }
1163
1164 template<typename _InputIterator>
1165 void
1166 _M_assign_aux(_InputIterator __first, _InputIterator __last,
1167 std::input_iterator_tag)
1168 {
1169 iterator __cur = begin();
1170 for (; __first != __last && __cur != end(); ++__cur, ++__first)
1171 *__cur = *__first;
1172 if (__first == __last)
1173 _M_erase_at_end(__cur);
1174 else
1175 insert(end(), __first, __last);
1176 }
1177
1178 template<typename _ForwardIterator>
1179 void
1180 _M_assign_aux(_ForwardIterator __first, _ForwardIterator __last,
1181 std::forward_iterator_tag)
1182 {
1183 const size_type __len = std::distance(__first, __last);
1184 if (__len < size())
1185 _M_erase_at_end(std::copy(__first, __last, begin()));
1186 else
1187 {
1188 _ForwardIterator __mid = __first;
1189 std::advance(__mid, size());
1190 std::copy(__first, __mid, begin());
1191 insert(end(), __mid, __last);
1192 }
1193 }
1194
1195 // Check whether it's an integral type. If so, it's not an iterator.
1196
1197 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1198 // 438. Ambiguity in the "do the right thing" clause
1199 template<typename _Integer>
1200 void
1201 _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __x,
1202 __true_type)
1203 { _M_fill_insert(__pos, __n, __x); }
1204
1205 template<typename _InputIterator>
1206 void
1207 _M_insert_dispatch(iterator __pos,
1208 _InputIterator __first, _InputIterator __last,
1209 __false_type)
1210 { _M_insert_range(__pos, __first, __last,
1211 std::__iterator_category(__first)); }
1212
1213 void
1214 _M_fill_insert(iterator __position, size_type __n, bool __x);
1215
1216 template<typename _InputIterator>
1217 void
1218 _M_insert_range(iterator __pos, _InputIterator __first,
1219 _InputIterator __last, std::input_iterator_tag)
1220 {
1221 for (; __first != __last; ++__first)
1222 {
1223 __pos = insert(__pos, *__first);
1224 ++__pos;
1225 }
1226 }
1227
1228 template<typename _ForwardIterator>
1229 void
1230 _M_insert_range(iterator __position, _ForwardIterator __first,
1231 _ForwardIterator __last, std::forward_iterator_tag);
1232
1233 void
1234 _M_insert_aux(iterator __position, bool __x);
1235
1236 size_type
1237 _M_check_len(size_type __n, const char* __s) const
1238 {
1239 if (max_size() - size() < __n)
1240 __throw_length_error(__N(__s));
1241
1242 const size_type __len = size() + std::max(size(), __n);
1243 return (__len < size() || __len > max_size()) ? max_size() : __len;
1244 }
1245
1246 void
1247 _M_erase_at_end(iterator __pos)
1248 { this->_M_impl._M_finish = __pos; }
1249
1250 iterator
1251 _M_erase(iterator __pos);
1252
1253 iterator
1254 _M_erase(iterator __first, iterator __last);
1255 };
1256
1257 _GLIBCXX_END_NAMESPACE_CONTAINER
1258 } // namespace std
1259
1260 #if __cplusplus >= 201103L
1261
1262 #include <bits/functional_hash.h>
1263
1264 namespace std _GLIBCXX_VISIBILITY(default)
1265 {
1266 _GLIBCXX_BEGIN_NAMESPACE_VERSION
1267
1268 // DR 1182.
1269 /// std::hash specialization for vector<bool>.
1270 template<typename _Alloc>
1271 struct hash<_GLIBCXX_STD_C::vector<bool, _Alloc>>
1272 : public __hash_base<size_t, _GLIBCXX_STD_C::vector<bool, _Alloc>>
1273 {
1274 size_t
1275 operator()(const _GLIBCXX_STD_C::vector<bool, _Alloc>&) const noexcept;
1276 };
1277
1278 _GLIBCXX_END_NAMESPACE_VERSION
1279 }// namespace std
1280
1281 #endif // C++11
1282
1283 #endif