PR libstdc++/87784 fix dynamic_bitset::push_back
[official-gcc.git] / libstdc++-v3 / include / tr2 / dynamic_bitset
blob9e5c8170c815170fe911a84a768afe18047b30b1
1 // TR2 <dynamic_bitset> -*- C++ -*-
3 // Copyright (C) 2009-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
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.
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 // 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 /** @file tr2/dynamic_bitset
26  *  This is a TR2 C++ Library header.
27  */
29 #ifndef _GLIBCXX_TR2_DYNAMIC_BITSET
30 #define _GLIBCXX_TR2_DYNAMIC_BITSET 1
32 #pragma GCC system_header
34 #include <limits>
35 #include <vector>
36 #include <string>
37 #include <memory> // For std::allocator
38 #include <bits/functexcept.h>   // For invalid_argument, out_of_range,
39                                 // overflow_error
40 #include <iosfwd>
41 #include <bits/cxxabi_forced.h>
43 namespace std _GLIBCXX_VISIBILITY(default)
45 _GLIBCXX_BEGIN_NAMESPACE_VERSION
47 namespace tr2
49   /**
50    *  @defgroup dynamic_bitset Dynamic Bitset.
51    *  @ingroup extensions
52    *
53    *  @{
54    */
56   /**
57    *  Base class, general case.
58    *
59    *  See documentation for dynamic_bitset.
60    */
61   template<typename _WordT = unsigned long long,
62            typename _Alloc = std::allocator<_WordT>>
63     struct __dynamic_bitset_base
64     {
65       static_assert(std::is_unsigned<_WordT>::value, "template argument "
66                     "_WordT not an unsigned integral type");
68       typedef _WordT block_type;
69       typedef _Alloc allocator_type;
70       typedef size_t size_type;
72       static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
73       static const size_type npos = static_cast<size_type>(-1);
75       /// 0 is the least significant word.
76       std::vector<block_type, allocator_type> _M_w;
78       explicit
79       __dynamic_bitset_base(const allocator_type& __alloc = allocator_type())
80       : _M_w(__alloc)
81       { }
83       explicit
84       __dynamic_bitset_base(__dynamic_bitset_base&& __b)
85       { this->_M_w.swap(__b._M_w); }
87       explicit
88       __dynamic_bitset_base(size_type __nbits, unsigned long long __val = 0ULL,
89                            const allocator_type& __alloc = allocator_type())
90       : _M_w(__nbits / _S_bits_per_block
91              + (__nbits % _S_bits_per_block > 0),
92              __val, __alloc)
93       {
94         unsigned long long __mask = ~static_cast<block_type>(0);
95         size_t __n = std::min(this->_M_w.size(),
96                               sizeof(unsigned long long) / sizeof(block_type));
97         for (size_t __i = 0; __i < __n; ++__i)
98           {
99             this->_M_w[__i] = (__val & __mask) >> (__i * _S_bits_per_block);
100             __mask <<= _S_bits_per_block;
101           }
102       }
104       void
105       _M_assign(const __dynamic_bitset_base& __b)
106       { this->_M_w = __b._M_w; }
108       void
109       _M_swap(__dynamic_bitset_base& __b)
110       { this->_M_w.swap(__b._M_w); }
112       void
113       _M_clear()
114       { this->_M_w.clear(); }
116       void
117       _M_resize(size_t __nbits, bool __value)
118       {
119         size_t __sz = __nbits / _S_bits_per_block;
120         if (__nbits % _S_bits_per_block > 0)
121           ++__sz;
122         if (__sz != this->_M_w.size())
123           {
124             block_type __val = 0;
125             if (__value)
126               __val = std::numeric_limits<block_type>::max();
127             this->_M_w.resize(__sz, __val);
128           }
129       }
131       allocator_type
132       _M_get_allocator() const
133       { return this->_M_w.get_allocator(); }
135       static size_type
136       _S_whichword(size_type __pos) noexcept
137       { return __pos / _S_bits_per_block; }
139       static size_type
140       _S_whichbyte(size_type __pos) noexcept
141       { return (__pos % _S_bits_per_block) / __CHAR_BIT__; }
143       static size_type
144       _S_whichbit(size_type __pos) noexcept
145       { return __pos % _S_bits_per_block; }
147       static block_type
148       _S_maskbit(size_type __pos) noexcept
149       { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
151       block_type&
152       _M_getword(size_type __pos)
153       { return this->_M_w[_S_whichword(__pos)]; }
155       block_type
156       _M_getword(size_type __pos) const
157       { return this->_M_w[_S_whichword(__pos)]; }
159       block_type&
160       _M_hiword()
161       { return this->_M_w[_M_w.size() - 1]; }
163       block_type
164       _M_hiword() const
165       { return this->_M_w[_M_w.size() - 1]; }
167       void
168       _M_do_and(const __dynamic_bitset_base& __x)
169       {
170         if (__x._M_w.size() == this->_M_w.size())
171           for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
172             this->_M_w[__i] &= __x._M_w[__i];
173         else
174           return;
175       }
177       void
178       _M_do_or(const __dynamic_bitset_base& __x)
179       {
180         if (__x._M_w.size() == this->_M_w.size())
181           for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
182             this->_M_w[__i] |= __x._M_w[__i];
183         else
184           return;
185       }
187       void
188       _M_do_xor(const __dynamic_bitset_base& __x)
189       {
190         if (__x._M_w.size() == this->_M_w.size())
191           for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
192             this->_M_w[__i] ^= __x._M_w[__i];
193         else
194           return;
195       }
197       void
198       _M_do_dif(const __dynamic_bitset_base& __x)
199       {
200         if (__x._M_w.size() == this->_M_w.size())
201           for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
202             this->_M_w[__i] &= ~__x._M_w[__i];
203         else
204           return;
205       }
207       void
208       _M_do_left_shift(size_t __shift);
210       void
211       _M_do_right_shift(size_t __shift);
213       void
214       _M_do_flip()
215       {
216         for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
217           this->_M_w[__i] = ~this->_M_w[__i];
218       }
220       void
221       _M_do_set()
222       {
223         for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
224           this->_M_w[__i] = ~static_cast<block_type>(0);
225       }
227       void
228       _M_do_reset()
229       {
230         for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
231           this->_M_w[__i] = static_cast<block_type>(0);
232       }
234       bool
235       _M_is_equal(const __dynamic_bitset_base& __x) const
236       {
237         if (__x._M_w.size() == this->_M_w.size())
238           {
239             for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
240               if (this->_M_w[__i] != __x._M_w[__i])
241                 return false;
242             return true;
243           }
244         else
245           return false;
246       }
248       bool
249       _M_is_less(const __dynamic_bitset_base& __x) const
250       {
251         if (__x._M_w.size() == this->_M_w.size())
252           {
253             for (size_t __i = this->_M_w.size(); __i > 0; --__i)
254               {
255                 if (this->_M_w[__i-1] < __x._M_w[__i-1])
256                   return true;
257                 else if (this->_M_w[__i-1] > __x._M_w[__i-1])
258                   return false;
259               }
260             return false;
261           }
262         else
263           return false;
264       }
266       size_t
267       _M_are_all_aux() const
268       {
269         for (size_t __i = 0; __i < this->_M_w.size() - 1; ++__i)
270           if (_M_w[__i] != ~static_cast<block_type>(0))
271             return 0;
272         return ((this->_M_w.size() - 1) * _S_bits_per_block
273                 + __builtin_popcountll(this->_M_hiword()));
274       }
276       bool
277       _M_is_any() const
278       {
279         for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
280           if (this->_M_w[__i] != static_cast<block_type>(0))
281             return true;
282         return false;
283       }
285       bool
286       _M_is_subset_of(const __dynamic_bitset_base& __b)
287       {
288         if (__b._M_w.size() == this->_M_w.size())
289           {
290             for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
291               if (this->_M_w[__i] != (this->_M_w[__i] | __b._M_w[__i]))
292                 return false;
293             return true;
294           }
295         else
296           return false;
297       }
299       bool
300       _M_is_proper_subset_of(const __dynamic_bitset_base& __b) const
301       {
302         if (this->is_subset_of(__b))
303           {
304             if (*this == __b)
305               return false;
306             else
307               return true;
308           }
309         else
310           return false;
311       }
313       size_t
314       _M_do_count() const
315       {
316         size_t __result = 0;
317         for (size_t __i = 0; __i < this->_M_w.size(); ++__i)
318           __result += __builtin_popcountll(this->_M_w[__i]);
319         return __result;
320       }
322       size_type
323       _M_size() const noexcept
324       { return this->_M_w.size(); }
326       unsigned long
327       _M_do_to_ulong() const;
329       unsigned long long
330       _M_do_to_ullong() const;
332       // find first "on" bit
333       size_type
334       _M_do_find_first(size_t __not_found) const;
336       // find the next "on" bit that follows "prev"
337       size_type
338       _M_do_find_next(size_t __prev, size_t __not_found) const;
340       // do append of block
341       void
342       _M_do_append_block(block_type __block, size_type __pos)
343       {
344         size_t __offset = __pos % _S_bits_per_block;
345         if (__offset == 0)
346           this->_M_w.push_back(__block);
347         else
348           {
349             this->_M_hiword() |= (__block << __offset);
350             this->_M_w.push_back(__block >> (_S_bits_per_block - __offset));
351           }
352       }
353     };
355   /**
356    *  @brief  The %dynamic_bitset class represents a sequence of bits.
357    *
358    *  See N2050,
359    *  Proposal to Add a Dynamically Sizeable Bitset to the Standard Library.
360    *
361    *  In the general unoptimized case, storage is allocated in
362    *  word-sized blocks.  Let B be the number of bits in a word, then
363    *  (Nb+(B-1))/B words will be used for storage.  B - Nb%B bits are
364    *  unused.  (They are the high-order bits in the highest word.)  It
365    *  is a class invariant that those unused bits are always zero.
366    *
367    *  If you think of %dynamic_bitset as "a simple array of bits," be
368    *  aware that your mental picture is reversed: a %dynamic_bitset
369    *  behaves the same way as bits in integers do, with the bit at
370    *  index 0 in the "least significant / right-hand" position, and
371    *  the bit at index Nb-1 in the "most significant / left-hand"
372    *  position.  Thus, unlike other containers, a %dynamic_bitset's
373    *  index "counts from right to left," to put it very loosely.
374    *
375    *  This behavior is preserved when translating to and from strings.
376    *  For example, the first line of the following program probably
377    *  prints "b('a') is 0001100001" on a modern ASCII system.
378    *
379    *  @code
380    *     #include <dynamic_bitset>
381    *     #include <iostream>
382    *     #include <sstream>
383    *
384    *     using namespace std;
385    *
386    *     int main()
387    *     {
388    *         long         a = 'a';
389    *         dynamic_bitset<> b(a);
390    *
391    *         cout << "b('a') is " << b << endl;
392    *
393    *         ostringstream s;
394    *         s << b;
395    *         string  str = s.str();
396    *         cout << "index 3 in the string is " << str[3] << " but\n"
397    *              << "index 3 in the bitset is " << b[3] << endl;
398    *     }
399    *  @endcode
400    *
401    *  Most of the actual code isn't contained in %dynamic_bitset<>
402    *  itself, but in the base class __dynamic_bitset_base.  The base
403    *  class works with whole words, not with individual bits.  This
404    *  allows us to specialize __dynamic_bitset_base for the important
405    *  special case where the %dynamic_bitset is only a single word.
406    *
407    *  Extra confusion can result due to the fact that the storage for
408    *  __dynamic_bitset_base @e is a vector, and is indexed as such.  This is
409    *  carefully encapsulated.
410    */
411   template<typename _WordT = unsigned long long,
412            typename _Alloc = std::allocator<_WordT>>
413     class dynamic_bitset
414     : private __dynamic_bitset_base<_WordT, _Alloc>
415     {
416       static_assert(std::is_unsigned<_WordT>::value, "template argument "
417                     "_WordT not an unsigned integral type");
419     public:
421       typedef __dynamic_bitset_base<_WordT, _Alloc> _Base;
422       typedef _WordT block_type;
423       typedef _Alloc allocator_type;
424       typedef size_t size_type;
426       static const size_type bits_per_block = __CHAR_BIT__ * sizeof(block_type);
427       // Use this: constexpr size_type std::numeric_limits<size_type>::max().
428       static const size_type npos = static_cast<size_type>(-1);
430     private:
432       //  Clear the unused bits in the uppermost word.
433       void
434       _M_do_sanitize()
435       {
436         size_type __shift = this->_M_Nb % bits_per_block;
437         if (__shift > 0)
438           this->_M_hiword() &= ~((~static_cast<block_type>(0)) << __shift);
439       }
441       //  Set the unused bits in the uppermost word.
442       void
443       _M_do_fill()
444       {
445         size_type __shift = this->_M_Nb % bits_per_block;
446         if (__shift > 0)
447           this->_M_hiword() |= ((~static_cast<block_type>(0)) << __shift);
448       }
450       /**
451        *  These versions of single-bit set, reset, flip, and test
452        *  do no range checking.
453        */
454       dynamic_bitset<_WordT, _Alloc>&
455       _M_unchecked_set(size_type __pos)
456       {
457         this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
458         return *this;
459       }
461       dynamic_bitset<_WordT, _Alloc>&
462       _M_unchecked_set(size_type __pos, int __val)
463       {
464         if (__val)
465           this->_M_getword(__pos) |= _Base::_S_maskbit(__pos);
466         else
467           this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
468         return *this;
469       }
471       dynamic_bitset<_WordT, _Alloc>&
472       _M_unchecked_reset(size_type __pos)
473       {
474         this->_M_getword(__pos) &= ~_Base::_S_maskbit(__pos);
475         return *this;
476       }
478       dynamic_bitset<_WordT, _Alloc>&
479       _M_unchecked_flip(size_type __pos)
480       {
481         this->_M_getword(__pos) ^= _Base::_S_maskbit(__pos);
482         return *this;
483       }
485       bool
486       _M_unchecked_test(size_type __pos) const
487       { return ((this->_M_getword(__pos) & _Base::_S_maskbit(__pos))
488                 != static_cast<_WordT>(0)); }
490       size_type _M_Nb;
492     public:
493       /**
494        *  This encapsulates the concept of a single bit.  An instance
495        *  of this class is a proxy for an actual bit; this way the
496        *  individual bit operations are done as faster word-size
497        *  bitwise instructions.
498        *
499        *  Most users will never need to use this class directly;
500        *  conversions to and from bool are automatic and should be
501        *  transparent.  Overloaded operators help to preserve the
502        *  illusion.
503        *
504        *  (On a typical system, this "bit %reference" is 64 times the
505        *  size of an actual bit.  Ha.)
506        */
507       class reference
508       {
509         friend class dynamic_bitset;
511         block_type *_M_wp;
512         size_type _M_bpos;
514         // left undefined
515         reference();
517       public:
518         reference(dynamic_bitset& __b, size_type __pos)
519         {
520           this->_M_wp = &__b._M_getword(__pos);
521           this->_M_bpos = _Base::_S_whichbit(__pos);
522         }
524         ~reference()
525         { }
527         // For b[i] = __x;
528         reference&
529         operator=(bool __x)
530         {
531           if (__x)
532             *this->_M_wp |= _Base::_S_maskbit(this->_M_bpos);
533           else
534             *this->_M_wp &= ~_Base::_S_maskbit(this->_M_bpos);
535           return *this;
536         }
538         // For b[i] = b[__j];
539         reference&
540         operator=(const reference& __j)
541         {
542           if ((*(__j._M_wp) & _Base::_S_maskbit(__j._M_bpos)))
543             *this->_M_wp |= _Base::_S_maskbit(this->_M_bpos);
544           else
545             *this->_M_wp &= ~_Base::_S_maskbit(this->_M_bpos);
546           return *this;
547         }
549         // Flips the bit
550         bool
551         operator~() const
552         { return (*(_M_wp) & _Base::_S_maskbit(this->_M_bpos)) == 0; }
554         // For __x = b[i];
555         operator bool() const
556         { return (*(this->_M_wp) & _Base::_S_maskbit(this->_M_bpos)) != 0; }
558         // For b[i].flip();
559         reference&
560         flip()
561         {
562           *this->_M_wp ^= _Base::_S_maskbit(this->_M_bpos);
563           return *this;
564         }
565       };
567       friend class reference;
569       typedef bool const_reference;
571       // 23.3.5.1 constructors:
572       /// All bits set to zero.
573       explicit
574       dynamic_bitset(const allocator_type& __alloc = allocator_type())
575       : _Base(__alloc), _M_Nb(0)
576       { }
578       /// Initial bits bitwise-copied from a single word (others set to zero).
579       explicit
580       dynamic_bitset(size_type __nbits, unsigned long long __val = 0ULL,
581                      const allocator_type& __alloc = allocator_type())
582       : _Base(__nbits, __val, __alloc),
583         _M_Nb(__nbits)
584       { }
586       dynamic_bitset(initializer_list<block_type> __il,
587                      const allocator_type& __alloc = allocator_type())
588       : _Base(__alloc), _M_Nb(0)
589       { this->append(__il); }
591       /**
592        *  @brief  Use a subset of a string.
593        *  @param  __str  A string of '0' and '1' characters.
594        *  @param  __pos  Index of the first character in @p __str to use.
595        *  @param  __n    The number of characters to copy.
596        *  @param  __zero The character to use for unset bits.
597        *  @param  __one  The character to use for set bits.
598        *  @param  __alloc An allocator.
599        *  @throw  std::out_of_range  If @p __pos is bigger the size of @p __str.
600        *  @throw  std::invalid_argument  If a character appears in the string
601        *                                 which is neither '0' nor '1'.
602        */
603       template<typename _CharT, typename _Traits, typename _Alloc1>
604         explicit
605         dynamic_bitset(const std::basic_string<_CharT, _Traits, _Alloc1>& __str,
606                        typename basic_string<_CharT,_Traits,_Alloc1>::size_type
607                        __pos = 0,
608                        typename basic_string<_CharT,_Traits,_Alloc1>::size_type
609                        __n = std::basic_string<_CharT, _Traits, _Alloc1>::npos,
610                        _CharT __zero = _CharT('0'), _CharT __one = _CharT('1'),
611                        const allocator_type& __alloc = allocator_type())
612         : _Base(__alloc),
613           _M_Nb(0) // Watch for npos.
614         {
615           if (__pos > __str.size())
616             __throw_out_of_range(__N("dynamic_bitset::bitset initial position "
617                                      "not valid"));
619           // Watch for npos.
620           this->_M_Nb = (__n > __str.size() ? __str.size() - __pos : __n);
621           this->resize(this->_M_Nb);
622           this->_M_copy_from_string(__str, __pos, __n,
623                                     _CharT('0'), _CharT('1'));
624         }
626       /**
627        *  @brief  Construct from a string.
628        *  @param  __str  A string of '0' and '1' characters.
629        *  @param  __alloc An allocator.
630        *  @throw  std::invalid_argument  If a character appears in the string
631        *                                 which is neither '0' nor '1'.
632        */
633       explicit
634       dynamic_bitset(const char* __str,
635                      const allocator_type& __alloc = allocator_type())
636       : _Base(__alloc)
637       {
638         size_t __len = 0;
639         if (__str)
640           while (__str[__len] != '\0')
641             ++__len;
642         this->resize(__len);
643         this->_M_copy_from_ptr<char,std::char_traits<char>>
644                    (__str, __len, 0, __len, '0', '1');
645       }
647       /**
648        *  @brief  Copy constructor.
649        */
650       dynamic_bitset(const dynamic_bitset& __b)
651       : _Base(__b), _M_Nb(__b.size())
652       { }
654       /**
655        *  @brief  Move constructor.
656        */
657       dynamic_bitset(dynamic_bitset&& __b)
658       : _Base(std::forward<_Base>(__b)), _M_Nb(__b.size())
659       { }
661       /**
662        *  @brief  Swap with another bitset.
663        */
664       void
665       swap(dynamic_bitset& __b)
666       {
667         this->_M_swap(__b);
668         std::swap(this->_M_Nb, __b._M_Nb);
669       }
671       /**
672        *  @brief  Assignment.
673        */
674       dynamic_bitset&
675       operator=(const dynamic_bitset& __b)
676       {
677         if (&__b != this)
678           {
679             this->_M_assign(__b);
680             this->_M_Nb = __b._M_Nb;
681           }
682       }
684       /**
685        *  @brief  Move assignment.
686        */
687       dynamic_bitset&
688       operator=(dynamic_bitset&& __b)
689       {
690         this->swap(__b);
691         return *this;
692       }
694       /**
695        *  @brief  Return the allocator for the bitset.
696        */
697       allocator_type
698       get_allocator() const
699       { return this->_M_get_allocator(); }
701       /**
702        *  @brief  Resize the bitset.
703        */
704       void
705       resize(size_type __nbits, bool __value = false)
706       {
707         if (__value)
708           this->_M_do_fill();
709         this->_M_resize(__nbits, __value);
710         this->_M_Nb = __nbits;
711         this->_M_do_sanitize();
712       }
714       /**
715        *  @brief  Clear the bitset.
716        */
717       void
718       clear()
719       {
720         this->_M_clear();
721         this->_M_Nb = 0;
722       }
724       /**
725        *  @brief  Push a bit onto the high end of the bitset.
726        */
727       void
728       push_back(bool __bit)
729       {
730         if (this->size() % bits_per_block == 0)
731           this->_M_do_append_block(block_type(__bit), this->_M_Nb);
732         else
733           this->_M_unchecked_set(this->_M_Nb, __bit);
734         ++this->_M_Nb;
735       }
737       /**
738        *  @brief  Append a block.
739        */
740       void
741       append(block_type __block)
742       {
743         this->_M_do_append_block(__block, this->_M_Nb);
744         this->_M_Nb += bits_per_block;
745       }
747       /**
748        *  @brief
749        */
750       void
751       append(initializer_list<block_type> __il)
752       { this->append(__il.begin(), __il.end()); }
754       /**
755        *  @brief  Append an iterator range of blocks.
756        */
757       template <typename _BlockInputIterator>
758         void
759         append(_BlockInputIterator __first, _BlockInputIterator __last)
760         {
761           for (; __first != __last; ++__first)
762             this->append(*__first);
763         }
765       // 23.3.5.2 dynamic_bitset operations:
766       //@{
767       /**
768        *  @brief  Operations on dynamic_bitsets.
769        *  @param  __rhs  A same-sized dynamic_bitset.
770        *
771        *  These should be self-explanatory.
772        */
773       dynamic_bitset<_WordT, _Alloc>&
774       operator&=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
775       {
776         this->_M_do_and(__rhs);
777         return *this;
778       }
780       dynamic_bitset<_WordT, _Alloc>&
781       operator&=(dynamic_bitset<_WordT, _Alloc>&& __rhs)
782       {
783         this->_M_do_and(std::move(__rhs));
784         return *this;
785       }
787       dynamic_bitset<_WordT, _Alloc>&
788       operator|=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
789       {
790         this->_M_do_or(__rhs);
791         return *this;
792       }
794       dynamic_bitset<_WordT, _Alloc>&
795       operator^=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
796       {
797         this->_M_do_xor(__rhs);
798         return *this;
799       }
801       dynamic_bitset<_WordT, _Alloc>&
802       operator-=(const dynamic_bitset<_WordT, _Alloc>& __rhs)
803       {
804         this->_M_do_dif(__rhs);
805         return *this;
806       }
807       //@}
809       //@{
810       /**
811        *  @brief  Operations on dynamic_bitsets.
812        *  @param  __pos The number of places to shift.
813        *
814        *  These should be self-explanatory.
815        */
816       dynamic_bitset<_WordT, _Alloc>&
817       operator<<=(size_type __pos)
818       {
819         if (__builtin_expect(__pos < this->_M_Nb, 1))
820           {
821             this->_M_do_left_shift(__pos);
822             this->_M_do_sanitize();
823           }
824         else
825           this->_M_do_reset();
826         return *this;
827       }
829       dynamic_bitset<_WordT, _Alloc>&
830       operator>>=(size_type __pos)
831       {
832         if (__builtin_expect(__pos < this->_M_Nb, 1))
833           {
834             this->_M_do_right_shift(__pos);
835             this->_M_do_sanitize();
836           }
837         else
838           this->_M_do_reset();
839         return *this;
840       }
841       //@}
843       // Set, reset, and flip.
844       /**
845        *  @brief Sets every bit to true.
846        */
847       dynamic_bitset<_WordT, _Alloc>&
848       set()
849       {
850         this->_M_do_set();
851         this->_M_do_sanitize();
852         return *this;
853       }
855       /**
856        *  @brief Sets a given bit to a particular value.
857        *  @param  __pos  The index of the bit.
858        *  @param  __val  Either true or false, defaults to true.
859        *  @throw  std::out_of_range  If @a __pos is bigger the size of the %set.
860        */
861       dynamic_bitset<_WordT, _Alloc>&
862       set(size_type __pos, bool __val = true)
863       {
864         if (__pos >= _M_Nb)
865           __throw_out_of_range(__N("dynamic_bitset::set"));
866         return this->_M_unchecked_set(__pos, __val);
867       }
869       /**
870        *  @brief Sets every bit to false.
871        */
872       dynamic_bitset<_WordT, _Alloc>&
873       reset()
874       {
875         this->_M_do_reset();
876         return *this;
877       }
879       /**
880        *  @brief Sets a given bit to false.
881        *  @param  __pos  The index of the bit.
882        *  @throw  std::out_of_range  If @a __pos is bigger the size of the %set.
883        *
884        *  Same as writing @c set(__pos, false).
885        */
886       dynamic_bitset<_WordT, _Alloc>&
887       reset(size_type __pos)
888       {
889         if (__pos >= _M_Nb)
890           __throw_out_of_range(__N("dynamic_bitset::reset"));
891         return this->_M_unchecked_reset(__pos);
892       }
894       /**
895        *  @brief Toggles every bit to its opposite value.
896        */
897       dynamic_bitset<_WordT, _Alloc>&
898       flip()
899       {
900         this->_M_do_flip();
901         this->_M_do_sanitize();
902         return *this;
903       }
905       /**
906        *  @brief Toggles a given bit to its opposite value.
907        *  @param  __pos  The index of the bit.
908        *  @throw  std::out_of_range  If @a __pos is bigger the size of the %set.
909        */
910       dynamic_bitset<_WordT, _Alloc>&
911       flip(size_type __pos)
912       {
913         if (__pos >= _M_Nb)
914           __throw_out_of_range(__N("dynamic_bitset::flip"));
915         return this->_M_unchecked_flip(__pos);
916       }
918       /// See the no-argument flip().
919       dynamic_bitset<_WordT, _Alloc>
920       operator~() const
921       { return dynamic_bitset<_WordT, _Alloc>(*this).flip(); }
923       //@{
924       /**
925        *  @brief  Array-indexing support.
926        *  @param  __pos  Index into the %dynamic_bitset.
927        *  @return A bool for a 'const %dynamic_bitset'.  For non-const
928        *           bitsets, an instance of the reference proxy class.
929        *  @note These operators do no range checking and throw no
930        *         exceptions, as required by DR 11 to the standard.
931        */
932       reference
933       operator[](size_type __pos)
934       { return reference(*this,__pos); }
936       const_reference
937       operator[](size_type __pos) const
938       { return _M_unchecked_test(__pos); }
939       //@}
941       /**
942        *  @brief Returns a numerical interpretation of the %dynamic_bitset.
943        *  @return  The integral equivalent of the bits.
944        *  @throw  std::overflow_error  If there are too many bits to be
945        *                               represented in an @c unsigned @c long.
946        */
947       unsigned long
948       to_ulong() const
949       { return this->_M_do_to_ulong(); }
951       /**
952        *  @brief Returns a numerical interpretation of the %dynamic_bitset.
953        *  @return  The integral equivalent of the bits.
954        *  @throw  std::overflow_error  If there are too many bits to be
955        *                               represented in an @c unsigned @c long.
956        */
957       unsigned long long
958       to_ullong() const
959       { return this->_M_do_to_ullong(); }
961       /**
962        *  @brief Returns a character interpretation of the %dynamic_bitset.
963        *  @return  The string equivalent of the bits.
964        *
965        *  Note the ordering of the bits:  decreasing character positions
966        *  correspond to increasing bit positions (see the main class notes for
967        *  an example).
968        */
969       template<typename _CharT = char,
970                typename _Traits = std::char_traits<_CharT>,
971                typename _Alloc1 = std::allocator<_CharT>>
972         std::basic_string<_CharT, _Traits, _Alloc1>
973         to_string(_CharT __zero = _CharT('0'), _CharT __one = _CharT('1')) const
974         {
975           std::basic_string<_CharT, _Traits, _Alloc1> __result;
976           _M_copy_to_string(__result, __zero, __one);
977           return __result;
978         }
980       // Helper functions for string operations.
981       template<typename _CharT, typename _Traits>
982         void
983         _M_copy_from_ptr(const _CharT*, size_t, size_t, size_t,
984                          _CharT, _CharT);
986       template<typename _CharT, typename _Traits, typename _Alloc1>
987         void
988         _M_copy_from_string(const std::basic_string<_CharT,
989                             _Traits, _Alloc1>& __str, size_t __pos, size_t __n,
990                             _CharT __zero = _CharT('0'),
991                             _CharT __one = _CharT('1'))
992         { _M_copy_from_ptr<_CharT, _Traits>(__str.data(), __str.size(),
993                                             __pos, __n, __zero, __one); }
995       template<typename _CharT, typename _Traits, typename _Alloc1>
996         void
997         _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc1>& __str,
998                           _CharT __zero = _CharT('0'),
999                           _CharT __one = _CharT('1')) const;
1001       /// Returns the number of bits which are set.
1002       size_type
1003       count() const noexcept
1004       { return this->_M_do_count(); }
1006       /// Returns the total number of bits.
1007       size_type
1008       size() const noexcept
1009       { return this->_M_Nb; }
1011       /// Returns the total number of blocks.
1012       size_type
1013       num_blocks() const noexcept
1014       { return this->_M_size(); }
1016       /// Returns true if the dynamic_bitset is empty.
1017       bool
1018       empty() const noexcept
1019       { return (this->_M_Nb == 0); }
1021       /// Returns the maximum size of a dynamic_bitset object having the same
1022       /// type as *this.
1023       /// The real answer is max() * bits_per_block but is likely to overflow.
1024       constexpr size_type
1025       max_size() noexcept
1026       { return std::numeric_limits<block_type>::max(); }
1028       /**
1029        *  @brief Tests the value of a bit.
1030        *  @param  __pos  The index of a bit.
1031        *  @return  The value at @a __pos.
1032        *  @throw  std::out_of_range  If @a __pos is bigger the size of the %set.
1033        */
1034       bool
1035       test(size_type __pos) const
1036       {
1037         if (__pos >= _M_Nb)
1038           __throw_out_of_range(__N("dynamic_bitset::test"));
1039         return _M_unchecked_test(__pos);
1040       }
1042       /**
1043        *  @brief Tests whether all the bits are on.
1044        *  @return  True if all the bits are set.
1045        */
1046       bool
1047       all() const
1048       { return this->_M_are_all_aux() == _M_Nb; }
1050       /**
1051        *  @brief Tests whether any of the bits are on.
1052        *  @return  True if at least one bit is set.
1053        */
1054       bool
1055       any() const
1056       { return this->_M_is_any(); }
1058       /**
1059        *  @brief Tests whether any of the bits are on.
1060        *  @return  True if none of the bits are set.
1061        */
1062       bool
1063       none() const
1064       { return !this->_M_is_any(); }
1066       //@{
1067       /// Self-explanatory.
1068       dynamic_bitset<_WordT, _Alloc>
1069       operator<<(size_type __pos) const
1070       { return dynamic_bitset<_WordT, _Alloc>(*this) <<= __pos; }
1072       dynamic_bitset<_WordT, _Alloc>
1073       operator>>(size_type __pos) const
1074       { return dynamic_bitset<_WordT, _Alloc>(*this) >>= __pos; }
1075       //@}
1077       /**
1078        *  @brief  Finds the index of the first "on" bit.
1079        *  @return  The index of the first bit set, or size() if not found.
1080        *  @sa  find_next
1081        */
1082       size_type
1083       find_first() const
1084       { return this->_M_do_find_first(this->_M_Nb); }
1086       /**
1087        *  @brief  Finds the index of the next "on" bit after prev.
1088        *  @return  The index of the next bit set, or size() if not found.
1089        *  @param  __prev  Where to start searching.
1090        *  @sa  find_first
1091        */
1092       size_type
1093       find_next(size_t __prev) const
1094       { return this->_M_do_find_next(__prev, this->_M_Nb); }
1096       bool
1097       is_subset_of(const dynamic_bitset& __b) const
1098       { return this->_M_is_subset_of(__b); }
1100       bool
1101       is_proper_subset_of(const dynamic_bitset& __b) const
1102       { return this->_M_is_proper_subset_of(__b); }
1104       friend bool
1105       operator==(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1106                  const dynamic_bitset<_WordT, _Alloc>& __rhs)
1107       { return __lhs._M_is_equal(__rhs); }
1109       friend bool
1110       operator<(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1111                 const dynamic_bitset<_WordT, _Alloc>& __rhs)
1112       { return __lhs._M_is_less(__rhs); }
1113     };
1115   template<typename _WordT, typename _Alloc>
1116     template<typename _CharT, typename _Traits, typename _Alloc1>
1117       inline void
1118       dynamic_bitset<_WordT, _Alloc>::
1119       _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc1>& __str,
1120                         _CharT __zero, _CharT __one) const
1121       {
1122         __str.assign(_M_Nb, __zero);
1123         for (size_t __i = _M_Nb; __i > 0; --__i)
1124           if (_M_unchecked_test(__i - 1))
1125             _Traits::assign(__str[_M_Nb - __i], __one);
1126       }
1129   //@{
1130   /// These comparisons for equality/inequality are, well, @e bitwise.
1132   template<typename _WordT, typename _Alloc>
1133     inline bool
1134     operator!=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1135                const dynamic_bitset<_WordT, _Alloc>& __rhs)
1136     { return !(__lhs == __rhs); }
1138   template<typename _WordT, typename _Alloc>
1139     inline bool
1140     operator<=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1141                const dynamic_bitset<_WordT, _Alloc>& __rhs)
1142     { return !(__lhs > __rhs); }
1144   template<typename _WordT, typename _Alloc>
1145     inline bool
1146     operator>(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1147               const dynamic_bitset<_WordT, _Alloc>& __rhs)
1148     { return __rhs < __lhs; }
1150   template<typename _WordT, typename _Alloc>
1151     inline bool
1152     operator>=(const dynamic_bitset<_WordT, _Alloc>& __lhs,
1153                const dynamic_bitset<_WordT, _Alloc>& __rhs)
1154     { return !(__lhs < __rhs); }
1155   //@}
1157   // 23.3.5.3 bitset operations:
1158   //@{
1159   /**
1160    *  @brief  Global bitwise operations on bitsets.
1161    *  @param  __x  A bitset.
1162    *  @param  __y  A bitset of the same size as @a __x.
1163    *  @return  A new bitset.
1164    *
1165    *  These should be self-explanatory.
1166    */
1167   template<typename _WordT, typename _Alloc>
1168     inline dynamic_bitset<_WordT, _Alloc>
1169     operator&(const dynamic_bitset<_WordT, _Alloc>& __x,
1170               const dynamic_bitset<_WordT, _Alloc>& __y)
1171     {
1172       dynamic_bitset<_WordT, _Alloc> __result(__x);
1173       __result &= __y;
1174       return __result;
1175     }
1177   template<typename _WordT, typename _Alloc>
1178     inline dynamic_bitset<_WordT, _Alloc>
1179     operator|(const dynamic_bitset<_WordT, _Alloc>& __x,
1180               const dynamic_bitset<_WordT, _Alloc>& __y)
1181     {
1182       dynamic_bitset<_WordT, _Alloc> __result(__x);
1183       __result |= __y;
1184       return __result;
1185     }
1187   template <typename _WordT, typename _Alloc>
1188     inline dynamic_bitset<_WordT, _Alloc>
1189     operator^(const dynamic_bitset<_WordT, _Alloc>& __x,
1190               const dynamic_bitset<_WordT, _Alloc>& __y)
1191     {
1192       dynamic_bitset<_WordT, _Alloc> __result(__x);
1193       __result ^= __y;
1194       return __result;
1195     }
1197   template <typename _WordT, typename _Alloc>
1198     inline dynamic_bitset<_WordT, _Alloc>
1199     operator-(const dynamic_bitset<_WordT, _Alloc>& __x,
1200               const dynamic_bitset<_WordT, _Alloc>& __y)
1201     {
1202       dynamic_bitset<_WordT, _Alloc> __result(__x);
1203       __result -= __y;
1204       return __result;
1205     }
1206   //@}
1208   /// Stream output operator for dynamic_bitset.
1209   template <typename _CharT, typename _Traits,
1210             typename _WordT, typename _Alloc>
1211     inline std::basic_ostream<_CharT, _Traits>&
1212     operator<<(std::basic_ostream<_CharT, _Traits>& __os,
1213                const dynamic_bitset<_WordT, _Alloc>& __x)
1214     {
1215       std::basic_string<_CharT, _Traits> __tmp;
1217       const ctype<_CharT>& __ct = use_facet<ctype<_CharT>>(__os.getloc());
1218       __x._M_copy_to_string(__tmp, __ct.widen('0'), __ct.widen('1'));
1219       return __os << __tmp;
1220     }
1221   /**
1222    *  @}
1223    */
1224 } // tr2
1226 _GLIBCXX_END_NAMESPACE_VERSION
1227 } // std
1229 #include <tr2/dynamic_bitset.tcc>
1231 #endif /* _GLIBCXX_TR2_DYNAMIC_BITSET */