OSDN Git Service

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