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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The memory management: the debug code. This is not a compilation module,
  3. but is included in mem0mem.* !
  4. (c) 1994, 1995 Innobase Oy
  5. Created 6/9/1994 Heikki Tuuri
  6. *******************************************************/
  7. /* In the debug version each allocated field is surrounded with
  8. check fields whose sizes are given below */
  9. #define MEM_FIELD_HEADER_SIZE   ut_calc_align(2 * sizeof(ulint),
  10. UNIV_MEM_ALIGNMENT)
  11. #define MEM_FIELD_TRAILER_SIZE  sizeof(ulint)
  12. #define MEM_BLOCK_MAGIC_N 764741
  13. /* Space needed when allocating for a user a field of
  14. length N. The space is allocated only in multiples of
  15. UNIV_MEM_ALIGNMENT. In the debug version there are also
  16. check fields at the both ends of the field. */
  17. #ifdef UNIV_MEM_DEBUG
  18. #define MEM_SPACE_NEEDED(N) ut_calc_align((N) + MEM_FIELD_HEADER_SIZE
  19.                       + MEM_FIELD_TRAILER_SIZE,
  20.           UNIV_MEM_ALIGNMENT)
  21. #else
  22. #define MEM_SPACE_NEEDED(N) ut_calc_align((N), UNIV_MEM_ALIGNMENT)
  23. #endif
  24. /*******************************************************************
  25. Checks a memory heap for consistency and prints the contents if requested.
  26. Outputs the sum of sizes of buffers given to the user (only in
  27. the debug version), the physical size of the heap and the number of
  28. blocks in the heap. In case of error returns 0 as sizes and number
  29. of blocks. */
  30. void
  31. mem_heap_validate_or_print(
  32. /*=======================*/
  33. mem_heap_t*    heap,  /* in: memory heap */
  34. byte* top, /* in: calculate and validate only until
  35. this top pointer in the heap is reached,
  36. if this pointer is NULL, ignored */
  37. ibool            print,  /* in: if TRUE, prints the contents
  38. of the heap; works only in
  39. the debug version */
  40. ibool*           error,  /* out: TRUE if error */
  41. ulint*          us_size,/* out: allocated memory 
  42. (for the user) in the heap,
  43. if a NULL pointer is passed as this
  44. argument, it is ignored; in the
  45. non-debug version this is always -1 */
  46. ulint*          ph_size,/* out: physical size of the heap,
  47. if a NULL pointer is passed as this
  48. argument, it is ignored */
  49. ulint*          n_blocks); /* out: number of blocks in the heap,
  50. if a NULL pointer is passed as this
  51. argument, it is ignored */
  52. /******************************************************************
  53. Prints the contents of a memory heap. */
  54. void
  55. mem_heap_print(
  56. /*===========*/
  57. mem_heap_t*   heap); /* in: memory heap */
  58. /******************************************************************
  59. Checks that an object is a memory heap (or a block of it) */
  60. ibool
  61. mem_heap_check(
  62. /*===========*/
  63. /* out: TRUE if ok */
  64. mem_heap_t*   heap); /* in: memory heap */
  65. /******************************************************************
  66. Validates the contents of a memory heap. */
  67. ibool
  68. mem_heap_validate(
  69. /*==============*/
  70. /* out: TRUE if ok */
  71. mem_heap_t*   heap); /* in: memory heap */
  72. /*********************************************************************
  73. Prints information of dynamic memory usage and currently live
  74. memory heaps or buffers. Can only be used in the debug version. */
  75. void
  76. mem_print_info(void);
  77. /*=================*/
  78. /*********************************************************************
  79. Prints information of dynamic memory usage and currently allocated memory
  80. heaps or buffers since the last ..._print_info or..._print_new_info. */
  81. void
  82. mem_print_new_info(void);
  83. /*====================*/
  84. /*********************************************************************
  85. TRUE if no memory is currently allocated. */
  86. ibool
  87. mem_all_freed(void);
  88. /*===============*/
  89. /* out: TRUE if no heaps exist */
  90. /*********************************************************************
  91. Validates the dynamic memory */
  92. ibool
  93. mem_validate_no_assert(void);
  94. /*=========================*/
  95. /* out: TRUE if error */
  96. /****************************************************************
  97. Validates the dynamic memory */
  98. ibool
  99. mem_validate(void);
  100. /*===============*/
  101. /* out: TRUE if ok */