buckets.hpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
  2. // Copyright (C) 2005-2011 Daniel James
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_UNORDERED_DETAIL_MANAGER_HPP_INCLUDED
  6. #define BOOST_UNORDERED_DETAIL_MANAGER_HPP_INCLUDED
  7. #include <boost/config.hpp>
  8. #if defined(BOOST_HAS_PRAGMA_ONCE)
  9. #pragma once
  10. #endif
  11. #include <boost/unordered/detail/util.hpp>
  12. #include <boost/unordered/detail/allocate.hpp>
  13. #include <boost/type_traits/aligned_storage.hpp>
  14. #include <boost/type_traits/alignment_of.hpp>
  15. #include <boost/type_traits/is_nothrow_move_constructible.hpp>
  16. #include <boost/type_traits/is_nothrow_move_assignable.hpp>
  17. #include <boost/swap.hpp>
  18. #include <boost/assert.hpp>
  19. #include <boost/limits.hpp>
  20. #include <boost/iterator.hpp>
  21. namespace boost { namespace unordered { namespace detail {
  22. template <typename Types> struct table;
  23. template <typename NodePointer> struct bucket;
  24. struct ptr_bucket;
  25. template <typename Types> struct table_impl;
  26. template <typename Types> struct grouped_table_impl;
  27. }}}
  28. // The 'iterator_detail' namespace was a misguided attempt at avoiding ADL
  29. // in the detail namespace. It didn't work because the template parameters
  30. // were in detail. I'm not changing it at the moment to be safe. I might
  31. // do in the future if I change the iterator types.
  32. namespace boost { namespace unordered { namespace iterator_detail {
  33. ////////////////////////////////////////////////////////////////////////////
  34. // Iterators
  35. //
  36. // all no throw
  37. template <typename Node> struct iterator;
  38. template <typename Node> struct c_iterator;
  39. template <typename Node, typename Policy> struct l_iterator;
  40. template <typename Node, typename Policy>
  41. struct cl_iterator;
  42. // Local Iterators
  43. //
  44. // all no throw
  45. template <typename Node, typename Policy>
  46. struct l_iterator
  47. : public boost::iterator<
  48. std::forward_iterator_tag,
  49. typename Node::value_type,
  50. std::ptrdiff_t,
  51. typename Node::value_type*,
  52. typename Node::value_type&>
  53. {
  54. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
  55. template <typename Node2, typename Policy2>
  56. friend struct boost::unordered::iterator_detail::cl_iterator;
  57. private:
  58. #endif
  59. typedef typename Node::node_pointer node_pointer;
  60. typedef boost::unordered::iterator_detail::iterator<Node> n_iterator;
  61. node_pointer ptr_;
  62. std::size_t bucket_;
  63. std::size_t bucket_count_;
  64. public:
  65. typedef typename Node::value_type value_type;
  66. l_iterator() BOOST_NOEXCEPT : ptr_() {}
  67. l_iterator(n_iterator x, std::size_t b, std::size_t c) BOOST_NOEXCEPT
  68. : ptr_(x.node_), bucket_(b), bucket_count_(c) {}
  69. value_type& operator*() const {
  70. return ptr_->value();
  71. }
  72. value_type* operator->() const {
  73. return ptr_->value_ptr();
  74. }
  75. l_iterator& operator++() {
  76. ptr_ = static_cast<node_pointer>(ptr_->next_);
  77. if (ptr_ && Policy::to_bucket(bucket_count_, ptr_->hash_)
  78. != bucket_)
  79. ptr_ = node_pointer();
  80. return *this;
  81. }
  82. l_iterator operator++(int) {
  83. l_iterator tmp(*this);
  84. ++(*this);
  85. return tmp;
  86. }
  87. bool operator==(l_iterator x) const BOOST_NOEXCEPT {
  88. return ptr_ == x.ptr_;
  89. }
  90. bool operator!=(l_iterator x) const BOOST_NOEXCEPT {
  91. return ptr_ != x.ptr_;
  92. }
  93. };
  94. template <typename Node, typename Policy>
  95. struct cl_iterator
  96. : public boost::iterator<
  97. std::forward_iterator_tag,
  98. typename Node::value_type,
  99. std::ptrdiff_t,
  100. typename Node::value_type const*,
  101. typename Node::value_type const&>
  102. {
  103. friend struct boost::unordered::iterator_detail::l_iterator
  104. <Node, Policy>;
  105. private:
  106. typedef typename Node::node_pointer node_pointer;
  107. typedef boost::unordered::iterator_detail::iterator<Node> n_iterator;
  108. node_pointer ptr_;
  109. std::size_t bucket_;
  110. std::size_t bucket_count_;
  111. public:
  112. typedef typename Node::value_type value_type;
  113. cl_iterator() BOOST_NOEXCEPT : ptr_() {}
  114. cl_iterator(n_iterator x, std::size_t b, std::size_t c) BOOST_NOEXCEPT :
  115. ptr_(x.node_), bucket_(b), bucket_count_(c) {}
  116. cl_iterator(boost::unordered::iterator_detail::l_iterator<
  117. Node, Policy> const& x) BOOST_NOEXCEPT :
  118. ptr_(x.ptr_), bucket_(x.bucket_), bucket_count_(x.bucket_count_)
  119. {}
  120. value_type const& operator*() const {
  121. return ptr_->value();
  122. }
  123. value_type const* operator->() const {
  124. return ptr_->value_ptr();
  125. }
  126. cl_iterator& operator++() {
  127. ptr_ = static_cast<node_pointer>(ptr_->next_);
  128. if (ptr_ && Policy::to_bucket(bucket_count_, ptr_->hash_)
  129. != bucket_)
  130. ptr_ = node_pointer();
  131. return *this;
  132. }
  133. cl_iterator operator++(int) {
  134. cl_iterator tmp(*this);
  135. ++(*this);
  136. return tmp;
  137. }
  138. friend bool operator==(cl_iterator const& x, cl_iterator const& y)
  139. BOOST_NOEXCEPT
  140. {
  141. return x.ptr_ == y.ptr_;
  142. }
  143. friend bool operator!=(cl_iterator const& x, cl_iterator const& y)
  144. BOOST_NOEXCEPT
  145. {
  146. return x.ptr_ != y.ptr_;
  147. }
  148. };
  149. template <typename Node>
  150. struct iterator
  151. : public boost::iterator<
  152. std::forward_iterator_tag,
  153. typename Node::value_type,
  154. std::ptrdiff_t,
  155. typename Node::value_type*,
  156. typename Node::value_type&>
  157. {
  158. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
  159. template <typename>
  160. friend struct boost::unordered::iterator_detail::c_iterator;
  161. template <typename, typename>
  162. friend struct boost::unordered::iterator_detail::l_iterator;
  163. template <typename, typename>
  164. friend struct boost::unordered::iterator_detail::cl_iterator;
  165. template <typename>
  166. friend struct boost::unordered::detail::table;
  167. template <typename>
  168. friend struct boost::unordered::detail::table_impl;
  169. template <typename>
  170. friend struct boost::unordered::detail::grouped_table_impl;
  171. private:
  172. #endif
  173. typedef typename Node::node_pointer node_pointer;
  174. node_pointer node_;
  175. public:
  176. typedef typename Node::value_type value_type;
  177. iterator() BOOST_NOEXCEPT : node_() {}
  178. explicit iterator(typename Node::link_pointer x) BOOST_NOEXCEPT :
  179. node_(static_cast<node_pointer>(x)) {}
  180. value_type& operator*() const {
  181. return node_->value();
  182. }
  183. value_type* operator->() const {
  184. return node_->value_ptr();
  185. }
  186. iterator& operator++() {
  187. node_ = static_cast<node_pointer>(node_->next_);
  188. return *this;
  189. }
  190. iterator operator++(int) {
  191. iterator tmp(node_);
  192. node_ = static_cast<node_pointer>(node_->next_);
  193. return tmp;
  194. }
  195. bool operator==(iterator const& x) const BOOST_NOEXCEPT {
  196. return node_ == x.node_;
  197. }
  198. bool operator!=(iterator const& x) const BOOST_NOEXCEPT {
  199. return node_ != x.node_;
  200. }
  201. };
  202. template <typename Node>
  203. struct c_iterator
  204. : public boost::iterator<
  205. std::forward_iterator_tag,
  206. typename Node::value_type,
  207. std::ptrdiff_t,
  208. typename Node::value_type const*,
  209. typename Node::value_type const&>
  210. {
  211. friend struct boost::unordered::iterator_detail::iterator<Node>;
  212. #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
  213. template <typename>
  214. friend struct boost::unordered::detail::table;
  215. template <typename>
  216. friend struct boost::unordered::detail::table_impl;
  217. template <typename>
  218. friend struct boost::unordered::detail::grouped_table_impl;
  219. private:
  220. #endif
  221. typedef typename Node::node_pointer node_pointer;
  222. typedef boost::unordered::iterator_detail::iterator<Node> n_iterator;
  223. node_pointer node_;
  224. public:
  225. typedef typename Node::value_type value_type;
  226. c_iterator() BOOST_NOEXCEPT : node_() {}
  227. explicit c_iterator(typename Node::link_pointer x) BOOST_NOEXCEPT :
  228. node_(static_cast<node_pointer>(x)) {}
  229. c_iterator(n_iterator const& x) BOOST_NOEXCEPT : node_(x.node_) {}
  230. value_type const& operator*() const {
  231. return node_->value();
  232. }
  233. value_type const* operator->() const {
  234. return node_->value_ptr();
  235. }
  236. c_iterator& operator++() {
  237. node_ = static_cast<node_pointer>(node_->next_);
  238. return *this;
  239. }
  240. c_iterator operator++(int) {
  241. c_iterator tmp(node_);
  242. node_ = static_cast<node_pointer>(node_->next_);
  243. return tmp;
  244. }
  245. friend bool operator==(c_iterator const& x, c_iterator const& y)
  246. BOOST_NOEXCEPT
  247. {
  248. return x.node_ == y.node_;
  249. }
  250. friend bool operator!=(c_iterator const& x, c_iterator const& y)
  251. BOOST_NOEXCEPT
  252. {
  253. return x.node_ != y.node_;
  254. }
  255. };
  256. }}}
  257. namespace boost { namespace unordered { namespace detail {
  258. ///////////////////////////////////////////////////////////////////
  259. //
  260. // Node construction
  261. template <typename NodeAlloc>
  262. struct node_constructor
  263. {
  264. private:
  265. typedef NodeAlloc node_allocator;
  266. typedef boost::unordered::detail::allocator_traits<NodeAlloc>
  267. node_allocator_traits;
  268. typedef typename node_allocator_traits::value_type node;
  269. typedef typename node_allocator_traits::pointer node_pointer;
  270. typedef typename node::value_type value_type;
  271. protected:
  272. node_allocator& alloc_;
  273. node_pointer node_;
  274. bool node_constructed_;
  275. bool value_constructed_;
  276. public:
  277. node_constructor(node_allocator& n) :
  278. alloc_(n),
  279. node_(),
  280. node_constructed_(false),
  281. value_constructed_(false)
  282. {
  283. }
  284. ~node_constructor();
  285. void construct();
  286. template <BOOST_UNORDERED_EMPLACE_TEMPLATE>
  287. void construct_with_value(BOOST_UNORDERED_EMPLACE_ARGS)
  288. {
  289. construct();
  290. boost::unordered::detail::func::construct_value_impl(
  291. alloc_, node_->value_ptr(), BOOST_UNORDERED_EMPLACE_FORWARD);
  292. value_constructed_ = true;
  293. }
  294. template <typename A0>
  295. void construct_with_value2(BOOST_FWD_REF(A0) a0)
  296. {
  297. construct();
  298. boost::unordered::detail::func::construct_value_impl(
  299. alloc_, node_->value_ptr(),
  300. BOOST_UNORDERED_EMPLACE_ARGS1(boost::forward<A0>(a0)));
  301. value_constructed_ = true;
  302. }
  303. value_type const& value() const {
  304. BOOST_ASSERT(node_ && node_constructed_ && value_constructed_);
  305. return node_->value();
  306. }
  307. // no throw
  308. node_pointer release()
  309. {
  310. BOOST_ASSERT(node_ && node_constructed_);
  311. node_pointer p = node_;
  312. node_ = node_pointer();
  313. return p;
  314. }
  315. private:
  316. node_constructor(node_constructor const&);
  317. node_constructor& operator=(node_constructor const&);
  318. };
  319. template <typename Alloc>
  320. node_constructor<Alloc>::~node_constructor()
  321. {
  322. if (node_) {
  323. if (value_constructed_) {
  324. boost::unordered::detail::func::destroy_value_impl(alloc_,
  325. node_->value_ptr());
  326. }
  327. if (node_constructed_) {
  328. boost::unordered::detail::func::destroy(
  329. boost::addressof(*node_));
  330. }
  331. node_allocator_traits::deallocate(alloc_, node_, 1);
  332. }
  333. }
  334. template <typename Alloc>
  335. void node_constructor<Alloc>::construct()
  336. {
  337. if(!node_) {
  338. node_constructed_ = false;
  339. value_constructed_ = false;
  340. node_ = node_allocator_traits::allocate(alloc_, 1);
  341. new ((void*) boost::addressof(*node_)) node();
  342. node_->init(node_);
  343. node_constructed_ = true;
  344. }
  345. else {
  346. BOOST_ASSERT(node_constructed_);
  347. if (value_constructed_)
  348. {
  349. boost::unordered::detail::func::destroy_value_impl(alloc_,
  350. node_->value_ptr());
  351. value_constructed_ = false;
  352. }
  353. }
  354. }
  355. ///////////////////////////////////////////////////////////////////
  356. //
  357. // Node Holder
  358. //
  359. // Temporary store for nodes. Deletes any that aren't used.
  360. template <typename NodeAlloc>
  361. struct node_holder : private node_constructor<NodeAlloc>
  362. {
  363. private:
  364. typedef node_constructor<NodeAlloc> base;
  365. typedef NodeAlloc node_allocator;
  366. typedef boost::unordered::detail::allocator_traits<NodeAlloc>
  367. node_allocator_traits;
  368. typedef typename node_allocator_traits::value_type node;
  369. typedef typename node_allocator_traits::pointer node_pointer;
  370. typedef typename node::value_type value_type;
  371. typedef typename node::link_pointer link_pointer;
  372. typedef boost::unordered::iterator_detail::iterator<node> iterator;
  373. node_pointer nodes_;
  374. public:
  375. template <typename Table>
  376. explicit node_holder(Table& b) :
  377. base(b.node_alloc()),
  378. nodes_()
  379. {
  380. if (b.size_) {
  381. typename Table::link_pointer prev = b.get_previous_start();
  382. nodes_ = static_cast<node_pointer>(prev->next_);
  383. prev->next_ = link_pointer();
  384. b.size_ = 0;
  385. }
  386. }
  387. ~node_holder();
  388. void node_for_assignment()
  389. {
  390. if (!this->node_ && nodes_) {
  391. this->node_ = nodes_;
  392. nodes_ = static_cast<node_pointer>(nodes_->next_);
  393. this->node_->init(this->node_);
  394. this->node_->next_ = link_pointer();
  395. this->node_constructed_ = true;
  396. this->value_constructed_ = true;
  397. }
  398. }
  399. template <typename T>
  400. inline void assign_impl(T const& v) {
  401. if (this->node_ && this->value_constructed_) {
  402. this->node_->value() = v;
  403. }
  404. else {
  405. this->construct_with_value2(v);
  406. }
  407. }
  408. template <typename T1, typename T2>
  409. inline void assign_impl(std::pair<T1 const, T2> const& v) {
  410. this->construct_with_value2(v);
  411. }
  412. template <typename T>
  413. inline void move_assign_impl(T& v) {
  414. if (this->node_ && this->value_constructed_) {
  415. this->node_->value() = boost::move(v);
  416. }
  417. else {
  418. this->construct_with_value2(boost::move(v));
  419. }
  420. }
  421. template <typename T1, typename T2>
  422. inline void move_assign_impl(std::pair<T1 const, T2>& v) {
  423. this->construct_with_value2(boost::move(v));
  424. }
  425. node_pointer copy_of(value_type const& v)
  426. {
  427. node_for_assignment();
  428. assign_impl(v);
  429. return base::release();
  430. }
  431. node_pointer move_copy_of(value_type& v)
  432. {
  433. node_for_assignment();
  434. move_assign_impl(v);
  435. return base::release();
  436. }
  437. iterator begin() const
  438. {
  439. return iterator(nodes_);
  440. }
  441. };
  442. template <typename Alloc>
  443. node_holder<Alloc>::~node_holder()
  444. {
  445. while (nodes_) {
  446. node_pointer p = nodes_;
  447. nodes_ = static_cast<node_pointer>(p->next_);
  448. boost::unordered::detail::func::destroy_value_impl(this->alloc_,
  449. p->value_ptr());
  450. boost::unordered::detail::func::destroy(boost::addressof(*p));
  451. node_allocator_traits::deallocate(this->alloc_, p, 1);
  452. }
  453. }
  454. ///////////////////////////////////////////////////////////////////
  455. //
  456. // Bucket
  457. template <typename NodePointer>
  458. struct bucket
  459. {
  460. typedef NodePointer link_pointer;
  461. link_pointer next_;
  462. bucket() : next_() {}
  463. link_pointer first_from_start()
  464. {
  465. return next_;
  466. }
  467. enum { extra_node = true };
  468. };
  469. struct ptr_bucket
  470. {
  471. typedef ptr_bucket* link_pointer;
  472. link_pointer next_;
  473. ptr_bucket() : next_(0) {}
  474. link_pointer first_from_start()
  475. {
  476. return this;
  477. }
  478. enum { extra_node = false };
  479. };
  480. ///////////////////////////////////////////////////////////////////
  481. //
  482. // Hash Policy
  483. template <typename SizeT>
  484. struct prime_policy
  485. {
  486. template <typename Hash, typename T>
  487. static inline SizeT apply_hash(Hash const& hf, T const& x) {
  488. return hf(x);
  489. }
  490. static inline SizeT to_bucket(SizeT bucket_count, SizeT hash) {
  491. return hash % bucket_count;
  492. }
  493. static inline SizeT new_bucket_count(SizeT min) {
  494. return boost::unordered::detail::next_prime(min);
  495. }
  496. static inline SizeT prev_bucket_count(SizeT max) {
  497. return boost::unordered::detail::prev_prime(max);
  498. }
  499. };
  500. template <typename SizeT>
  501. struct mix64_policy
  502. {
  503. template <typename Hash, typename T>
  504. static inline SizeT apply_hash(Hash const& hf, T const& x) {
  505. SizeT key = hf(x);
  506. key = (~key) + (key << 21); // key = (key << 21) - key - 1;
  507. key = key ^ (key >> 24);
  508. key = (key + (key << 3)) + (key << 8); // key * 265
  509. key = key ^ (key >> 14);
  510. key = (key + (key << 2)) + (key << 4); // key * 21
  511. key = key ^ (key >> 28);
  512. key = key + (key << 31);
  513. return key;
  514. }
  515. static inline SizeT to_bucket(SizeT bucket_count, SizeT hash) {
  516. return hash & (bucket_count - 1);
  517. }
  518. static inline SizeT new_bucket_count(SizeT min) {
  519. if (min <= 4) return 4;
  520. --min;
  521. min |= min >> 1;
  522. min |= min >> 2;
  523. min |= min >> 4;
  524. min |= min >> 8;
  525. min |= min >> 16;
  526. min |= min >> 32;
  527. return min + 1;
  528. }
  529. static inline SizeT prev_bucket_count(SizeT max) {
  530. max |= max >> 1;
  531. max |= max >> 2;
  532. max |= max >> 4;
  533. max |= max >> 8;
  534. max |= max >> 16;
  535. max |= max >> 32;
  536. return (max >> 1) + 1;
  537. }
  538. };
  539. template <int digits, int radix>
  540. struct pick_policy_impl {
  541. typedef prime_policy<std::size_t> type;
  542. };
  543. template <>
  544. struct pick_policy_impl<64, 2> {
  545. typedef mix64_policy<std::size_t> type;
  546. };
  547. template <typename T>
  548. struct pick_policy :
  549. pick_policy_impl<
  550. std::numeric_limits<std::size_t>::digits,
  551. std::numeric_limits<std::size_t>::radix> {};
  552. // While the mix policy is generally faster, the prime policy is a lot
  553. // faster when a large number consecutive integers are used, because
  554. // there are no collisions. Since that is probably quite common, use
  555. // prime policy for integeral types. But not the smaller ones, as they
  556. // don't have enough unique values for this to be an issue.
  557. template <>
  558. struct pick_policy<int> {
  559. typedef prime_policy<std::size_t> type;
  560. };
  561. template <>
  562. struct pick_policy<unsigned int> {
  563. typedef prime_policy<std::size_t> type;
  564. };
  565. template <>
  566. struct pick_policy<long> {
  567. typedef prime_policy<std::size_t> type;
  568. };
  569. template <>
  570. struct pick_policy<unsigned long> {
  571. typedef prime_policy<std::size_t> type;
  572. };
  573. // TODO: Maybe not if std::size_t is smaller than long long.
  574. #if !defined(BOOST_NO_LONG_LONG)
  575. template <>
  576. struct pick_policy<long long> {
  577. typedef prime_policy<std::size_t> type;
  578. };
  579. template <>
  580. struct pick_policy<unsigned long long> {
  581. typedef prime_policy<std::size_t> type;
  582. };
  583. #endif
  584. ////////////////////////////////////////////////////////////////////////////
  585. // Functions
  586. // Assigning and swapping the equality and hash function objects
  587. // needs strong exception safety. To implement that normally we'd
  588. // require one of them to be known to not throw and the other to
  589. // guarantee strong exception safety. Unfortunately they both only
  590. // have basic exception safety. So to acheive strong exception
  591. // safety we have storage space for two copies, and assign the new
  592. // copies to the unused space. Then switch to using that to use
  593. // them. This is implemented in 'set_hash_functions' which
  594. // atomically assigns the new function objects in a strongly
  595. // exception safe manner.
  596. template <class H, class P, bool NoThrowMoveAssign>
  597. class set_hash_functions;
  598. template <class H, class P>
  599. class functions
  600. {
  601. public:
  602. static const bool nothrow_move_assignable =
  603. boost::is_nothrow_move_assignable<H>::value &&
  604. boost::is_nothrow_move_assignable<P>::value;
  605. static const bool nothrow_move_constructible =
  606. boost::is_nothrow_move_constructible<H>::value &&
  607. boost::is_nothrow_move_constructible<P>::value;
  608. private:
  609. friend class boost::unordered::detail::set_hash_functions<H, P,
  610. nothrow_move_assignable>;
  611. functions& operator=(functions const&);
  612. typedef compressed<H, P> function_pair;
  613. typedef typename boost::aligned_storage<
  614. sizeof(function_pair),
  615. boost::alignment_of<function_pair>::value>::type aligned_function;
  616. bool current_; // The currently active functions.
  617. aligned_function funcs_[2];
  618. function_pair const& current() const {
  619. return *static_cast<function_pair const*>(
  620. static_cast<void const*>(&funcs_[current_]));
  621. }
  622. function_pair& current() {
  623. return *static_cast<function_pair*>(
  624. static_cast<void*>(&funcs_[current_]));
  625. }
  626. void construct(bool which, H const& hf, P const& eq)
  627. {
  628. new((void*) &funcs_[which]) function_pair(hf, eq);
  629. }
  630. void construct(bool which, function_pair const& f,
  631. boost::unordered::detail::false_type =
  632. boost::unordered::detail::false_type())
  633. {
  634. new((void*) &funcs_[which]) function_pair(f);
  635. }
  636. void construct(bool which, function_pair& f,
  637. boost::unordered::detail::true_type)
  638. {
  639. new((void*) &funcs_[which]) function_pair(f,
  640. boost::unordered::detail::move_tag());
  641. }
  642. void destroy(bool which)
  643. {
  644. boost::unordered::detail::func::destroy((function_pair*)(&funcs_[which]));
  645. }
  646. public:
  647. typedef boost::unordered::detail::set_hash_functions<H, P,
  648. nothrow_move_assignable> set_hash_functions;
  649. functions(H const& hf, P const& eq)
  650. : current_(false)
  651. {
  652. construct(current_, hf, eq);
  653. }
  654. functions(functions const& bf)
  655. : current_(false)
  656. {
  657. construct(current_, bf.current());
  658. }
  659. functions(functions& bf, boost::unordered::detail::move_tag)
  660. : current_(false)
  661. {
  662. construct(current_, bf.current(),
  663. boost::unordered::detail::integral_constant<bool,
  664. nothrow_move_constructible>());
  665. }
  666. ~functions() {
  667. this->destroy(current_);
  668. }
  669. H const& hash_function() const {
  670. return current().first();
  671. }
  672. P const& key_eq() const {
  673. return current().second();
  674. }
  675. };
  676. template <class H, class P>
  677. class set_hash_functions<H, P, false>
  678. {
  679. set_hash_functions(set_hash_functions const&);
  680. set_hash_functions& operator=(set_hash_functions const&);
  681. typedef functions<H, P> functions_type;
  682. functions_type& functions_;
  683. bool tmp_functions_;
  684. public:
  685. set_hash_functions(functions_type& f, H const& h, P const& p)
  686. : functions_(f),
  687. tmp_functions_(!f.current_)
  688. {
  689. f.construct(tmp_functions_, h, p);
  690. }
  691. set_hash_functions(functions_type& f, functions_type const& other)
  692. : functions_(f),
  693. tmp_functions_(!f.current_)
  694. {
  695. f.construct(tmp_functions_, other.current());
  696. }
  697. ~set_hash_functions()
  698. {
  699. functions_.destroy(tmp_functions_);
  700. }
  701. void commit()
  702. {
  703. functions_.current_ = tmp_functions_;
  704. tmp_functions_ = !tmp_functions_;
  705. }
  706. };
  707. template <class H, class P>
  708. class set_hash_functions<H, P, true>
  709. {
  710. set_hash_functions(set_hash_functions const&);
  711. set_hash_functions& operator=(set_hash_functions const&);
  712. typedef functions<H, P> functions_type;
  713. functions_type& functions_;
  714. H hash_;
  715. P pred_;
  716. public:
  717. set_hash_functions(functions_type& f, H const& h, P const& p) :
  718. functions_(f),
  719. hash_(h),
  720. pred_(p) {}
  721. set_hash_functions(functions_type& f, functions_type const& other) :
  722. functions_(f),
  723. hash_(other.hash_function()),
  724. pred_(other.key_eq()) {}
  725. void commit()
  726. {
  727. functions_.current().first() = boost::move(hash_);
  728. functions_.current().second() = boost::move(pred_);
  729. }
  730. };
  731. ////////////////////////////////////////////////////////////////////////////
  732. // rvalue parameters when type can't be a BOOST_RV_REF(T) parameter
  733. // e.g. for int
  734. #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
  735. # define BOOST_UNORDERED_RV_REF(T) BOOST_RV_REF(T)
  736. #else
  737. struct please_ignore_this_overload {
  738. typedef please_ignore_this_overload type;
  739. };
  740. template <typename T>
  741. struct rv_ref_impl {
  742. typedef BOOST_RV_REF(T) type;
  743. };
  744. template <typename T>
  745. struct rv_ref :
  746. boost::detail::if_true<
  747. boost::is_class<T>::value
  748. >::BOOST_NESTED_TEMPLATE then <
  749. boost::unordered::detail::rv_ref_impl<T>,
  750. please_ignore_this_overload
  751. >::type
  752. {};
  753. # define BOOST_UNORDERED_RV_REF(T) \
  754. typename boost::unordered::detail::rv_ref<T>::type
  755. #endif
  756. }}}
  757. #endif