memory_pool.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. Copyright 2005-2013 Intel Corporation. All Rights Reserved.
  3. This file is part of Threading Building Blocks.
  4. Threading Building Blocks is free software; you can redistribute it
  5. and/or modify it under the terms of the GNU General Public License
  6. version 2 as published by the Free Software Foundation.
  7. Threading Building Blocks is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  9. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Threading Building Blocks; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  14. As a special exception, you may use this file as part of a free software
  15. library without restriction. Specifically, if other files instantiate
  16. templates or use macros or inline functions from this file, or you compile
  17. this file and link it with other files to produce an executable, this
  18. file does not by itself cause the resulting executable to be covered by
  19. the GNU General Public License. This exception does not however
  20. invalidate any other reasons why the executable file might be covered by
  21. the GNU General Public License.
  22. */
  23. #ifndef __TBB_memory_pool_H
  24. #define __TBB_memory_pool_H
  25. #if !TBB_PREVIEW_MEMORY_POOL
  26. #error Set TBB_PREVIEW_MEMORY_POOL to include memory_pool.h
  27. #endif
  28. /** @file */
  29. #include "scalable_allocator.h"
  30. #include "tbb_stddef.h"
  31. #include "tbb_machine.h" // TODO: avoid linkage with libtbb on IA-64
  32. #include <new> // std::bad_alloc
  33. #if __TBB_CPP11_RVALUE_REF_PRESENT && !__TBB_CPP11_STD_FORWARD_BROKEN
  34. #include <utility> // std::forward
  35. #endif
  36. #if __TBB_EXTRA_DEBUG
  37. #define __TBBMALLOC_ASSERT ASSERT
  38. #else
  39. #define __TBBMALLOC_ASSERT(a,b) ((void)0)
  40. #endif
  41. namespace tbb {
  42. namespace interface6 {
  43. //! @cond INTERNAL
  44. namespace internal {
  45. //! Base of thread-safe pool allocator for variable-size requests
  46. class pool_base : tbb::internal::no_copy {
  47. // Pool interface is separate from standard allocator classes because it has
  48. // to maintain internal state, no copy or assignment. Move and swap are possible.
  49. public:
  50. //! Reset pool to reuse its memory (free all objects at once)
  51. void recycle() { rml::pool_reset(my_pool); }
  52. //! The "malloc" analogue to allocate block of memory of size bytes
  53. void *malloc(size_t size) { return rml::pool_malloc(my_pool, size); }
  54. //! The "free" analogue to discard a previously allocated piece of memory.
  55. void free(void* ptr) { rml::pool_free(my_pool, ptr); }
  56. //! The "realloc" analogue complementing pool_malloc.
  57. // Enables some low-level optimization possibilities
  58. void *realloc(void* ptr, size_t size) {
  59. return rml::pool_realloc(my_pool, ptr, size);
  60. }
  61. protected:
  62. //! destroy pool - must be called in a child class
  63. void destroy() { rml::pool_destroy(my_pool); }
  64. rml::MemoryPool *my_pool;
  65. };
  66. } // namespace internal
  67. //! @endcond
  68. #if _MSC_VER && !defined(__INTEL_COMPILER)
  69. // Workaround for erroneous "unreferenced parameter" warning in method destroy.
  70. #pragma warning (push)
  71. #pragma warning (disable: 4100)
  72. #endif
  73. //! Meets "allocator" requirements of ISO C++ Standard, Section 20.1.5
  74. /** @ingroup memory_allocation */
  75. template<typename T, typename P = internal::pool_base>
  76. class memory_pool_allocator {
  77. protected:
  78. typedef P pool_type;
  79. pool_type *my_pool;
  80. template<typename U, typename R>
  81. friend class memory_pool_allocator;
  82. template<typename V, typename U, typename R>
  83. friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
  84. template<typename V, typename U, typename R>
  85. friend bool operator!=( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
  86. public:
  87. typedef typename tbb::internal::allocator_type<T>::value_type value_type;
  88. typedef value_type* pointer;
  89. typedef const value_type* const_pointer;
  90. typedef value_type& reference;
  91. typedef const value_type& const_reference;
  92. typedef size_t size_type;
  93. typedef ptrdiff_t difference_type;
  94. template<typename U> struct rebind {
  95. typedef memory_pool_allocator<U, P> other;
  96. };
  97. memory_pool_allocator(pool_type &pool) throw() : my_pool(&pool) {}
  98. memory_pool_allocator(const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {}
  99. template<typename U>
  100. memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {}
  101. pointer address(reference x) const { return &x; }
  102. const_pointer address(const_reference x) const { return &x; }
  103. //! Allocate space for n objects.
  104. pointer allocate( size_type n, const void* /*hint*/ = 0) {
  105. return static_cast<pointer>( my_pool->malloc( n*sizeof(value_type) ) );
  106. }
  107. //! Free previously allocated block of memory.
  108. void deallocate( pointer p, size_type ) {
  109. my_pool->free(p);
  110. }
  111. //! Largest value for which method allocate might succeed.
  112. size_type max_size() const throw() {
  113. size_type max = static_cast<size_type>(-1) / sizeof (value_type);
  114. return (max > 0 ? max : 1);
  115. }
  116. //! Copy-construct value at location pointed to by p.
  117. #if __TBB_CPP11_VARIADIC_TEMPLATES_PRESENT && __TBB_CPP11_RVALUE_REF_PRESENT
  118. template<typename U, typename... Args>
  119. void construct(U *p, Args&&... args)
  120. #if __TBB_CPP11_STD_FORWARD_BROKEN
  121. { ::new((void *)p) U((args)...); }
  122. #else
  123. { ::new((void *)p) U(std::forward<Args>(args)...); }
  124. #endif
  125. #else // __TBB_CPP11_VARIADIC_TEMPLATES_PRESENT && __TBB_CPP11_RVALUE_REF_PRESENT
  126. void construct( pointer p, const value_type& value ) { ::new((void*)(p)) value_type(value); }
  127. #endif // __TBB_CPP11_VARIADIC_TEMPLATES_PRESENT && __TBB_CPP11_RVALUE_REF_PRESENT
  128. //! Destroy value at location pointed to by p.
  129. void destroy( pointer p ) { p->~value_type(); }
  130. };
  131. #if _MSC_VER && !defined(__INTEL_COMPILER)
  132. #pragma warning (pop)
  133. #endif // warning 4100 is back
  134. //! Analogous to std::allocator<void>, as defined in ISO C++ Standard, Section 20.4.1
  135. /** @ingroup memory_allocation */
  136. template<typename P>
  137. class memory_pool_allocator<void, P> {
  138. public:
  139. typedef P pool_type;
  140. typedef void* pointer;
  141. typedef const void* const_pointer;
  142. typedef void value_type;
  143. template<typename U> struct rebind {
  144. typedef memory_pool_allocator<U, P> other;
  145. };
  146. memory_pool_allocator( pool_type &pool) throw() : my_pool(&pool) {}
  147. memory_pool_allocator( const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {}
  148. template<typename U>
  149. memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {}
  150. protected:
  151. pool_type *my_pool;
  152. template<typename U, typename R>
  153. friend class memory_pool_allocator;
  154. template<typename V, typename U, typename R>
  155. friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
  156. template<typename V, typename U, typename R>
  157. friend bool operator!=( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
  158. };
  159. template<typename T, typename U, typename P>
  160. inline bool operator==( const memory_pool_allocator<T,P>& a, const memory_pool_allocator<U,P>& b) {return a.my_pool==b.my_pool;}
  161. template<typename T, typename U, typename P>
  162. inline bool operator!=( const memory_pool_allocator<T,P>& a, const memory_pool_allocator<U,P>& b) {return a.my_pool!=b.my_pool;}
  163. //! Thread-safe growable pool allocator for variable-size requests
  164. template <typename Alloc>
  165. class memory_pool : public internal::pool_base {
  166. Alloc my_alloc; // TODO: base-class optimization
  167. static void *allocate_request(intptr_t pool_id, size_t & bytes);
  168. static int deallocate_request(intptr_t pool_id, void*, size_t raw_bytes);
  169. public:
  170. //! construct pool with underlying allocator
  171. memory_pool(const Alloc &src = Alloc());
  172. //! destroy pool
  173. ~memory_pool() { destroy(); } // call the callbacks first and destroy my_alloc latter
  174. };
  175. class fixed_pool : public internal::pool_base {
  176. void *my_buffer;
  177. size_t my_size;
  178. inline static void *allocate_request(intptr_t pool_id, size_t & bytes);
  179. public:
  180. //! construct pool with underlying allocator
  181. inline fixed_pool(void *buf, size_t size);
  182. //! destroy pool
  183. ~fixed_pool() { destroy(); }
  184. };
  185. //////////////// Implementation ///////////////
  186. template <typename Alloc>
  187. memory_pool<Alloc>::memory_pool(const Alloc &src) : my_alloc(src) {
  188. rml::MemPoolPolicy args(allocate_request, deallocate_request,
  189. sizeof(typename Alloc::value_type));
  190. rml::MemPoolError res = rml::pool_create_v1(intptr_t(this), &args, &my_pool);
  191. if( res!=rml::POOL_OK ) __TBB_THROW(std::bad_alloc());
  192. }
  193. template <typename Alloc>
  194. void *memory_pool<Alloc>::allocate_request(intptr_t pool_id, size_t & bytes) {
  195. memory_pool<Alloc> &self = *reinterpret_cast<memory_pool<Alloc>*>(pool_id);
  196. const size_t unit_size = sizeof(typename Alloc::value_type);
  197. __TBBMALLOC_ASSERT( 0 == bytes%unit_size, NULL);
  198. void *ptr;
  199. __TBB_TRY { ptr = self.my_alloc.allocate( bytes/unit_size ); }
  200. __TBB_CATCH(...) { return 0; }
  201. return ptr;
  202. }
  203. #if _MSC_VER==1700 && !defined(__INTEL_COMPILER)
  204. // Workaround for erroneous "unreachable code" warning in the template below.
  205. // Specific for VC++ 17 compiler
  206. #pragma warning (push)
  207. #pragma warning (disable: 4702)
  208. #endif
  209. template <typename Alloc>
  210. int memory_pool<Alloc>::deallocate_request(intptr_t pool_id, void* raw_ptr, size_t raw_bytes) {
  211. memory_pool<Alloc> &self = *reinterpret_cast<memory_pool<Alloc>*>(pool_id);
  212. const size_t unit_size = sizeof(typename Alloc::value_type);
  213. __TBBMALLOC_ASSERT( 0 == raw_bytes%unit_size, NULL);
  214. self.my_alloc.deallocate( static_cast<typename Alloc::value_type*>(raw_ptr), raw_bytes/unit_size );
  215. return 0;
  216. }
  217. #if _MSC_VER==1700 && !defined(__INTEL_COMPILER)
  218. #pragma warning (pop)
  219. #endif
  220. inline fixed_pool::fixed_pool(void *buf, size_t size) : my_buffer(buf), my_size(size) {
  221. rml::MemPoolPolicy args(allocate_request, 0, size, /*fixedPool=*/true);
  222. rml::MemPoolError res = rml::pool_create_v1(intptr_t(this), &args, &my_pool);
  223. if( res!=rml::POOL_OK ) __TBB_THROW(std::bad_alloc());
  224. }
  225. inline void *fixed_pool::allocate_request(intptr_t pool_id, size_t & bytes) {
  226. fixed_pool &self = *reinterpret_cast<fixed_pool*>(pool_id);
  227. if( !__TBB_CompareAndSwapW(&self.my_size, 0, (bytes=self.my_size)) )
  228. return 0; // all the memory was given already
  229. return self.my_buffer;
  230. }
  231. } //namespace interface6
  232. using interface6::memory_pool_allocator;
  233. using interface6::memory_pool;
  234. using interface6::fixed_pool;
  235. } //namespace tbb
  236. #undef __TBBMALLOC_ASSERT
  237. #endif// __TBB_memory_pool_H