Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===---------------------------- bitset ----------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_BITSET |
| 12 | #define _LIBCPP_BITSET |
| 13 | |
| 14 | /* |
| 15 | bitset synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | namespace std { |
| 21 | |
| 22 | template <size_t N> |
| 23 | class bitset |
| 24 | { |
| 25 | public: |
| 26 | // bit reference: |
| 27 | class reference |
| 28 | { |
| 29 | friend class bitset; |
| 30 | reference(); |
| 31 | public: |
| 32 | ~reference(); |
| 33 | reference& operator=(bool x); // for b[i] = x; |
| 34 | reference& operator=(const reference&); // for b[i] = b[j]; |
| 35 | bool operator~() const; // flips the bit |
| 36 | operator bool() const; // for x = b[i]; |
| 37 | reference& flip(); // for b[i].flip(); |
| 38 | }; |
| 39 | |
| 40 | // 23.3.5.1 constructors: |
| 41 | constexpr bitset(); |
| 42 | constexpr bitset(unsigned long long val); |
| 43 | explicit bitset( const char* str ); |
| 44 | template<class charT, class traits, class Allocator> |
| 45 | explicit bitset(const basic_string<charT,traits,Allocator>& str, |
| 46 | typename basic_string<charT,traits,Allocator>::size_type pos = 0, |
| 47 | typename basic_string<charT,traits,Allocator>::size_type n = |
| 48 | basic_string<charT,traits,Allocator>::npos, |
| 49 | charT zero = charT('0'), charT one = charT('1')); |
| 50 | |
| 51 | // 23.3.5.2 bitset operations: |
| 52 | bitset& operator&=(const bitset& rhs); |
| 53 | bitset& operator|=(const bitset& rhs); |
| 54 | bitset& operator^=(const bitset& rhs); |
| 55 | bitset& operator<<=(size_t pos); |
| 56 | bitset& operator>>=(size_t pos); |
| 57 | bitset& set(); |
| 58 | bitset& set(size_t pos, bool val = true); |
| 59 | bitset& reset(); |
| 60 | bitset& reset(size_t pos); |
| 61 | bitset operator~() const; |
| 62 | bitset& flip(); |
| 63 | bitset& flip(size_t pos); |
| 64 | |
| 65 | // element access: |
| 66 | constexpr bool operator[](size_t pos) const; // for b[i]; |
| 67 | reference operator[](size_t pos); // for b[i]; |
| 68 | unsigned long to_ulong() const; |
| 69 | unsigned long long to_ullong() const; |
| 70 | template <class charT, class traits, class Allocator> |
| 71 | basic_string<charT, traits, Allocator> to_string(charT zero = charT('0'), charT one = charT('1')) const; |
| 72 | template <class charT, class traits> |
| 73 | basic_string<charT, traits, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const; |
| 74 | template <class charT> |
| 75 | basic_string<charT, char_traits<charT>, allocator<charT> > to_string(charT zero = charT('0'), charT one = charT('1')) const; |
| 76 | basic_string<char, char_traits<char>, allocator<char> > to_string(char zero = '0', char one = '1') const; |
| 77 | size_t count() const; |
| 78 | constexpr size_t size() const; |
| 79 | bool operator==(const bitset& rhs) const; |
| 80 | bool operator!=(const bitset& rhs) const; |
| 81 | bool test(size_t pos) const; |
| 82 | bool all() const; |
| 83 | bool any() const; |
| 84 | bool none() const; |
| 85 | bitset operator<<(size_t pos) const; |
| 86 | bitset operator>>(size_t pos) const; |
| 87 | }; |
| 88 | |
| 89 | // 23.3.5.3 bitset operators: |
| 90 | template <size_t N> |
| 91 | bitset<N> operator&(const bitset<N>&, const bitset<N>&); |
| 92 | |
| 93 | template <size_t N> |
| 94 | bitset<N> operator|(const bitset<N>&, const bitset<N>&); |
| 95 | |
| 96 | template <size_t N> |
| 97 | bitset<N> operator^(const bitset<N>&, const bitset<N>&); |
| 98 | |
| 99 | template <class charT, class traits, size_t N> |
| 100 | basic_istream<charT, traits>& |
| 101 | operator>>(basic_istream<charT, traits>& is, bitset<N>& x); |
| 102 | |
| 103 | template <class charT, class traits, size_t N> |
| 104 | basic_ostream<charT, traits>& |
| 105 | operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x); |
| 106 | |
| 107 | template <size_t N> struct hash<std::bitset<N>>; |
| 108 | |
| 109 | } // std |
| 110 | |
| 111 | */ |
| 112 | |
| 113 | #pragma GCC system_header |
| 114 | |
| 115 | #include <__config> |
| 116 | #include <__bit_reference> |
| 117 | #include <cstddef> |
| 118 | #include <climits> |
| 119 | #include <string> |
| 120 | #include <stdexcept> |
| 121 | #include <iosfwd> |
| 122 | #include <__functional_base> |
| 123 | #if defined(_LIBCPP_NO_EXCEPTIONS) |
| 124 | #include <cassert> |
| 125 | #endif |
| 126 | |
| 127 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 128 | |
| 129 | template <size_t _N_words, size_t _Size> |
| 130 | class __bitset |
| 131 | { |
| 132 | public: |
| 133 | typedef ptrdiff_t difference_type; |
| 134 | typedef size_t size_type; |
| 135 | protected: |
| 136 | typedef __bitset __self; |
| 137 | typedef size_type __storage_type; |
| 138 | typedef __storage_type* __storage_pointer; |
| 139 | typedef const __storage_type* __const_storage_pointer; |
| 140 | static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT); |
| 141 | |
| 142 | friend class __bit_reference<__bitset>; |
| 143 | friend class __bit_const_reference<__bitset>; |
| 144 | friend class __bit_iterator<__bitset, false>; |
| 145 | friend class __bit_iterator<__bitset, true>; |
| 146 | friend class __bit_array<__bitset>; |
| 147 | |
| 148 | __storage_type __first_[_N_words]; |
| 149 | |
| 150 | typedef __bit_reference<__bitset> reference; |
| 151 | typedef __bit_const_reference<__bitset> const_reference; |
| 152 | typedef __bit_iterator<__bitset, false> iterator; |
| 153 | typedef __bit_iterator<__bitset, true> const_iterator; |
| 154 | |
| 155 | __bitset(); |
| 156 | explicit __bitset(unsigned long long __v); |
| 157 | |
| 158 | _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos) |
| 159 | {return reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);} |
| 160 | _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t __pos) const |
| 161 | {return const_reference(__first_ + __pos / __bits_per_word, __storage_type(1) << __pos % __bits_per_word);} |
| 162 | _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos) |
| 163 | {return iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);} |
| 164 | _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const |
| 165 | {return const_iterator(__first_ + __pos / __bits_per_word, __pos % __bits_per_word);} |
| 166 | |
| 167 | void operator&=(const __bitset& __v); |
| 168 | void operator|=(const __bitset& __v); |
| 169 | void operator^=(const __bitset& __v); |
| 170 | |
| 171 | void flip(); |
| 172 | _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const |
| 173 | {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());} |
| 174 | _LIBCPP_INLINE_VISIBILITY unsigned long long to_ullong() const |
| 175 | {return to_ullong(integral_constant<bool, _Size < sizeof(unsigned long long) * CHAR_BIT>());} |
| 176 | |
| 177 | bool all() const; |
| 178 | bool any() const; |
| 179 | size_t __hash_code() const; |
| 180 | private: |
| 181 | void __init(unsigned long long __v, false_type); |
| 182 | void __init(unsigned long long __v, true_type); |
| 183 | unsigned long to_ulong(false_type) const; |
| 184 | unsigned long to_ulong(true_type) const; |
| 185 | unsigned long long to_ullong(false_type) const; |
| 186 | unsigned long long to_ullong(true_type) const; |
| 187 | unsigned long long to_ullong(true_type, false_type) const; |
| 188 | unsigned long long to_ullong(true_type, true_type) const; |
| 189 | }; |
| 190 | |
| 191 | template <size_t _N_words, size_t _Size> |
| 192 | inline _LIBCPP_INLINE_VISIBILITY |
| 193 | __bitset<_N_words, _Size>::__bitset() |
| 194 | { |
| 195 | _STD::fill_n(__first_, _N_words, __storage_type(0)); |
| 196 | } |
| 197 | |
| 198 | template <size_t _N_words, size_t _Size> |
| 199 | void |
| 200 | __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) |
| 201 | { |
| 202 | __storage_type __t[sizeof(unsigned long long) / sizeof(__storage_type)]; |
| 203 | for (size_t __i = 0; __i < sizeof(__t)/sizeof(__t[0]); ++__i, __v >>= __bits_per_word) |
| 204 | __t[__i] = static_cast<__storage_type>(__v); |
| 205 | _STD::copy(__t, __t + sizeof(__t)/sizeof(__t[0]), __first_); |
| 206 | _STD::fill(__first_ + sizeof(__t)/sizeof(__t[0]), __first_ + sizeof(__first_)/sizeof(__first_[0]), |
| 207 | __storage_type(0)); |
| 208 | } |
| 209 | |
| 210 | template <size_t _N_words, size_t _Size> |
| 211 | inline _LIBCPP_INLINE_VISIBILITY |
| 212 | void |
| 213 | __bitset<_N_words, _Size>::__init(unsigned long long __v, true_type) |
| 214 | { |
| 215 | __first_[0] = __v; |
| 216 | _STD::fill(__first_ + 1, __first_ + sizeof(__first_)/sizeof(__first_[0]), __storage_type(0)); |
| 217 | } |
| 218 | |
| 219 | template <size_t _N_words, size_t _Size> |
| 220 | inline _LIBCPP_INLINE_VISIBILITY |
| 221 | __bitset<_N_words, _Size>::__bitset(unsigned long long __v) |
| 222 | { |
| 223 | __init(__v, integral_constant<bool, sizeof(unsigned long long) == sizeof(__storage_type)>()); |
| 224 | } |
| 225 | |
| 226 | template <size_t _N_words, size_t _Size> |
| 227 | inline _LIBCPP_INLINE_VISIBILITY |
| 228 | void |
| 229 | __bitset<_N_words, _Size>::operator&=(const __bitset& __v) |
| 230 | { |
| 231 | for (size_type __i = 0; __i < _N_words; ++__i) |
| 232 | __first_[__i] &= __v.__first_[__i]; |
| 233 | } |
| 234 | |
| 235 | template <size_t _N_words, size_t _Size> |
| 236 | inline _LIBCPP_INLINE_VISIBILITY |
| 237 | void |
| 238 | __bitset<_N_words, _Size>::operator|=(const __bitset& __v) |
| 239 | { |
| 240 | for (size_type __i = 0; __i < _N_words; ++__i) |
| 241 | __first_[__i] |= __v.__first_[__i]; |
| 242 | } |
| 243 | |
| 244 | template <size_t _N_words, size_t _Size> |
| 245 | inline _LIBCPP_INLINE_VISIBILITY |
| 246 | void |
| 247 | __bitset<_N_words, _Size>::operator^=(const __bitset& __v) |
| 248 | { |
| 249 | for (size_type __i = 0; __i < _N_words; ++__i) |
| 250 | __first_[__i] ^= __v.__first_[__i]; |
| 251 | } |
| 252 | |
| 253 | template <size_t _N_words, size_t _Size> |
| 254 | void |
| 255 | __bitset<_N_words, _Size>::flip() |
| 256 | { |
| 257 | // do middle whole words |
| 258 | size_type __n = _Size; |
| 259 | __storage_pointer __p = __first_; |
| 260 | for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word) |
| 261 | *__p = ~*__p; |
| 262 | // do last partial word |
| 263 | if (__n > 0) |
| 264 | { |
| 265 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n); |
| 266 | __storage_type __b = *__p & __m; |
| 267 | *__p &= ~__m; |
| 268 | *__p |= ~__b & __m; |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | template <size_t _N_words, size_t _Size> |
| 273 | unsigned long |
| 274 | __bitset<_N_words, _Size>::to_ulong(false_type) const |
| 275 | { |
| 276 | const_iterator __e = __make_iter(_Size); |
| 277 | const_iterator __i = _STD::find(__make_iter(sizeof(unsigned long) * CHAR_BIT), __e, true); |
| 278 | if (__i != __e) |
| 279 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 280 | throw overflow_error("bitset to_ulong overflow error"); |
| 281 | #else |
| 282 | assert(!"bitset to_ulong overflow error"); |
| 283 | #endif |
| 284 | return __first_[0]; |
| 285 | } |
| 286 | |
| 287 | template <size_t _N_words, size_t _Size> |
| 288 | inline _LIBCPP_INLINE_VISIBILITY |
| 289 | unsigned long |
| 290 | __bitset<_N_words, _Size>::to_ulong(true_type) const |
| 291 | { |
| 292 | return __first_[0]; |
| 293 | } |
| 294 | |
| 295 | template <size_t _N_words, size_t _Size> |
| 296 | unsigned long long |
| 297 | __bitset<_N_words, _Size>::to_ullong(false_type) const |
| 298 | { |
| 299 | const_iterator __e = __make_iter(_Size); |
| 300 | const_iterator __i = _STD::find(__make_iter(sizeof(unsigned long long) * CHAR_BIT), __e, true); |
| 301 | if (__i != __e) |
| 302 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 303 | throw overflow_error("bitset to_ullong overflow error"); |
| 304 | #else |
| 305 | assert(!"bitset to_ullong overflow error"); |
| 306 | #endif |
| 307 | return to_ullong(true_type()); |
| 308 | } |
| 309 | |
| 310 | template <size_t _N_words, size_t _Size> |
| 311 | inline _LIBCPP_INLINE_VISIBILITY |
| 312 | unsigned long long |
| 313 | __bitset<_N_words, _Size>::to_ullong(true_type) const |
| 314 | { |
| 315 | return to_ullong(true_type(), integral_constant<bool, sizeof(__storage_type) < sizeof(unsigned long long)>()); |
| 316 | } |
| 317 | |
| 318 | template <size_t _N_words, size_t _Size> |
| 319 | inline _LIBCPP_INLINE_VISIBILITY |
| 320 | unsigned long long |
| 321 | __bitset<_N_words, _Size>::to_ullong(true_type, false_type) const |
| 322 | { |
| 323 | return __first_[0]; |
| 324 | } |
| 325 | |
| 326 | template <size_t _N_words, size_t _Size> |
| 327 | unsigned long long |
| 328 | __bitset<_N_words, _Size>::to_ullong(true_type, true_type) const |
| 329 | { |
| 330 | unsigned long long __r = __first_[0]; |
| 331 | for (std::size_t __i = 1; __i < sizeof(unsigned long long) / sizeof(__storage_type); ++__i) |
| 332 | __r |= static_cast<unsigned long long>(__first_[__i]) << (sizeof(__storage_type) * CHAR_BIT); |
| 333 | return __r; |
| 334 | } |
| 335 | |
| 336 | template <size_t _N_words, size_t _Size> |
| 337 | bool |
| 338 | __bitset<_N_words, _Size>::all() const |
| 339 | { |
| 340 | // do middle whole words |
| 341 | size_type __n = _Size; |
| 342 | __const_storage_pointer __p = __first_; |
| 343 | for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word) |
| 344 | if (~*__p) |
| 345 | return false; |
| 346 | // do last partial word |
| 347 | if (__n > 0) |
| 348 | { |
| 349 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n); |
| 350 | if (~*__p & __m) |
| 351 | return false; |
| 352 | } |
| 353 | return true; |
| 354 | } |
| 355 | |
| 356 | template <size_t _N_words, size_t _Size> |
| 357 | bool |
| 358 | __bitset<_N_words, _Size>::any() const |
| 359 | { |
| 360 | // do middle whole words |
| 361 | size_type __n = _Size; |
| 362 | __const_storage_pointer __p = __first_; |
| 363 | for (; __n >= __bits_per_word; ++__p, __n -= __bits_per_word) |
| 364 | if (*__p) |
| 365 | return true; |
| 366 | // do last partial word |
| 367 | if (__n > 0) |
| 368 | { |
| 369 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - __n); |
| 370 | if (*__p & __m) |
| 371 | return true; |
| 372 | } |
| 373 | return false; |
| 374 | } |
| 375 | |
| 376 | template <size_t _N_words, size_t _Size> |
| 377 | inline _LIBCPP_INLINE_VISIBILITY |
| 378 | size_t |
| 379 | __bitset<_N_words, _Size>::__hash_code() const |
| 380 | { |
| 381 | size_t __h = 0; |
| 382 | for (size_type __i = 0; __i < _N_words; ++__i) |
| 383 | __h ^= __first_[__i]; |
| 384 | return __h; |
| 385 | } |
| 386 | |
| 387 | template <size_t _Size> |
| 388 | class __bitset<1, _Size> |
| 389 | { |
| 390 | public: |
| 391 | typedef ptrdiff_t difference_type; |
| 392 | typedef size_t size_type; |
| 393 | protected: |
| 394 | typedef __bitset __self; |
| 395 | typedef size_type __storage_type; |
| 396 | typedef __storage_type* __storage_pointer; |
| 397 | typedef const __storage_type* __const_storage_pointer; |
| 398 | static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT); |
| 399 | |
| 400 | friend class __bit_reference<__bitset>; |
| 401 | friend class __bit_const_reference<__bitset>; |
| 402 | friend class __bit_iterator<__bitset, false>; |
| 403 | friend class __bit_iterator<__bitset, true>; |
| 404 | friend class __bit_array<__bitset>; |
| 405 | |
| 406 | __storage_type __first_; |
| 407 | |
| 408 | typedef __bit_reference<__bitset> reference; |
| 409 | typedef __bit_const_reference<__bitset> const_reference; |
| 410 | typedef __bit_iterator<__bitset, false> iterator; |
| 411 | typedef __bit_iterator<__bitset, true> const_iterator; |
| 412 | |
| 413 | __bitset(); |
| 414 | explicit __bitset(unsigned long long __v); |
| 415 | |
| 416 | _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos) |
| 417 | {return reference(&__first_, __storage_type(1) << __pos);} |
| 418 | _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t __pos) const |
| 419 | {return const_reference(&__first_, __storage_type(1) << __pos);} |
| 420 | _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos) |
| 421 | {return iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);} |
| 422 | _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const |
| 423 | {return const_iterator(&__first_ + __pos / __bits_per_word, __pos % __bits_per_word);} |
| 424 | |
| 425 | void operator&=(const __bitset& __v); |
| 426 | void operator|=(const __bitset& __v); |
| 427 | void operator^=(const __bitset& __v); |
| 428 | |
| 429 | void flip(); |
| 430 | |
| 431 | unsigned long to_ulong() const; |
| 432 | unsigned long long to_ullong() const; |
| 433 | |
| 434 | bool all() const; |
| 435 | bool any() const; |
| 436 | |
| 437 | size_t __hash_code() const; |
| 438 | }; |
| 439 | |
| 440 | template <size_t _Size> |
| 441 | inline _LIBCPP_INLINE_VISIBILITY |
| 442 | __bitset<1, _Size>::__bitset() |
| 443 | : __first_(0) |
| 444 | { |
| 445 | } |
| 446 | |
| 447 | template <size_t _Size> |
| 448 | inline _LIBCPP_INLINE_VISIBILITY |
| 449 | __bitset<1, _Size>::__bitset(unsigned long long __v) |
| 450 | : __first_(static_cast<__storage_type>(__v)) |
| 451 | { |
| 452 | } |
| 453 | |
| 454 | template <size_t _Size> |
| 455 | inline _LIBCPP_INLINE_VISIBILITY |
| 456 | void |
| 457 | __bitset<1, _Size>::operator&=(const __bitset& __v) |
| 458 | { |
| 459 | __first_ &= __v.__first_; |
| 460 | } |
| 461 | |
| 462 | template <size_t _Size> |
| 463 | inline _LIBCPP_INLINE_VISIBILITY |
| 464 | void |
| 465 | __bitset<1, _Size>::operator|=(const __bitset& __v) |
| 466 | { |
| 467 | __first_ |= __v.__first_; |
| 468 | } |
| 469 | |
| 470 | template <size_t _Size> |
| 471 | inline _LIBCPP_INLINE_VISIBILITY |
| 472 | void |
| 473 | __bitset<1, _Size>::operator^=(const __bitset& __v) |
| 474 | { |
| 475 | __first_ ^= __v.__first_; |
| 476 | } |
| 477 | |
| 478 | template <size_t _Size> |
| 479 | inline _LIBCPP_INLINE_VISIBILITY |
| 480 | void |
| 481 | __bitset<1, _Size>::flip() |
| 482 | { |
| 483 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size); |
| 484 | __first_ = ~__first_; |
| 485 | __first_ &= __m; |
| 486 | } |
| 487 | |
| 488 | template <size_t _Size> |
| 489 | inline _LIBCPP_INLINE_VISIBILITY |
| 490 | unsigned long |
| 491 | __bitset<1, _Size>::to_ulong() const |
| 492 | { |
| 493 | return __first_; |
| 494 | } |
| 495 | |
| 496 | template <size_t _Size> |
| 497 | inline _LIBCPP_INLINE_VISIBILITY |
| 498 | unsigned long long |
| 499 | __bitset<1, _Size>::to_ullong() const |
| 500 | { |
| 501 | return __first_; |
| 502 | } |
| 503 | |
| 504 | template <size_t _Size> |
| 505 | inline _LIBCPP_INLINE_VISIBILITY |
| 506 | bool |
| 507 | __bitset<1, _Size>::all() const |
| 508 | { |
| 509 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size); |
| 510 | return !(~__first_ & __m); |
| 511 | } |
| 512 | |
| 513 | template <size_t _Size> |
| 514 | inline _LIBCPP_INLINE_VISIBILITY |
| 515 | bool |
| 516 | __bitset<1, _Size>::any() const |
| 517 | { |
| 518 | __storage_type __m = ~__storage_type(0) >> (__bits_per_word - _Size); |
| 519 | return __first_ & __m; |
| 520 | } |
| 521 | |
| 522 | template <size_t _Size> |
| 523 | inline _LIBCPP_INLINE_VISIBILITY |
| 524 | size_t |
| 525 | __bitset<1, _Size>::__hash_code() const |
| 526 | { |
| 527 | return __first_; |
| 528 | } |
| 529 | |
| 530 | template <> |
| 531 | class __bitset<0, 0> |
| 532 | { |
| 533 | public: |
| 534 | typedef ptrdiff_t difference_type; |
| 535 | typedef size_t size_type; |
| 536 | protected: |
| 537 | typedef __bitset __self; |
| 538 | typedef size_type __storage_type; |
| 539 | typedef __storage_type* __storage_pointer; |
| 540 | typedef const __storage_type* __const_storage_pointer; |
| 541 | static const unsigned __bits_per_word = static_cast<unsigned>(sizeof(__storage_type) * CHAR_BIT); |
| 542 | |
| 543 | friend class __bit_reference<__bitset>; |
| 544 | friend class __bit_const_reference<__bitset>; |
| 545 | friend class __bit_iterator<__bitset, false>; |
| 546 | friend class __bit_iterator<__bitset, true>; |
| 547 | friend class __bit_array<__bitset>; |
| 548 | |
| 549 | typedef __bit_reference<__bitset> reference; |
| 550 | typedef __bit_const_reference<__bitset> const_reference; |
| 551 | typedef __bit_iterator<__bitset, false> iterator; |
| 552 | typedef __bit_iterator<__bitset, true> const_iterator; |
| 553 | |
| 554 | __bitset(); |
| 555 | explicit __bitset(unsigned long long); |
| 556 | |
| 557 | _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t) |
| 558 | {return reference(0, 1);} |
| 559 | _LIBCPP_INLINE_VISIBILITY const_reference __make_ref(size_t) const |
| 560 | {return const_reference(0, 1);} |
| 561 | _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos) |
| 562 | {return iterator(0, 0);} |
| 563 | _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const |
| 564 | {return const_iterator(0, 0);} |
| 565 | |
| 566 | _LIBCPP_INLINE_VISIBILITY void operator&=(const __bitset&) {} |
| 567 | _LIBCPP_INLINE_VISIBILITY void operator|=(const __bitset&) {} |
| 568 | _LIBCPP_INLINE_VISIBILITY void operator^=(const __bitset&) {} |
| 569 | |
| 570 | _LIBCPP_INLINE_VISIBILITY void flip() {} |
| 571 | |
| 572 | _LIBCPP_INLINE_VISIBILITY unsigned long to_ulong() const {return 0;} |
| 573 | _LIBCPP_INLINE_VISIBILITY unsigned long long to_ullong() const {return 0;} |
| 574 | |
| 575 | _LIBCPP_INLINE_VISIBILITY bool all() const {return true;} |
| 576 | _LIBCPP_INLINE_VISIBILITY bool any() const {return false;} |
| 577 | |
| 578 | _LIBCPP_INLINE_VISIBILITY size_t __hash_code() const {return 0;} |
| 579 | }; |
| 580 | |
| 581 | inline _LIBCPP_INLINE_VISIBILITY |
| 582 | __bitset<0, 0>::__bitset() |
| 583 | { |
| 584 | } |
| 585 | |
| 586 | inline _LIBCPP_INLINE_VISIBILITY |
| 587 | __bitset<0, 0>::__bitset(unsigned long long) |
| 588 | { |
| 589 | } |
| 590 | |
| 591 | template <size_t _Size> class bitset; |
| 592 | template <size_t _Size> struct hash<bitset<_Size> >; |
| 593 | |
| 594 | template <size_t _Size> |
| 595 | class bitset |
| 596 | : private __bitset<_Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1, _Size> |
| 597 | { |
| 598 | static const unsigned __n_words = _Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1; |
| 599 | typedef __bitset<__n_words, _Size> base; |
| 600 | |
| 601 | public: |
| 602 | typedef typename base::reference reference; |
| 603 | typedef typename base::const_reference const_reference; |
| 604 | |
| 605 | // 23.3.5.1 constructors: |
| 606 | /*constexpr*/ _LIBCPP_INLINE_VISIBILITY bitset() {} |
| 607 | /*constexpr*/ _LIBCPP_INLINE_VISIBILITY bitset(unsigned long long __v) : base(__v) {} |
| 608 | explicit bitset(const char* __str); |
| 609 | template<class _CharT, class _Traits, class _Allocator> |
| 610 | explicit bitset(const basic_string<_CharT,_Traits,_Allocator>& __str, |
| 611 | typename basic_string<_CharT,_Traits,_Allocator>::size_type __pos = 0, |
| 612 | typename basic_string<_CharT,_Traits,_Allocator>::size_type __n = |
| 613 | (basic_string<_CharT,_Traits,_Allocator>::npos), |
| 614 | _CharT __zero = _CharT('0'), _CharT __one = _CharT('1')); |
| 615 | |
| 616 | // 23.3.5.2 bitset operations: |
| 617 | bitset& operator&=(const bitset& __rhs); |
| 618 | bitset& operator|=(const bitset& __rhs); |
| 619 | bitset& operator^=(const bitset& __rhs); |
| 620 | bitset& operator<<=(size_t __pos); |
| 621 | bitset& operator>>=(size_t __pos); |
| 622 | bitset& set(); |
| 623 | bitset& set(size_t __pos, bool __val = true); |
| 624 | bitset& reset(); |
| 625 | bitset& reset(size_t __pos); |
| 626 | bitset operator~() const; |
| 627 | bitset& flip(); |
| 628 | bitset& flip(size_t __pos); |
| 629 | |
| 630 | // element access: |
| 631 | _LIBCPP_INLINE_VISIBILITY const_reference operator[](size_t __p) const {return base::__make_ref(__p);} |
| 632 | _LIBCPP_INLINE_VISIBILITY reference operator[](size_t __p) {return base::__make_ref(__p);} |
| 633 | unsigned long to_ulong() const; |
| 634 | unsigned long long to_ullong() const; |
| 635 | template <class _CharT, class _Traits, class _Allocator> |
| 636 | basic_string<_CharT, _Traits, _Allocator> to_string(_CharT __zero = _CharT('0'), |
| 637 | _CharT __one = _CharT('1')) const; |
| 638 | template <class _CharT, class _Traits> |
| 639 | basic_string<_CharT, _Traits, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'), |
| 640 | _CharT __one = _CharT('1')) const; |
| 641 | template <class _CharT> |
| 642 | basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'), |
| 643 | _CharT __one = _CharT('1')) const; |
| 644 | basic_string<char, char_traits<char>, allocator<char> > to_string(char __zero = '0', |
| 645 | char __one = '1') const; |
| 646 | size_t count() const; |
| 647 | /*constexpr*/ _LIBCPP_INLINE_VISIBILITY size_t size() const {return _Size;} |
| 648 | bool operator==(const bitset& __rhs) const; |
| 649 | bool operator!=(const bitset& __rhs) const; |
| 650 | bool test(size_t __pos) const; |
| 651 | bool all() const; |
| 652 | bool any() const; |
| 653 | _LIBCPP_INLINE_VISIBILITY bool none() const {return !any();} |
| 654 | bitset operator<<(size_t __pos) const; |
| 655 | bitset operator>>(size_t __pos) const; |
| 656 | |
| 657 | private: |
| 658 | |
| 659 | size_t __hash_code() const {return base::__hash_code();} |
| 660 | |
| 661 | friend struct hash<bitset>; |
| 662 | }; |
| 663 | |
| 664 | template <size_t _Size> |
| 665 | bitset<_Size>::bitset(const char* __str) |
| 666 | { |
| 667 | size_t __rlen = strlen(__str); |
| 668 | for (size_t __i = 0; __i < __rlen; ++__i) |
| 669 | if (__str[__i] != '0' && __str[__i] != '1') |
| 670 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 671 | throw invalid_argument("bitset string ctor has invalid argument"); |
| 672 | #else |
| 673 | assert(!"bitset string ctor has invalid argument"); |
| 674 | #endif |
| 675 | size_t _M = _STD::min(__rlen, _Size); |
| 676 | size_t __i = 0; |
| 677 | for (; __i < _M; ++__i) |
| 678 | { |
| 679 | switch (__str[_M - 1 - __i]) |
| 680 | { |
| 681 | case '0': |
| 682 | (*this)[__i] = false; |
| 683 | break; |
| 684 | case '1': |
| 685 | (*this)[__i] = true; |
| 686 | break; |
| 687 | } |
| 688 | } |
| 689 | _STD::fill(base::__make_iter(__i), base::__make_iter(_Size), false); |
| 690 | } |
| 691 | |
| 692 | template <size_t _Size> |
| 693 | template<class _CharT, class _Traits, class _Allocator> |
| 694 | bitset<_Size>::bitset(const basic_string<_CharT,_Traits,_Allocator>& __str, |
| 695 | typename basic_string<_CharT,_Traits,_Allocator>::size_type __pos, |
| 696 | typename basic_string<_CharT,_Traits,_Allocator>::size_type __n, |
| 697 | _CharT __zero, _CharT __one) |
| 698 | { |
| 699 | if (__pos > __str.size()) |
| 700 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 701 | throw out_of_range("bitset string pos out of range"); |
| 702 | #else |
| 703 | assert(!"bitset string pos out of range"); |
| 704 | #endif |
| 705 | size_t __rlen = _STD::min(__n, __str.size() - __pos); |
| 706 | for (size_t __i = __pos; __i < __pos + __rlen; ++__i) |
| 707 | if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one)) |
| 708 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 709 | throw invalid_argument("bitset string ctor has invalid argument"); |
| 710 | #else |
| 711 | assert(!"bitset string ctor has invalid argument"); |
| 712 | #endif |
| 713 | size_t _M = _STD::min(__rlen, _Size); |
| 714 | size_t __i = 0; |
| 715 | for (; __i < _M; ++__i) |
| 716 | { |
| 717 | _CharT __c = __str[__pos + _M - 1 - __i]; |
| 718 | if (_Traits::eq(__c, __zero)) |
| 719 | (*this)[__i] = false; |
| 720 | else |
| 721 | (*this)[__i] = true; |
| 722 | } |
| 723 | _STD::fill(base::__make_iter(__i), base::__make_iter(_Size), false); |
| 724 | } |
| 725 | |
| 726 | template <size_t _Size> |
| 727 | inline _LIBCPP_INLINE_VISIBILITY |
| 728 | bitset<_Size>& |
| 729 | bitset<_Size>::operator&=(const bitset& __rhs) |
| 730 | { |
| 731 | base::operator&=(__rhs); |
| 732 | return *this; |
| 733 | } |
| 734 | |
| 735 | template <size_t _Size> |
| 736 | inline _LIBCPP_INLINE_VISIBILITY |
| 737 | bitset<_Size>& |
| 738 | bitset<_Size>::operator|=(const bitset& __rhs) |
| 739 | { |
| 740 | base::operator|=(__rhs); |
| 741 | return *this; |
| 742 | } |
| 743 | |
| 744 | template <size_t _Size> |
| 745 | inline _LIBCPP_INLINE_VISIBILITY |
| 746 | bitset<_Size>& |
| 747 | bitset<_Size>::operator^=(const bitset& __rhs) |
| 748 | { |
| 749 | base::operator^=(__rhs); |
| 750 | return *this; |
| 751 | } |
| 752 | |
| 753 | template <size_t _Size> |
| 754 | bitset<_Size>& |
| 755 | bitset<_Size>::operator<<=(size_t __pos) |
| 756 | { |
| 757 | __pos = _STD::min(__pos, _Size); |
| 758 | _STD::copy_backward(base::__make_iter(0), base::__make_iter(_Size - __pos), base::__make_iter(_Size)); |
| 759 | _STD::fill_n(base::__make_iter(0), __pos, false); |
| 760 | return *this; |
| 761 | } |
| 762 | |
| 763 | template <size_t _Size> |
| 764 | bitset<_Size>& |
| 765 | bitset<_Size>::operator>>=(size_t __pos) |
| 766 | { |
| 767 | __pos = _STD::min(__pos, _Size); |
| 768 | _STD::copy(base::__make_iter(__pos), base::__make_iter(_Size), base::__make_iter(0)); |
| 769 | _STD::fill_n(base::__make_iter(_Size - __pos), __pos, false); |
| 770 | return *this; |
| 771 | } |
| 772 | |
| 773 | template <size_t _Size> |
| 774 | inline _LIBCPP_INLINE_VISIBILITY |
| 775 | bitset<_Size>& |
| 776 | bitset<_Size>::set() |
| 777 | { |
| 778 | _STD::fill_n(base::__make_iter(0), _Size, true); |
| 779 | return *this; |
| 780 | } |
| 781 | |
| 782 | template <size_t _Size> |
| 783 | bitset<_Size>& |
| 784 | bitset<_Size>::set(size_t __pos, bool __val) |
| 785 | { |
| 786 | if (__pos >= _Size) |
| 787 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 788 | throw out_of_range("bitset set argument out of range"); |
| 789 | #else |
| 790 | assert(!"bitset set argument out of range"); |
| 791 | #endif |
| 792 | (*this)[__pos] = __val; |
| 793 | return *this; |
| 794 | } |
| 795 | |
| 796 | template <size_t _Size> |
| 797 | inline _LIBCPP_INLINE_VISIBILITY |
| 798 | bitset<_Size>& |
| 799 | bitset<_Size>::reset() |
| 800 | { |
| 801 | _STD::fill_n(base::__make_iter(0), _Size, false); |
| 802 | return *this; |
| 803 | } |
| 804 | |
| 805 | template <size_t _Size> |
| 806 | bitset<_Size>& |
| 807 | bitset<_Size>::reset(size_t __pos) |
| 808 | { |
| 809 | if (__pos >= _Size) |
| 810 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 811 | throw out_of_range("bitset reset argument out of range"); |
| 812 | #else |
| 813 | assert(!"bitset reset argument out of range"); |
| 814 | #endif |
| 815 | (*this)[__pos] = false; |
| 816 | return *this; |
| 817 | } |
| 818 | |
| 819 | template <size_t _Size> |
| 820 | inline _LIBCPP_INLINE_VISIBILITY |
| 821 | bitset<_Size> |
| 822 | bitset<_Size>::operator~() const |
| 823 | { |
| 824 | bitset __x(*this); |
| 825 | __x.flip(); |
| 826 | return __x; |
| 827 | } |
| 828 | |
| 829 | template <size_t _Size> |
| 830 | inline _LIBCPP_INLINE_VISIBILITY |
| 831 | bitset<_Size>& |
| 832 | bitset<_Size>::flip() |
| 833 | { |
| 834 | base::flip(); |
| 835 | return *this; |
| 836 | } |
| 837 | |
| 838 | template <size_t _Size> |
| 839 | bitset<_Size>& |
| 840 | bitset<_Size>::flip(size_t __pos) |
| 841 | { |
| 842 | if (__pos >= _Size) |
| 843 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 844 | throw out_of_range("bitset flip argument out of range"); |
| 845 | #else |
| 846 | assert(!"bitset flip argument out of range"); |
| 847 | #endif |
| 848 | reference r = base::__make_ref(__pos); |
| 849 | r = ~r; |
| 850 | return *this; |
| 851 | } |
| 852 | |
| 853 | template <size_t _Size> |
| 854 | inline _LIBCPP_INLINE_VISIBILITY |
| 855 | unsigned long |
| 856 | bitset<_Size>::to_ulong() const |
| 857 | { |
| 858 | return base::to_ulong(); |
| 859 | } |
| 860 | |
| 861 | template <size_t _Size> |
| 862 | inline _LIBCPP_INLINE_VISIBILITY |
| 863 | unsigned long long |
| 864 | bitset<_Size>::to_ullong() const |
| 865 | { |
| 866 | return base::to_ullong(); |
| 867 | } |
| 868 | |
| 869 | template <size_t _Size> |
| 870 | template <class _CharT, class _Traits, class _Allocator> |
| 871 | basic_string<_CharT, _Traits, _Allocator> |
| 872 | bitset<_Size>::to_string(_CharT __zero, _CharT __one) const |
| 873 | { |
| 874 | basic_string<_CharT, _Traits, _Allocator> __r(_Size, __zero); |
| 875 | for (size_t __i = 0; __i < _Size; ++__i) |
| 876 | { |
| 877 | if ((*this)[__i]) |
| 878 | __r[_Size - 1 - __i] = __one; |
| 879 | } |
| 880 | return __r; |
| 881 | } |
| 882 | |
| 883 | template <size_t _Size> |
| 884 | template <class _CharT, class _Traits> |
| 885 | inline _LIBCPP_INLINE_VISIBILITY |
| 886 | basic_string<_CharT, _Traits, allocator<_CharT> > |
| 887 | bitset<_Size>::to_string(_CharT __zero, _CharT __one) const |
| 888 | { |
| 889 | return to_string<_CharT, _Traits, allocator<_CharT> >(__zero, __one); |
| 890 | } |
| 891 | |
| 892 | template <size_t _Size> |
| 893 | template <class _CharT> |
| 894 | inline _LIBCPP_INLINE_VISIBILITY |
| 895 | basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > |
| 896 | bitset<_Size>::to_string(_CharT __zero, _CharT __one) const |
| 897 | { |
| 898 | return to_string<_CharT, char_traits<_CharT>, allocator<_CharT> >(__zero, __one); |
| 899 | } |
| 900 | |
| 901 | template <size_t _Size> |
| 902 | inline _LIBCPP_INLINE_VISIBILITY |
| 903 | basic_string<char, char_traits<char>, allocator<char> > |
| 904 | bitset<_Size>::to_string(char __zero, char __one) const |
| 905 | { |
| 906 | return to_string<char, char_traits<char>, allocator<char> >(__zero, __one); |
| 907 | } |
| 908 | |
| 909 | template <size_t _Size> |
| 910 | inline _LIBCPP_INLINE_VISIBILITY |
| 911 | size_t |
| 912 | bitset<_Size>::count() const |
| 913 | { |
| 914 | return static_cast<size_t>(_STD::count(base::__make_iter(0), base::__make_iter(_Size), true)); |
| 915 | } |
| 916 | |
| 917 | template <size_t _Size> |
| 918 | inline _LIBCPP_INLINE_VISIBILITY |
| 919 | bool |
| 920 | bitset<_Size>::operator==(const bitset& __rhs) const |
| 921 | { |
| 922 | return _STD::equal(base::__make_iter(0), base::__make_iter(_Size), __rhs.__make_iter(0)); |
| 923 | } |
| 924 | |
| 925 | template <size_t _Size> |
| 926 | inline _LIBCPP_INLINE_VISIBILITY |
| 927 | bool |
| 928 | bitset<_Size>::operator!=(const bitset& __rhs) const |
| 929 | { |
| 930 | return !(*this == __rhs); |
| 931 | } |
| 932 | |
| 933 | template <size_t _Size> |
| 934 | bool |
| 935 | bitset<_Size>::test(size_t __pos) const |
| 936 | { |
| 937 | if (__pos >= _Size) |
| 938 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 939 | throw out_of_range("bitset test argument out of range"); |
| 940 | #else |
| 941 | assert(!"bitset test argument out of range"); |
| 942 | #endif |
| 943 | return (*this)[__pos]; |
| 944 | } |
| 945 | |
| 946 | template <size_t _Size> |
| 947 | inline _LIBCPP_INLINE_VISIBILITY |
| 948 | bool |
| 949 | bitset<_Size>::all() const |
| 950 | { |
| 951 | return base::all(); |
| 952 | } |
| 953 | |
| 954 | template <size_t _Size> |
| 955 | inline _LIBCPP_INLINE_VISIBILITY |
| 956 | bool |
| 957 | bitset<_Size>::any() const |
| 958 | { |
| 959 | return base::any(); |
| 960 | } |
| 961 | |
| 962 | template <size_t _Size> |
| 963 | inline _LIBCPP_INLINE_VISIBILITY |
| 964 | bitset<_Size> |
| 965 | bitset<_Size>::operator<<(size_t __pos) const |
| 966 | { |
| 967 | bitset __r = *this; |
| 968 | __r <<= __pos; |
| 969 | return __r; |
| 970 | } |
| 971 | |
| 972 | template <size_t _Size> |
| 973 | inline _LIBCPP_INLINE_VISIBILITY |
| 974 | bitset<_Size> |
| 975 | bitset<_Size>::operator>>(size_t __pos) const |
| 976 | { |
| 977 | bitset __r = *this; |
| 978 | __r >>= __pos; |
| 979 | return __r; |
| 980 | } |
| 981 | |
| 982 | template <size_t _Size> |
| 983 | inline _LIBCPP_INLINE_VISIBILITY |
| 984 | bitset<_Size> |
| 985 | operator&(const bitset<_Size>& __x, const bitset<_Size>& __y) |
| 986 | { |
| 987 | bitset<_Size> __r = __x; |
| 988 | __r &= __y; |
| 989 | return __r; |
| 990 | } |
| 991 | |
| 992 | template <size_t _Size> |
| 993 | inline _LIBCPP_INLINE_VISIBILITY |
| 994 | bitset<_Size> |
| 995 | operator|(const bitset<_Size>& __x, const bitset<_Size>& __y) |
| 996 | { |
| 997 | bitset<_Size> __r = __x; |
| 998 | __r |= __y; |
| 999 | return __r; |
| 1000 | } |
| 1001 | |
| 1002 | template <size_t _Size> |
| 1003 | inline _LIBCPP_INLINE_VISIBILITY |
| 1004 | bitset<_Size> |
| 1005 | operator^(const bitset<_Size>& __x, const bitset<_Size>& __y) |
| 1006 | { |
| 1007 | bitset<_Size> __r = __x; |
| 1008 | __r ^= __y; |
| 1009 | return __r; |
| 1010 | } |
| 1011 | |
| 1012 | template <size_t _Size> |
| 1013 | struct hash<bitset<_Size> > |
| 1014 | : public unary_function<bitset<_Size>, size_t> |
| 1015 | { |
| 1016 | size_t operator()(const bitset<_Size>& __bs) const |
| 1017 | {return __bs.__hash_code();} |
| 1018 | }; |
| 1019 | |
| 1020 | _LIBCPP_END_NAMESPACE_STD |
| 1021 | |
| 1022 | #endif // _LIBCPP_BITSET |