malloc.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /*
  2. * libc/stdlib/malloc/malloc.h -- small malloc implementation
  3. *
  4. * Copyright (C) 2002 NEC Corporation
  5. * Copyright (C) 2002 Miles Bader <miles@gnu.org>
  6. *
  7. * This file is subject to the terms and conditions of the GNU Lesser
  8. * General Public License. See the file COPYING.LIB in the main
  9. * directory of this archive for more details.
  10. *
  11. * Written by Miles Bader <miles@gnu.org>
  12. */
  13. /* The alignment we guarantee for malloc return values. */
  14. #define MALLOC_ALIGNMENT (sizeof (double))
  15. /* The system pagesize we assume; we really ought to get it with
  16. getpagesize, but gee, how annoying. */
  17. #define MALLOC_PAGE_SIZE 4096
  18. /* The minimum size of block we request from the the system to extend the
  19. heap for small allocations (we may request a bigger block if necessary to
  20. satisfy a particularly big request). */
  21. #define MALLOC_HEAP_EXTEND_SIZE MALLOC_PAGE_SIZE
  22. /* When a heap free-area grows above this size, try to unmap it, releasing
  23. the memory back to the system. */
  24. #define MALLOC_UNMAP_THRESHOLD (8*MALLOC_PAGE_SIZE)
  25. /* When unmapping a free-area, retain this many bytes if it's the only one,
  26. to avoid completely emptying the heap. This is only a heuristic -- the
  27. existance of another free area, even if it's smaller than
  28. MALLOC_MIN_SIZE, will cause us not to reserve anything. */
  29. #define MALLOC_MIN_SIZE (2*MALLOC_PAGE_SIZE)
  30. /* When realloc shrinks an allocation, it only does so if more than this
  31. many bytes will be freed; it must at at least HEAP_MIN_SIZE. Larger
  32. values increase speed (by reducing heap fragmentation) at the expense of
  33. space. */
  34. #define MALLOC_REALLOC_MIN_FREE_SIZE (HEAP_MIN_SIZE + 16)
  35. /* For systems with an MMU, use sbrk to map/unmap memory for the malloc
  36. heap, instead of mmap/munmap. This is a tradeoff -- sbrk is faster than
  37. mmap/munmap, and guarantees contiguous allocation, but is also less
  38. flexible, and causes the heap to only be shrinkable from the end. */
  39. #ifdef __ARCH_HAS_MMU__
  40. # define MALLOC_USE_SBRK
  41. #endif
  42. /* The current implementation of munmap in uClinux doesn't work correctly:
  43. it requires that ever call to munmap exactly match a corresponding call
  44. to mmap (that is, it doesn't allow you to unmap only part of a
  45. previously allocated block, or to unmap two contiguous blocks with a
  46. single call to munmap). This behavior is broken, and uClinux should be
  47. fixed; however, until it is, we add code to work around the problem in
  48. malloc. */
  49. #ifdef __UCLIBC_UCLINUX_BROKEN_MUNMAP__
  50. /* A structure recording a block of memory mmapped by malloc. */
  51. struct malloc_mmb
  52. {
  53. void *mem; /* the mmapped block */
  54. size_t size; /* its size */
  55. struct malloc_mmb *next;
  56. };
  57. /* A list of all malloc_mmb structures describing blocsk that malloc has
  58. mmapped, ordered by the block address. */
  59. extern struct malloc_mmb *__malloc_mmapped_blocks;
  60. /* A heap used for allocating malloc_mmb structures. We could allocate
  61. them from the main heap, but that tends to cause heap fragmentation in
  62. annoying ways. */
  63. extern struct heap __malloc_mmb_heap;
  64. /* Define MALLOC_MMB_DEBUGGING to cause malloc to emit debugging info about
  65. about mmap block allocation/freeing by the `uclinux broken munmap' code
  66. to stderr, when the variable __malloc_mmb_debug is set to true. */
  67. #ifdef MALLOC_MMB_DEBUGGING
  68. # include <stdio.h>
  69. extern int __malloc_mmb_debug;
  70. # define MALLOC_MMB_DEBUG(indent, fmt, args...) \
  71. (__malloc_mmb_debug ? __malloc_debug_printf (indent, fmt , ##args) : 0)
  72. # define MALLOC_MMB_DEBUG_INDENT(indent) \
  73. (__malloc_mmb_debug ? __malloc_debug_indent (indent) : 0)
  74. # ifndef MALLOC_DEBUGGING
  75. # define MALLOC_DEBUGGING
  76. # endif
  77. #else /* !MALLOC_MMB_DEBUGGING */
  78. # define MALLOC_MMB_DEBUG(fmt, args...) (void)0
  79. # define MALLOC_MMB_DEBUG_INDENT(indent) (void)0
  80. #endif /* MALLOC_MMB_DEBUGGING */
  81. #endif /* __UCLIBC_UCLINUX_BROKEN_MUNMAP__ */
  82. /* The size of a malloc allocation is stored in a size_t word
  83. MALLOC_ALIGNMENT bytes prior to the start address of the allocation:
  84. +--------+---------+-------------------+
  85. | SIZE |(unused) | allocation ... |
  86. +--------+---------+-------------------+
  87. ^ BASE ^ ADDR
  88. ^ ADDR - MALLOC_ALIGN
  89. */
  90. /* The amount of extra space used by the malloc header. */
  91. #define MALLOC_HEADER_SIZE MALLOC_ALIGNMENT
  92. /* Set up the malloc header, and return the user address of a malloc block. */
  93. #define MALLOC_SETUP(base, size) \
  94. (MALLOC_SET_SIZE (base, size), (void *)((char *)base + MALLOC_HEADER_SIZE))
  95. /* Set the size of a malloc allocation, given the base address. */
  96. #define MALLOC_SET_SIZE(base, size) (*(size_t *)(base) = (size))
  97. /* Return base-address of a malloc allocation, given the user address. */
  98. #define MALLOC_BASE(addr) ((void *)((char *)addr - MALLOC_HEADER_SIZE))
  99. /* Return the size of a malloc allocation, given the user address. */
  100. #define MALLOC_SIZE(addr) (*(size_t *)MALLOC_BASE(addr))
  101. /* Locking for multithreaded apps. */
  102. #ifdef __UCLIBC_HAS_THREADS__
  103. # include <pthread.h>
  104. # define MALLOC_USE_LOCKING
  105. typedef pthread_mutex_t malloc_mutex_t;
  106. # define MALLOC_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
  107. # ifdef MALLOC_USE_SBRK
  108. /* This lock is used to serialize uses of the `sbrk' function (in both
  109. malloc and free, sbrk may be used several times in succession, and
  110. things will break if these multiple calls are interleaved with another
  111. thread's use of sbrk!). */
  112. extern malloc_mutex_t __malloc_sbrk_lock;
  113. # define __malloc_lock_sbrk() __pthread_mutex_lock (&__malloc_sbrk_lock)
  114. # define __malloc_unlock_sbrk() __pthread_mutex_unlock (&__malloc_sbrk_lock)
  115. # endif /* MALLOC_USE_SBRK */
  116. #else /* !__UCLIBC_HAS_THREADS__ */
  117. /* Without threads, mutex operations are a nop. */
  118. # define __malloc_lock_sbrk() (void)0
  119. # define __malloc_unlock_sbrk() (void)0
  120. #endif /* __UCLIBC_HAS_THREADS__ */
  121. /* branch-prediction macros; they may already be defined by libc. */
  122. #ifndef likely
  123. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
  124. #define likely(cond) __builtin_expect(!!(int)(cond), 1)
  125. #define unlikely(cond) __builtin_expect((int)(cond), 0)
  126. #else
  127. #define likely(cond) (cond)
  128. #define unlikely(cond) (cond)
  129. #endif
  130. #endif /* !likely */
  131. /* Define MALLOC_DEBUGGING to cause malloc to emit debugging info to stderr
  132. when the variable __malloc_debug is set to true. */
  133. #ifdef MALLOC_DEBUGGING
  134. extern void __malloc_debug_init (void);
  135. /* The number of spaces in a malloc debug indent level. */
  136. #define MALLOC_DEBUG_INDENT_SIZE 3
  137. extern int __malloc_debug, __malloc_check;
  138. # define MALLOC_DEBUG(indent, fmt, args...) \
  139. (__malloc_debug ? __malloc_debug_printf (indent, fmt , ##args) : 0)
  140. # define MALLOC_DEBUG_INDENT(indent) \
  141. (__malloc_debug ? __malloc_debug_indent (indent) : 0)
  142. extern int __malloc_debug_cur_indent;
  143. /* Print FMT and args indented at the current debug print level, followed
  144. by a newline, and change the level by INDENT. */
  145. extern void __malloc_debug_printf (int indent, const char *fmt, ...);
  146. /* Change the current debug print level by INDENT, and return the value. */
  147. #define __malloc_debug_indent(indent) (__malloc_debug_cur_indent += indent)
  148. /* Set the current debug print level to LEVEL. */
  149. #define __malloc_debug_set_indent(level) (__malloc_debug_cur_indent = level)
  150. #else /* !MALLOC_DEBUGGING */
  151. # define MALLOC_DEBUG(fmt, args...) (void)0
  152. # define MALLOC_DEBUG_INDENT(indent) (void)0
  153. #endif /* MALLOC_DEBUGGING */
  154. /* Return SZ rounded down to POWER_OF_2_SIZE (which must be power of 2). */
  155. #define MALLOC_ROUND_DOWN(sz, power_of_2_size) \
  156. ((sz) & ~(power_of_2_size - 1))
  157. /* Return SZ rounded to POWER_OF_2_SIZE (which must be power of 2). */
  158. #define MALLOC_ROUND_UP(sz, power_of_2_size) \
  159. MALLOC_ROUND_DOWN ((sz) + (power_of_2_size - 1), (power_of_2_size))
  160. /* Return SZ rounded down to a multiple MALLOC_PAGE_SIZE. */
  161. #define MALLOC_ROUND_DOWN_TO_PAGE_SIZE(sz) \
  162. MALLOC_ROUND_DOWN (sz, MALLOC_PAGE_SIZE)
  163. /* Return SZ rounded up to a multiple MALLOC_PAGE_SIZE. */
  164. #define MALLOC_ROUND_UP_TO_PAGE_SIZE(sz) \
  165. MALLOC_ROUND_UP (sz, MALLOC_PAGE_SIZE)
  166. /* The malloc heap. */
  167. extern struct heap __malloc_heap;