bmalloc.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bmalloc.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/21 16:00:19  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10. Copyright (c) 2002,2003 Anatoliy Kuznetsov.
  11. Permission is hereby granted, free of charge, to any person 
  12. obtaining a copy of this software and associated documentation 
  13. files (the "Software"), to deal in the Software without restriction, 
  14. including without limitation the rights to use, copy, modify, merge, 
  15. publish, distribute, sublicense, and/or sell copies of the Software, 
  16. and to permit persons to whom the Software is furnished to do so, 
  17. subject to the following conditions:
  18. The above copyright notice and this permission notice shall be included 
  19. in all copies or substantial portions of the Software.
  20. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  21. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
  22. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  23. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
  24. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
  25. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
  26. OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef BMALLOC__H__INCLUDED__
  29. #define BMALLOC__H__INCLUDED__
  30. #include <stdlib.h>
  31. namespace bm
  32. {
  33. /*! @defgroup alloc Memory Allocation
  34.  *  Memory allocation related units
  35.  *
  36.  *  @{
  37.  */
  38. /*! 
  39.   @brief Default malloc based bitblock allocator class.
  40.   Functions allocate and deallocate conform to STL allocator specs.
  41.   @ingroup alloc
  42. */
  43. class block_allocator
  44. {
  45. public:
  46.     /**
  47.     The member function allocates storage for an array of n bm::word_t 
  48.     elements, by calling malloc. 
  49.     @return pointer to the allocated memory. 
  50.     */
  51.     static bm::word_t* allocate(size_t n, const void *)
  52.     {
  53. #ifdef BMSSE2OPT
  54. # ifdef _MSC_VER
  55.         return (bm::word_t*) ::_aligned_malloc(n * sizeof(bm::word_t), 16);
  56. #else
  57.         return (bm::word_t*) ::_mm_malloc(n * sizeof(bm::word_t), 16);
  58. # endif
  59. #else  
  60.         return (bm::word_t*) ::malloc(n * sizeof(bm::word_t));
  61. #endif
  62.     }
  63.     /**
  64.     The member function frees storage for an array of n bm::word_t 
  65.     elements, by calling free. 
  66.     */
  67.     static void deallocate(bm::word_t* p, size_t)
  68.     {
  69. #ifdef BMSSE2OPT
  70. # ifdef _MSC_VER
  71.         ::_aligned_free(p);
  72. #else
  73.         ::_mm_free(p);
  74. # endif
  75. #else  
  76.         ::free(p);
  77. #endif
  78.     }
  79. };
  80. // -------------------------------------------------------------------------
  81. /*! @brief Default malloc based bitblock allocator class.
  82.   Functions allocate and deallocate conform to STL allocator specs.
  83. */
  84. class ptr_allocator
  85. {
  86. public:
  87.     /**
  88.     The member function allocates storage for an array of n void* 
  89.     elements, by calling malloc. 
  90.     @return pointer to the allocated memory. 
  91.     */
  92.     static void* allocate(size_t n, const void *)
  93.     {
  94.         return ::malloc(n * sizeof(void*));
  95.     }
  96.     /**
  97.     The member function frees storage for an array of n bm::word_t 
  98.     elements, by calling free. 
  99.     */
  100.     static void deallocate(void* p, size_t)
  101.     {
  102.         ::free(p);
  103.     }
  104. };
  105. // -------------------------------------------------------------------------
  106. /*! @brief BM style allocator adapter. 
  107.   Template takes two parameters BA - allocator object for bit blocks and
  108.   PA - allocator object for pointer blocks.
  109. */
  110. template<class BA, class PA> class mem_alloc
  111. {
  112. public:
  113.     /*! @brief Allocates and returns bit block.
  114.     */
  115.     static bm::word_t* alloc_bit_block()
  116.     {
  117.         return BA::allocate(bm::set_block_size, 0);
  118.     }
  119.     /*! @brief Frees bit block allocated by alloc_bit_block.
  120.     */
  121.     static void free_bit_block(bm::word_t* block)
  122.     {
  123.         if (IS_VALID_ADDR(block)) 
  124.             BA::deallocate(block, bm::set_block_size);
  125.     }
  126.     /*! @brief Allocates GAP block using bit block allocator (BA).
  127.         GAP blocks in BM library belong to levels. Each level has a 
  128.         correspondent length described in bm::gap_len_table<>.
  129.         
  130.         @param level GAP block level.
  131.     */
  132.     static bm::gap_word_t* alloc_gap_block(unsigned level, 
  133.                                            const gap_word_t* glevel_len)
  134.     {
  135.         assert(level < bm::gap_levels);
  136.         unsigned len = 
  137.             glevel_len[level] / (sizeof(bm::word_t) / sizeof(gap_word_t));
  138.         return (bm::gap_word_t*)BA::allocate(len, 0);
  139.     }
  140.     /*! @brief Frees GAP block using bot block allocator (BA)
  141.     */
  142.     static void free_gap_block(bm::gap_word_t* block,
  143.                                const gap_word_t* glevel_len)
  144.     {
  145.         if (IS_VALID_ADDR((bm::word_t*)block)) 
  146.         {
  147.             unsigned len = gap_capacity(block, glevel_len);
  148.             len /= sizeof(bm::word_t) / sizeof(bm::gap_word_t);
  149.             BA::deallocate((bm::word_t*)block, len);        
  150.         }
  151.     }
  152.     /*! @brief Allocates block of pointers.
  153.     */
  154.     static void* alloc_ptr(unsigned size = bm::set_array_size)
  155.     {
  156.         return PA::allocate(size, 0);
  157.     }
  158.     /*! @brief Frees block of pointers.
  159.     */
  160.     static void free_ptr(void* p, unsigned size = bm::set_array_size)
  161.     {
  162.         PA::deallocate(p, size);
  163.     }
  164. };
  165. typedef mem_alloc<block_allocator, ptr_allocator> standard_allocator;
  166. /** @} */
  167. } // namespace bm
  168. #endif