mem0mem.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /************************************************************************
  2. The memory management
  3. (c) 1994, 1995 Innobase Oy
  4. Created 6/9/1994 Heikki Tuuri
  5. *************************************************************************/
  6. #include "mem0mem.h"
  7. #ifdef UNIV_NONINL
  8. #include "mem0mem.ic"
  9. #endif
  10. #include "mach0data.h"
  11. #include "buf0buf.h"
  12. #include "mem0dbg.c"
  13. #include "btr0sea.h"
  14. /*
  15. THE MEMORY MANAGEMENT
  16. =====================
  17. The basic element of the memory management is called a memory
  18. heap. A memory heap is conceptually a
  19. stack from which memory can be allocated. The stack may grow infinitely.
  20. The top element of the stack may be freed, or
  21. the whole stack can be freed at one time. The advantage of the
  22. memory heap concept is that we can avoid using the malloc and free
  23. functions of C which are quite expensive, for example, on the Solaris + GCC
  24. system (50 MHz Sparc, 1993) the pair takes 3 microseconds,
  25. on Win NT + 100MHz Pentium, 2.5 microseconds.
  26. When we use a memory heap,
  27. we can allocate larger blocks of memory at a time and thus
  28. reduce overhead. Slightly more efficient the method is when we
  29. allocate the memory from the index page buffer pool, as we can
  30. claim a new page fast. This is called buffer allocation. 
  31. When we allocate the memory from the dynamic memory of the
  32. C environment, that is called dynamic allocation.
  33. The default way of operation of the memory heap is the following.
  34. First, when the heap is created, an initial block of memory is
  35. allocated. In dynamic allocation this may be about 50 bytes.
  36. If more space is needed, additional blocks are allocated
  37. and they are put into a linked list.
  38. After the initial block, each allocated block is twice the size of the 
  39. previous, until a threshold is attained, after which the sizes
  40. of the blocks stay the same. An exception is, of course, the case
  41. where the caller requests a memory buffer whose size is
  42. bigger than the threshold. In that case a block big enough must
  43. be allocated.
  44. The heap is physically arranged so that if the current block
  45. becomes full, a new block is allocated and always inserted in the
  46. chain of blocks as the last block.
  47. In the debug version of the memory management, all the allocated
  48. heaps are kept in a list (which is implemented as a hash table).
  49. Thus we can notice if the caller tries to free an already freed
  50. heap. In addition, each buffer given to the caller contains
  51. start field at the start and a trailer field at the end of the buffer.
  52. The start field has the following content:
  53. A. sizeof(ulint) bytes of field length (in the standard byte order)
  54. B. sizeof(ulint) bytes of check field (a random number)
  55. The trailer field contains:
  56. A. sizeof(ulint) bytes of check field (the same random number as at the start)
  57. Thus we can notice if something has been copied over the
  58. borders of the buffer, which is illegal.
  59. The memory in the buffers is initialized to a random byte sequence.
  60. After freeing, all the blocks in the heap are set to random bytes
  61. to help us discover errors which result from the use of
  62. buffers in an already freed heap. */
  63. /*******************************************************************
  64. NOTE: Use the corresponding macro instead of this function.
  65. Allocates a single buffer of memory from the dynamic memory of
  66. the C compiler. Is like malloc of C. The buffer must be freed 
  67. with mem_free. */
  68. void*
  69. mem_alloc_func_noninline(
  70. /*=====================*/
  71. /* out, own: free storage, NULL if did not
  72. succeed */
  73. ulint   n               /* in: desired number of bytes */
  74. #ifdef UNIV_MEM_DEBUG
  75. ,char*  file_name, /* in: file name where created */
  76. ulint   line /* in: line where created */
  77. #endif
  78. )
  79. {
  80. return(mem_alloc_func(n
  81. #ifdef UNIV_MEM_DEBUG
  82. , file_name, line
  83. #endif
  84. ));
  85. }
  86. /*******************************************************************
  87. Creates a memory heap block where data can be allocated. */
  88. mem_block_t*
  89. mem_heap_create_block(
  90. /*==================*/
  91. /* out, own: memory heap block, NULL if did not
  92. succeed */
  93. mem_heap_t* heap,/* in: memory heap or NULL if first block should
  94. be created */
  95. ulint n, /* in: number of bytes needed for user data, or
  96. if init_block is not NULL, its size in bytes */
  97. void* init_block, /* in: init block in fast create, type must be
  98. MEM_HEAP_DYNAMIC */
  99. ulint  type) /* in: type of heap: MEM_HEAP_DYNAMIC, or
  100. MEM_HEAP_BUFFER possibly ORed to MEM_HEAP_BTR_SEARCH */
  101. {
  102. mem_block_t* block;
  103. ulint len;
  104. ut_ad((type == MEM_HEAP_DYNAMIC) || (type == MEM_HEAP_BUFFER)
  105. || (type == MEM_HEAP_BUFFER + MEM_HEAP_BTR_SEARCH));
  106. /* In dynamic allocation, calculate the size: block header + data. */
  107. if (init_block != NULL) {
  108. ut_ad(type == MEM_HEAP_DYNAMIC);
  109. ut_ad(n > MEM_BLOCK_START_SIZE + MEM_BLOCK_HEADER_SIZE);
  110. len = n;
  111. block = init_block;
  112. } else if (type == MEM_HEAP_DYNAMIC) {
  113. len = MEM_BLOCK_HEADER_SIZE + MEM_SPACE_NEEDED(n);
  114. block = mem_area_alloc(len, mem_comm_pool);
  115. } else {
  116. ut_ad(n <= MEM_MAX_ALLOC_IN_BUF);
  117. len = MEM_BLOCK_HEADER_SIZE + MEM_SPACE_NEEDED(n);
  118. if (len < UNIV_PAGE_SIZE / 2) {
  119. block = mem_area_alloc(len, mem_comm_pool);
  120. } else {
  121. len = UNIV_PAGE_SIZE;
  122. if ((type & MEM_HEAP_BTR_SEARCH) && heap) {
  123. /* We cannot allocate the block from the
  124. buffer pool, but must get the free block from
  125. the heap header free block field */
  126. block = (mem_block_t*)heap->free_block;
  127. heap->free_block = NULL;
  128. } else {
  129. block = (mem_block_t*)buf_frame_alloc();
  130. }
  131. }
  132. }
  133. if (block == NULL) {
  134. return(NULL);
  135. }
  136. block->magic_n = MEM_BLOCK_MAGIC_N;
  137. mem_block_set_len(block, len);
  138. mem_block_set_type(block, type);
  139. mem_block_set_free(block, MEM_BLOCK_HEADER_SIZE);
  140. mem_block_set_start(block, MEM_BLOCK_HEADER_SIZE);
  141. block->free_block = NULL;
  142. if (init_block != NULL) {
  143. block->init_block = TRUE;
  144. } else {
  145. block->init_block = FALSE;
  146. }
  147. ut_ad((ulint)MEM_BLOCK_HEADER_SIZE < len);
  148. return(block);
  149. }
  150. /*******************************************************************
  151. Adds a new block to a memory heap. */
  152. mem_block_t*
  153. mem_heap_add_block(
  154. /*===============*/
  155. /* out: created block, NULL if did not
  156. succeed */
  157. mem_heap_t*  heap, /* in: memory heap */
  158. ulint n) /* in: number of bytes user needs */
  159. {
  160. mem_block_t* block; 
  161. mem_block_t* new_block; 
  162. ulint new_size;
  163. ut_ad(mem_heap_check(heap));
  164. block = UT_LIST_GET_LAST(heap->base);
  165. /* We have to allocate a new block. The size is always at least
  166. doubled until the standard size is reached. After that the size
  167. stays the same, except in cases where the caller needs more space. */
  168. new_size = 2 * mem_block_get_len(block);
  169. if (heap->type != MEM_HEAP_DYNAMIC) {
  170. ut_ad(n <= MEM_MAX_ALLOC_IN_BUF);
  171. if (new_size > MEM_MAX_ALLOC_IN_BUF) {
  172. new_size = MEM_MAX_ALLOC_IN_BUF;
  173. }
  174. } else if (new_size > MEM_BLOCK_STANDARD_SIZE) {
  175. new_size = MEM_BLOCK_STANDARD_SIZE;
  176. }
  177. if (new_size < n) {
  178. new_size = n;
  179. }
  180. new_block = mem_heap_create_block(heap, new_size, NULL, heap->type);
  181. if (new_block == NULL) {
  182. return(NULL);
  183. }
  184. /* Add the new block as the last block */
  185. UT_LIST_INSERT_AFTER(list, heap->base, block, new_block);
  186. return(new_block);
  187. }
  188. /**********************************************************************
  189. Frees a block from a memory heap. */
  190. void
  191. mem_heap_block_free(
  192. /*================*/
  193. mem_heap_t* heap, /* in: heap */
  194. mem_block_t* block) /* in: block to free */
  195. {
  196. ulint type;
  197. ulint len;
  198. ibool init_block;
  199. UT_LIST_REMOVE(list, heap->base, block);
  200. type = heap->type;
  201. len = block->len;
  202. init_block = block->init_block;
  203. #ifdef UNIV_MEM_DEBUG
  204. /* In the debug version we set the memory to a random combination
  205. of hex 0xDE and 0xAD. */
  206. mem_erase_buf((byte*)block, len);
  207. #endif
  208. if (init_block) {
  209. /* Do not have to free: do nothing */
  210. } else if (type == MEM_HEAP_DYNAMIC) {
  211. mem_area_free(block, mem_comm_pool);
  212. } else {
  213. ut_ad(type & MEM_HEAP_BUFFER);
  214. if (len >= UNIV_PAGE_SIZE / 2) {
  215. buf_frame_free((byte*)block);
  216. } else {
  217. mem_area_free(block, mem_comm_pool);
  218. }
  219. }
  220. }
  221. /**********************************************************************
  222. Frees the free_block field from a memory heap. */
  223. void
  224. mem_heap_free_block_free(
  225. /*=====================*/
  226. mem_heap_t* heap) /* in: heap */
  227. {
  228. if (heap->free_block) {
  229. buf_frame_free(heap->free_block);
  230. heap->free_block = NULL;
  231. }
  232. }