node_allocator.hpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2008-2013. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_POOLED_NODE_ALLOCATOR_HPP
  11. #define BOOST_CONTAINER_POOLED_NODE_ALLOCATOR_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. #include <boost/container/detail/config_begin.hpp>
  19. #include <boost/container/detail/workaround.hpp>
  20. #include <boost/container/container_fwd.hpp>
  21. #include <boost/container/throw_exception.hpp>
  22. #include <boost/container/detail/node_pool.hpp>
  23. #include <boost/container/detail/mpl.hpp>
  24. #include <boost/container/detail/multiallocation_chain.hpp>
  25. #include <boost/container/detail/dlmalloc.hpp>
  26. #include <boost/container/detail/singleton.hpp>
  27. #include <boost/assert.hpp>
  28. #include <boost/static_assert.hpp>
  29. #include <cstddef>
  30. namespace boost {
  31. namespace container {
  32. //!An STL node allocator that uses a modified DlMalloc as memory
  33. //!source.
  34. //!
  35. //!This node allocator shares a segregated storage between all instances
  36. //!of node_allocator with equal sizeof(T).
  37. //!
  38. //!NodesPerBlock is the number of nodes allocated at once when the allocator
  39. //!runs out of nodes
  40. #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
  41. template
  42. < class T
  43. , std::size_t NodesPerBlock = NodeAlloc_nodes_per_block>
  44. #else
  45. template
  46. < class T
  47. , std::size_t NodesPerBlock
  48. , std::size_t Version>
  49. #endif
  50. class node_allocator
  51. {
  52. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  53. //! If Version is 1, the allocator is a STL conforming allocator. If Version is 2,
  54. //! the allocator offers advanced expand in place and burst allocation capabilities.
  55. public:
  56. typedef unsigned int allocation_type;
  57. typedef node_allocator<T, NodesPerBlock, Version> self_t;
  58. static const std::size_t nodes_per_block = NodesPerBlock;
  59. BOOST_STATIC_ASSERT((Version <=2));
  60. #endif
  61. public:
  62. //-------
  63. typedef T value_type;
  64. typedef T * pointer;
  65. typedef const T * const_pointer;
  66. typedef typename ::boost::container::
  67. container_detail::unvoid_ref<T>::type reference;
  68. typedef typename ::boost::container::
  69. container_detail::unvoid_ref<const T>::type const_reference;
  70. typedef std::size_t size_type;
  71. typedef std::ptrdiff_t difference_type;
  72. typedef boost::container::container_detail::
  73. version_type<self_t, Version> version;
  74. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  75. typedef boost::container::container_detail::
  76. basic_multiallocation_chain<void*> multiallocation_chain_void;
  77. typedef boost::container::container_detail::
  78. transform_multiallocation_chain
  79. <multiallocation_chain_void, T> multiallocation_chain;
  80. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  81. //!Obtains node_allocator from
  82. //!node_allocator
  83. template<class T2>
  84. struct rebind
  85. {
  86. typedef node_allocator< T2, NodesPerBlock
  87. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  88. , Version
  89. #endif
  90. > other;
  91. };
  92. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  93. private:
  94. //!Not assignable from related node_allocator
  95. template<class T2, std::size_t N2>
  96. node_allocator& operator=
  97. (const node_allocator<T2, N2>&);
  98. //!Not assignable from other node_allocator
  99. node_allocator& operator=(const node_allocator&);
  100. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  101. public:
  102. //!Default constructor
  103. node_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  104. {}
  105. //!Copy constructor from other node_allocator.
  106. node_allocator(const node_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  107. {}
  108. //!Copy constructor from related node_allocator.
  109. template<class T2>
  110. node_allocator
  111. (const node_allocator<T2, NodesPerBlock
  112. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  113. , Version
  114. #endif
  115. > &) BOOST_NOEXCEPT_OR_NOTHROW
  116. {}
  117. //!Destructor
  118. ~node_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  119. {}
  120. //!Returns the number of elements that could be allocated.
  121. //!Never throws
  122. size_type max_size() const
  123. { return size_type(-1)/sizeof(T); }
  124. //!Allocate memory for an array of count elements.
  125. //!Throws std::bad_alloc if there is no enough memory
  126. pointer allocate(size_type count, const void * = 0)
  127. {
  128. if(BOOST_UNLIKELY(count > this->max_size()))
  129. boost::container::throw_bad_alloc();
  130. if(Version == 1 && count == 1){
  131. typedef container_detail::shared_node_pool
  132. <sizeof(T), NodesPerBlock> shared_pool_t;
  133. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  134. return pointer(static_cast<T*>(singleton_t::instance().allocate_node()));
  135. }
  136. else{
  137. void *ret = dlmalloc_malloc(count*sizeof(T));
  138. if(BOOST_UNLIKELY(!ret))
  139. boost::container::throw_bad_alloc();
  140. return static_cast<pointer>(ret);
  141. }
  142. }
  143. //!Deallocate allocated memory.
  144. //!Never throws
  145. void deallocate(const pointer &ptr, size_type count) BOOST_NOEXCEPT_OR_NOTHROW
  146. {
  147. (void)count;
  148. if(Version == 1 && count == 1){
  149. typedef container_detail::shared_node_pool
  150. <sizeof(T), NodesPerBlock> shared_pool_t;
  151. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  152. singleton_t::instance().deallocate_node(ptr);
  153. }
  154. else{
  155. dlmalloc_free(ptr);
  156. }
  157. }
  158. //!Deallocates all free blocks of the pool
  159. static void deallocate_free_blocks() BOOST_NOEXCEPT_OR_NOTHROW
  160. {
  161. typedef container_detail::shared_node_pool
  162. <sizeof(T), NodesPerBlock> shared_pool_t;
  163. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  164. singleton_t::instance().deallocate_free_blocks();
  165. }
  166. pointer allocation_command
  167. (allocation_type command, size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse)
  168. {
  169. BOOST_STATIC_ASSERT(( Version > 1 ));
  170. pointer ret = this->priv_allocation_command(command, limit_size, prefer_in_recvd_out_size, reuse);
  171. if(BOOST_UNLIKELY(!ret && !(command & BOOST_CONTAINER_NOTHROW_ALLOCATION)))
  172. boost::container::throw_bad_alloc();
  173. return ret;
  174. }
  175. //!Returns maximum the number of objects the previously allocated memory
  176. //!pointed by p can hold.
  177. size_type size(pointer p) const BOOST_NOEXCEPT_OR_NOTHROW
  178. {
  179. BOOST_STATIC_ASSERT(( Version > 1 ));
  180. return dlmalloc_size(p);
  181. }
  182. //!Allocates just one object. Memory allocated with this function
  183. //!must be deallocated only with deallocate_one().
  184. //!Throws bad_alloc if there is no enough memory
  185. pointer allocate_one()
  186. {
  187. BOOST_STATIC_ASSERT(( Version > 1 ));
  188. typedef container_detail::shared_node_pool
  189. <sizeof(T), NodesPerBlock> shared_pool_t;
  190. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  191. return (pointer)singleton_t::instance().allocate_node();
  192. }
  193. //!Allocates many elements of size == 1.
  194. //!Elements must be individually deallocated with deallocate_one()
  195. void allocate_individual(std::size_t num_elements, multiallocation_chain &chain)
  196. {
  197. BOOST_STATIC_ASSERT(( Version > 1 ));
  198. typedef container_detail::shared_node_pool
  199. <sizeof(T), NodesPerBlock> shared_pool_t;
  200. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  201. typename shared_pool_t::multiallocation_chain ch;
  202. singleton_t::instance().allocate_nodes(num_elements, ch);
  203. chain.incorporate_after(chain.before_begin(), (T*)&*ch.begin(), (T*)&*ch.last(), ch.size());
  204. }
  205. //!Deallocates memory previously allocated with allocate_one().
  206. //!You should never use deallocate_one to deallocate memory allocated
  207. //!with other functions different from allocate_one(). Never throws
  208. void deallocate_one(pointer p) BOOST_NOEXCEPT_OR_NOTHROW
  209. {
  210. BOOST_STATIC_ASSERT(( Version > 1 ));
  211. typedef container_detail::shared_node_pool
  212. <sizeof(T), NodesPerBlock> shared_pool_t;
  213. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  214. singleton_t::instance().deallocate_node(p);
  215. }
  216. void deallocate_individual(multiallocation_chain &chain) BOOST_NOEXCEPT_OR_NOTHROW
  217. {
  218. BOOST_STATIC_ASSERT(( Version > 1 ));
  219. typedef container_detail::shared_node_pool
  220. <sizeof(T), NodesPerBlock> shared_pool_t;
  221. typedef container_detail::singleton_default<shared_pool_t> singleton_t;
  222. typename shared_pool_t::multiallocation_chain ch(&*chain.begin(), &*chain.last(), chain.size());
  223. singleton_t::instance().deallocate_nodes(ch);
  224. }
  225. //!Allocates many elements of size elem_size.
  226. //!Elements must be individually deallocated with deallocate()
  227. void allocate_many(size_type elem_size, std::size_t n_elements, multiallocation_chain &chain)
  228. {
  229. BOOST_STATIC_ASSERT(( Version > 1 ));
  230. dlmalloc_memchain ch;
  231. BOOST_CONTAINER_MEMCHAIN_INIT(&ch);
  232. if(BOOST_UNLIKELY(!dlmalloc_multialloc_nodes(n_elements, elem_size*sizeof(T), DL_MULTIALLOC_DEFAULT_CONTIGUOUS, &ch))){
  233. boost::container::throw_bad_alloc();
  234. }
  235. chain.incorporate_after( chain.before_begin()
  236. , (T*)BOOST_CONTAINER_MEMCHAIN_LASTMEM(&ch)
  237. , (T*)BOOST_CONTAINER_MEMCHAIN_LASTMEM(&ch)
  238. , BOOST_CONTAINER_MEMCHAIN_SIZE(&ch));
  239. }
  240. //!Allocates n_elements elements, each one of size elem_sizes[i]
  241. //!Elements must be individually deallocated with deallocate()
  242. void allocate_many(const size_type *elem_sizes, size_type n_elements, multiallocation_chain &chain)
  243. {
  244. BOOST_STATIC_ASSERT(( Version > 1 ));
  245. dlmalloc_memchain ch;
  246. dlmalloc_multialloc_arrays(n_elements, elem_sizes, sizeof(T), DL_MULTIALLOC_DEFAULT_CONTIGUOUS, &ch);
  247. if(BOOST_UNLIKELY(BOOST_CONTAINER_MEMCHAIN_EMPTY(&ch))){
  248. boost::container::throw_bad_alloc();
  249. }
  250. chain.incorporate_after( chain.before_begin()
  251. , (T*)BOOST_CONTAINER_MEMCHAIN_LASTMEM(&ch)
  252. , (T*)BOOST_CONTAINER_MEMCHAIN_LASTMEM(&ch)
  253. , BOOST_CONTAINER_MEMCHAIN_SIZE(&ch));
  254. }
  255. void deallocate_many(multiallocation_chain &chain) BOOST_NOEXCEPT_OR_NOTHROW
  256. {
  257. BOOST_STATIC_ASSERT(( Version > 1 ));
  258. void *first = &*chain.begin();
  259. void *last = &*chain.last();
  260. size_t num = chain.size();
  261. dlmalloc_memchain ch;
  262. BOOST_CONTAINER_MEMCHAIN_INIT_FROM(&ch, first, last, num);
  263. dlmalloc_multidealloc(&ch);
  264. }
  265. //!Swaps allocators. Does not throw. If each allocator is placed in a
  266. //!different memory segment, the result is undefined.
  267. friend void swap(self_t &, self_t &) BOOST_NOEXCEPT_OR_NOTHROW
  268. {}
  269. //!An allocator always compares to true, as memory allocated with one
  270. //!instance can be deallocated by another instance
  271. friend bool operator==(const node_allocator &, const node_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  272. { return true; }
  273. //!An allocator always compares to false, as memory allocated with one
  274. //!instance can be deallocated by another instance
  275. friend bool operator!=(const node_allocator &, const node_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  276. { return false; }
  277. private:
  278. pointer priv_allocation_command
  279. (allocation_type command, std::size_t limit_size
  280. ,size_type &prefer_in_recvd_out_size
  281. ,pointer &reuse)
  282. {
  283. std::size_t const preferred_size = prefer_in_recvd_out_size;
  284. dlmalloc_command_ret_t ret = {0 , 0};
  285. if((limit_size > this->max_size()) | (preferred_size > this->max_size())){
  286. return pointer();
  287. }
  288. std::size_t l_size = limit_size*sizeof(T);
  289. std::size_t p_size = preferred_size*sizeof(T);
  290. std::size_t r_size;
  291. {
  292. void* reuse_ptr_void = reuse;
  293. ret = dlmalloc_allocation_command(command, sizeof(T), l_size, p_size, &r_size, reuse_ptr_void);
  294. reuse = static_cast<T*>(reuse_ptr_void);
  295. }
  296. prefer_in_recvd_out_size = r_size/sizeof(T);
  297. return (pointer)ret.first;
  298. }
  299. };
  300. } //namespace container {
  301. } //namespace boost {
  302. #include <boost/container/detail/config_end.hpp>
  303. #endif //#ifndef BOOST_CONTAINER_POOLED_NODE_ALLOCATOR_HPP