Fix assertion in palloc and pvalloc as well.
[glibc.git] / malloc / malloc.c
blob9d60b7d173473e68ccf61babe91a965d527dc772
1 /* Malloc implementation for multiple threads without lock contention.
2 Copyright (C) 1996-2009, 2010 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Wolfram Gloger <wg@malloc.de>
5 and Doug Lea <dl@cs.oswego.edu>, 2001.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 2.1 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 This is a version (aka ptmalloc2) of malloc/free/realloc written by
24 Doug Lea and adapted to multiple threads/arenas by Wolfram Gloger.
26 There have been substantial changesmade after the integration into
27 glibc in all parts of the code. Do not look for much commonality
28 with the ptmalloc2 version.
30 * Version ptmalloc2-20011215
31 based on:
32 VERSION 2.7.0 Sun Mar 11 14:14:06 2001 Doug Lea (dl at gee)
34 * Quickstart
36 In order to compile this implementation, a Makefile is provided with
37 the ptmalloc2 distribution, which has pre-defined targets for some
38 popular systems (e.g. "make posix" for Posix threads). All that is
39 typically required with regard to compiler flags is the selection of
40 the thread package via defining one out of USE_PTHREADS, USE_THR or
41 USE_SPROC. Check the thread-m.h file for what effects this has.
42 Many/most systems will additionally require USE_TSD_DATA_HACK to be
43 defined, so this is the default for "make posix".
45 * Why use this malloc?
47 This is not the fastest, most space-conserving, most portable, or
48 most tunable malloc ever written. However it is among the fastest
49 while also being among the most space-conserving, portable and tunable.
50 Consistent balance across these factors results in a good general-purpose
51 allocator for malloc-intensive programs.
53 The main properties of the algorithms are:
54 * For large (>= 512 bytes) requests, it is a pure best-fit allocator,
55 with ties normally decided via FIFO (i.e. least recently used).
56 * For small (<= 64 bytes by default) requests, it is a caching
57 allocator, that maintains pools of quickly recycled chunks.
58 * In between, and for combinations of large and small requests, it does
59 the best it can trying to meet both goals at once.
60 * For very large requests (>= 128KB by default), it relies on system
61 memory mapping facilities, if supported.
63 For a longer but slightly out of date high-level description, see
64 http://gee.cs.oswego.edu/dl/html/malloc.html
66 You may already by default be using a C library containing a malloc
67 that is based on some version of this malloc (for example in
68 linux). You might still want to use the one in this file in order to
69 customize settings or to avoid overheads associated with library
70 versions.
72 * Contents, described in more detail in "description of public routines" below.
74 Standard (ANSI/SVID/...) functions:
75 malloc(size_t n);
76 calloc(size_t n_elements, size_t element_size);
77 free(Void_t* p);
78 realloc(Void_t* p, size_t n);
79 memalign(size_t alignment, size_t n);
80 valloc(size_t n);
81 mallinfo()
82 mallopt(int parameter_number, int parameter_value)
84 Additional functions:
85 independent_calloc(size_t n_elements, size_t size, Void_t* chunks[]);
86 independent_comalloc(size_t n_elements, size_t sizes[], Void_t* chunks[]);
87 pvalloc(size_t n);
88 cfree(Void_t* p);
89 malloc_trim(size_t pad);
90 malloc_usable_size(Void_t* p);
91 malloc_stats();
93 * Vital statistics:
95 Supported pointer representation: 4 or 8 bytes
96 Supported size_t representation: 4 or 8 bytes
97 Note that size_t is allowed to be 4 bytes even if pointers are 8.
98 You can adjust this by defining INTERNAL_SIZE_T
100 Alignment: 2 * sizeof(size_t) (default)
101 (i.e., 8 byte alignment with 4byte size_t). This suffices for
102 nearly all current machines and C compilers. However, you can
103 define MALLOC_ALIGNMENT to be wider than this if necessary.
105 Minimum overhead per allocated chunk: 4 or 8 bytes
106 Each malloced chunk has a hidden word of overhead holding size
107 and status information.
109 Minimum allocated size: 4-byte ptrs: 16 bytes (including 4 overhead)
110 8-byte ptrs: 24/32 bytes (including, 4/8 overhead)
112 When a chunk is freed, 12 (for 4byte ptrs) or 20 (for 8 byte
113 ptrs but 4 byte size) or 24 (for 8/8) additional bytes are
114 needed; 4 (8) for a trailing size field and 8 (16) bytes for
115 free list pointers. Thus, the minimum allocatable size is
116 16/24/32 bytes.
118 Even a request for zero bytes (i.e., malloc(0)) returns a
119 pointer to something of the minimum allocatable size.
121 The maximum overhead wastage (i.e., number of extra bytes
122 allocated than were requested in malloc) is less than or equal
123 to the minimum size, except for requests >= mmap_threshold that
124 are serviced via mmap(), where the worst case wastage is 2 *
125 sizeof(size_t) bytes plus the remainder from a system page (the
126 minimal mmap unit); typically 4096 or 8192 bytes.
128 Maximum allocated size: 4-byte size_t: 2^32 minus about two pages
129 8-byte size_t: 2^64 minus about two pages
131 It is assumed that (possibly signed) size_t values suffice to
132 represent chunk sizes. `Possibly signed' is due to the fact
133 that `size_t' may be defined on a system as either a signed or
134 an unsigned type. The ISO C standard says that it must be
135 unsigned, but a few systems are known not to adhere to this.
136 Additionally, even when size_t is unsigned, sbrk (which is by
137 default used to obtain memory from system) accepts signed
138 arguments, and may not be able to handle size_t-wide arguments
139 with negative sign bit. Generally, values that would
140 appear as negative after accounting for overhead and alignment
141 are supported only via mmap(), which does not have this
142 limitation.
144 Requests for sizes outside the allowed range will perform an optional
145 failure action and then return null. (Requests may also
146 also fail because a system is out of memory.)
148 Thread-safety: thread-safe unless NO_THREADS is defined
150 Compliance: I believe it is compliant with the 1997 Single Unix Specification
151 (See http://www.opennc.org). Also SVID/XPG, ANSI C, and probably
152 others as well.
154 * Synopsis of compile-time options:
156 People have reported using previous versions of this malloc on all
157 versions of Unix, sometimes by tweaking some of the defines
158 below. It has been tested most extensively on Solaris and
159 Linux. It is also reported to work on WIN32 platforms.
160 People also report using it in stand-alone embedded systems.
162 The implementation is in straight, hand-tuned ANSI C. It is not
163 at all modular. (Sorry!) It uses a lot of macros. To be at all
164 usable, this code should be compiled using an optimizing compiler
165 (for example gcc -O3) that can simplify expressions and control
166 paths. (FAQ: some macros import variables as arguments rather than
167 declare locals because people reported that some debuggers
168 otherwise get confused.)
170 OPTION DEFAULT VALUE
172 Compilation Environment options:
174 __STD_C derived from C compiler defines
175 WIN32 NOT defined
176 HAVE_MEMCPY defined
177 USE_MEMCPY 1 if HAVE_MEMCPY is defined
178 HAVE_MMAP defined as 1
179 MMAP_CLEARS 1
180 HAVE_MREMAP 0 unless linux defined
181 USE_ARENAS the same as HAVE_MMAP
182 malloc_getpagesize derived from system #includes, or 4096 if not
183 HAVE_USR_INCLUDE_MALLOC_H NOT defined
184 LACKS_UNISTD_H NOT defined unless WIN32
185 LACKS_SYS_PARAM_H NOT defined unless WIN32
186 LACKS_SYS_MMAN_H NOT defined unless WIN32
188 Changing default word sizes:
190 INTERNAL_SIZE_T size_t
191 MALLOC_ALIGNMENT MAX (2 * sizeof(INTERNAL_SIZE_T),
192 __alignof__ (long double))
194 Configuration and functionality options:
196 USE_DL_PREFIX NOT defined
197 USE_PUBLIC_MALLOC_WRAPPERS NOT defined
198 USE_MALLOC_LOCK NOT defined
199 MALLOC_DEBUG NOT defined
200 REALLOC_ZERO_BYTES_FREES 1
201 MALLOC_FAILURE_ACTION errno = ENOMEM, if __STD_C defined, else no-op
202 TRIM_FASTBINS 0
204 Options for customizing MORECORE:
206 MORECORE sbrk
207 MORECORE_FAILURE -1
208 MORECORE_CONTIGUOUS 1
209 MORECORE_CANNOT_TRIM NOT defined
210 MORECORE_CLEARS 1
211 MMAP_AS_MORECORE_SIZE (1024 * 1024)
213 Tuning options that are also dynamically changeable via mallopt:
215 DEFAULT_MXFAST 64 (for 32bit), 128 (for 64bit)
216 DEFAULT_TRIM_THRESHOLD 128 * 1024
217 DEFAULT_TOP_PAD 0
218 DEFAULT_MMAP_THRESHOLD 128 * 1024
219 DEFAULT_MMAP_MAX 65536
221 There are several other #defined constants and macros that you
222 probably don't want to touch unless you are extending or adapting malloc. */
225 __STD_C should be nonzero if using ANSI-standard C compiler, a C++
226 compiler, or a C compiler sufficiently close to ANSI to get away
227 with it.
230 #ifndef __STD_C
231 #if defined(__STDC__) || defined(__cplusplus)
232 #define __STD_C 1
233 #else
234 #define __STD_C 0
235 #endif
236 #endif /*__STD_C*/
240 Void_t* is the pointer type that malloc should say it returns
243 #ifndef Void_t
244 #if (__STD_C || defined(WIN32))
245 #define Void_t void
246 #else
247 #define Void_t char
248 #endif
249 #endif /*Void_t*/
251 #if __STD_C
252 #include <stddef.h> /* for size_t */
253 #include <stdlib.h> /* for getenv(), abort() */
254 #else
255 #include <sys/types.h>
256 #endif
258 #include <malloc-machine.h>
260 #ifdef _LIBC
261 #ifdef ATOMIC_FASTBINS
262 #include <atomic.h>
263 #endif
264 #include <stdio-common/_itoa.h>
265 #include <bits/wordsize.h>
266 #include <sys/sysinfo.h>
267 #endif
269 #ifdef __cplusplus
270 extern "C" {
271 #endif
273 /* define LACKS_UNISTD_H if your system does not have a <unistd.h>. */
275 /* #define LACKS_UNISTD_H */
277 #ifndef LACKS_UNISTD_H
278 #include <unistd.h>
279 #endif
281 /* define LACKS_SYS_PARAM_H if your system does not have a <sys/param.h>. */
283 /* #define LACKS_SYS_PARAM_H */
286 #include <stdio.h> /* needed for malloc_stats */
287 #include <errno.h> /* needed for optional MALLOC_FAILURE_ACTION */
289 /* For uintptr_t. */
290 #include <stdint.h>
292 /* For va_arg, va_start, va_end. */
293 #include <stdarg.h>
295 /* For writev and struct iovec. */
296 #include <sys/uio.h>
297 /* For syslog. */
298 #include <sys/syslog.h>
300 /* For various dynamic linking things. */
301 #include <dlfcn.h>
305 Debugging:
307 Because freed chunks may be overwritten with bookkeeping fields, this
308 malloc will often die when freed memory is overwritten by user
309 programs. This can be very effective (albeit in an annoying way)
310 in helping track down dangling pointers.
312 If you compile with -DMALLOC_DEBUG, a number of assertion checks are
313 enabled that will catch more memory errors. You probably won't be
314 able to make much sense of the actual assertion errors, but they
315 should help you locate incorrectly overwritten memory. The checking
316 is fairly extensive, and will slow down execution
317 noticeably. Calling malloc_stats or mallinfo with MALLOC_DEBUG set
318 will attempt to check every non-mmapped allocated and free chunk in
319 the course of computing the summmaries. (By nature, mmapped regions
320 cannot be checked very much automatically.)
322 Setting MALLOC_DEBUG may also be helpful if you are trying to modify
323 this code. The assertions in the check routines spell out in more
324 detail the assumptions and invariants underlying the algorithms.
326 Setting MALLOC_DEBUG does NOT provide an automated mechanism for
327 checking that all accesses to malloced memory stay within their
328 bounds. However, there are several add-ons and adaptations of this
329 or other mallocs available that do this.
332 #ifdef NDEBUG
333 # define assert(expr) ((void) 0)
334 #else
335 # define assert(expr) \
336 ((expr) \
337 ? ((void) 0) \
338 : __malloc_assert (__STRING (expr), __FILE__, __LINE__, __func__))
340 extern const char *__progname;
342 static void
343 __malloc_assert (const char *assertion, const char *file, unsigned int line,
344 const char *function)
346 (void) __fxprintf (NULL, "%s%s%s:%u: %s%sAssertion `%s' failed.\n",
347 __progname, __progname[0] ? ": " : "",
348 file, line,
349 function ? function : "", function ? ": " : "",
350 assertion);
351 fflush (stderr);
352 abort ();
354 #endif
358 INTERNAL_SIZE_T is the word-size used for internal bookkeeping
359 of chunk sizes.
361 The default version is the same as size_t.
363 While not strictly necessary, it is best to define this as an
364 unsigned type, even if size_t is a signed type. This may avoid some
365 artificial size limitations on some systems.
367 On a 64-bit machine, you may be able to reduce malloc overhead by
368 defining INTERNAL_SIZE_T to be a 32 bit `unsigned int' at the
369 expense of not being able to handle more than 2^32 of malloced
370 space. If this limitation is acceptable, you are encouraged to set
371 this unless you are on a platform requiring 16byte alignments. In
372 this case the alignment requirements turn out to negate any
373 potential advantages of decreasing size_t word size.
375 Implementors: Beware of the possible combinations of:
376 - INTERNAL_SIZE_T might be signed or unsigned, might be 32 or 64 bits,
377 and might be the same width as int or as long
378 - size_t might have different width and signedness as INTERNAL_SIZE_T
379 - int and long might be 32 or 64 bits, and might be the same width
380 To deal with this, most comparisons and difference computations
381 among INTERNAL_SIZE_Ts should cast them to unsigned long, being
382 aware of the fact that casting an unsigned int to a wider long does
383 not sign-extend. (This also makes checking for negative numbers
384 awkward.) Some of these casts result in harmless compiler warnings
385 on some systems.
388 #ifndef INTERNAL_SIZE_T
389 #define INTERNAL_SIZE_T size_t
390 #endif
392 /* The corresponding word size */
393 #define SIZE_SZ (sizeof(INTERNAL_SIZE_T))
397 MALLOC_ALIGNMENT is the minimum alignment for malloc'ed chunks.
398 It must be a power of two at least 2 * SIZE_SZ, even on machines
399 for which smaller alignments would suffice. It may be defined as
400 larger than this though. Note however that code and data structures
401 are optimized for the case of 8-byte alignment.
405 #ifndef MALLOC_ALIGNMENT
406 /* XXX This is the correct definition. It differs from 2*SIZE_SZ only on
407 powerpc32. For the time being, changing this is causing more
408 compatibility problems due to malloc_get_state/malloc_set_state than
409 will returning blocks not adequately aligned for long double objects
410 under -mlong-double-128.
412 #define MALLOC_ALIGNMENT (2 * SIZE_SZ < __alignof__ (long double) \
413 ? __alignof__ (long double) : 2 * SIZE_SZ)
415 #define MALLOC_ALIGNMENT (2 * SIZE_SZ)
416 #endif
418 /* The corresponding bit mask value */
419 #define MALLOC_ALIGN_MASK (MALLOC_ALIGNMENT - 1)
424 REALLOC_ZERO_BYTES_FREES should be set if a call to
425 realloc with zero bytes should be the same as a call to free.
426 This is required by the C standard. Otherwise, since this malloc
427 returns a unique pointer for malloc(0), so does realloc(p, 0).
430 #ifndef REALLOC_ZERO_BYTES_FREES
431 #define REALLOC_ZERO_BYTES_FREES 1
432 #endif
435 TRIM_FASTBINS controls whether free() of a very small chunk can
436 immediately lead to trimming. Setting to true (1) can reduce memory
437 footprint, but will almost always slow down programs that use a lot
438 of small chunks.
440 Define this only if you are willing to give up some speed to more
441 aggressively reduce system-level memory footprint when releasing
442 memory in programs that use many small chunks. You can get
443 essentially the same effect by setting MXFAST to 0, but this can
444 lead to even greater slowdowns in programs using many small chunks.
445 TRIM_FASTBINS is an in-between compile-time option, that disables
446 only those chunks bordering topmost memory from being placed in
447 fastbins.
450 #ifndef TRIM_FASTBINS
451 #define TRIM_FASTBINS 0
452 #endif
456 USE_DL_PREFIX will prefix all public routines with the string 'dl'.
457 This is necessary when you only want to use this malloc in one part
458 of a program, using your regular system malloc elsewhere.
461 /* #define USE_DL_PREFIX */
465 Two-phase name translation.
466 All of the actual routines are given mangled names.
467 When wrappers are used, they become the public callable versions.
468 When DL_PREFIX is used, the callable names are prefixed.
471 #ifdef USE_DL_PREFIX
472 #define public_cALLOc dlcalloc
473 #define public_fREe dlfree
474 #define public_cFREe dlcfree
475 #define public_mALLOc dlmalloc
476 #define public_mEMALIGn dlmemalign
477 #define public_rEALLOc dlrealloc
478 #define public_vALLOc dlvalloc
479 #define public_pVALLOc dlpvalloc
480 #define public_mALLINFo dlmallinfo
481 #define public_mALLOPt dlmallopt
482 #define public_mTRIm dlmalloc_trim
483 #define public_mSTATs dlmalloc_stats
484 #define public_mUSABLe dlmalloc_usable_size
485 #define public_iCALLOc dlindependent_calloc
486 #define public_iCOMALLOc dlindependent_comalloc
487 #define public_gET_STATe dlget_state
488 #define public_sET_STATe dlset_state
489 #else /* USE_DL_PREFIX */
490 #ifdef _LIBC
492 /* Special defines for the GNU C library. */
493 #define public_cALLOc __libc_calloc
494 #define public_fREe __libc_free
495 #define public_cFREe __libc_cfree
496 #define public_mALLOc __libc_malloc
497 #define public_mEMALIGn __libc_memalign
498 #define public_rEALLOc __libc_realloc
499 #define public_vALLOc __libc_valloc
500 #define public_pVALLOc __libc_pvalloc
501 #define public_mALLINFo __libc_mallinfo
502 #define public_mALLOPt __libc_mallopt
503 #define public_mTRIm __malloc_trim
504 #define public_mSTATs __malloc_stats
505 #define public_mUSABLe __malloc_usable_size
506 #define public_iCALLOc __libc_independent_calloc
507 #define public_iCOMALLOc __libc_independent_comalloc
508 #define public_gET_STATe __malloc_get_state
509 #define public_sET_STATe __malloc_set_state
510 #define malloc_getpagesize __getpagesize()
511 #define open __open
512 #define mmap __mmap
513 #define munmap __munmap
514 #define mremap __mremap
515 #define mprotect __mprotect
516 #define MORECORE (*__morecore)
517 #define MORECORE_FAILURE 0
519 Void_t * __default_morecore (ptrdiff_t);
520 Void_t *(*__morecore)(ptrdiff_t) = __default_morecore;
522 #else /* !_LIBC */
523 #define public_cALLOc calloc
524 #define public_fREe free
525 #define public_cFREe cfree
526 #define public_mALLOc malloc
527 #define public_mEMALIGn memalign
528 #define public_rEALLOc realloc
529 #define public_vALLOc valloc
530 #define public_pVALLOc pvalloc
531 #define public_mALLINFo mallinfo
532 #define public_mALLOPt mallopt
533 #define public_mTRIm malloc_trim
534 #define public_mSTATs malloc_stats
535 #define public_mUSABLe malloc_usable_size
536 #define public_iCALLOc independent_calloc
537 #define public_iCOMALLOc independent_comalloc
538 #define public_gET_STATe malloc_get_state
539 #define public_sET_STATe malloc_set_state
540 #endif /* _LIBC */
541 #endif /* USE_DL_PREFIX */
543 #ifndef _LIBC
544 #define __builtin_expect(expr, val) (expr)
546 #define fwrite(buf, size, count, fp) _IO_fwrite (buf, size, count, fp)
547 #endif
550 HAVE_MEMCPY should be defined if you are not otherwise using
551 ANSI STD C, but still have memcpy and memset in your C library
552 and want to use them in calloc and realloc. Otherwise simple
553 macro versions are defined below.
555 USE_MEMCPY should be defined as 1 if you actually want to
556 have memset and memcpy called. People report that the macro
557 versions are faster than libc versions on some systems.
559 Even if USE_MEMCPY is set to 1, loops to copy/clear small chunks
560 (of <= 36 bytes) are manually unrolled in realloc and calloc.
563 #define HAVE_MEMCPY
565 #ifndef USE_MEMCPY
566 #ifdef HAVE_MEMCPY
567 #define USE_MEMCPY 1
568 #else
569 #define USE_MEMCPY 0
570 #endif
571 #endif
574 #if (__STD_C || defined(HAVE_MEMCPY))
576 #ifdef _LIBC
577 # include <string.h>
578 #else
579 #ifdef WIN32
580 /* On Win32 memset and memcpy are already declared in windows.h */
581 #else
582 #if __STD_C
583 void* memset(void*, int, size_t);
584 void* memcpy(void*, const void*, size_t);
585 #else
586 Void_t* memset();
587 Void_t* memcpy();
588 #endif
589 #endif
590 #endif
591 #endif
594 /* Force a value to be in a register and stop the compiler referring
595 to the source (mostly memory location) again. */
596 #define force_reg(val) \
597 ({ __typeof (val) _v; asm ("" : "=r" (_v) : "0" (val)); _v; })
601 MALLOC_FAILURE_ACTION is the action to take before "return 0" when
602 malloc fails to be able to return memory, either because memory is
603 exhausted or because of illegal arguments.
605 By default, sets errno if running on STD_C platform, else does nothing.
608 #ifndef MALLOC_FAILURE_ACTION
609 #if __STD_C
610 #define MALLOC_FAILURE_ACTION \
611 errno = ENOMEM;
613 #else
614 #define MALLOC_FAILURE_ACTION
615 #endif
616 #endif
619 MORECORE-related declarations. By default, rely on sbrk
623 #ifdef LACKS_UNISTD_H
624 #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
625 #if __STD_C
626 extern Void_t* sbrk(ptrdiff_t);
627 #else
628 extern Void_t* sbrk();
629 #endif
630 #endif
631 #endif
634 MORECORE is the name of the routine to call to obtain more memory
635 from the system. See below for general guidance on writing
636 alternative MORECORE functions, as well as a version for WIN32 and a
637 sample version for pre-OSX macos.
640 #ifndef MORECORE
641 #define MORECORE sbrk
642 #endif
645 MORECORE_FAILURE is the value returned upon failure of MORECORE
646 as well as mmap. Since it cannot be an otherwise valid memory address,
647 and must reflect values of standard sys calls, you probably ought not
648 try to redefine it.
651 #ifndef MORECORE_FAILURE
652 #define MORECORE_FAILURE (-1)
653 #endif
656 If MORECORE_CONTIGUOUS is true, take advantage of fact that
657 consecutive calls to MORECORE with positive arguments always return
658 contiguous increasing addresses. This is true of unix sbrk. Even
659 if not defined, when regions happen to be contiguous, malloc will
660 permit allocations spanning regions obtained from different
661 calls. But defining this when applicable enables some stronger
662 consistency checks and space efficiencies.
665 #ifndef MORECORE_CONTIGUOUS
666 #define MORECORE_CONTIGUOUS 1
667 #endif
670 Define MORECORE_CANNOT_TRIM if your version of MORECORE
671 cannot release space back to the system when given negative
672 arguments. This is generally necessary only if you are using
673 a hand-crafted MORECORE function that cannot handle negative arguments.
676 /* #define MORECORE_CANNOT_TRIM */
678 /* MORECORE_CLEARS (default 1)
679 The degree to which the routine mapped to MORECORE zeroes out
680 memory: never (0), only for newly allocated space (1) or always
681 (2). The distinction between (1) and (2) is necessary because on
682 some systems, if the application first decrements and then
683 increments the break value, the contents of the reallocated space
684 are unspecified.
687 #ifndef MORECORE_CLEARS
688 #define MORECORE_CLEARS 1
689 #endif
693 Define HAVE_MMAP as true to optionally make malloc() use mmap() to
694 allocate very large blocks. These will be returned to the
695 operating system immediately after a free(). Also, if mmap
696 is available, it is used as a backup strategy in cases where
697 MORECORE fails to provide space from system.
699 This malloc is best tuned to work with mmap for large requests.
700 If you do not have mmap, operations involving very large chunks (1MB
701 or so) may be slower than you'd like.
704 #ifndef HAVE_MMAP
705 #define HAVE_MMAP 1
708 Standard unix mmap using /dev/zero clears memory so calloc doesn't
709 need to.
712 #ifndef MMAP_CLEARS
713 #define MMAP_CLEARS 1
714 #endif
716 #else /* no mmap */
717 #ifndef MMAP_CLEARS
718 #define MMAP_CLEARS 0
719 #endif
720 #endif
724 MMAP_AS_MORECORE_SIZE is the minimum mmap size argument to use if
725 sbrk fails, and mmap is used as a backup (which is done only if
726 HAVE_MMAP). The value must be a multiple of page size. This
727 backup strategy generally applies only when systems have "holes" in
728 address space, so sbrk cannot perform contiguous expansion, but
729 there is still space available on system. On systems for which
730 this is known to be useful (i.e. most linux kernels), this occurs
731 only when programs allocate huge amounts of memory. Between this,
732 and the fact that mmap regions tend to be limited, the size should
733 be large, to avoid too many mmap calls and thus avoid running out
734 of kernel resources.
737 #ifndef MMAP_AS_MORECORE_SIZE
738 #define MMAP_AS_MORECORE_SIZE (1024 * 1024)
739 #endif
742 Define HAVE_MREMAP to make realloc() use mremap() to re-allocate
743 large blocks. This is currently only possible on Linux with
744 kernel versions newer than 1.3.77.
747 #ifndef HAVE_MREMAP
748 #ifdef linux
749 #define HAVE_MREMAP 1
750 #else
751 #define HAVE_MREMAP 0
752 #endif
754 #endif /* HAVE_MMAP */
756 /* Define USE_ARENAS to enable support for multiple `arenas'. These
757 are allocated using mmap(), are necessary for threads and
758 occasionally useful to overcome address space limitations affecting
759 sbrk(). */
761 #ifndef USE_ARENAS
762 #define USE_ARENAS HAVE_MMAP
763 #endif
767 The system page size. To the extent possible, this malloc manages
768 memory from the system in page-size units. Note that this value is
769 cached during initialization into a field of malloc_state. So even
770 if malloc_getpagesize is a function, it is only called once.
772 The following mechanics for getpagesize were adapted from bsd/gnu
773 getpagesize.h. If none of the system-probes here apply, a value of
774 4096 is used, which should be OK: If they don't apply, then using
775 the actual value probably doesn't impact performance.
779 #ifndef malloc_getpagesize
781 #ifndef LACKS_UNISTD_H
782 # include <unistd.h>
783 #endif
785 # ifdef _SC_PAGESIZE /* some SVR4 systems omit an underscore */
786 # ifndef _SC_PAGE_SIZE
787 # define _SC_PAGE_SIZE _SC_PAGESIZE
788 # endif
789 # endif
791 # ifdef _SC_PAGE_SIZE
792 # define malloc_getpagesize sysconf(_SC_PAGE_SIZE)
793 # else
794 # if defined(BSD) || defined(DGUX) || defined(HAVE_GETPAGESIZE)
795 extern size_t getpagesize();
796 # define malloc_getpagesize getpagesize()
797 # else
798 # ifdef WIN32 /* use supplied emulation of getpagesize */
799 # define malloc_getpagesize getpagesize()
800 # else
801 # ifndef LACKS_SYS_PARAM_H
802 # include <sys/param.h>
803 # endif
804 # ifdef EXEC_PAGESIZE
805 # define malloc_getpagesize EXEC_PAGESIZE
806 # else
807 # ifdef NBPG
808 # ifndef CLSIZE
809 # define malloc_getpagesize NBPG
810 # else
811 # define malloc_getpagesize (NBPG * CLSIZE)
812 # endif
813 # else
814 # ifdef NBPC
815 # define malloc_getpagesize NBPC
816 # else
817 # ifdef PAGESIZE
818 # define malloc_getpagesize PAGESIZE
819 # else /* just guess */
820 # define malloc_getpagesize (4096)
821 # endif
822 # endif
823 # endif
824 # endif
825 # endif
826 # endif
827 # endif
828 #endif
831 This version of malloc supports the standard SVID/XPG mallinfo
832 routine that returns a struct containing usage properties and
833 statistics. It should work on any SVID/XPG compliant system that has
834 a /usr/include/malloc.h defining struct mallinfo. (If you'd like to
835 install such a thing yourself, cut out the preliminary declarations
836 as described above and below and save them in a malloc.h file. But
837 there's no compelling reason to bother to do this.)
839 The main declaration needed is the mallinfo struct that is returned
840 (by-copy) by mallinfo(). The SVID/XPG malloinfo struct contains a
841 bunch of fields that are not even meaningful in this version of
842 malloc. These fields are are instead filled by mallinfo() with
843 other numbers that might be of interest.
845 HAVE_USR_INCLUDE_MALLOC_H should be set if you have a
846 /usr/include/malloc.h file that includes a declaration of struct
847 mallinfo. If so, it is included; else an SVID2/XPG2 compliant
848 version is declared below. These must be precisely the same for
849 mallinfo() to work. The original SVID version of this struct,
850 defined on most systems with mallinfo, declares all fields as
851 ints. But some others define as unsigned long. If your system
852 defines the fields using a type of different width than listed here,
853 you must #include your system version and #define
854 HAVE_USR_INCLUDE_MALLOC_H.
857 /* #define HAVE_USR_INCLUDE_MALLOC_H */
859 #ifdef HAVE_USR_INCLUDE_MALLOC_H
860 #include "/usr/include/malloc.h"
861 #endif
864 /* ---------- description of public routines ------------ */
867 malloc(size_t n)
868 Returns a pointer to a newly allocated chunk of at least n bytes, or null
869 if no space is available. Additionally, on failure, errno is
870 set to ENOMEM on ANSI C systems.
872 If n is zero, malloc returns a minumum-sized chunk. (The minimum
873 size is 16 bytes on most 32bit systems, and 24 or 32 bytes on 64bit
874 systems.) On most systems, size_t is an unsigned type, so calls
875 with negative arguments are interpreted as requests for huge amounts
876 of space, which will often fail. The maximum supported value of n
877 differs across systems, but is in all cases less than the maximum
878 representable value of a size_t.
880 #if __STD_C
881 Void_t* public_mALLOc(size_t);
882 #else
883 Void_t* public_mALLOc();
884 #endif
885 #ifdef libc_hidden_proto
886 libc_hidden_proto (public_mALLOc)
887 #endif
890 free(Void_t* p)
891 Releases the chunk of memory pointed to by p, that had been previously
892 allocated using malloc or a related routine such as realloc.
893 It has no effect if p is null. It can have arbitrary (i.e., bad!)
894 effects if p has already been freed.
896 Unless disabled (using mallopt), freeing very large spaces will
897 when possible, automatically trigger operations that give
898 back unused memory to the system, thus reducing program footprint.
900 #if __STD_C
901 void public_fREe(Void_t*);
902 #else
903 void public_fREe();
904 #endif
905 #ifdef libc_hidden_proto
906 libc_hidden_proto (public_fREe)
907 #endif
910 calloc(size_t n_elements, size_t element_size);
911 Returns a pointer to n_elements * element_size bytes, with all locations
912 set to zero.
914 #if __STD_C
915 Void_t* public_cALLOc(size_t, size_t);
916 #else
917 Void_t* public_cALLOc();
918 #endif
921 realloc(Void_t* p, size_t n)
922 Returns a pointer to a chunk of size n that contains the same data
923 as does chunk p up to the minimum of (n, p's size) bytes, or null
924 if no space is available.
926 The returned pointer may or may not be the same as p. The algorithm
927 prefers extending p when possible, otherwise it employs the
928 equivalent of a malloc-copy-free sequence.
930 If p is null, realloc is equivalent to malloc.
932 If space is not available, realloc returns null, errno is set (if on
933 ANSI) and p is NOT freed.
935 if n is for fewer bytes than already held by p, the newly unused
936 space is lopped off and freed if possible. Unless the #define
937 REALLOC_ZERO_BYTES_FREES is set, realloc with a size argument of
938 zero (re)allocates a minimum-sized chunk.
940 Large chunks that were internally obtained via mmap will always
941 be reallocated using malloc-copy-free sequences unless
942 the system supports MREMAP (currently only linux).
944 The old unix realloc convention of allowing the last-free'd chunk
945 to be used as an argument to realloc is not supported.
947 #if __STD_C
948 Void_t* public_rEALLOc(Void_t*, size_t);
949 #else
950 Void_t* public_rEALLOc();
951 #endif
952 #ifdef libc_hidden_proto
953 libc_hidden_proto (public_rEALLOc)
954 #endif
957 memalign(size_t alignment, size_t n);
958 Returns a pointer to a newly allocated chunk of n bytes, aligned
959 in accord with the alignment argument.
961 The alignment argument should be a power of two. If the argument is
962 not a power of two, the nearest greater power is used.
963 8-byte alignment is guaranteed by normal malloc calls, so don't
964 bother calling memalign with an argument of 8 or less.
966 Overreliance on memalign is a sure way to fragment space.
968 #if __STD_C
969 Void_t* public_mEMALIGn(size_t, size_t);
970 #else
971 Void_t* public_mEMALIGn();
972 #endif
973 #ifdef libc_hidden_proto
974 libc_hidden_proto (public_mEMALIGn)
975 #endif
978 valloc(size_t n);
979 Equivalent to memalign(pagesize, n), where pagesize is the page
980 size of the system. If the pagesize is unknown, 4096 is used.
982 #if __STD_C
983 Void_t* public_vALLOc(size_t);
984 #else
985 Void_t* public_vALLOc();
986 #endif
991 mallopt(int parameter_number, int parameter_value)
992 Sets tunable parameters The format is to provide a
993 (parameter-number, parameter-value) pair. mallopt then sets the
994 corresponding parameter to the argument value if it can (i.e., so
995 long as the value is meaningful), and returns 1 if successful else
996 0. SVID/XPG/ANSI defines four standard param numbers for mallopt,
997 normally defined in malloc.h. Only one of these (M_MXFAST) is used
998 in this malloc. The others (M_NLBLKS, M_GRAIN, M_KEEP) don't apply,
999 so setting them has no effect. But this malloc also supports four
1000 other options in mallopt. See below for details. Briefly, supported
1001 parameters are as follows (listed defaults are for "typical"
1002 configurations).
1004 Symbol param # default allowed param values
1005 M_MXFAST 1 64 0-80 (0 disables fastbins)
1006 M_TRIM_THRESHOLD -1 128*1024 any (-1U disables trimming)
1007 M_TOP_PAD -2 0 any
1008 M_MMAP_THRESHOLD -3 128*1024 any (or 0 if no MMAP support)
1009 M_MMAP_MAX -4 65536 any (0 disables use of mmap)
1011 #if __STD_C
1012 int public_mALLOPt(int, int);
1013 #else
1014 int public_mALLOPt();
1015 #endif
1019 mallinfo()
1020 Returns (by copy) a struct containing various summary statistics:
1022 arena: current total non-mmapped bytes allocated from system
1023 ordblks: the number of free chunks
1024 smblks: the number of fastbin blocks (i.e., small chunks that
1025 have been freed but not use resused or consolidated)
1026 hblks: current number of mmapped regions
1027 hblkhd: total bytes held in mmapped regions
1028 usmblks: the maximum total allocated space. This will be greater
1029 than current total if trimming has occurred.
1030 fsmblks: total bytes held in fastbin blocks
1031 uordblks: current total allocated space (normal or mmapped)
1032 fordblks: total free space
1033 keepcost: the maximum number of bytes that could ideally be released
1034 back to system via malloc_trim. ("ideally" means that
1035 it ignores page restrictions etc.)
1037 Because these fields are ints, but internal bookkeeping may
1038 be kept as longs, the reported values may wrap around zero and
1039 thus be inaccurate.
1041 #if __STD_C
1042 struct mallinfo public_mALLINFo(void);
1043 #else
1044 struct mallinfo public_mALLINFo();
1045 #endif
1047 #ifndef _LIBC
1049 independent_calloc(size_t n_elements, size_t element_size, Void_t* chunks[]);
1051 independent_calloc is similar to calloc, but instead of returning a
1052 single cleared space, it returns an array of pointers to n_elements
1053 independent elements that can hold contents of size elem_size, each
1054 of which starts out cleared, and can be independently freed,
1055 realloc'ed etc. The elements are guaranteed to be adjacently
1056 allocated (this is not guaranteed to occur with multiple callocs or
1057 mallocs), which may also improve cache locality in some
1058 applications.
1060 The "chunks" argument is optional (i.e., may be null, which is
1061 probably the most typical usage). If it is null, the returned array
1062 is itself dynamically allocated and should also be freed when it is
1063 no longer needed. Otherwise, the chunks array must be of at least
1064 n_elements in length. It is filled in with the pointers to the
1065 chunks.
1067 In either case, independent_calloc returns this pointer array, or
1068 null if the allocation failed. If n_elements is zero and "chunks"
1069 is null, it returns a chunk representing an array with zero elements
1070 (which should be freed if not wanted).
1072 Each element must be individually freed when it is no longer
1073 needed. If you'd like to instead be able to free all at once, you
1074 should instead use regular calloc and assign pointers into this
1075 space to represent elements. (In this case though, you cannot
1076 independently free elements.)
1078 independent_calloc simplifies and speeds up implementations of many
1079 kinds of pools. It may also be useful when constructing large data
1080 structures that initially have a fixed number of fixed-sized nodes,
1081 but the number is not known at compile time, and some of the nodes
1082 may later need to be freed. For example:
1084 struct Node { int item; struct Node* next; };
1086 struct Node* build_list() {
1087 struct Node** pool;
1088 int n = read_number_of_nodes_needed();
1089 if (n <= 0) return 0;
1090 pool = (struct Node**)(independent_calloc(n, sizeof(struct Node), 0);
1091 if (pool == 0) die();
1092 // organize into a linked list...
1093 struct Node* first = pool[0];
1094 for (i = 0; i < n-1; ++i)
1095 pool[i]->next = pool[i+1];
1096 free(pool); // Can now free the array (or not, if it is needed later)
1097 return first;
1100 #if __STD_C
1101 Void_t** public_iCALLOc(size_t, size_t, Void_t**);
1102 #else
1103 Void_t** public_iCALLOc();
1104 #endif
1107 independent_comalloc(size_t n_elements, size_t sizes[], Void_t* chunks[]);
1109 independent_comalloc allocates, all at once, a set of n_elements
1110 chunks with sizes indicated in the "sizes" array. It returns
1111 an array of pointers to these elements, each of which can be
1112 independently freed, realloc'ed etc. The elements are guaranteed to
1113 be adjacently allocated (this is not guaranteed to occur with
1114 multiple callocs or mallocs), which may also improve cache locality
1115 in some applications.
1117 The "chunks" argument is optional (i.e., may be null). If it is null
1118 the returned array is itself dynamically allocated and should also
1119 be freed when it is no longer needed. Otherwise, the chunks array
1120 must be of at least n_elements in length. It is filled in with the
1121 pointers to the chunks.
1123 In either case, independent_comalloc returns this pointer array, or
1124 null if the allocation failed. If n_elements is zero and chunks is
1125 null, it returns a chunk representing an array with zero elements
1126 (which should be freed if not wanted).
1128 Each element must be individually freed when it is no longer
1129 needed. If you'd like to instead be able to free all at once, you
1130 should instead use a single regular malloc, and assign pointers at
1131 particular offsets in the aggregate space. (In this case though, you
1132 cannot independently free elements.)
1134 independent_comallac differs from independent_calloc in that each
1135 element may have a different size, and also that it does not
1136 automatically clear elements.
1138 independent_comalloc can be used to speed up allocation in cases
1139 where several structs or objects must always be allocated at the
1140 same time. For example:
1142 struct Head { ... }
1143 struct Foot { ... }
1145 void send_message(char* msg) {
1146 int msglen = strlen(msg);
1147 size_t sizes[3] = { sizeof(struct Head), msglen, sizeof(struct Foot) };
1148 void* chunks[3];
1149 if (independent_comalloc(3, sizes, chunks) == 0)
1150 die();
1151 struct Head* head = (struct Head*)(chunks[0]);
1152 char* body = (char*)(chunks[1]);
1153 struct Foot* foot = (struct Foot*)(chunks[2]);
1154 // ...
1157 In general though, independent_comalloc is worth using only for
1158 larger values of n_elements. For small values, you probably won't
1159 detect enough difference from series of malloc calls to bother.
1161 Overuse of independent_comalloc can increase overall memory usage,
1162 since it cannot reuse existing noncontiguous small chunks that
1163 might be available for some of the elements.
1165 #if __STD_C
1166 Void_t** public_iCOMALLOc(size_t, size_t*, Void_t**);
1167 #else
1168 Void_t** public_iCOMALLOc();
1169 #endif
1171 #endif /* _LIBC */
1175 pvalloc(size_t n);
1176 Equivalent to valloc(minimum-page-that-holds(n)), that is,
1177 round up n to nearest pagesize.
1179 #if __STD_C
1180 Void_t* public_pVALLOc(size_t);
1181 #else
1182 Void_t* public_pVALLOc();
1183 #endif
1186 cfree(Void_t* p);
1187 Equivalent to free(p).
1189 cfree is needed/defined on some systems that pair it with calloc,
1190 for odd historical reasons (such as: cfree is used in example
1191 code in the first edition of K&R).
1193 #if __STD_C
1194 void public_cFREe(Void_t*);
1195 #else
1196 void public_cFREe();
1197 #endif
1200 malloc_trim(size_t pad);
1202 If possible, gives memory back to the system (via negative
1203 arguments to sbrk) if there is unused memory at the `high' end of
1204 the malloc pool. You can call this after freeing large blocks of
1205 memory to potentially reduce the system-level memory requirements
1206 of a program. However, it cannot guarantee to reduce memory. Under
1207 some allocation patterns, some large free blocks of memory will be
1208 locked between two used chunks, so they cannot be given back to
1209 the system.
1211 The `pad' argument to malloc_trim represents the amount of free
1212 trailing space to leave untrimmed. If this argument is zero,
1213 only the minimum amount of memory to maintain internal data
1214 structures will be left (one page or less). Non-zero arguments
1215 can be supplied to maintain enough trailing space to service
1216 future expected allocations without having to re-obtain memory
1217 from the system.
1219 Malloc_trim returns 1 if it actually released any memory, else 0.
1220 On systems that do not support "negative sbrks", it will always
1221 return 0.
1223 #if __STD_C
1224 int public_mTRIm(size_t);
1225 #else
1226 int public_mTRIm();
1227 #endif
1230 malloc_usable_size(Void_t* p);
1232 Returns the number of bytes you can actually use in
1233 an allocated chunk, which may be more than you requested (although
1234 often not) due to alignment and minimum size constraints.
1235 You can use this many bytes without worrying about
1236 overwriting other allocated objects. This is not a particularly great
1237 programming practice. malloc_usable_size can be more useful in
1238 debugging and assertions, for example:
1240 p = malloc(n);
1241 assert(malloc_usable_size(p) >= 256);
1244 #if __STD_C
1245 size_t public_mUSABLe(Void_t*);
1246 #else
1247 size_t public_mUSABLe();
1248 #endif
1251 malloc_stats();
1252 Prints on stderr the amount of space obtained from the system (both
1253 via sbrk and mmap), the maximum amount (which may be more than
1254 current if malloc_trim and/or munmap got called), and the current
1255 number of bytes allocated via malloc (or realloc, etc) but not yet
1256 freed. Note that this is the number of bytes allocated, not the
1257 number requested. It will be larger than the number requested
1258 because of alignment and bookkeeping overhead. Because it includes
1259 alignment wastage as being in use, this figure may be greater than
1260 zero even when no user-level chunks are allocated.
1262 The reported current and maximum system memory can be inaccurate if
1263 a program makes other calls to system memory allocation functions
1264 (normally sbrk) outside of malloc.
1266 malloc_stats prints only the most commonly interesting statistics.
1267 More information can be obtained by calling mallinfo.
1270 #if __STD_C
1271 void public_mSTATs(void);
1272 #else
1273 void public_mSTATs();
1274 #endif
1277 malloc_get_state(void);
1279 Returns the state of all malloc variables in an opaque data
1280 structure.
1282 #if __STD_C
1283 Void_t* public_gET_STATe(void);
1284 #else
1285 Void_t* public_gET_STATe();
1286 #endif
1289 malloc_set_state(Void_t* state);
1291 Restore the state of all malloc variables from data obtained with
1292 malloc_get_state().
1294 #if __STD_C
1295 int public_sET_STATe(Void_t*);
1296 #else
1297 int public_sET_STATe();
1298 #endif
1300 #ifdef _LIBC
1302 posix_memalign(void **memptr, size_t alignment, size_t size);
1304 POSIX wrapper like memalign(), checking for validity of size.
1306 int __posix_memalign(void **, size_t, size_t);
1307 #endif
1309 /* mallopt tuning options */
1312 M_MXFAST is the maximum request size used for "fastbins", special bins
1313 that hold returned chunks without consolidating their spaces. This
1314 enables future requests for chunks of the same size to be handled
1315 very quickly, but can increase fragmentation, and thus increase the
1316 overall memory footprint of a program.
1318 This malloc manages fastbins very conservatively yet still
1319 efficiently, so fragmentation is rarely a problem for values less
1320 than or equal to the default. The maximum supported value of MXFAST
1321 is 80. You wouldn't want it any higher than this anyway. Fastbins
1322 are designed especially for use with many small structs, objects or
1323 strings -- the default handles structs/objects/arrays with sizes up
1324 to 8 4byte fields, or small strings representing words, tokens,
1325 etc. Using fastbins for larger objects normally worsens
1326 fragmentation without improving speed.
1328 M_MXFAST is set in REQUEST size units. It is internally used in
1329 chunksize units, which adds padding and alignment. You can reduce
1330 M_MXFAST to 0 to disable all use of fastbins. This causes the malloc
1331 algorithm to be a closer approximation of fifo-best-fit in all cases,
1332 not just for larger requests, but will generally cause it to be
1333 slower.
1337 /* M_MXFAST is a standard SVID/XPG tuning option, usually listed in malloc.h */
1338 #ifndef M_MXFAST
1339 #define M_MXFAST 1
1340 #endif
1342 #ifndef DEFAULT_MXFAST
1343 #define DEFAULT_MXFAST (64 * SIZE_SZ / 4)
1344 #endif
1348 M_TRIM_THRESHOLD is the maximum amount of unused top-most memory
1349 to keep before releasing via malloc_trim in free().
1351 Automatic trimming is mainly useful in long-lived programs.
1352 Because trimming via sbrk can be slow on some systems, and can
1353 sometimes be wasteful (in cases where programs immediately
1354 afterward allocate more large chunks) the value should be high
1355 enough so that your overall system performance would improve by
1356 releasing this much memory.
1358 The trim threshold and the mmap control parameters (see below)
1359 can be traded off with one another. Trimming and mmapping are
1360 two different ways of releasing unused memory back to the
1361 system. Between these two, it is often possible to keep
1362 system-level demands of a long-lived program down to a bare
1363 minimum. For example, in one test suite of sessions measuring
1364 the XF86 X server on Linux, using a trim threshold of 128K and a
1365 mmap threshold of 192K led to near-minimal long term resource
1366 consumption.
1368 If you are using this malloc in a long-lived program, it should
1369 pay to experiment with these values. As a rough guide, you
1370 might set to a value close to the average size of a process
1371 (program) running on your system. Releasing this much memory
1372 would allow such a process to run in memory. Generally, it's
1373 worth it to tune for trimming rather tham memory mapping when a
1374 program undergoes phases where several large chunks are
1375 allocated and released in ways that can reuse each other's
1376 storage, perhaps mixed with phases where there are no such
1377 chunks at all. And in well-behaved long-lived programs,
1378 controlling release of large blocks via trimming versus mapping
1379 is usually faster.
1381 However, in most programs, these parameters serve mainly as
1382 protection against the system-level effects of carrying around
1383 massive amounts of unneeded memory. Since frequent calls to
1384 sbrk, mmap, and munmap otherwise degrade performance, the default
1385 parameters are set to relatively high values that serve only as
1386 safeguards.
1388 The trim value It must be greater than page size to have any useful
1389 effect. To disable trimming completely, you can set to
1390 (unsigned long)(-1)
1392 Trim settings interact with fastbin (MXFAST) settings: Unless
1393 TRIM_FASTBINS is defined, automatic trimming never takes place upon
1394 freeing a chunk with size less than or equal to MXFAST. Trimming is
1395 instead delayed until subsequent freeing of larger chunks. However,
1396 you can still force an attempted trim by calling malloc_trim.
1398 Also, trimming is not generally possible in cases where
1399 the main arena is obtained via mmap.
1401 Note that the trick some people use of mallocing a huge space and
1402 then freeing it at program startup, in an attempt to reserve system
1403 memory, doesn't have the intended effect under automatic trimming,
1404 since that memory will immediately be returned to the system.
1407 #define M_TRIM_THRESHOLD -1
1409 #ifndef DEFAULT_TRIM_THRESHOLD
1410 #define DEFAULT_TRIM_THRESHOLD (128 * 1024)
1411 #endif
1414 M_TOP_PAD is the amount of extra `padding' space to allocate or
1415 retain whenever sbrk is called. It is used in two ways internally:
1417 * When sbrk is called to extend the top of the arena to satisfy
1418 a new malloc request, this much padding is added to the sbrk
1419 request.
1421 * When malloc_trim is called automatically from free(),
1422 it is used as the `pad' argument.
1424 In both cases, the actual amount of padding is rounded
1425 so that the end of the arena is always a system page boundary.
1427 The main reason for using padding is to avoid calling sbrk so
1428 often. Having even a small pad greatly reduces the likelihood
1429 that nearly every malloc request during program start-up (or
1430 after trimming) will invoke sbrk, which needlessly wastes
1431 time.
1433 Automatic rounding-up to page-size units is normally sufficient
1434 to avoid measurable overhead, so the default is 0. However, in
1435 systems where sbrk is relatively slow, it can pay to increase
1436 this value, at the expense of carrying around more memory than
1437 the program needs.
1440 #define M_TOP_PAD -2
1442 #ifndef DEFAULT_TOP_PAD
1443 #define DEFAULT_TOP_PAD (0)
1444 #endif
1447 MMAP_THRESHOLD_MAX and _MIN are the bounds on the dynamically
1448 adjusted MMAP_THRESHOLD.
1451 #ifndef DEFAULT_MMAP_THRESHOLD_MIN
1452 #define DEFAULT_MMAP_THRESHOLD_MIN (128 * 1024)
1453 #endif
1455 #ifndef DEFAULT_MMAP_THRESHOLD_MAX
1456 /* For 32-bit platforms we cannot increase the maximum mmap
1457 threshold much because it is also the minimum value for the
1458 maximum heap size and its alignment. Going above 512k (i.e., 1M
1459 for new heaps) wastes too much address space. */
1460 # if __WORDSIZE == 32
1461 # define DEFAULT_MMAP_THRESHOLD_MAX (512 * 1024)
1462 # else
1463 # define DEFAULT_MMAP_THRESHOLD_MAX (4 * 1024 * 1024 * sizeof(long))
1464 # endif
1465 #endif
1468 M_MMAP_THRESHOLD is the request size threshold for using mmap()
1469 to service a request. Requests of at least this size that cannot
1470 be allocated using already-existing space will be serviced via mmap.
1471 (If enough normal freed space already exists it is used instead.)
1473 Using mmap segregates relatively large chunks of memory so that
1474 they can be individually obtained and released from the host
1475 system. A request serviced through mmap is never reused by any
1476 other request (at least not directly; the system may just so
1477 happen to remap successive requests to the same locations).
1479 Segregating space in this way has the benefits that:
1481 1. Mmapped space can ALWAYS be individually released back
1482 to the system, which helps keep the system level memory
1483 demands of a long-lived program low.
1484 2. Mapped memory can never become `locked' between
1485 other chunks, as can happen with normally allocated chunks, which
1486 means that even trimming via malloc_trim would not release them.
1487 3. On some systems with "holes" in address spaces, mmap can obtain
1488 memory that sbrk cannot.
1490 However, it has the disadvantages that:
1492 1. The space cannot be reclaimed, consolidated, and then
1493 used to service later requests, as happens with normal chunks.
1494 2. It can lead to more wastage because of mmap page alignment
1495 requirements
1496 3. It causes malloc performance to be more dependent on host
1497 system memory management support routines which may vary in
1498 implementation quality and may impose arbitrary
1499 limitations. Generally, servicing a request via normal
1500 malloc steps is faster than going through a system's mmap.
1502 The advantages of mmap nearly always outweigh disadvantages for
1503 "large" chunks, but the value of "large" varies across systems. The
1504 default is an empirically derived value that works well in most
1505 systems.
1508 Update in 2006:
1509 The above was written in 2001. Since then the world has changed a lot.
1510 Memory got bigger. Applications got bigger. The virtual address space
1511 layout in 32 bit linux changed.
1513 In the new situation, brk() and mmap space is shared and there are no
1514 artificial limits on brk size imposed by the kernel. What is more,
1515 applications have started using transient allocations larger than the
1516 128Kb as was imagined in 2001.
1518 The price for mmap is also high now; each time glibc mmaps from the
1519 kernel, the kernel is forced to zero out the memory it gives to the
1520 application. Zeroing memory is expensive and eats a lot of cache and
1521 memory bandwidth. This has nothing to do with the efficiency of the
1522 virtual memory system, by doing mmap the kernel just has no choice but
1523 to zero.
1525 In 2001, the kernel had a maximum size for brk() which was about 800
1526 megabytes on 32 bit x86, at that point brk() would hit the first
1527 mmaped shared libaries and couldn't expand anymore. With current 2.6
1528 kernels, the VA space layout is different and brk() and mmap
1529 both can span the entire heap at will.
1531 Rather than using a static threshold for the brk/mmap tradeoff,
1532 we are now using a simple dynamic one. The goal is still to avoid
1533 fragmentation. The old goals we kept are
1534 1) try to get the long lived large allocations to use mmap()
1535 2) really large allocations should always use mmap()
1536 and we're adding now:
1537 3) transient allocations should use brk() to avoid forcing the kernel
1538 having to zero memory over and over again
1540 The implementation works with a sliding threshold, which is by default
1541 limited to go between 128Kb and 32Mb (64Mb for 64 bitmachines) and starts
1542 out at 128Kb as per the 2001 default.
1544 This allows us to satisfy requirement 1) under the assumption that long
1545 lived allocations are made early in the process' lifespan, before it has
1546 started doing dynamic allocations of the same size (which will
1547 increase the threshold).
1549 The upperbound on the threshold satisfies requirement 2)
1551 The threshold goes up in value when the application frees memory that was
1552 allocated with the mmap allocator. The idea is that once the application
1553 starts freeing memory of a certain size, it's highly probable that this is
1554 a size the application uses for transient allocations. This estimator
1555 is there to satisfy the new third requirement.
1559 #define M_MMAP_THRESHOLD -3
1561 #ifndef DEFAULT_MMAP_THRESHOLD
1562 #define DEFAULT_MMAP_THRESHOLD DEFAULT_MMAP_THRESHOLD_MIN
1563 #endif
1566 M_MMAP_MAX is the maximum number of requests to simultaneously
1567 service using mmap. This parameter exists because
1568 some systems have a limited number of internal tables for
1569 use by mmap, and using more than a few of them may degrade
1570 performance.
1572 The default is set to a value that serves only as a safeguard.
1573 Setting to 0 disables use of mmap for servicing large requests. If
1574 HAVE_MMAP is not set, the default value is 0, and attempts to set it
1575 to non-zero values in mallopt will fail.
1578 #define M_MMAP_MAX -4
1580 #ifndef DEFAULT_MMAP_MAX
1581 #if HAVE_MMAP
1582 #define DEFAULT_MMAP_MAX (65536)
1583 #else
1584 #define DEFAULT_MMAP_MAX (0)
1585 #endif
1586 #endif
1588 #ifdef __cplusplus
1589 } /* end of extern "C" */
1590 #endif
1592 #include <malloc.h>
1594 #ifndef BOUNDED_N
1595 #define BOUNDED_N(ptr, sz) (ptr)
1596 #endif
1597 #ifndef RETURN_ADDRESS
1598 #define RETURN_ADDRESS(X_) (NULL)
1599 #endif
1601 /* On some platforms we can compile internal, not exported functions better.
1602 Let the environment provide a macro and define it to be empty if it
1603 is not available. */
1604 #ifndef internal_function
1605 # define internal_function
1606 #endif
1608 /* Forward declarations. */
1609 struct malloc_chunk;
1610 typedef struct malloc_chunk* mchunkptr;
1612 /* Internal routines. */
1614 #if __STD_C
1616 static Void_t* _int_malloc(mstate, size_t);
1617 #ifdef ATOMIC_FASTBINS
1618 static void _int_free(mstate, mchunkptr, int);
1619 #else
1620 static void _int_free(mstate, mchunkptr);
1621 #endif
1622 static Void_t* _int_realloc(mstate, mchunkptr, INTERNAL_SIZE_T,
1623 INTERNAL_SIZE_T);
1624 static Void_t* _int_memalign(mstate, size_t, size_t);
1625 static Void_t* _int_valloc(mstate, size_t);
1626 static Void_t* _int_pvalloc(mstate, size_t);
1627 /*static Void_t* cALLOc(size_t, size_t);*/
1628 #ifndef _LIBC
1629 static Void_t** _int_icalloc(mstate, size_t, size_t, Void_t**);
1630 static Void_t** _int_icomalloc(mstate, size_t, size_t*, Void_t**);
1631 #endif
1632 static int mTRIm(mstate, size_t);
1633 static size_t mUSABLe(Void_t*);
1634 static void mSTATs(void);
1635 static int mALLOPt(int, int);
1636 static struct mallinfo mALLINFo(mstate);
1637 static void malloc_printerr(int action, const char *str, void *ptr);
1639 static Void_t* internal_function mem2mem_check(Void_t *p, size_t sz);
1640 static int internal_function top_check(void);
1641 static void internal_function munmap_chunk(mchunkptr p);
1642 #if HAVE_MREMAP
1643 static mchunkptr internal_function mremap_chunk(mchunkptr p, size_t new_size);
1644 #endif
1646 static Void_t* malloc_check(size_t sz, const Void_t *caller);
1647 static void free_check(Void_t* mem, const Void_t *caller);
1648 static Void_t* realloc_check(Void_t* oldmem, size_t bytes,
1649 const Void_t *caller);
1650 static Void_t* memalign_check(size_t alignment, size_t bytes,
1651 const Void_t *caller);
1652 #ifndef NO_THREADS
1653 # ifdef _LIBC
1654 # if USE___THREAD || !defined SHARED
1655 /* These routines are never needed in this configuration. */
1656 # define NO_STARTER
1657 # endif
1658 # endif
1659 # ifdef NO_STARTER
1660 # undef NO_STARTER
1661 # else
1662 static Void_t* malloc_starter(size_t sz, const Void_t *caller);
1663 static Void_t* memalign_starter(size_t aln, size_t sz, const Void_t *caller);
1664 static void free_starter(Void_t* mem, const Void_t *caller);
1665 # endif
1666 static Void_t* malloc_atfork(size_t sz, const Void_t *caller);
1667 static void free_atfork(Void_t* mem, const Void_t *caller);
1668 #endif
1670 #else
1672 static Void_t* _int_malloc();
1673 static void _int_free();
1674 static Void_t* _int_realloc();
1675 static Void_t* _int_memalign();
1676 static Void_t* _int_valloc();
1677 static Void_t* _int_pvalloc();
1678 /*static Void_t* cALLOc();*/
1679 static Void_t** _int_icalloc();
1680 static Void_t** _int_icomalloc();
1681 static int mTRIm();
1682 static size_t mUSABLe();
1683 static void mSTATs();
1684 static int mALLOPt();
1685 static struct mallinfo mALLINFo();
1687 #endif
1692 /* ------------- Optional versions of memcopy ---------------- */
1695 #if USE_MEMCPY
1698 Note: memcpy is ONLY invoked with non-overlapping regions,
1699 so the (usually slower) memmove is not needed.
1702 #define MALLOC_COPY(dest, src, nbytes) memcpy(dest, src, nbytes)
1703 #define MALLOC_ZERO(dest, nbytes) memset(dest, 0, nbytes)
1705 #else /* !USE_MEMCPY */
1707 /* Use Duff's device for good zeroing/copying performance. */
1709 #define MALLOC_ZERO(charp, nbytes) \
1710 do { \
1711 INTERNAL_SIZE_T* mzp = (INTERNAL_SIZE_T*)(charp); \
1712 unsigned long mctmp = (nbytes)/sizeof(INTERNAL_SIZE_T); \
1713 long mcn; \
1714 if (mctmp < 8) mcn = 0; else { mcn = (mctmp-1)/8; mctmp %= 8; } \
1715 switch (mctmp) { \
1716 case 0: for(;;) { *mzp++ = 0; \
1717 case 7: *mzp++ = 0; \
1718 case 6: *mzp++ = 0; \
1719 case 5: *mzp++ = 0; \
1720 case 4: *mzp++ = 0; \
1721 case 3: *mzp++ = 0; \
1722 case 2: *mzp++ = 0; \
1723 case 1: *mzp++ = 0; if(mcn <= 0) break; mcn--; } \
1725 } while(0)
1727 #define MALLOC_COPY(dest,src,nbytes) \
1728 do { \
1729 INTERNAL_SIZE_T* mcsrc = (INTERNAL_SIZE_T*) src; \
1730 INTERNAL_SIZE_T* mcdst = (INTERNAL_SIZE_T*) dest; \
1731 unsigned long mctmp = (nbytes)/sizeof(INTERNAL_SIZE_T); \
1732 long mcn; \
1733 if (mctmp < 8) mcn = 0; else { mcn = (mctmp-1)/8; mctmp %= 8; } \
1734 switch (mctmp) { \
1735 case 0: for(;;) { *mcdst++ = *mcsrc++; \
1736 case 7: *mcdst++ = *mcsrc++; \
1737 case 6: *mcdst++ = *mcsrc++; \
1738 case 5: *mcdst++ = *mcsrc++; \
1739 case 4: *mcdst++ = *mcsrc++; \
1740 case 3: *mcdst++ = *mcsrc++; \
1741 case 2: *mcdst++ = *mcsrc++; \
1742 case 1: *mcdst++ = *mcsrc++; if(mcn <= 0) break; mcn--; } \
1744 } while(0)
1746 #endif
1748 /* ------------------ MMAP support ------------------ */
1751 #if HAVE_MMAP
1753 #include <fcntl.h>
1754 #ifndef LACKS_SYS_MMAN_H
1755 #include <sys/mman.h>
1756 #endif
1758 #if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
1759 # define MAP_ANONYMOUS MAP_ANON
1760 #endif
1761 #if !defined(MAP_FAILED)
1762 # define MAP_FAILED ((char*)-1)
1763 #endif
1765 #ifndef MAP_NORESERVE
1766 # ifdef MAP_AUTORESRV
1767 # define MAP_NORESERVE MAP_AUTORESRV
1768 # else
1769 # define MAP_NORESERVE 0
1770 # endif
1771 #endif
1774 Nearly all versions of mmap support MAP_ANONYMOUS,
1775 so the following is unlikely to be needed, but is
1776 supplied just in case.
1779 #ifndef MAP_ANONYMOUS
1781 static int dev_zero_fd = -1; /* Cached file descriptor for /dev/zero. */
1783 #define MMAP(addr, size, prot, flags) ((dev_zero_fd < 0) ? \
1784 (dev_zero_fd = open("/dev/zero", O_RDWR), \
1785 mmap((addr), (size), (prot), (flags), dev_zero_fd, 0)) : \
1786 mmap((addr), (size), (prot), (flags), dev_zero_fd, 0))
1788 #else
1790 #define MMAP(addr, size, prot, flags) \
1791 (mmap((addr), (size), (prot), (flags)|MAP_ANONYMOUS, -1, 0))
1793 #endif
1796 #endif /* HAVE_MMAP */
1800 ----------------------- Chunk representations -----------------------
1805 This struct declaration is misleading (but accurate and necessary).
1806 It declares a "view" into memory allowing access to necessary
1807 fields at known offsets from a given base. See explanation below.
1810 struct malloc_chunk {
1812 INTERNAL_SIZE_T prev_size; /* Size of previous chunk (if free). */
1813 INTERNAL_SIZE_T size; /* Size in bytes, including overhead. */
1815 struct malloc_chunk* fd; /* double links -- used only if free. */
1816 struct malloc_chunk* bk;
1818 /* Only used for large blocks: pointer to next larger size. */
1819 struct malloc_chunk* fd_nextsize; /* double links -- used only if free. */
1820 struct malloc_chunk* bk_nextsize;
1825 malloc_chunk details:
1827 (The following includes lightly edited explanations by Colin Plumb.)
1829 Chunks of memory are maintained using a `boundary tag' method as
1830 described in e.g., Knuth or Standish. (See the paper by Paul
1831 Wilson ftp://ftp.cs.utexas.edu/pub/garbage/allocsrv.ps for a
1832 survey of such techniques.) Sizes of free chunks are stored both
1833 in the front of each chunk and at the end. This makes
1834 consolidating fragmented chunks into bigger chunks very fast. The
1835 size fields also hold bits representing whether chunks are free or
1836 in use.
1838 An allocated chunk looks like this:
1841 chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1842 | Size of previous chunk, if allocated | |
1843 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1844 | Size of chunk, in bytes |M|P|
1845 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1846 | User data starts here... .
1848 . (malloc_usable_size() bytes) .
1850 nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1851 | Size of chunk |
1852 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1855 Where "chunk" is the front of the chunk for the purpose of most of
1856 the malloc code, but "mem" is the pointer that is returned to the
1857 user. "Nextchunk" is the beginning of the next contiguous chunk.
1859 Chunks always begin on even word boundries, so the mem portion
1860 (which is returned to the user) is also on an even word boundary, and
1861 thus at least double-word aligned.
1863 Free chunks are stored in circular doubly-linked lists, and look like this:
1865 chunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1866 | Size of previous chunk |
1867 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1868 `head:' | Size of chunk, in bytes |P|
1869 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1870 | Forward pointer to next chunk in list |
1871 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1872 | Back pointer to previous chunk in list |
1873 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1874 | Unused space (may be 0 bytes long) .
1877 nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1878 `foot:' | Size of chunk, in bytes |
1879 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1881 The P (PREV_INUSE) bit, stored in the unused low-order bit of the
1882 chunk size (which is always a multiple of two words), is an in-use
1883 bit for the *previous* chunk. If that bit is *clear*, then the
1884 word before the current chunk size contains the previous chunk
1885 size, and can be used to find the front of the previous chunk.
1886 The very first chunk allocated always has this bit set,
1887 preventing access to non-existent (or non-owned) memory. If
1888 prev_inuse is set for any given chunk, then you CANNOT determine
1889 the size of the previous chunk, and might even get a memory
1890 addressing fault when trying to do so.
1892 Note that the `foot' of the current chunk is actually represented
1893 as the prev_size of the NEXT chunk. This makes it easier to
1894 deal with alignments etc but can be very confusing when trying
1895 to extend or adapt this code.
1897 The two exceptions to all this are
1899 1. The special chunk `top' doesn't bother using the
1900 trailing size field since there is no next contiguous chunk
1901 that would have to index off it. After initialization, `top'
1902 is forced to always exist. If it would become less than
1903 MINSIZE bytes long, it is replenished.
1905 2. Chunks allocated via mmap, which have the second-lowest-order
1906 bit M (IS_MMAPPED) set in their size fields. Because they are
1907 allocated one-by-one, each must contain its own trailing size field.
1912 ---------- Size and alignment checks and conversions ----------
1915 /* conversion from malloc headers to user pointers, and back */
1917 #define chunk2mem(p) ((Void_t*)((char*)(p) + 2*SIZE_SZ))
1918 #define mem2chunk(mem) ((mchunkptr)((char*)(mem) - 2*SIZE_SZ))
1920 /* The smallest possible chunk */
1921 #define MIN_CHUNK_SIZE (offsetof(struct malloc_chunk, fd_nextsize))
1923 /* The smallest size we can malloc is an aligned minimal chunk */
1925 #define MINSIZE \
1926 (unsigned long)(((MIN_CHUNK_SIZE+MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK))
1928 /* Check if m has acceptable alignment */
1930 #define aligned_OK(m) (((unsigned long)(m) & MALLOC_ALIGN_MASK) == 0)
1932 #define misaligned_chunk(p) \
1933 ((uintptr_t)(MALLOC_ALIGNMENT == 2 * SIZE_SZ ? (p) : chunk2mem (p)) \
1934 & MALLOC_ALIGN_MASK)
1938 Check if a request is so large that it would wrap around zero when
1939 padded and aligned. To simplify some other code, the bound is made
1940 low enough so that adding MINSIZE will also not wrap around zero.
1943 #define REQUEST_OUT_OF_RANGE(req) \
1944 ((unsigned long)(req) >= \
1945 (unsigned long)(INTERNAL_SIZE_T)(-2 * MINSIZE))
1947 /* pad request bytes into a usable size -- internal version */
1949 #define request2size(req) \
1950 (((req) + SIZE_SZ + MALLOC_ALIGN_MASK < MINSIZE) ? \
1951 MINSIZE : \
1952 ((req) + SIZE_SZ + MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK)
1954 /* Same, except also perform argument check */
1956 #define checked_request2size(req, sz) \
1957 if (REQUEST_OUT_OF_RANGE(req)) { \
1958 MALLOC_FAILURE_ACTION; \
1959 return 0; \
1961 (sz) = request2size(req);
1964 --------------- Physical chunk operations ---------------
1968 /* size field is or'ed with PREV_INUSE when previous adjacent chunk in use */
1969 #define PREV_INUSE 0x1
1971 /* extract inuse bit of previous chunk */
1972 #define prev_inuse(p) ((p)->size & PREV_INUSE)
1975 /* size field is or'ed with IS_MMAPPED if the chunk was obtained with mmap() */
1976 #define IS_MMAPPED 0x2
1978 /* check for mmap()'ed chunk */
1979 #define chunk_is_mmapped(p) ((p)->size & IS_MMAPPED)
1982 /* size field is or'ed with NON_MAIN_ARENA if the chunk was obtained
1983 from a non-main arena. This is only set immediately before handing
1984 the chunk to the user, if necessary. */
1985 #define NON_MAIN_ARENA 0x4
1987 /* check for chunk from non-main arena */
1988 #define chunk_non_main_arena(p) ((p)->size & NON_MAIN_ARENA)
1992 Bits to mask off when extracting size
1994 Note: IS_MMAPPED is intentionally not masked off from size field in
1995 macros for which mmapped chunks should never be seen. This should
1996 cause helpful core dumps to occur if it is tried by accident by
1997 people extending or adapting this malloc.
1999 #define SIZE_BITS (PREV_INUSE|IS_MMAPPED|NON_MAIN_ARENA)
2001 /* Get size, ignoring use bits */
2002 #define chunksize(p) ((p)->size & ~(SIZE_BITS))
2005 /* Ptr to next physical malloc_chunk. */
2006 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~SIZE_BITS) ))
2008 /* Ptr to previous physical malloc_chunk */
2009 #define prev_chunk(p) ((mchunkptr)( ((char*)(p)) - ((p)->prev_size) ))
2011 /* Treat space at ptr + offset as a chunk */
2012 #define chunk_at_offset(p, s) ((mchunkptr)(((char*)(p)) + (s)))
2014 /* extract p's inuse bit */
2015 #define inuse(p)\
2016 ((((mchunkptr)(((char*)(p))+((p)->size & ~SIZE_BITS)))->size) & PREV_INUSE)
2018 /* set/clear chunk as being inuse without otherwise disturbing */
2019 #define set_inuse(p)\
2020 ((mchunkptr)(((char*)(p)) + ((p)->size & ~SIZE_BITS)))->size |= PREV_INUSE
2022 #define clear_inuse(p)\
2023 ((mchunkptr)(((char*)(p)) + ((p)->size & ~SIZE_BITS)))->size &= ~(PREV_INUSE)
2026 /* check/set/clear inuse bits in known places */
2027 #define inuse_bit_at_offset(p, s)\
2028 (((mchunkptr)(((char*)(p)) + (s)))->size & PREV_INUSE)
2030 #define set_inuse_bit_at_offset(p, s)\
2031 (((mchunkptr)(((char*)(p)) + (s)))->size |= PREV_INUSE)
2033 #define clear_inuse_bit_at_offset(p, s)\
2034 (((mchunkptr)(((char*)(p)) + (s)))->size &= ~(PREV_INUSE))
2037 /* Set size at head, without disturbing its use bit */
2038 #define set_head_size(p, s) ((p)->size = (((p)->size & SIZE_BITS) | (s)))
2040 /* Set size/use field */
2041 #define set_head(p, s) ((p)->size = (s))
2043 /* Set size at footer (only when chunk is not in use) */
2044 #define set_foot(p, s) (((mchunkptr)((char*)(p) + (s)))->prev_size = (s))
2048 -------------------- Internal data structures --------------------
2050 All internal state is held in an instance of malloc_state defined
2051 below. There are no other static variables, except in two optional
2052 cases:
2053 * If USE_MALLOC_LOCK is defined, the mALLOC_MUTEx declared above.
2054 * If HAVE_MMAP is true, but mmap doesn't support
2055 MAP_ANONYMOUS, a dummy file descriptor for mmap.
2057 Beware of lots of tricks that minimize the total bookkeeping space
2058 requirements. The result is a little over 1K bytes (for 4byte
2059 pointers and size_t.)
2063 Bins
2065 An array of bin headers for free chunks. Each bin is doubly
2066 linked. The bins are approximately proportionally (log) spaced.
2067 There are a lot of these bins (128). This may look excessive, but
2068 works very well in practice. Most bins hold sizes that are
2069 unusual as malloc request sizes, but are more usual for fragments
2070 and consolidated sets of chunks, which is what these bins hold, so
2071 they can be found quickly. All procedures maintain the invariant
2072 that no consolidated chunk physically borders another one, so each
2073 chunk in a list is known to be preceeded and followed by either
2074 inuse chunks or the ends of memory.
2076 Chunks in bins are kept in size order, with ties going to the
2077 approximately least recently used chunk. Ordering isn't needed
2078 for the small bins, which all contain the same-sized chunks, but
2079 facilitates best-fit allocation for larger chunks. These lists
2080 are just sequential. Keeping them in order almost never requires
2081 enough traversal to warrant using fancier ordered data
2082 structures.
2084 Chunks of the same size are linked with the most
2085 recently freed at the front, and allocations are taken from the
2086 back. This results in LRU (FIFO) allocation order, which tends
2087 to give each chunk an equal opportunity to be consolidated with
2088 adjacent freed chunks, resulting in larger free chunks and less
2089 fragmentation.
2091 To simplify use in double-linked lists, each bin header acts
2092 as a malloc_chunk. This avoids special-casing for headers.
2093 But to conserve space and improve locality, we allocate
2094 only the fd/bk pointers of bins, and then use repositioning tricks
2095 to treat these as the fields of a malloc_chunk*.
2098 typedef struct malloc_chunk* mbinptr;
2100 /* addressing -- note that bin_at(0) does not exist */
2101 #define bin_at(m, i) \
2102 (mbinptr) (((char *) &((m)->bins[((i) - 1) * 2])) \
2103 - offsetof (struct malloc_chunk, fd))
2105 /* analog of ++bin */
2106 #define next_bin(b) ((mbinptr)((char*)(b) + (sizeof(mchunkptr)<<1)))
2108 /* Reminders about list directionality within bins */
2109 #define first(b) ((b)->fd)
2110 #define last(b) ((b)->bk)
2112 /* Take a chunk off a bin list */
2113 #define unlink(P, BK, FD) { \
2114 FD = P->fd; \
2115 BK = P->bk; \
2116 if (__builtin_expect (FD->bk != P || BK->fd != P, 0)) \
2117 malloc_printerr (check_action, "corrupted double-linked list", P); \
2118 else { \
2119 FD->bk = BK; \
2120 BK->fd = FD; \
2121 if (!in_smallbin_range (P->size) \
2122 && __builtin_expect (P->fd_nextsize != NULL, 0)) { \
2123 assert (P->fd_nextsize->bk_nextsize == P); \
2124 assert (P->bk_nextsize->fd_nextsize == P); \
2125 if (FD->fd_nextsize == NULL) { \
2126 if (P->fd_nextsize == P) \
2127 FD->fd_nextsize = FD->bk_nextsize = FD; \
2128 else { \
2129 FD->fd_nextsize = P->fd_nextsize; \
2130 FD->bk_nextsize = P->bk_nextsize; \
2131 P->fd_nextsize->bk_nextsize = FD; \
2132 P->bk_nextsize->fd_nextsize = FD; \
2134 } else { \
2135 P->fd_nextsize->bk_nextsize = P->bk_nextsize; \
2136 P->bk_nextsize->fd_nextsize = P->fd_nextsize; \
2143 Indexing
2145 Bins for sizes < 512 bytes contain chunks of all the same size, spaced
2146 8 bytes apart. Larger bins are approximately logarithmically spaced:
2148 64 bins of size 8
2149 32 bins of size 64
2150 16 bins of size 512
2151 8 bins of size 4096
2152 4 bins of size 32768
2153 2 bins of size 262144
2154 1 bin of size what's left
2156 There is actually a little bit of slop in the numbers in bin_index
2157 for the sake of speed. This makes no difference elsewhere.
2159 The bins top out around 1MB because we expect to service large
2160 requests via mmap.
2163 #define NBINS 128
2164 #define NSMALLBINS 64
2165 #define SMALLBIN_WIDTH MALLOC_ALIGNMENT
2166 #define MIN_LARGE_SIZE (NSMALLBINS * SMALLBIN_WIDTH)
2168 #define in_smallbin_range(sz) \
2169 ((unsigned long)(sz) < (unsigned long)MIN_LARGE_SIZE)
2171 #define smallbin_index(sz) \
2172 (SMALLBIN_WIDTH == 16 ? (((unsigned)(sz)) >> 4) : (((unsigned)(sz)) >> 3))
2174 #define largebin_index_32(sz) \
2175 (((((unsigned long)(sz)) >> 6) <= 38)? 56 + (((unsigned long)(sz)) >> 6): \
2176 ((((unsigned long)(sz)) >> 9) <= 20)? 91 + (((unsigned long)(sz)) >> 9): \
2177 ((((unsigned long)(sz)) >> 12) <= 10)? 110 + (((unsigned long)(sz)) >> 12): \
2178 ((((unsigned long)(sz)) >> 15) <= 4)? 119 + (((unsigned long)(sz)) >> 15): \
2179 ((((unsigned long)(sz)) >> 18) <= 2)? 124 + (((unsigned long)(sz)) >> 18): \
2180 126)
2182 // XXX It remains to be seen whether it is good to keep the widths of
2183 // XXX the buckets the same or whether it should be scaled by a factor
2184 // XXX of two as well.
2185 #define largebin_index_64(sz) \
2186 (((((unsigned long)(sz)) >> 6) <= 48)? 48 + (((unsigned long)(sz)) >> 6): \
2187 ((((unsigned long)(sz)) >> 9) <= 20)? 91 + (((unsigned long)(sz)) >> 9): \
2188 ((((unsigned long)(sz)) >> 12) <= 10)? 110 + (((unsigned long)(sz)) >> 12): \
2189 ((((unsigned long)(sz)) >> 15) <= 4)? 119 + (((unsigned long)(sz)) >> 15): \
2190 ((((unsigned long)(sz)) >> 18) <= 2)? 124 + (((unsigned long)(sz)) >> 18): \
2191 126)
2193 #define largebin_index(sz) \
2194 (SIZE_SZ == 8 ? largebin_index_64 (sz) : largebin_index_32 (sz))
2196 #define bin_index(sz) \
2197 ((in_smallbin_range(sz)) ? smallbin_index(sz) : largebin_index(sz))
2201 Unsorted chunks
2203 All remainders from chunk splits, as well as all returned chunks,
2204 are first placed in the "unsorted" bin. They are then placed
2205 in regular bins after malloc gives them ONE chance to be used before
2206 binning. So, basically, the unsorted_chunks list acts as a queue,
2207 with chunks being placed on it in free (and malloc_consolidate),
2208 and taken off (to be either used or placed in bins) in malloc.
2210 The NON_MAIN_ARENA flag is never set for unsorted chunks, so it
2211 does not have to be taken into account in size comparisons.
2214 /* The otherwise unindexable 1-bin is used to hold unsorted chunks. */
2215 #define unsorted_chunks(M) (bin_at(M, 1))
2220 The top-most available chunk (i.e., the one bordering the end of
2221 available memory) is treated specially. It is never included in
2222 any bin, is used only if no other chunk is available, and is
2223 released back to the system if it is very large (see
2224 M_TRIM_THRESHOLD). Because top initially
2225 points to its own bin with initial zero size, thus forcing
2226 extension on the first malloc request, we avoid having any special
2227 code in malloc to check whether it even exists yet. But we still
2228 need to do so when getting memory from system, so we make
2229 initial_top treat the bin as a legal but unusable chunk during the
2230 interval between initialization and the first call to
2231 sYSMALLOc. (This is somewhat delicate, since it relies on
2232 the 2 preceding words to be zero during this interval as well.)
2235 /* Conveniently, the unsorted bin can be used as dummy top on first call */
2236 #define initial_top(M) (unsorted_chunks(M))
2239 Binmap
2241 To help compensate for the large number of bins, a one-level index
2242 structure is used for bin-by-bin searching. `binmap' is a
2243 bitvector recording whether bins are definitely empty so they can
2244 be skipped over during during traversals. The bits are NOT always
2245 cleared as soon as bins are empty, but instead only
2246 when they are noticed to be empty during traversal in malloc.
2249 /* Conservatively use 32 bits per map word, even if on 64bit system */
2250 #define BINMAPSHIFT 5
2251 #define BITSPERMAP (1U << BINMAPSHIFT)
2252 #define BINMAPSIZE (NBINS / BITSPERMAP)
2254 #define idx2block(i) ((i) >> BINMAPSHIFT)
2255 #define idx2bit(i) ((1U << ((i) & ((1U << BINMAPSHIFT)-1))))
2257 #define mark_bin(m,i) ((m)->binmap[idx2block(i)] |= idx2bit(i))
2258 #define unmark_bin(m,i) ((m)->binmap[idx2block(i)] &= ~(idx2bit(i)))
2259 #define get_binmap(m,i) ((m)->binmap[idx2block(i)] & idx2bit(i))
2262 Fastbins
2264 An array of lists holding recently freed small chunks. Fastbins
2265 are not doubly linked. It is faster to single-link them, and
2266 since chunks are never removed from the middles of these lists,
2267 double linking is not necessary. Also, unlike regular bins, they
2268 are not even processed in FIFO order (they use faster LIFO) since
2269 ordering doesn't much matter in the transient contexts in which
2270 fastbins are normally used.
2272 Chunks in fastbins keep their inuse bit set, so they cannot
2273 be consolidated with other free chunks. malloc_consolidate
2274 releases all chunks in fastbins and consolidates them with
2275 other free chunks.
2278 typedef struct malloc_chunk* mfastbinptr;
2279 #define fastbin(ar_ptr, idx) ((ar_ptr)->fastbinsY[idx])
2281 /* offset 2 to use otherwise unindexable first 2 bins */
2282 #define fastbin_index(sz) \
2283 ((((unsigned int)(sz)) >> (SIZE_SZ == 8 ? 4 : 3)) - 2)
2286 /* The maximum fastbin request size we support */
2287 #define MAX_FAST_SIZE (80 * SIZE_SZ / 4)
2289 #define NFASTBINS (fastbin_index(request2size(MAX_FAST_SIZE))+1)
2292 FASTBIN_CONSOLIDATION_THRESHOLD is the size of a chunk in free()
2293 that triggers automatic consolidation of possibly-surrounding
2294 fastbin chunks. This is a heuristic, so the exact value should not
2295 matter too much. It is defined at half the default trim threshold as a
2296 compromise heuristic to only attempt consolidation if it is likely
2297 to lead to trimming. However, it is not dynamically tunable, since
2298 consolidation reduces fragmentation surrounding large chunks even
2299 if trimming is not used.
2302 #define FASTBIN_CONSOLIDATION_THRESHOLD (65536UL)
2305 Since the lowest 2 bits in max_fast don't matter in size comparisons,
2306 they are used as flags.
2310 FASTCHUNKS_BIT held in max_fast indicates that there are probably
2311 some fastbin chunks. It is set true on entering a chunk into any
2312 fastbin, and cleared only in malloc_consolidate.
2314 The truth value is inverted so that have_fastchunks will be true
2315 upon startup (since statics are zero-filled), simplifying
2316 initialization checks.
2319 #define FASTCHUNKS_BIT (1U)
2321 #define have_fastchunks(M) (((M)->flags & FASTCHUNKS_BIT) == 0)
2322 #ifdef ATOMIC_FASTBINS
2323 #define clear_fastchunks(M) catomic_or (&(M)->flags, FASTCHUNKS_BIT)
2324 #define set_fastchunks(M) catomic_and (&(M)->flags, ~FASTCHUNKS_BIT)
2325 #else
2326 #define clear_fastchunks(M) ((M)->flags |= FASTCHUNKS_BIT)
2327 #define set_fastchunks(M) ((M)->flags &= ~FASTCHUNKS_BIT)
2328 #endif
2331 NONCONTIGUOUS_BIT indicates that MORECORE does not return contiguous
2332 regions. Otherwise, contiguity is exploited in merging together,
2333 when possible, results from consecutive MORECORE calls.
2335 The initial value comes from MORECORE_CONTIGUOUS, but is
2336 changed dynamically if mmap is ever used as an sbrk substitute.
2339 #define NONCONTIGUOUS_BIT (2U)
2341 #define contiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) == 0)
2342 #define noncontiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) != 0)
2343 #define set_noncontiguous(M) ((M)->flags |= NONCONTIGUOUS_BIT)
2344 #define set_contiguous(M) ((M)->flags &= ~NONCONTIGUOUS_BIT)
2347 Set value of max_fast.
2348 Use impossibly small value if 0.
2349 Precondition: there are no existing fastbin chunks.
2350 Setting the value clears fastchunk bit but preserves noncontiguous bit.
2353 #define set_max_fast(s) \
2354 global_max_fast = ((s) == 0)? SMALLBIN_WIDTH: request2size(s)
2355 #define get_max_fast() global_max_fast
2359 ----------- Internal state representation and initialization -----------
2362 struct malloc_state {
2363 /* Serialize access. */
2364 mutex_t mutex;
2366 /* Flags (formerly in max_fast). */
2367 int flags;
2369 #if THREAD_STATS
2370 /* Statistics for locking. Only used if THREAD_STATS is defined. */
2371 long stat_lock_direct, stat_lock_loop, stat_lock_wait;
2372 #endif
2374 /* Fastbins */
2375 mfastbinptr fastbinsY[NFASTBINS];
2377 /* Base of the topmost chunk -- not otherwise kept in a bin */
2378 mchunkptr top;
2380 /* The remainder from the most recent split of a small request */
2381 mchunkptr last_remainder;
2383 /* Normal bins packed as described above */
2384 mchunkptr bins[NBINS * 2 - 2];
2386 /* Bitmap of bins */
2387 unsigned int binmap[BINMAPSIZE];
2389 /* Linked list */
2390 struct malloc_state *next;
2392 #ifdef PER_THREAD
2393 /* Linked list for free arenas. */
2394 struct malloc_state *next_free;
2395 #endif
2397 /* Memory allocated from the system in this arena. */
2398 INTERNAL_SIZE_T system_mem;
2399 INTERNAL_SIZE_T max_system_mem;
2402 struct malloc_par {
2403 /* Tunable parameters */
2404 unsigned long trim_threshold;
2405 INTERNAL_SIZE_T top_pad;
2406 INTERNAL_SIZE_T mmap_threshold;
2407 #ifdef PER_THREAD
2408 INTERNAL_SIZE_T arena_test;
2409 INTERNAL_SIZE_T arena_max;
2410 #endif
2412 /* Memory map support */
2413 int n_mmaps;
2414 int n_mmaps_max;
2415 int max_n_mmaps;
2416 /* the mmap_threshold is dynamic, until the user sets
2417 it manually, at which point we need to disable any
2418 dynamic behavior. */
2419 int no_dyn_threshold;
2421 /* Cache malloc_getpagesize */
2422 unsigned int pagesize;
2424 /* Statistics */
2425 INTERNAL_SIZE_T mmapped_mem;
2426 /*INTERNAL_SIZE_T sbrked_mem;*/
2427 /*INTERNAL_SIZE_T max_sbrked_mem;*/
2428 INTERNAL_SIZE_T max_mmapped_mem;
2429 INTERNAL_SIZE_T max_total_mem; /* only kept for NO_THREADS */
2431 /* First address handed out by MORECORE/sbrk. */
2432 char* sbrk_base;
2435 /* There are several instances of this struct ("arenas") in this
2436 malloc. If you are adapting this malloc in a way that does NOT use
2437 a static or mmapped malloc_state, you MUST explicitly zero-fill it
2438 before using. This malloc relies on the property that malloc_state
2439 is initialized to all zeroes (as is true of C statics). */
2441 static struct malloc_state main_arena;
2443 /* There is only one instance of the malloc parameters. */
2445 static struct malloc_par mp_;
2448 #ifdef PER_THREAD
2449 /* Non public mallopt parameters. */
2450 #define M_ARENA_TEST -7
2451 #define M_ARENA_MAX -8
2452 #endif
2455 /* Maximum size of memory handled in fastbins. */
2456 static INTERNAL_SIZE_T global_max_fast;
2459 Initialize a malloc_state struct.
2461 This is called only from within malloc_consolidate, which needs
2462 be called in the same contexts anyway. It is never called directly
2463 outside of malloc_consolidate because some optimizing compilers try
2464 to inline it at all call points, which turns out not to be an
2465 optimization at all. (Inlining it in malloc_consolidate is fine though.)
2468 #if __STD_C
2469 static void malloc_init_state(mstate av)
2470 #else
2471 static void malloc_init_state(av) mstate av;
2472 #endif
2474 int i;
2475 mbinptr bin;
2477 /* Establish circular links for normal bins */
2478 for (i = 1; i < NBINS; ++i) {
2479 bin = bin_at(av,i);
2480 bin->fd = bin->bk = bin;
2483 #if MORECORE_CONTIGUOUS
2484 if (av != &main_arena)
2485 #endif
2486 set_noncontiguous(av);
2487 if (av == &main_arena)
2488 set_max_fast(DEFAULT_MXFAST);
2489 av->flags |= FASTCHUNKS_BIT;
2491 av->top = initial_top(av);
2495 Other internal utilities operating on mstates
2498 #if __STD_C
2499 static Void_t* sYSMALLOc(INTERNAL_SIZE_T, mstate);
2500 static int sYSTRIm(size_t, mstate);
2501 static void malloc_consolidate(mstate);
2502 #ifndef _LIBC
2503 static Void_t** iALLOc(mstate, size_t, size_t*, int, Void_t**);
2504 #endif
2505 #else
2506 static Void_t* sYSMALLOc();
2507 static int sYSTRIm();
2508 static void malloc_consolidate();
2509 static Void_t** iALLOc();
2510 #endif
2513 /* -------------- Early definitions for debugging hooks ---------------- */
2515 /* Define and initialize the hook variables. These weak definitions must
2516 appear before any use of the variables in a function (arena.c uses one). */
2517 #ifndef weak_variable
2518 #ifndef _LIBC
2519 #define weak_variable /**/
2520 #else
2521 /* In GNU libc we want the hook variables to be weak definitions to
2522 avoid a problem with Emacs. */
2523 #define weak_variable weak_function
2524 #endif
2525 #endif
2527 /* Forward declarations. */
2528 static Void_t* malloc_hook_ini __MALLOC_P ((size_t sz,
2529 const __malloc_ptr_t caller));
2530 static Void_t* realloc_hook_ini __MALLOC_P ((Void_t* ptr, size_t sz,
2531 const __malloc_ptr_t caller));
2532 static Void_t* memalign_hook_ini __MALLOC_P ((size_t alignment, size_t sz,
2533 const __malloc_ptr_t caller));
2535 void weak_variable (*__malloc_initialize_hook) (void) = NULL;
2536 void weak_variable (*__free_hook) (__malloc_ptr_t __ptr,
2537 const __malloc_ptr_t) = NULL;
2538 __malloc_ptr_t weak_variable (*__malloc_hook)
2539 (size_t __size, const __malloc_ptr_t) = malloc_hook_ini;
2540 __malloc_ptr_t weak_variable (*__realloc_hook)
2541 (__malloc_ptr_t __ptr, size_t __size, const __malloc_ptr_t)
2542 = realloc_hook_ini;
2543 __malloc_ptr_t weak_variable (*__memalign_hook)
2544 (size_t __alignment, size_t __size, const __malloc_ptr_t)
2545 = memalign_hook_ini;
2546 void weak_variable (*__after_morecore_hook) (void) = NULL;
2549 /* ---------------- Error behavior ------------------------------------ */
2551 #ifndef DEFAULT_CHECK_ACTION
2552 #define DEFAULT_CHECK_ACTION 3
2553 #endif
2555 static int check_action = DEFAULT_CHECK_ACTION;
2558 /* ------------------ Testing support ----------------------------------*/
2560 static int perturb_byte;
2562 #define alloc_perturb(p, n) memset (p, (perturb_byte ^ 0xff) & 0xff, n)
2563 #define free_perturb(p, n) memset (p, perturb_byte & 0xff, n)
2566 /* ------------------- Support for multiple arenas -------------------- */
2567 #include "arena.c"
2570 Debugging support
2572 These routines make a number of assertions about the states
2573 of data structures that should be true at all times. If any
2574 are not true, it's very likely that a user program has somehow
2575 trashed memory. (It's also possible that there is a coding error
2576 in malloc. In which case, please report it!)
2579 #if ! MALLOC_DEBUG
2581 #define check_chunk(A,P)
2582 #define check_free_chunk(A,P)
2583 #define check_inuse_chunk(A,P)
2584 #define check_remalloced_chunk(A,P,N)
2585 #define check_malloced_chunk(A,P,N)
2586 #define check_malloc_state(A)
2588 #else
2590 #define check_chunk(A,P) do_check_chunk(A,P)
2591 #define check_free_chunk(A,P) do_check_free_chunk(A,P)
2592 #define check_inuse_chunk(A,P) do_check_inuse_chunk(A,P)
2593 #define check_remalloced_chunk(A,P,N) do_check_remalloced_chunk(A,P,N)
2594 #define check_malloced_chunk(A,P,N) do_check_malloced_chunk(A,P,N)
2595 #define check_malloc_state(A) do_check_malloc_state(A)
2598 Properties of all chunks
2601 #if __STD_C
2602 static void do_check_chunk(mstate av, mchunkptr p)
2603 #else
2604 static void do_check_chunk(av, p) mstate av; mchunkptr p;
2605 #endif
2607 unsigned long sz = chunksize(p);
2608 /* min and max possible addresses assuming contiguous allocation */
2609 char* max_address = (char*)(av->top) + chunksize(av->top);
2610 char* min_address = max_address - av->system_mem;
2612 if (!chunk_is_mmapped(p)) {
2614 /* Has legal address ... */
2615 if (p != av->top) {
2616 if (contiguous(av)) {
2617 assert(((char*)p) >= min_address);
2618 assert(((char*)p + sz) <= ((char*)(av->top)));
2621 else {
2622 /* top size is always at least MINSIZE */
2623 assert((unsigned long)(sz) >= MINSIZE);
2624 /* top predecessor always marked inuse */
2625 assert(prev_inuse(p));
2629 else {
2630 #if HAVE_MMAP
2631 /* address is outside main heap */
2632 if (contiguous(av) && av->top != initial_top(av)) {
2633 assert(((char*)p) < min_address || ((char*)p) >= max_address);
2635 /* chunk is page-aligned */
2636 assert(((p->prev_size + sz) & (mp_.pagesize-1)) == 0);
2637 /* mem is aligned */
2638 assert(aligned_OK(chunk2mem(p)));
2639 #else
2640 /* force an appropriate assert violation if debug set */
2641 assert(!chunk_is_mmapped(p));
2642 #endif
2647 Properties of free chunks
2650 #if __STD_C
2651 static void do_check_free_chunk(mstate av, mchunkptr p)
2652 #else
2653 static void do_check_free_chunk(av, p) mstate av; mchunkptr p;
2654 #endif
2656 INTERNAL_SIZE_T sz = p->size & ~(PREV_INUSE|NON_MAIN_ARENA);
2657 mchunkptr next = chunk_at_offset(p, sz);
2659 do_check_chunk(av, p);
2661 /* Chunk must claim to be free ... */
2662 assert(!inuse(p));
2663 assert (!chunk_is_mmapped(p));
2665 /* Unless a special marker, must have OK fields */
2666 if ((unsigned long)(sz) >= MINSIZE)
2668 assert((sz & MALLOC_ALIGN_MASK) == 0);
2669 assert(aligned_OK(chunk2mem(p)));
2670 /* ... matching footer field */
2671 assert(next->prev_size == sz);
2672 /* ... and is fully consolidated */
2673 assert(prev_inuse(p));
2674 assert (next == av->top || inuse(next));
2676 /* ... and has minimally sane links */
2677 assert(p->fd->bk == p);
2678 assert(p->bk->fd == p);
2680 else /* markers are always of size SIZE_SZ */
2681 assert(sz == SIZE_SZ);
2685 Properties of inuse chunks
2688 #if __STD_C
2689 static void do_check_inuse_chunk(mstate av, mchunkptr p)
2690 #else
2691 static void do_check_inuse_chunk(av, p) mstate av; mchunkptr p;
2692 #endif
2694 mchunkptr next;
2696 do_check_chunk(av, p);
2698 if (chunk_is_mmapped(p))
2699 return; /* mmapped chunks have no next/prev */
2701 /* Check whether it claims to be in use ... */
2702 assert(inuse(p));
2704 next = next_chunk(p);
2706 /* ... and is surrounded by OK chunks.
2707 Since more things can be checked with free chunks than inuse ones,
2708 if an inuse chunk borders them and debug is on, it's worth doing them.
2710 if (!prev_inuse(p)) {
2711 /* Note that we cannot even look at prev unless it is not inuse */
2712 mchunkptr prv = prev_chunk(p);
2713 assert(next_chunk(prv) == p);
2714 do_check_free_chunk(av, prv);
2717 if (next == av->top) {
2718 assert(prev_inuse(next));
2719 assert(chunksize(next) >= MINSIZE);
2721 else if (!inuse(next))
2722 do_check_free_chunk(av, next);
2726 Properties of chunks recycled from fastbins
2729 #if __STD_C
2730 static void do_check_remalloced_chunk(mstate av, mchunkptr p, INTERNAL_SIZE_T s)
2731 #else
2732 static void do_check_remalloced_chunk(av, p, s)
2733 mstate av; mchunkptr p; INTERNAL_SIZE_T s;
2734 #endif
2736 INTERNAL_SIZE_T sz = p->size & ~(PREV_INUSE|NON_MAIN_ARENA);
2738 if (!chunk_is_mmapped(p)) {
2739 assert(av == arena_for_chunk(p));
2740 if (chunk_non_main_arena(p))
2741 assert(av != &main_arena);
2742 else
2743 assert(av == &main_arena);
2746 do_check_inuse_chunk(av, p);
2748 /* Legal size ... */
2749 assert((sz & MALLOC_ALIGN_MASK) == 0);
2750 assert((unsigned long)(sz) >= MINSIZE);
2751 /* ... and alignment */
2752 assert(aligned_OK(chunk2mem(p)));
2753 /* chunk is less than MINSIZE more than request */
2754 assert((long)(sz) - (long)(s) >= 0);
2755 assert((long)(sz) - (long)(s + MINSIZE) < 0);
2759 Properties of nonrecycled chunks at the point they are malloced
2762 #if __STD_C
2763 static void do_check_malloced_chunk(mstate av, mchunkptr p, INTERNAL_SIZE_T s)
2764 #else
2765 static void do_check_malloced_chunk(av, p, s)
2766 mstate av; mchunkptr p; INTERNAL_SIZE_T s;
2767 #endif
2769 /* same as recycled case ... */
2770 do_check_remalloced_chunk(av, p, s);
2773 ... plus, must obey implementation invariant that prev_inuse is
2774 always true of any allocated chunk; i.e., that each allocated
2775 chunk borders either a previously allocated and still in-use
2776 chunk, or the base of its memory arena. This is ensured
2777 by making all allocations from the the `lowest' part of any found
2778 chunk. This does not necessarily hold however for chunks
2779 recycled via fastbins.
2782 assert(prev_inuse(p));
2787 Properties of malloc_state.
2789 This may be useful for debugging malloc, as well as detecting user
2790 programmer errors that somehow write into malloc_state.
2792 If you are extending or experimenting with this malloc, you can
2793 probably figure out how to hack this routine to print out or
2794 display chunk addresses, sizes, bins, and other instrumentation.
2797 static void do_check_malloc_state(mstate av)
2799 int i;
2800 mchunkptr p;
2801 mchunkptr q;
2802 mbinptr b;
2803 unsigned int idx;
2804 INTERNAL_SIZE_T size;
2805 unsigned long total = 0;
2806 int max_fast_bin;
2808 /* internal size_t must be no wider than pointer type */
2809 assert(sizeof(INTERNAL_SIZE_T) <= sizeof(char*));
2811 /* alignment is a power of 2 */
2812 assert((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT-1)) == 0);
2814 /* cannot run remaining checks until fully initialized */
2815 if (av->top == 0 || av->top == initial_top(av))
2816 return;
2818 /* pagesize is a power of 2 */
2819 assert((mp_.pagesize & (mp_.pagesize-1)) == 0);
2821 /* A contiguous main_arena is consistent with sbrk_base. */
2822 if (av == &main_arena && contiguous(av))
2823 assert((char*)mp_.sbrk_base + av->system_mem ==
2824 (char*)av->top + chunksize(av->top));
2826 /* properties of fastbins */
2828 /* max_fast is in allowed range */
2829 assert((get_max_fast () & ~1) <= request2size(MAX_FAST_SIZE));
2831 max_fast_bin = fastbin_index(get_max_fast ());
2833 for (i = 0; i < NFASTBINS; ++i) {
2834 p = av->fastbins[i];
2836 /* The following test can only be performed for the main arena.
2837 While mallopt calls malloc_consolidate to get rid of all fast
2838 bins (especially those larger than the new maximum) this does
2839 only happen for the main arena. Trying to do this for any
2840 other arena would mean those arenas have to be locked and
2841 malloc_consolidate be called for them. This is excessive. And
2842 even if this is acceptable to somebody it still cannot solve
2843 the problem completely since if the arena is locked a
2844 concurrent malloc call might create a new arena which then
2845 could use the newly invalid fast bins. */
2847 /* all bins past max_fast are empty */
2848 if (av == &main_arena && i > max_fast_bin)
2849 assert(p == 0);
2851 while (p != 0) {
2852 /* each chunk claims to be inuse */
2853 do_check_inuse_chunk(av, p);
2854 total += chunksize(p);
2855 /* chunk belongs in this bin */
2856 assert(fastbin_index(chunksize(p)) == i);
2857 p = p->fd;
2861 if (total != 0)
2862 assert(have_fastchunks(av));
2863 else if (!have_fastchunks(av))
2864 assert(total == 0);
2866 /* check normal bins */
2867 for (i = 1; i < NBINS; ++i) {
2868 b = bin_at(av,i);
2870 /* binmap is accurate (except for bin 1 == unsorted_chunks) */
2871 if (i >= 2) {
2872 unsigned int binbit = get_binmap(av,i);
2873 int empty = last(b) == b;
2874 if (!binbit)
2875 assert(empty);
2876 else if (!empty)
2877 assert(binbit);
2880 for (p = last(b); p != b; p = p->bk) {
2881 /* each chunk claims to be free */
2882 do_check_free_chunk(av, p);
2883 size = chunksize(p);
2884 total += size;
2885 if (i >= 2) {
2886 /* chunk belongs in bin */
2887 idx = bin_index(size);
2888 assert(idx == i);
2889 /* lists are sorted */
2890 assert(p->bk == b ||
2891 (unsigned long)chunksize(p->bk) >= (unsigned long)chunksize(p));
2893 if (!in_smallbin_range(size))
2895 if (p->fd_nextsize != NULL)
2897 if (p->fd_nextsize == p)
2898 assert (p->bk_nextsize == p);
2899 else
2901 if (p->fd_nextsize == first (b))
2902 assert (chunksize (p) < chunksize (p->fd_nextsize));
2903 else
2904 assert (chunksize (p) > chunksize (p->fd_nextsize));
2906 if (p == first (b))
2907 assert (chunksize (p) > chunksize (p->bk_nextsize));
2908 else
2909 assert (chunksize (p) < chunksize (p->bk_nextsize));
2912 else
2913 assert (p->bk_nextsize == NULL);
2915 } else if (!in_smallbin_range(size))
2916 assert (p->fd_nextsize == NULL && p->bk_nextsize == NULL);
2917 /* chunk is followed by a legal chain of inuse chunks */
2918 for (q = next_chunk(p);
2919 (q != av->top && inuse(q) &&
2920 (unsigned long)(chunksize(q)) >= MINSIZE);
2921 q = next_chunk(q))
2922 do_check_inuse_chunk(av, q);
2926 /* top chunk is OK */
2927 check_chunk(av, av->top);
2929 /* sanity checks for statistics */
2931 #ifdef NO_THREADS
2932 assert(total <= (unsigned long)(mp_.max_total_mem));
2933 assert(mp_.n_mmaps >= 0);
2934 #endif
2935 assert(mp_.n_mmaps <= mp_.max_n_mmaps);
2937 assert((unsigned long)(av->system_mem) <=
2938 (unsigned long)(av->max_system_mem));
2940 assert((unsigned long)(mp_.mmapped_mem) <=
2941 (unsigned long)(mp_.max_mmapped_mem));
2943 #ifdef NO_THREADS
2944 assert((unsigned long)(mp_.max_total_mem) >=
2945 (unsigned long)(mp_.mmapped_mem) + (unsigned long)(av->system_mem));
2946 #endif
2948 #endif
2951 /* ----------------- Support for debugging hooks -------------------- */
2952 #include "hooks.c"
2955 /* ----------- Routines dealing with system allocation -------------- */
2958 sysmalloc handles malloc cases requiring more memory from the system.
2959 On entry, it is assumed that av->top does not have enough
2960 space to service request for nb bytes, thus requiring that av->top
2961 be extended or replaced.
2964 #if __STD_C
2965 static Void_t* sYSMALLOc(INTERNAL_SIZE_T nb, mstate av)
2966 #else
2967 static Void_t* sYSMALLOc(nb, av) INTERNAL_SIZE_T nb; mstate av;
2968 #endif
2970 mchunkptr old_top; /* incoming value of av->top */
2971 INTERNAL_SIZE_T old_size; /* its size */
2972 char* old_end; /* its end address */
2974 long size; /* arg to first MORECORE or mmap call */
2975 char* brk; /* return value from MORECORE */
2977 long correction; /* arg to 2nd MORECORE call */
2978 char* snd_brk; /* 2nd return val */
2980 INTERNAL_SIZE_T front_misalign; /* unusable bytes at front of new space */
2981 INTERNAL_SIZE_T end_misalign; /* partial page left at end of new space */
2982 char* aligned_brk; /* aligned offset into brk */
2984 mchunkptr p; /* the allocated/returned chunk */
2985 mchunkptr remainder; /* remainder from allocation */
2986 unsigned long remainder_size; /* its size */
2988 unsigned long sum; /* for updating stats */
2990 size_t pagemask = mp_.pagesize - 1;
2991 bool tried_mmap = false;
2994 #if HAVE_MMAP
2997 If have mmap, and the request size meets the mmap threshold, and
2998 the system supports mmap, and there are few enough currently
2999 allocated mmapped regions, try to directly map this request
3000 rather than expanding top.
3003 if ((unsigned long)(nb) >= (unsigned long)(mp_.mmap_threshold) &&
3004 (mp_.n_mmaps < mp_.n_mmaps_max)) {
3006 char* mm; /* return value from mmap call*/
3008 try_mmap:
3010 Round up size to nearest page. For mmapped chunks, the overhead
3011 is one SIZE_SZ unit larger than for normal chunks, because there
3012 is no following chunk whose prev_size field could be used.
3014 #if 1
3015 /* See the front_misalign handling below, for glibc there is no
3016 need for further alignments. */
3017 size = (nb + SIZE_SZ + pagemask) & ~pagemask;
3018 #else
3019 size = (nb + SIZE_SZ + MALLOC_ALIGN_MASK + pagemask) & ~pagemask;
3020 #endif
3021 tried_mmap = true;
3023 /* Don't try if size wraps around 0 */
3024 if ((unsigned long)(size) > (unsigned long)(nb)) {
3026 mm = (char*)(MMAP(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE));
3028 if (mm != MAP_FAILED) {
3031 The offset to the start of the mmapped region is stored
3032 in the prev_size field of the chunk. This allows us to adjust
3033 returned start address to meet alignment requirements here
3034 and in memalign(), and still be able to compute proper
3035 address argument for later munmap in free() and realloc().
3038 #if 1
3039 /* For glibc, chunk2mem increases the address by 2*SIZE_SZ and
3040 MALLOC_ALIGN_MASK is 2*SIZE_SZ-1. Each mmap'ed area is page
3041 aligned and therefore definitely MALLOC_ALIGN_MASK-aligned. */
3042 assert (((INTERNAL_SIZE_T)chunk2mem(mm) & MALLOC_ALIGN_MASK) == 0);
3043 #else
3044 front_misalign = (INTERNAL_SIZE_T)chunk2mem(mm) & MALLOC_ALIGN_MASK;
3045 if (front_misalign > 0) {
3046 correction = MALLOC_ALIGNMENT - front_misalign;
3047 p = (mchunkptr)(mm + correction);
3048 p->prev_size = correction;
3049 set_head(p, (size - correction) |IS_MMAPPED);
3051 else
3052 #endif
3054 p = (mchunkptr)mm;
3055 set_head(p, size|IS_MMAPPED);
3058 /* update statistics */
3060 if (++mp_.n_mmaps > mp_.max_n_mmaps)
3061 mp_.max_n_mmaps = mp_.n_mmaps;
3063 sum = mp_.mmapped_mem += size;
3064 if (sum > (unsigned long)(mp_.max_mmapped_mem))
3065 mp_.max_mmapped_mem = sum;
3066 #ifdef NO_THREADS
3067 sum += av->system_mem;
3068 if (sum > (unsigned long)(mp_.max_total_mem))
3069 mp_.max_total_mem = sum;
3070 #endif
3072 check_chunk(av, p);
3074 return chunk2mem(p);
3078 #endif
3080 /* Record incoming configuration of top */
3082 old_top = av->top;
3083 old_size = chunksize(old_top);
3084 old_end = (char*)(chunk_at_offset(old_top, old_size));
3086 brk = snd_brk = (char*)(MORECORE_FAILURE);
3089 If not the first time through, we require old_size to be
3090 at least MINSIZE and to have prev_inuse set.
3093 assert((old_top == initial_top(av) && old_size == 0) ||
3094 ((unsigned long) (old_size) >= MINSIZE &&
3095 prev_inuse(old_top) &&
3096 ((unsigned long)old_end & pagemask) == 0));
3098 /* Precondition: not enough current space to satisfy nb request */
3099 assert((unsigned long)(old_size) < (unsigned long)(nb + MINSIZE));
3101 #ifndef ATOMIC_FASTBINS
3102 /* Precondition: all fastbins are consolidated */
3103 assert(!have_fastchunks(av));
3104 #endif
3107 if (av != &main_arena) {
3109 heap_info *old_heap, *heap;
3110 size_t old_heap_size;
3112 /* First try to extend the current heap. */
3113 old_heap = heap_for_ptr(old_top);
3114 old_heap_size = old_heap->size;
3115 if ((long) (MINSIZE + nb - old_size) > 0
3116 && grow_heap(old_heap, MINSIZE + nb - old_size) == 0) {
3117 av->system_mem += old_heap->size - old_heap_size;
3118 arena_mem += old_heap->size - old_heap_size;
3119 #if 0
3120 if(mmapped_mem + arena_mem + sbrked_mem > max_total_mem)
3121 max_total_mem = mmapped_mem + arena_mem + sbrked_mem;
3122 #endif
3123 set_head(old_top, (((char *)old_heap + old_heap->size) - (char *)old_top)
3124 | PREV_INUSE);
3126 else if ((heap = new_heap(nb + (MINSIZE + sizeof(*heap)), mp_.top_pad))) {
3127 /* Use a newly allocated heap. */
3128 heap->ar_ptr = av;
3129 heap->prev = old_heap;
3130 av->system_mem += heap->size;
3131 arena_mem += heap->size;
3132 #if 0
3133 if((unsigned long)(mmapped_mem + arena_mem + sbrked_mem) > max_total_mem)
3134 max_total_mem = mmapped_mem + arena_mem + sbrked_mem;
3135 #endif
3136 /* Set up the new top. */
3137 top(av) = chunk_at_offset(heap, sizeof(*heap));
3138 set_head(top(av), (heap->size - sizeof(*heap)) | PREV_INUSE);
3140 /* Setup fencepost and free the old top chunk. */
3141 /* The fencepost takes at least MINSIZE bytes, because it might
3142 become the top chunk again later. Note that a footer is set
3143 up, too, although the chunk is marked in use. */
3144 old_size -= MINSIZE;
3145 set_head(chunk_at_offset(old_top, old_size + 2*SIZE_SZ), 0|PREV_INUSE);
3146 if (old_size >= MINSIZE) {
3147 set_head(chunk_at_offset(old_top, old_size), (2*SIZE_SZ)|PREV_INUSE);
3148 set_foot(chunk_at_offset(old_top, old_size), (2*SIZE_SZ));
3149 set_head(old_top, old_size|PREV_INUSE|NON_MAIN_ARENA);
3150 #ifdef ATOMIC_FASTBINS
3151 _int_free(av, old_top, 1);
3152 #else
3153 _int_free(av, old_top);
3154 #endif
3155 } else {
3156 set_head(old_top, (old_size + 2*SIZE_SZ)|PREV_INUSE);
3157 set_foot(old_top, (old_size + 2*SIZE_SZ));
3160 else if (!tried_mmap)
3161 /* We can at least try to use to mmap memory. */
3162 goto try_mmap;
3164 } else { /* av == main_arena */
3167 /* Request enough space for nb + pad + overhead */
3169 size = nb + mp_.top_pad + MINSIZE;
3172 If contiguous, we can subtract out existing space that we hope to
3173 combine with new space. We add it back later only if
3174 we don't actually get contiguous space.
3177 if (contiguous(av))
3178 size -= old_size;
3181 Round to a multiple of page size.
3182 If MORECORE is not contiguous, this ensures that we only call it
3183 with whole-page arguments. And if MORECORE is contiguous and
3184 this is not first time through, this preserves page-alignment of
3185 previous calls. Otherwise, we correct to page-align below.
3188 size = (size + pagemask) & ~pagemask;
3191 Don't try to call MORECORE if argument is so big as to appear
3192 negative. Note that since mmap takes size_t arg, it may succeed
3193 below even if we cannot call MORECORE.
3196 if (size > 0)
3197 brk = (char*)(MORECORE(size));
3199 if (brk != (char*)(MORECORE_FAILURE)) {
3200 /* Call the `morecore' hook if necessary. */
3201 void (*hook) (void) = force_reg (__after_morecore_hook);
3202 if (__builtin_expect (hook != NULL, 0))
3203 (*hook) ();
3204 } else {
3206 If have mmap, try using it as a backup when MORECORE fails or
3207 cannot be used. This is worth doing on systems that have "holes" in
3208 address space, so sbrk cannot extend to give contiguous space, but
3209 space is available elsewhere. Note that we ignore mmap max count
3210 and threshold limits, since the space will not be used as a
3211 segregated mmap region.
3214 #if HAVE_MMAP
3215 /* Cannot merge with old top, so add its size back in */
3216 if (contiguous(av))
3217 size = (size + old_size + pagemask) & ~pagemask;
3219 /* If we are relying on mmap as backup, then use larger units */
3220 if ((unsigned long)(size) < (unsigned long)(MMAP_AS_MORECORE_SIZE))
3221 size = MMAP_AS_MORECORE_SIZE;
3223 /* Don't try if size wraps around 0 */
3224 if ((unsigned long)(size) > (unsigned long)(nb)) {
3226 char *mbrk = (char*)(MMAP(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE));
3228 if (mbrk != MAP_FAILED) {
3230 /* We do not need, and cannot use, another sbrk call to find end */
3231 brk = mbrk;
3232 snd_brk = brk + size;
3235 Record that we no longer have a contiguous sbrk region.
3236 After the first time mmap is used as backup, we do not
3237 ever rely on contiguous space since this could incorrectly
3238 bridge regions.
3240 set_noncontiguous(av);
3243 #endif
3246 if (brk != (char*)(MORECORE_FAILURE)) {
3247 if (mp_.sbrk_base == 0)
3248 mp_.sbrk_base = brk;
3249 av->system_mem += size;
3252 If MORECORE extends previous space, we can likewise extend top size.
3255 if (brk == old_end && snd_brk == (char*)(MORECORE_FAILURE))
3256 set_head(old_top, (size + old_size) | PREV_INUSE);
3258 else if (contiguous(av) && old_size && brk < old_end) {
3259 /* Oops! Someone else killed our space.. Can't touch anything. */
3260 malloc_printerr (3, "break adjusted to free malloc space", brk);
3264 Otherwise, make adjustments:
3266 * If the first time through or noncontiguous, we need to call sbrk
3267 just to find out where the end of memory lies.
3269 * We need to ensure that all returned chunks from malloc will meet
3270 MALLOC_ALIGNMENT
3272 * If there was an intervening foreign sbrk, we need to adjust sbrk
3273 request size to account for fact that we will not be able to
3274 combine new space with existing space in old_top.
3276 * Almost all systems internally allocate whole pages at a time, in
3277 which case we might as well use the whole last page of request.
3278 So we allocate enough more memory to hit a page boundary now,
3279 which in turn causes future contiguous calls to page-align.
3282 else {
3283 front_misalign = 0;
3284 end_misalign = 0;
3285 correction = 0;
3286 aligned_brk = brk;
3288 /* handle contiguous cases */
3289 if (contiguous(av)) {
3291 /* Count foreign sbrk as system_mem. */
3292 if (old_size)
3293 av->system_mem += brk - old_end;
3295 /* Guarantee alignment of first new chunk made from this space */
3297 front_misalign = (INTERNAL_SIZE_T)chunk2mem(brk) & MALLOC_ALIGN_MASK;
3298 if (front_misalign > 0) {
3301 Skip over some bytes to arrive at an aligned position.
3302 We don't need to specially mark these wasted front bytes.
3303 They will never be accessed anyway because
3304 prev_inuse of av->top (and any chunk created from its start)
3305 is always true after initialization.
3308 correction = MALLOC_ALIGNMENT - front_misalign;
3309 aligned_brk += correction;
3313 If this isn't adjacent to existing space, then we will not
3314 be able to merge with old_top space, so must add to 2nd request.
3317 correction += old_size;
3319 /* Extend the end address to hit a page boundary */
3320 end_misalign = (INTERNAL_SIZE_T)(brk + size + correction);
3321 correction += ((end_misalign + pagemask) & ~pagemask) - end_misalign;
3323 assert(correction >= 0);
3324 snd_brk = (char*)(MORECORE(correction));
3327 If can't allocate correction, try to at least find out current
3328 brk. It might be enough to proceed without failing.
3330 Note that if second sbrk did NOT fail, we assume that space
3331 is contiguous with first sbrk. This is a safe assumption unless
3332 program is multithreaded but doesn't use locks and a foreign sbrk
3333 occurred between our first and second calls.
3336 if (snd_brk == (char*)(MORECORE_FAILURE)) {
3337 correction = 0;
3338 snd_brk = (char*)(MORECORE(0));
3339 } else {
3340 /* Call the `morecore' hook if necessary. */
3341 void (*hook) (void) = force_reg (__after_morecore_hook);
3342 if (__builtin_expect (hook != NULL, 0))
3343 (*hook) ();
3347 /* handle non-contiguous cases */
3348 else {
3349 /* MORECORE/mmap must correctly align */
3350 assert(((unsigned long)chunk2mem(brk) & MALLOC_ALIGN_MASK) == 0);
3352 /* Find out current end of memory */
3353 if (snd_brk == (char*)(MORECORE_FAILURE)) {
3354 snd_brk = (char*)(MORECORE(0));
3358 /* Adjust top based on results of second sbrk */
3359 if (snd_brk != (char*)(MORECORE_FAILURE)) {
3360 av->top = (mchunkptr)aligned_brk;
3361 set_head(av->top, (snd_brk - aligned_brk + correction) | PREV_INUSE);
3362 av->system_mem += correction;
3365 If not the first time through, we either have a
3366 gap due to foreign sbrk or a non-contiguous region. Insert a
3367 double fencepost at old_top to prevent consolidation with space
3368 we don't own. These fenceposts are artificial chunks that are
3369 marked as inuse and are in any case too small to use. We need
3370 two to make sizes and alignments work out.
3373 if (old_size != 0) {
3375 Shrink old_top to insert fenceposts, keeping size a
3376 multiple of MALLOC_ALIGNMENT. We know there is at least
3377 enough space in old_top to do this.
3379 old_size = (old_size - 4*SIZE_SZ) & ~MALLOC_ALIGN_MASK;
3380 set_head(old_top, old_size | PREV_INUSE);
3383 Note that the following assignments completely overwrite
3384 old_top when old_size was previously MINSIZE. This is
3385 intentional. We need the fencepost, even if old_top otherwise gets
3386 lost.
3388 chunk_at_offset(old_top, old_size )->size =
3389 (2*SIZE_SZ)|PREV_INUSE;
3391 chunk_at_offset(old_top, old_size + 2*SIZE_SZ)->size =
3392 (2*SIZE_SZ)|PREV_INUSE;
3394 /* If possible, release the rest. */
3395 if (old_size >= MINSIZE) {
3396 #ifdef ATOMIC_FASTBINS
3397 _int_free(av, old_top, 1);
3398 #else
3399 _int_free(av, old_top);
3400 #endif
3407 /* Update statistics */
3408 #ifdef NO_THREADS
3409 sum = av->system_mem + mp_.mmapped_mem;
3410 if (sum > (unsigned long)(mp_.max_total_mem))
3411 mp_.max_total_mem = sum;
3412 #endif
3416 } /* if (av != &main_arena) */
3418 if ((unsigned long)av->system_mem > (unsigned long)(av->max_system_mem))
3419 av->max_system_mem = av->system_mem;
3420 check_malloc_state(av);
3422 /* finally, do the allocation */
3423 p = av->top;
3424 size = chunksize(p);
3426 /* check that one of the above allocation paths succeeded */
3427 if ((unsigned long)(size) >= (unsigned long)(nb + MINSIZE)) {
3428 remainder_size = size - nb;
3429 remainder = chunk_at_offset(p, nb);
3430 av->top = remainder;
3431 set_head(p, nb | PREV_INUSE | (av != &main_arena ? NON_MAIN_ARENA : 0));
3432 set_head(remainder, remainder_size | PREV_INUSE);
3433 check_malloced_chunk(av, p, nb);
3434 return chunk2mem(p);
3437 /* catch all failure paths */
3438 MALLOC_FAILURE_ACTION;
3439 return 0;
3444 sYSTRIm is an inverse of sorts to sYSMALLOc. It gives memory back
3445 to the system (via negative arguments to sbrk) if there is unused
3446 memory at the `high' end of the malloc pool. It is called
3447 automatically by free() when top space exceeds the trim
3448 threshold. It is also called by the public malloc_trim routine. It
3449 returns 1 if it actually released any memory, else 0.
3452 #if __STD_C
3453 static int sYSTRIm(size_t pad, mstate av)
3454 #else
3455 static int sYSTRIm(pad, av) size_t pad; mstate av;
3456 #endif
3458 long top_size; /* Amount of top-most memory */
3459 long extra; /* Amount to release */
3460 long released; /* Amount actually released */
3461 char* current_brk; /* address returned by pre-check sbrk call */
3462 char* new_brk; /* address returned by post-check sbrk call */
3463 size_t pagesz;
3465 pagesz = mp_.pagesize;
3466 top_size = chunksize(av->top);
3468 /* Release in pagesize units, keeping at least one page */
3469 extra = ((top_size - pad - MINSIZE + (pagesz-1)) / pagesz - 1) * pagesz;
3471 if (extra > 0) {
3474 Only proceed if end of memory is where we last set it.
3475 This avoids problems if there were foreign sbrk calls.
3477 current_brk = (char*)(MORECORE(0));
3478 if (current_brk == (char*)(av->top) + top_size) {
3481 Attempt to release memory. We ignore MORECORE return value,
3482 and instead call again to find out where new end of memory is.
3483 This avoids problems if first call releases less than we asked,
3484 of if failure somehow altered brk value. (We could still
3485 encounter problems if it altered brk in some very bad way,
3486 but the only thing we can do is adjust anyway, which will cause
3487 some downstream failure.)
3490 MORECORE(-extra);
3491 /* Call the `morecore' hook if necessary. */
3492 void (*hook) (void) = force_reg (__after_morecore_hook);
3493 if (__builtin_expect (hook != NULL, 0))
3494 (*hook) ();
3495 new_brk = (char*)(MORECORE(0));
3497 if (new_brk != (char*)MORECORE_FAILURE) {
3498 released = (long)(current_brk - new_brk);
3500 if (released != 0) {
3501 /* Success. Adjust top. */
3502 av->system_mem -= released;
3503 set_head(av->top, (top_size - released) | PREV_INUSE);
3504 check_malloc_state(av);
3505 return 1;
3510 return 0;
3513 #ifdef HAVE_MMAP
3515 static void
3516 internal_function
3517 #if __STD_C
3518 munmap_chunk(mchunkptr p)
3519 #else
3520 munmap_chunk(p) mchunkptr p;
3521 #endif
3523 INTERNAL_SIZE_T size = chunksize(p);
3525 assert (chunk_is_mmapped(p));
3526 #if 0
3527 assert(! ((char*)p >= mp_.sbrk_base && (char*)p < mp_.sbrk_base + mp_.sbrked_mem));
3528 assert((mp_.n_mmaps > 0));
3529 #endif
3531 uintptr_t block = (uintptr_t) p - p->prev_size;
3532 size_t total_size = p->prev_size + size;
3533 /* Unfortunately we have to do the compilers job by hand here. Normally
3534 we would test BLOCK and TOTAL-SIZE separately for compliance with the
3535 page size. But gcc does not recognize the optimization possibility
3536 (in the moment at least) so we combine the two values into one before
3537 the bit test. */
3538 if (__builtin_expect (((block | total_size) & (mp_.pagesize - 1)) != 0, 0))
3540 malloc_printerr (check_action, "munmap_chunk(): invalid pointer",
3541 chunk2mem (p));
3542 return;
3545 mp_.n_mmaps--;
3546 mp_.mmapped_mem -= total_size;
3548 int ret __attribute__ ((unused)) = munmap((char *)block, total_size);
3550 /* munmap returns non-zero on failure */
3551 assert(ret == 0);
3554 #if HAVE_MREMAP
3556 static mchunkptr
3557 internal_function
3558 #if __STD_C
3559 mremap_chunk(mchunkptr p, size_t new_size)
3560 #else
3561 mremap_chunk(p, new_size) mchunkptr p; size_t new_size;
3562 #endif
3564 size_t page_mask = mp_.pagesize - 1;
3565 INTERNAL_SIZE_T offset = p->prev_size;
3566 INTERNAL_SIZE_T size = chunksize(p);
3567 char *cp;
3569 assert (chunk_is_mmapped(p));
3570 #if 0
3571 assert(! ((char*)p >= mp_.sbrk_base && (char*)p < mp_.sbrk_base + mp_.sbrked_mem));
3572 assert((mp_.n_mmaps > 0));
3573 #endif
3574 assert(((size + offset) & (mp_.pagesize-1)) == 0);
3576 /* Note the extra SIZE_SZ overhead as in mmap_chunk(). */
3577 new_size = (new_size + offset + SIZE_SZ + page_mask) & ~page_mask;
3579 /* No need to remap if the number of pages does not change. */
3580 if (size + offset == new_size)
3581 return p;
3583 cp = (char *)mremap((char *)p - offset, size + offset, new_size,
3584 MREMAP_MAYMOVE);
3586 if (cp == MAP_FAILED) return 0;
3588 p = (mchunkptr)(cp + offset);
3590 assert(aligned_OK(chunk2mem(p)));
3592 assert((p->prev_size == offset));
3593 set_head(p, (new_size - offset)|IS_MMAPPED);
3595 mp_.mmapped_mem -= size + offset;
3596 mp_.mmapped_mem += new_size;
3597 if ((unsigned long)mp_.mmapped_mem > (unsigned long)mp_.max_mmapped_mem)
3598 mp_.max_mmapped_mem = mp_.mmapped_mem;
3599 #ifdef NO_THREADS
3600 if ((unsigned long)(mp_.mmapped_mem + arena_mem + main_arena.system_mem) >
3601 mp_.max_total_mem)
3602 mp_.max_total_mem = mp_.mmapped_mem + arena_mem + main_arena.system_mem;
3603 #endif
3604 return p;
3607 #endif /* HAVE_MREMAP */
3609 #endif /* HAVE_MMAP */
3611 /*------------------------ Public wrappers. --------------------------------*/
3613 Void_t*
3614 public_mALLOc(size_t bytes)
3616 mstate ar_ptr;
3617 Void_t *victim;
3619 __malloc_ptr_t (*hook) (size_t, __const __malloc_ptr_t)
3620 = force_reg (__malloc_hook);
3621 if (__builtin_expect (hook != NULL, 0))
3622 return (*hook)(bytes, RETURN_ADDRESS (0));
3624 arena_lookup(ar_ptr);
3625 #if 0
3626 // XXX We need double-word CAS and fastbins must be extended to also
3627 // XXX hold a generation counter for each entry.
3628 if (ar_ptr) {
3629 INTERNAL_SIZE_T nb; /* normalized request size */
3630 checked_request2size(bytes, nb);
3631 if (nb <= get_max_fast ()) {
3632 long int idx = fastbin_index(nb);
3633 mfastbinptr* fb = &fastbin (ar_ptr, idx);
3634 mchunkptr pp = *fb;
3635 mchunkptr v;
3638 v = pp;
3639 if (v == NULL)
3640 break;
3642 while ((pp = catomic_compare_and_exchange_val_acq (fb, v->fd, v)) != v);
3643 if (v != 0) {
3644 if (__builtin_expect (fastbin_index (chunksize (v)) != idx, 0))
3645 malloc_printerr (check_action, "malloc(): memory corruption (fast)",
3646 chunk2mem (v));
3647 check_remalloced_chunk(ar_ptr, v, nb);
3648 void *p = chunk2mem(v);
3649 if (__builtin_expect (perturb_byte, 0))
3650 alloc_perturb (p, bytes);
3651 return p;
3655 #endif
3657 arena_lock(ar_ptr, bytes);
3658 if(!ar_ptr)
3659 return 0;
3660 victim = _int_malloc(ar_ptr, bytes);
3661 if(!victim) {
3662 /* Maybe the failure is due to running out of mmapped areas. */
3663 if(ar_ptr != &main_arena) {
3664 (void)mutex_unlock(&ar_ptr->mutex);
3665 ar_ptr = &main_arena;
3666 (void)mutex_lock(&ar_ptr->mutex);
3667 victim = _int_malloc(ar_ptr, bytes);
3668 (void)mutex_unlock(&ar_ptr->mutex);
3669 } else {
3670 #if USE_ARENAS
3671 /* ... or sbrk() has failed and there is still a chance to mmap() */
3672 ar_ptr = arena_get2(ar_ptr->next ? ar_ptr : 0, bytes);
3673 (void)mutex_unlock(&main_arena.mutex);
3674 if(ar_ptr) {
3675 victim = _int_malloc(ar_ptr, bytes);
3676 (void)mutex_unlock(&ar_ptr->mutex);
3678 #endif
3680 } else
3681 (void)mutex_unlock(&ar_ptr->mutex);
3682 assert(!victim || chunk_is_mmapped(mem2chunk(victim)) ||
3683 ar_ptr == arena_for_chunk(mem2chunk(victim)));
3684 return victim;
3686 #ifdef libc_hidden_def
3687 libc_hidden_def(public_mALLOc)
3688 #endif
3690 void
3691 public_fREe(Void_t* mem)
3693 mstate ar_ptr;
3694 mchunkptr p; /* chunk corresponding to mem */
3696 void (*hook) (__malloc_ptr_t, __const __malloc_ptr_t)
3697 = force_reg (__free_hook);
3698 if (__builtin_expect (hook != NULL, 0)) {
3699 (*hook)(mem, RETURN_ADDRESS (0));
3700 return;
3703 if (mem == 0) /* free(0) has no effect */
3704 return;
3706 p = mem2chunk(mem);
3708 #if HAVE_MMAP
3709 if (chunk_is_mmapped(p)) /* release mmapped memory. */
3711 /* see if the dynamic brk/mmap threshold needs adjusting */
3712 if (!mp_.no_dyn_threshold
3713 && p->size > mp_.mmap_threshold
3714 && p->size <= DEFAULT_MMAP_THRESHOLD_MAX)
3716 mp_.mmap_threshold = chunksize (p);
3717 mp_.trim_threshold = 2 * mp_.mmap_threshold;
3719 munmap_chunk(p);
3720 return;
3722 #endif
3724 ar_ptr = arena_for_chunk(p);
3725 #ifdef ATOMIC_FASTBINS
3726 _int_free(ar_ptr, p, 0);
3727 #else
3728 # if THREAD_STATS
3729 if(!mutex_trylock(&ar_ptr->mutex))
3730 ++(ar_ptr->stat_lock_direct);
3731 else {
3732 (void)mutex_lock(&ar_ptr->mutex);
3733 ++(ar_ptr->stat_lock_wait);
3735 # else
3736 (void)mutex_lock(&ar_ptr->mutex);
3737 # endif
3738 _int_free(ar_ptr, p);
3739 (void)mutex_unlock(&ar_ptr->mutex);
3740 #endif
3742 #ifdef libc_hidden_def
3743 libc_hidden_def (public_fREe)
3744 #endif
3746 Void_t*
3747 public_rEALLOc(Void_t* oldmem, size_t bytes)
3749 mstate ar_ptr;
3750 INTERNAL_SIZE_T nb; /* padded request size */
3752 Void_t* newp; /* chunk to return */
3754 __malloc_ptr_t (*hook) (__malloc_ptr_t, size_t, __const __malloc_ptr_t) =
3755 force_reg (__realloc_hook);
3756 if (__builtin_expect (hook != NULL, 0))
3757 return (*hook)(oldmem, bytes, RETURN_ADDRESS (0));
3759 #if REALLOC_ZERO_BYTES_FREES
3760 if (bytes == 0 && oldmem != NULL) { public_fREe(oldmem); return 0; }
3761 #endif
3763 /* realloc of null is supposed to be same as malloc */
3764 if (oldmem == 0) return public_mALLOc(bytes);
3766 /* chunk corresponding to oldmem */
3767 const mchunkptr oldp = mem2chunk(oldmem);
3768 /* its size */
3769 const INTERNAL_SIZE_T oldsize = chunksize(oldp);
3771 /* Little security check which won't hurt performance: the
3772 allocator never wrapps around at the end of the address space.
3773 Therefore we can exclude some size values which might appear
3774 here by accident or by "design" from some intruder. */
3775 if (__builtin_expect ((uintptr_t) oldp > (uintptr_t) -oldsize, 0)
3776 || __builtin_expect (misaligned_chunk (oldp), 0))
3778 malloc_printerr (check_action, "realloc(): invalid pointer", oldmem);
3779 return NULL;
3782 checked_request2size(bytes, nb);
3784 #if HAVE_MMAP
3785 if (chunk_is_mmapped(oldp))
3787 Void_t* newmem;
3789 #if HAVE_MREMAP
3790 newp = mremap_chunk(oldp, nb);
3791 if(newp) return chunk2mem(newp);
3792 #endif
3793 /* Note the extra SIZE_SZ overhead. */
3794 if(oldsize - SIZE_SZ >= nb) return oldmem; /* do nothing */
3795 /* Must alloc, copy, free. */
3796 newmem = public_mALLOc(bytes);
3797 if (newmem == 0) return 0; /* propagate failure */
3798 MALLOC_COPY(newmem, oldmem, oldsize - 2*SIZE_SZ);
3799 munmap_chunk(oldp);
3800 return newmem;
3802 #endif
3804 ar_ptr = arena_for_chunk(oldp);
3805 #if THREAD_STATS
3806 if(!mutex_trylock(&ar_ptr->mutex))
3807 ++(ar_ptr->stat_lock_direct);
3808 else {
3809 (void)mutex_lock(&ar_ptr->mutex);
3810 ++(ar_ptr->stat_lock_wait);
3812 #else
3813 (void)mutex_lock(&ar_ptr->mutex);
3814 #endif
3816 #if !defined NO_THREADS && !defined PER_THREAD
3817 /* As in malloc(), remember this arena for the next allocation. */
3818 tsd_setspecific(arena_key, (Void_t *)ar_ptr);
3819 #endif
3821 newp = _int_realloc(ar_ptr, oldp, oldsize, nb);
3823 (void)mutex_unlock(&ar_ptr->mutex);
3824 assert(!newp || chunk_is_mmapped(mem2chunk(newp)) ||
3825 ar_ptr == arena_for_chunk(mem2chunk(newp)));
3827 if (newp == NULL)
3829 /* Try harder to allocate memory in other arenas. */
3830 newp = public_mALLOc(bytes);
3831 if (newp != NULL)
3833 MALLOC_COPY (newp, oldmem, oldsize - SIZE_SZ);
3834 #ifdef ATOMIC_FASTBINS
3835 _int_free(ar_ptr, oldp, 0);
3836 #else
3837 # if THREAD_STATS
3838 if(!mutex_trylock(&ar_ptr->mutex))
3839 ++(ar_ptr->stat_lock_direct);
3840 else {
3841 (void)mutex_lock(&ar_ptr->mutex);
3842 ++(ar_ptr->stat_lock_wait);
3844 # else
3845 (void)mutex_lock(&ar_ptr->mutex);
3846 # endif
3847 _int_free(ar_ptr, oldp);
3848 (void)mutex_unlock(&ar_ptr->mutex);
3849 #endif
3853 return newp;
3855 #ifdef libc_hidden_def
3856 libc_hidden_def (public_rEALLOc)
3857 #endif
3859 Void_t*
3860 public_mEMALIGn(size_t alignment, size_t bytes)
3862 mstate ar_ptr;
3863 Void_t *p;
3865 __malloc_ptr_t (*hook) __MALLOC_PMT ((size_t, size_t,
3866 __const __malloc_ptr_t)) =
3867 force_reg (__memalign_hook);
3868 if (__builtin_expect (hook != NULL, 0))
3869 return (*hook)(alignment, bytes, RETURN_ADDRESS (0));
3871 /* If need less alignment than we give anyway, just relay to malloc */
3872 if (alignment <= MALLOC_ALIGNMENT) return public_mALLOc(bytes);
3874 /* Otherwise, ensure that it is at least a minimum chunk size */
3875 if (alignment < MINSIZE) alignment = MINSIZE;
3877 arena_get(ar_ptr, bytes + alignment + MINSIZE);
3878 if(!ar_ptr)
3879 return 0;
3880 p = _int_memalign(ar_ptr, alignment, bytes);
3881 if(!p) {
3882 /* Maybe the failure is due to running out of mmapped areas. */
3883 if(ar_ptr != &main_arena) {
3884 (void)mutex_unlock(&ar_ptr->mutex);
3885 ar_ptr = &main_arena;
3886 (void)mutex_lock(&ar_ptr->mutex);
3887 p = _int_memalign(ar_ptr, alignment, bytes);
3888 (void)mutex_unlock(&ar_ptr->mutex);
3889 } else {
3890 #if USE_ARENAS
3891 /* ... or sbrk() has failed and there is still a chance to mmap() */
3892 mstate prev = ar_ptr->next ? ar_ptr : 0;
3893 (void)mutex_unlock(&ar_ptr->mutex);
3894 ar_ptr = arena_get2(prev, bytes);
3895 if(ar_ptr) {
3896 p = _int_memalign(ar_ptr, alignment, bytes);
3897 (void)mutex_unlock(&ar_ptr->mutex);
3899 #endif
3901 } else
3902 (void)mutex_unlock(&ar_ptr->mutex);
3903 assert(!p || chunk_is_mmapped(mem2chunk(p)) ||
3904 ar_ptr == arena_for_chunk(mem2chunk(p)));
3905 return p;
3907 #ifdef libc_hidden_def
3908 libc_hidden_def (public_mEMALIGn)
3909 #endif
3911 Void_t*
3912 public_vALLOc(size_t bytes)
3914 mstate ar_ptr;
3915 Void_t *p;
3917 if(__malloc_initialized < 0)
3918 ptmalloc_init ();
3920 size_t pagesz = mp_.pagesize;
3922 __malloc_ptr_t (*hook) __MALLOC_PMT ((size_t, size_t,
3923 __const __malloc_ptr_t)) =
3924 force_reg (__memalign_hook);
3925 if (__builtin_expect (hook != NULL, 0))
3926 return (*hook)(pagesz, bytes, RETURN_ADDRESS (0));
3928 arena_get(ar_ptr, bytes + pagesz + MINSIZE);
3929 if(!ar_ptr)
3930 return 0;
3931 p = _int_valloc(ar_ptr, bytes);
3932 (void)mutex_unlock(&ar_ptr->mutex);
3933 if(!p) {
3934 /* Maybe the failure is due to running out of mmapped areas. */
3935 if(ar_ptr != &main_arena) {
3936 ar_ptr = &main_arena;
3937 (void)mutex_lock(&ar_ptr->mutex);
3938 p = _int_memalign(&ar_ptr-> pagesz, bytes);
3939 (void)mutex_unlock(&ar_ptr->mutex);
3940 } else {
3941 #if USE_ARENAS
3942 /* ... or sbrk() has failed and there is still a chance to mmap() */
3943 ar_ptr = arena_get2(ar_ptr->next ? ar_ptr : 0, bytes);
3944 if(ar_ptr) {
3945 p = _int_memalign(ar_ptr, pagesz, bytes);
3946 (void)mutex_unlock(&ar_ptr->mutex);
3948 #endif
3951 assert(!p || chunk_is_mmapped(mem2chunk(p)) ||
3952 ar_ptr == arena_for_chunk(mem2chunk(p)));
3954 return p;
3957 Void_t*
3958 public_pVALLOc(size_t bytes)
3960 mstate ar_ptr;
3961 Void_t *p;
3963 if(__malloc_initialized < 0)
3964 ptmalloc_init ();
3966 size_t pagesz = mp_.pagesize;
3967 size_t page_mask = mp_.pagesize - 1;
3968 size_t rounded_bytes = (bytes + page_mask) & ~(page_mask);
3970 __malloc_ptr_t (*hook) __MALLOC_PMT ((size_t, size_t,
3971 __const __malloc_ptr_t)) =
3972 force_reg (__memalign_hook);
3973 if (__builtin_expect (hook != NULL, 0))
3974 return (*hook)(pagesz, rounded_bytes, RETURN_ADDRESS (0));
3976 arena_get(ar_ptr, bytes + 2*pagesz + MINSIZE);
3977 p = _int_pvalloc(ar_ptr, bytes);
3978 (void)mutex_unlock(&ar_ptr->mutex);
3979 if(!p) {
3980 /* Maybe the failure is due to running out of mmapped areas. */
3981 if(ar_ptr != &main_arena) {
3982 ar_ptr = &main_arena;
3983 (void)mutex_lock(&ar_ptr->mutex);
3984 p = _int_memalign(&ar_ptr-> pagesz, rounded_bytes);
3985 (void)mutex_unlock(&ar_ptr->mutex);
3986 } else {
3987 #if USE_ARENAS
3988 /* ... or sbrk() has failed and there is still a chance to mmap() */
3989 ar_ptr = arena_get2(ar_ptr->next ? ar_ptr : 0,
3990 bytes + 2*pagesz + MINSIZE);
3991 if(ar_ptr) {
3992 p = _int_memalign(ar_ptr, pagesz, rounded_bytes);
3993 (void)mutex_unlock(&ar_ptr->mutex);
3995 #endif
3998 assert(!p || chunk_is_mmapped(mem2chunk(p)) ||
3999 ar_ptr == arena_for_chunk(mem2chunk(p)));
4001 return p;
4004 Void_t*
4005 public_cALLOc(size_t n, size_t elem_size)
4007 mstate av;
4008 mchunkptr oldtop, p;
4009 INTERNAL_SIZE_T bytes, sz, csz, oldtopsize;
4010 Void_t* mem;
4011 unsigned long clearsize;
4012 unsigned long nclears;
4013 INTERNAL_SIZE_T* d;
4015 /* size_t is unsigned so the behavior on overflow is defined. */
4016 bytes = n * elem_size;
4017 #define HALF_INTERNAL_SIZE_T \
4018 (((INTERNAL_SIZE_T) 1) << (8 * sizeof (INTERNAL_SIZE_T) / 2))
4019 if (__builtin_expect ((n | elem_size) >= HALF_INTERNAL_SIZE_T, 0)) {
4020 if (elem_size != 0 && bytes / elem_size != n) {
4021 MALLOC_FAILURE_ACTION;
4022 return 0;
4026 __malloc_ptr_t (*hook) __MALLOC_PMT ((size_t, __const __malloc_ptr_t)) =
4027 force_reg (__malloc_hook);
4028 if (__builtin_expect (hook != NULL, 0)) {
4029 sz = bytes;
4030 mem = (*hook)(sz, RETURN_ADDRESS (0));
4031 if(mem == 0)
4032 return 0;
4033 #ifdef HAVE_MEMCPY
4034 return memset(mem, 0, sz);
4035 #else
4036 while(sz > 0) ((char*)mem)[--sz] = 0; /* rather inefficient */
4037 return mem;
4038 #endif
4041 sz = bytes;
4043 arena_get(av, sz);
4044 if(!av)
4045 return 0;
4047 /* Check if we hand out the top chunk, in which case there may be no
4048 need to clear. */
4049 #if MORECORE_CLEARS
4050 oldtop = top(av);
4051 oldtopsize = chunksize(top(av));
4052 #if MORECORE_CLEARS < 2
4053 /* Only newly allocated memory is guaranteed to be cleared. */
4054 if (av == &main_arena &&
4055 oldtopsize < mp_.sbrk_base + av->max_system_mem - (char *)oldtop)
4056 oldtopsize = (mp_.sbrk_base + av->max_system_mem - (char *)oldtop);
4057 #endif
4058 if (av != &main_arena)
4060 heap_info *heap = heap_for_ptr (oldtop);
4061 if (oldtopsize < (char *) heap + heap->mprotect_size - (char *) oldtop)
4062 oldtopsize = (char *) heap + heap->mprotect_size - (char *) oldtop;
4064 #endif
4065 mem = _int_malloc(av, sz);
4067 /* Only clearing follows, so we can unlock early. */
4068 (void)mutex_unlock(&av->mutex);
4070 assert(!mem || chunk_is_mmapped(mem2chunk(mem)) ||
4071 av == arena_for_chunk(mem2chunk(mem)));
4073 if (mem == 0) {
4074 /* Maybe the failure is due to running out of mmapped areas. */
4075 if(av != &main_arena) {
4076 (void)mutex_lock(&main_arena.mutex);
4077 mem = _int_malloc(&main_arena, sz);
4078 (void)mutex_unlock(&main_arena.mutex);
4079 } else {
4080 #if USE_ARENAS
4081 /* ... or sbrk() has failed and there is still a chance to mmap() */
4082 (void)mutex_lock(&main_arena.mutex);
4083 av = arena_get2(av->next ? av : 0, sz);
4084 (void)mutex_unlock(&main_arena.mutex);
4085 if(av) {
4086 mem = _int_malloc(av, sz);
4087 (void)mutex_unlock(&av->mutex);
4089 #endif
4091 if (mem == 0) return 0;
4093 p = mem2chunk(mem);
4095 /* Two optional cases in which clearing not necessary */
4096 #if HAVE_MMAP
4097 if (chunk_is_mmapped (p))
4099 if (__builtin_expect (perturb_byte, 0))
4100 MALLOC_ZERO (mem, sz);
4101 return mem;
4103 #endif
4105 csz = chunksize(p);
4107 #if MORECORE_CLEARS
4108 if (perturb_byte == 0 && (p == oldtop && csz > oldtopsize)) {
4109 /* clear only the bytes from non-freshly-sbrked memory */
4110 csz = oldtopsize;
4112 #endif
4114 /* Unroll clear of <= 36 bytes (72 if 8byte sizes). We know that
4115 contents have an odd number of INTERNAL_SIZE_T-sized words;
4116 minimally 3. */
4117 d = (INTERNAL_SIZE_T*)mem;
4118 clearsize = csz - SIZE_SZ;
4119 nclears = clearsize / sizeof(INTERNAL_SIZE_T);
4120 assert(nclears >= 3);
4122 if (nclears > 9)
4123 MALLOC_ZERO(d, clearsize);
4125 else {
4126 *(d+0) = 0;
4127 *(d+1) = 0;
4128 *(d+2) = 0;
4129 if (nclears > 4) {
4130 *(d+3) = 0;
4131 *(d+4) = 0;
4132 if (nclears > 6) {
4133 *(d+5) = 0;
4134 *(d+6) = 0;
4135 if (nclears > 8) {
4136 *(d+7) = 0;
4137 *(d+8) = 0;
4143 return mem;
4146 #ifndef _LIBC
4148 Void_t**
4149 public_iCALLOc(size_t n, size_t elem_size, Void_t** chunks)
4151 mstate ar_ptr;
4152 Void_t** m;
4154 arena_get(ar_ptr, n*elem_size);
4155 if(!ar_ptr)
4156 return 0;
4158 m = _int_icalloc(ar_ptr, n, elem_size, chunks);
4159 (void)mutex_unlock(&ar_ptr->mutex);
4160 return m;
4163 Void_t**
4164 public_iCOMALLOc(size_t n, size_t sizes[], Void_t** chunks)
4166 mstate ar_ptr;
4167 Void_t** m;
4169 arena_get(ar_ptr, 0);
4170 if(!ar_ptr)
4171 return 0;
4173 m = _int_icomalloc(ar_ptr, n, sizes, chunks);
4174 (void)mutex_unlock(&ar_ptr->mutex);
4175 return m;
4178 void
4179 public_cFREe(Void_t* m)
4181 public_fREe(m);
4184 #endif /* _LIBC */
4187 public_mTRIm(size_t s)
4189 int result = 0;
4191 if(__malloc_initialized < 0)
4192 ptmalloc_init ();
4194 mstate ar_ptr = &main_arena;
4197 (void) mutex_lock (&ar_ptr->mutex);
4198 result |= mTRIm (ar_ptr, s);
4199 (void) mutex_unlock (&ar_ptr->mutex);
4201 ar_ptr = ar_ptr->next;
4203 while (ar_ptr != &main_arena);
4205 return result;
4208 size_t
4209 public_mUSABLe(Void_t* m)
4211 size_t result;
4213 result = mUSABLe(m);
4214 return result;
4217 void
4218 public_mSTATs()
4220 mSTATs();
4223 struct mallinfo public_mALLINFo()
4225 struct mallinfo m;
4227 if(__malloc_initialized < 0)
4228 ptmalloc_init ();
4229 (void)mutex_lock(&main_arena.mutex);
4230 m = mALLINFo(&main_arena);
4231 (void)mutex_unlock(&main_arena.mutex);
4232 return m;
4236 public_mALLOPt(int p, int v)
4238 int result;
4239 result = mALLOPt(p, v);
4240 return result;
4244 ------------------------------ malloc ------------------------------
4247 static Void_t*
4248 _int_malloc(mstate av, size_t bytes)
4250 INTERNAL_SIZE_T nb; /* normalized request size */
4251 unsigned int idx; /* associated bin index */
4252 mbinptr bin; /* associated bin */
4254 mchunkptr victim; /* inspected/selected chunk */
4255 INTERNAL_SIZE_T size; /* its size */
4256 int victim_index; /* its bin index */
4258 mchunkptr remainder; /* remainder from a split */
4259 unsigned long remainder_size; /* its size */
4261 unsigned int block; /* bit map traverser */
4262 unsigned int bit; /* bit map traverser */
4263 unsigned int map; /* current word of binmap */
4265 mchunkptr fwd; /* misc temp for linking */
4266 mchunkptr bck; /* misc temp for linking */
4268 const char *errstr = NULL;
4271 Convert request size to internal form by adding SIZE_SZ bytes
4272 overhead plus possibly more to obtain necessary alignment and/or
4273 to obtain a size of at least MINSIZE, the smallest allocatable
4274 size. Also, checked_request2size traps (returning 0) request sizes
4275 that are so large that they wrap around zero when padded and
4276 aligned.
4279 checked_request2size(bytes, nb);
4282 If the size qualifies as a fastbin, first check corresponding bin.
4283 This code is safe to execute even if av is not yet initialized, so we
4284 can try it without checking, which saves some time on this fast path.
4287 if ((unsigned long)(nb) <= (unsigned long)(get_max_fast ())) {
4288 idx = fastbin_index(nb);
4289 mfastbinptr* fb = &fastbin (av, idx);
4290 #ifdef ATOMIC_FASTBINS
4291 mchunkptr pp = *fb;
4294 victim = pp;
4295 if (victim == NULL)
4296 break;
4298 while ((pp = catomic_compare_and_exchange_val_acq (fb, victim->fd, victim))
4299 != victim);
4300 #else
4301 victim = *fb;
4302 #endif
4303 if (victim != 0) {
4304 if (__builtin_expect (fastbin_index (chunksize (victim)) != idx, 0))
4306 errstr = "malloc(): memory corruption (fast)";
4307 errout:
4308 malloc_printerr (check_action, errstr, chunk2mem (victim));
4310 #ifndef ATOMIC_FASTBINS
4311 *fb = victim->fd;
4312 #endif
4313 check_remalloced_chunk(av, victim, nb);
4314 void *p = chunk2mem(victim);
4315 if (__builtin_expect (perturb_byte, 0))
4316 alloc_perturb (p, bytes);
4317 return p;
4322 If a small request, check regular bin. Since these "smallbins"
4323 hold one size each, no searching within bins is necessary.
4324 (For a large request, we need to wait until unsorted chunks are
4325 processed to find best fit. But for small ones, fits are exact
4326 anyway, so we can check now, which is faster.)
4329 if (in_smallbin_range(nb)) {
4330 idx = smallbin_index(nb);
4331 bin = bin_at(av,idx);
4333 if ( (victim = last(bin)) != bin) {
4334 if (victim == 0) /* initialization check */
4335 malloc_consolidate(av);
4336 else {
4337 bck = victim->bk;
4338 if (__builtin_expect (bck->fd != victim, 0))
4340 errstr = "malloc(): smallbin double linked list corrupted";
4341 goto errout;
4343 set_inuse_bit_at_offset(victim, nb);
4344 bin->bk = bck;
4345 bck->fd = bin;
4347 if (av != &main_arena)
4348 victim->size |= NON_MAIN_ARENA;
4349 check_malloced_chunk(av, victim, nb);
4350 void *p = chunk2mem(victim);
4351 if (__builtin_expect (perturb_byte, 0))
4352 alloc_perturb (p, bytes);
4353 return p;
4359 If this is a large request, consolidate fastbins before continuing.
4360 While it might look excessive to kill all fastbins before
4361 even seeing if there is space available, this avoids
4362 fragmentation problems normally associated with fastbins.
4363 Also, in practice, programs tend to have runs of either small or
4364 large requests, but less often mixtures, so consolidation is not
4365 invoked all that often in most programs. And the programs that
4366 it is called frequently in otherwise tend to fragment.
4369 else {
4370 idx = largebin_index(nb);
4371 if (have_fastchunks(av))
4372 malloc_consolidate(av);
4376 Process recently freed or remaindered chunks, taking one only if
4377 it is exact fit, or, if this a small request, the chunk is remainder from
4378 the most recent non-exact fit. Place other traversed chunks in
4379 bins. Note that this step is the only place in any routine where
4380 chunks are placed in bins.
4382 The outer loop here is needed because we might not realize until
4383 near the end of malloc that we should have consolidated, so must
4384 do so and retry. This happens at most once, and only when we would
4385 otherwise need to expand memory to service a "small" request.
4388 for(;;) {
4390 int iters = 0;
4391 while ( (victim = unsorted_chunks(av)->bk) != unsorted_chunks(av)) {
4392 bck = victim->bk;
4393 if (__builtin_expect (victim->size <= 2 * SIZE_SZ, 0)
4394 || __builtin_expect (victim->size > av->system_mem, 0))
4395 malloc_printerr (check_action, "malloc(): memory corruption",
4396 chunk2mem (victim));
4397 size = chunksize(victim);
4400 If a small request, try to use last remainder if it is the
4401 only chunk in unsorted bin. This helps promote locality for
4402 runs of consecutive small requests. This is the only
4403 exception to best-fit, and applies only when there is
4404 no exact fit for a small chunk.
4407 if (in_smallbin_range(nb) &&
4408 bck == unsorted_chunks(av) &&
4409 victim == av->last_remainder &&
4410 (unsigned long)(size) > (unsigned long)(nb + MINSIZE)) {
4412 /* split and reattach remainder */
4413 remainder_size = size - nb;
4414 remainder = chunk_at_offset(victim, nb);
4415 unsorted_chunks(av)->bk = unsorted_chunks(av)->fd = remainder;
4416 av->last_remainder = remainder;
4417 remainder->bk = remainder->fd = unsorted_chunks(av);
4418 if (!in_smallbin_range(remainder_size))
4420 remainder->fd_nextsize = NULL;
4421 remainder->bk_nextsize = NULL;
4424 set_head(victim, nb | PREV_INUSE |
4425 (av != &main_arena ? NON_MAIN_ARENA : 0));
4426 set_head(remainder, remainder_size | PREV_INUSE);
4427 set_foot(remainder, remainder_size);
4429 check_malloced_chunk(av, victim, nb);
4430 void *p = chunk2mem(victim);
4431 if (__builtin_expect (perturb_byte, 0))
4432 alloc_perturb (p, bytes);
4433 return p;
4436 /* remove from unsorted list */
4437 unsorted_chunks(av)->bk = bck;
4438 bck->fd = unsorted_chunks(av);
4440 /* Take now instead of binning if exact fit */
4442 if (size == nb) {
4443 set_inuse_bit_at_offset(victim, size);
4444 if (av != &main_arena)
4445 victim->size |= NON_MAIN_ARENA;
4446 check_malloced_chunk(av, victim, nb);
4447 void *p = chunk2mem(victim);
4448 if (__builtin_expect (perturb_byte, 0))
4449 alloc_perturb (p, bytes);
4450 return p;
4453 /* place chunk in bin */
4455 if (in_smallbin_range(size)) {
4456 victim_index = smallbin_index(size);
4457 bck = bin_at(av, victim_index);
4458 fwd = bck->fd;
4460 else {
4461 victim_index = largebin_index(size);
4462 bck = bin_at(av, victim_index);
4463 fwd = bck->fd;
4465 /* maintain large bins in sorted order */
4466 if (fwd != bck) {
4467 /* Or with inuse bit to speed comparisons */
4468 size |= PREV_INUSE;
4469 /* if smaller than smallest, bypass loop below */
4470 assert((bck->bk->size & NON_MAIN_ARENA) == 0);
4471 if ((unsigned long)(size) < (unsigned long)(bck->bk->size)) {
4472 fwd = bck;
4473 bck = bck->bk;
4475 victim->fd_nextsize = fwd->fd;
4476 victim->bk_nextsize = fwd->fd->bk_nextsize;
4477 fwd->fd->bk_nextsize = victim->bk_nextsize->fd_nextsize = victim;
4479 else {
4480 assert((fwd->size & NON_MAIN_ARENA) == 0);
4481 while ((unsigned long) size < fwd->size)
4483 fwd = fwd->fd_nextsize;
4484 assert((fwd->size & NON_MAIN_ARENA) == 0);
4487 if ((unsigned long) size == (unsigned long) fwd->size)
4488 /* Always insert in the second position. */
4489 fwd = fwd->fd;
4490 else
4492 victim->fd_nextsize = fwd;
4493 victim->bk_nextsize = fwd->bk_nextsize;
4494 fwd->bk_nextsize = victim;
4495 victim->bk_nextsize->fd_nextsize = victim;
4497 bck = fwd->bk;
4499 } else
4500 victim->fd_nextsize = victim->bk_nextsize = victim;
4503 mark_bin(av, victim_index);
4504 victim->bk = bck;
4505 victim->fd = fwd;
4506 fwd->bk = victim;
4507 bck->fd = victim;
4509 #define MAX_ITERS 10000
4510 if (++iters >= MAX_ITERS)
4511 break;
4515 If a large request, scan through the chunks of current bin in
4516 sorted order to find smallest that fits. Use the skip list for this.
4519 if (!in_smallbin_range(nb)) {
4520 bin = bin_at(av, idx);
4522 /* skip scan if empty or largest chunk is too small */
4523 if ((victim = first(bin)) != bin &&
4524 (unsigned long)(victim->size) >= (unsigned long)(nb)) {
4526 victim = victim->bk_nextsize;
4527 while (((unsigned long)(size = chunksize(victim)) <
4528 (unsigned long)(nb)))
4529 victim = victim->bk_nextsize;
4531 /* Avoid removing the first entry for a size so that the skip
4532 list does not have to be rerouted. */
4533 if (victim != last(bin) && victim->size == victim->fd->size)
4534 victim = victim->fd;
4536 remainder_size = size - nb;
4537 unlink(victim, bck, fwd);
4539 /* Exhaust */
4540 if (remainder_size < MINSIZE) {
4541 set_inuse_bit_at_offset(victim, size);
4542 if (av != &main_arena)
4543 victim->size |= NON_MAIN_ARENA;
4545 /* Split */
4546 else {
4547 remainder = chunk_at_offset(victim, nb);
4548 /* We cannot assume the unsorted list is empty and therefore
4549 have to perform a complete insert here. */
4550 bck = unsorted_chunks(av);
4551 fwd = bck->fd;
4552 if (__builtin_expect (fwd->bk != bck, 0))
4554 errstr = "malloc(): corrupted unsorted chunks";
4555 goto errout;
4557 remainder->bk = bck;
4558 remainder->fd = fwd;
4559 bck->fd = remainder;
4560 fwd->bk = remainder;
4561 if (!in_smallbin_range(remainder_size))
4563 remainder->fd_nextsize = NULL;
4564 remainder->bk_nextsize = NULL;
4566 set_head(victim, nb | PREV_INUSE |
4567 (av != &main_arena ? NON_MAIN_ARENA : 0));
4568 set_head(remainder, remainder_size | PREV_INUSE);
4569 set_foot(remainder, remainder_size);
4571 check_malloced_chunk(av, victim, nb);
4572 void *p = chunk2mem(victim);
4573 if (__builtin_expect (perturb_byte, 0))
4574 alloc_perturb (p, bytes);
4575 return p;
4580 Search for a chunk by scanning bins, starting with next largest
4581 bin. This search is strictly by best-fit; i.e., the smallest
4582 (with ties going to approximately the least recently used) chunk
4583 that fits is selected.
4585 The bitmap avoids needing to check that most blocks are nonempty.
4586 The particular case of skipping all bins during warm-up phases
4587 when no chunks have been returned yet is faster than it might look.
4590 ++idx;
4591 bin = bin_at(av,idx);
4592 block = idx2block(idx);
4593 map = av->binmap[block];
4594 bit = idx2bit(idx);
4596 for (;;) {
4598 /* Skip rest of block if there are no more set bits in this block. */
4599 if (bit > map || bit == 0) {
4600 do {
4601 if (++block >= BINMAPSIZE) /* out of bins */
4602 goto use_top;
4603 } while ( (map = av->binmap[block]) == 0);
4605 bin = bin_at(av, (block << BINMAPSHIFT));
4606 bit = 1;
4609 /* Advance to bin with set bit. There must be one. */
4610 while ((bit & map) == 0) {
4611 bin = next_bin(bin);
4612 bit <<= 1;
4613 assert(bit != 0);
4616 /* Inspect the bin. It is likely to be non-empty */
4617 victim = last(bin);
4619 /* If a false alarm (empty bin), clear the bit. */
4620 if (victim == bin) {
4621 av->binmap[block] = map &= ~bit; /* Write through */
4622 bin = next_bin(bin);
4623 bit <<= 1;
4626 else {
4627 size = chunksize(victim);
4629 /* We know the first chunk in this bin is big enough to use. */
4630 assert((unsigned long)(size) >= (unsigned long)(nb));
4632 remainder_size = size - nb;
4634 /* unlink */
4635 unlink(victim, bck, fwd);
4637 /* Exhaust */
4638 if (remainder_size < MINSIZE) {
4639 set_inuse_bit_at_offset(victim, size);
4640 if (av != &main_arena)
4641 victim->size |= NON_MAIN_ARENA;
4644 /* Split */
4645 else {
4646 remainder = chunk_at_offset(victim, nb);
4648 /* We cannot assume the unsorted list is empty and therefore
4649 have to perform a complete insert here. */
4650 bck = unsorted_chunks(av);
4651 fwd = bck->fd;
4652 if (__builtin_expect (fwd->bk != bck, 0))
4654 errstr = "malloc(): corrupted unsorted chunks 2";
4655 goto errout;
4657 remainder->bk = bck;
4658 remainder->fd = fwd;
4659 bck->fd = remainder;
4660 fwd->bk = remainder;
4662 /* advertise as last remainder */
4663 if (in_smallbin_range(nb))
4664 av->last_remainder = remainder;
4665 if (!in_smallbin_range(remainder_size))
4667 remainder->fd_nextsize = NULL;
4668 remainder->bk_nextsize = NULL;
4670 set_head(victim, nb | PREV_INUSE |
4671 (av != &main_arena ? NON_MAIN_ARENA : 0));
4672 set_head(remainder, remainder_size | PREV_INUSE);
4673 set_foot(remainder, remainder_size);
4675 check_malloced_chunk(av, victim, nb);
4676 void *p = chunk2mem(victim);
4677 if (__builtin_expect (perturb_byte, 0))
4678 alloc_perturb (p, bytes);
4679 return p;
4683 use_top:
4685 If large enough, split off the chunk bordering the end of memory
4686 (held in av->top). Note that this is in accord with the best-fit
4687 search rule. In effect, av->top is treated as larger (and thus
4688 less well fitting) than any other available chunk since it can
4689 be extended to be as large as necessary (up to system
4690 limitations).
4692 We require that av->top always exists (i.e., has size >=
4693 MINSIZE) after initialization, so if it would otherwise be
4694 exhausted by current request, it is replenished. (The main
4695 reason for ensuring it exists is that we may need MINSIZE space
4696 to put in fenceposts in sysmalloc.)
4699 victim = av->top;
4700 size = chunksize(victim);
4702 if ((unsigned long)(size) >= (unsigned long)(nb + MINSIZE)) {
4703 remainder_size = size - nb;
4704 remainder = chunk_at_offset(victim, nb);
4705 av->top = remainder;
4706 set_head(victim, nb | PREV_INUSE |
4707 (av != &main_arena ? NON_MAIN_ARENA : 0));
4708 set_head(remainder, remainder_size | PREV_INUSE);
4710 check_malloced_chunk(av, victim, nb);
4711 void *p = chunk2mem(victim);
4712 if (__builtin_expect (perturb_byte, 0))
4713 alloc_perturb (p, bytes);
4714 return p;
4717 #ifdef ATOMIC_FASTBINS
4718 /* When we are using atomic ops to free fast chunks we can get
4719 here for all block sizes. */
4720 else if (have_fastchunks(av)) {
4721 malloc_consolidate(av);
4722 /* restore original bin index */
4723 if (in_smallbin_range(nb))
4724 idx = smallbin_index(nb);
4725 else
4726 idx = largebin_index(nb);
4728 #else
4730 If there is space available in fastbins, consolidate and retry,
4731 to possibly avoid expanding memory. This can occur only if nb is
4732 in smallbin range so we didn't consolidate upon entry.
4735 else if (have_fastchunks(av)) {
4736 assert(in_smallbin_range(nb));
4737 malloc_consolidate(av);
4738 idx = smallbin_index(nb); /* restore original bin index */
4740 #endif
4743 Otherwise, relay to handle system-dependent cases
4745 else {
4746 void *p = sYSMALLOc(nb, av);
4747 if (p != NULL && __builtin_expect (perturb_byte, 0))
4748 alloc_perturb (p, bytes);
4749 return p;
4755 ------------------------------ free ------------------------------
4758 static void
4759 #ifdef ATOMIC_FASTBINS
4760 _int_free(mstate av, mchunkptr p, int have_lock)
4761 #else
4762 _int_free(mstate av, mchunkptr p)
4763 #endif
4765 INTERNAL_SIZE_T size; /* its size */
4766 mfastbinptr* fb; /* associated fastbin */
4767 mchunkptr nextchunk; /* next contiguous chunk */
4768 INTERNAL_SIZE_T nextsize; /* its size */
4769 int nextinuse; /* true if nextchunk is used */
4770 INTERNAL_SIZE_T prevsize; /* size of previous contiguous chunk */
4771 mchunkptr bck; /* misc temp for linking */
4772 mchunkptr fwd; /* misc temp for linking */
4774 const char *errstr = NULL;
4775 #ifdef ATOMIC_FASTBINS
4776 int locked = 0;
4777 #endif
4779 size = chunksize(p);
4781 /* Little security check which won't hurt performance: the
4782 allocator never wrapps around at the end of the address space.
4783 Therefore we can exclude some size values which might appear
4784 here by accident or by "design" from some intruder. */
4785 if (__builtin_expect ((uintptr_t) p > (uintptr_t) -size, 0)
4786 || __builtin_expect (misaligned_chunk (p), 0))
4788 errstr = "free(): invalid pointer";
4789 errout:
4790 #ifdef ATOMIC_FASTBINS
4791 if (! have_lock && locked)
4792 (void)mutex_unlock(&av->mutex);
4793 #endif
4794 malloc_printerr (check_action, errstr, chunk2mem(p));
4795 return;
4797 /* We know that each chunk is at least MINSIZE bytes in size. */
4798 if (__builtin_expect (size < MINSIZE, 0))
4800 errstr = "free(): invalid size";
4801 goto errout;
4804 check_inuse_chunk(av, p);
4807 If eligible, place chunk on a fastbin so it can be found
4808 and used quickly in malloc.
4811 if ((unsigned long)(size) <= (unsigned long)(get_max_fast ())
4813 #if TRIM_FASTBINS
4815 If TRIM_FASTBINS set, don't place chunks
4816 bordering top into fastbins
4818 && (chunk_at_offset(p, size) != av->top)
4819 #endif
4822 if (__builtin_expect (chunk_at_offset (p, size)->size <= 2 * SIZE_SZ, 0)
4823 || __builtin_expect (chunksize (chunk_at_offset (p, size))
4824 >= av->system_mem, 0))
4826 #ifdef ATOMIC_FASTBINS
4827 /* We might not have a lock at this point and concurrent modifications
4828 of system_mem might have let to a false positive. Redo the test
4829 after getting the lock. */
4830 if (have_lock
4831 || ({ assert (locked == 0);
4832 mutex_lock(&av->mutex);
4833 locked = 1;
4834 chunk_at_offset (p, size)->size <= 2 * SIZE_SZ
4835 || chunksize (chunk_at_offset (p, size)) >= av->system_mem;
4837 #endif
4839 errstr = "free(): invalid next size (fast)";
4840 goto errout;
4842 #ifdef ATOMIC_FASTBINS
4843 if (! have_lock)
4845 (void)mutex_unlock(&av->mutex);
4846 locked = 0;
4848 #endif
4851 if (__builtin_expect (perturb_byte, 0))
4852 free_perturb (chunk2mem(p), size - SIZE_SZ);
4854 set_fastchunks(av);
4855 fb = &fastbin (av, fastbin_index(size));
4857 #ifdef ATOMIC_FASTBINS
4858 mchunkptr fd;
4859 mchunkptr old = *fb;
4862 /* Another simple check: make sure the top of the bin is not the
4863 record we are going to add (i.e., double free). */
4864 if (__builtin_expect (old == p, 0))
4866 errstr = "double free or corruption (fasttop)";
4867 goto errout;
4869 p->fd = fd = old;
4871 while ((old = catomic_compare_and_exchange_val_rel (fb, p, fd)) != fd);
4872 #else
4873 /* Another simple check: make sure the top of the bin is not the
4874 record we are going to add (i.e., double free). */
4875 if (__builtin_expect (*fb == p, 0))
4877 errstr = "double free or corruption (fasttop)";
4878 goto errout;
4881 p->fd = *fb;
4882 *fb = p;
4883 #endif
4887 Consolidate other non-mmapped chunks as they arrive.
4890 else if (!chunk_is_mmapped(p)) {
4891 #ifdef ATOMIC_FASTBINS
4892 if (! have_lock) {
4893 # if THREAD_STATS
4894 if(!mutex_trylock(&av->mutex))
4895 ++(av->stat_lock_direct);
4896 else {
4897 (void)mutex_lock(&av->mutex);
4898 ++(av->stat_lock_wait);
4900 # else
4901 (void)mutex_lock(&av->mutex);
4902 # endif
4903 locked = 1;
4905 #endif
4907 nextchunk = chunk_at_offset(p, size);
4909 /* Lightweight tests: check whether the block is already the
4910 top block. */
4911 if (__builtin_expect (p == av->top, 0))
4913 errstr = "double free or corruption (top)";
4914 goto errout;
4916 /* Or whether the next chunk is beyond the boundaries of the arena. */
4917 if (__builtin_expect (contiguous (av)
4918 && (char *) nextchunk
4919 >= ((char *) av->top + chunksize(av->top)), 0))
4921 errstr = "double free or corruption (out)";
4922 goto errout;
4924 /* Or whether the block is actually not marked used. */
4925 if (__builtin_expect (!prev_inuse(nextchunk), 0))
4927 errstr = "double free or corruption (!prev)";
4928 goto errout;
4931 nextsize = chunksize(nextchunk);
4932 if (__builtin_expect (nextchunk->size <= 2 * SIZE_SZ, 0)
4933 || __builtin_expect (nextsize >= av->system_mem, 0))
4935 errstr = "free(): invalid next size (normal)";
4936 goto errout;
4939 if (__builtin_expect (perturb_byte, 0))
4940 free_perturb (chunk2mem(p), size - SIZE_SZ);
4942 /* consolidate backward */
4943 if (!prev_inuse(p)) {
4944 prevsize = p->prev_size;
4945 size += prevsize;
4946 p = chunk_at_offset(p, -((long) prevsize));
4947 unlink(p, bck, fwd);
4950 if (nextchunk != av->top) {
4951 /* get and clear inuse bit */
4952 nextinuse = inuse_bit_at_offset(nextchunk, nextsize);
4954 /* consolidate forward */
4955 if (!nextinuse) {
4956 unlink(nextchunk, bck, fwd);
4957 size += nextsize;
4958 } else
4959 clear_inuse_bit_at_offset(nextchunk, 0);
4962 Place the chunk in unsorted chunk list. Chunks are
4963 not placed into regular bins until after they have
4964 been given one chance to be used in malloc.
4967 bck = unsorted_chunks(av);
4968 fwd = bck->fd;
4969 if (__builtin_expect (fwd->bk != bck, 0))
4971 errstr = "free(): corrupted unsorted chunks";
4972 goto errout;
4974 p->fd = fwd;
4975 p->bk = bck;
4976 if (!in_smallbin_range(size))
4978 p->fd_nextsize = NULL;
4979 p->bk_nextsize = NULL;
4981 bck->fd = p;
4982 fwd->bk = p;
4984 set_head(p, size | PREV_INUSE);
4985 set_foot(p, size);
4987 check_free_chunk(av, p);
4991 If the chunk borders the current high end of memory,
4992 consolidate into top
4995 else {
4996 size += nextsize;
4997 set_head(p, size | PREV_INUSE);
4998 av->top = p;
4999 check_chunk(av, p);
5003 If freeing a large space, consolidate possibly-surrounding
5004 chunks. Then, if the total unused topmost memory exceeds trim
5005 threshold, ask malloc_trim to reduce top.
5007 Unless max_fast is 0, we don't know if there are fastbins
5008 bordering top, so we cannot tell for sure whether threshold
5009 has been reached unless fastbins are consolidated. But we
5010 don't want to consolidate on each free. As a compromise,
5011 consolidation is performed if FASTBIN_CONSOLIDATION_THRESHOLD
5012 is reached.
5015 if ((unsigned long)(size) >= FASTBIN_CONSOLIDATION_THRESHOLD) {
5016 if (have_fastchunks(av))
5017 malloc_consolidate(av);
5019 if (av == &main_arena) {
5020 #ifndef MORECORE_CANNOT_TRIM
5021 if ((unsigned long)(chunksize(av->top)) >=
5022 (unsigned long)(mp_.trim_threshold))
5023 sYSTRIm(mp_.top_pad, av);
5024 #endif
5025 } else {
5026 /* Always try heap_trim(), even if the top chunk is not
5027 large, because the corresponding heap might go away. */
5028 heap_info *heap = heap_for_ptr(top(av));
5030 assert(heap->ar_ptr == av);
5031 heap_trim(heap, mp_.top_pad);
5035 #ifdef ATOMIC_FASTBINS
5036 if (! have_lock) {
5037 assert (locked);
5038 (void)mutex_unlock(&av->mutex);
5040 #endif
5043 If the chunk was allocated via mmap, release via munmap(). Note
5044 that if HAVE_MMAP is false but chunk_is_mmapped is true, then
5045 user must have overwritten memory. There's nothing we can do to
5046 catch this error unless MALLOC_DEBUG is set, in which case
5047 check_inuse_chunk (above) will have triggered error.
5050 else {
5051 #if HAVE_MMAP
5052 munmap_chunk (p);
5053 #endif
5058 ------------------------- malloc_consolidate -------------------------
5060 malloc_consolidate is a specialized version of free() that tears
5061 down chunks held in fastbins. Free itself cannot be used for this
5062 purpose since, among other things, it might place chunks back onto
5063 fastbins. So, instead, we need to use a minor variant of the same
5064 code.
5066 Also, because this routine needs to be called the first time through
5067 malloc anyway, it turns out to be the perfect place to trigger
5068 initialization code.
5071 #if __STD_C
5072 static void malloc_consolidate(mstate av)
5073 #else
5074 static void malloc_consolidate(av) mstate av;
5075 #endif
5077 mfastbinptr* fb; /* current fastbin being consolidated */
5078 mfastbinptr* maxfb; /* last fastbin (for loop control) */
5079 mchunkptr p; /* current chunk being consolidated */
5080 mchunkptr nextp; /* next chunk to consolidate */
5081 mchunkptr unsorted_bin; /* bin header */
5082 mchunkptr first_unsorted; /* chunk to link to */
5084 /* These have same use as in free() */
5085 mchunkptr nextchunk;
5086 INTERNAL_SIZE_T size;
5087 INTERNAL_SIZE_T nextsize;
5088 INTERNAL_SIZE_T prevsize;
5089 int nextinuse;
5090 mchunkptr bck;
5091 mchunkptr fwd;
5094 If max_fast is 0, we know that av hasn't
5095 yet been initialized, in which case do so below
5098 if (get_max_fast () != 0) {
5099 clear_fastchunks(av);
5101 unsorted_bin = unsorted_chunks(av);
5104 Remove each chunk from fast bin and consolidate it, placing it
5105 then in unsorted bin. Among other reasons for doing this,
5106 placing in unsorted bin avoids needing to calculate actual bins
5107 until malloc is sure that chunks aren't immediately going to be
5108 reused anyway.
5111 #if 0
5112 /* It is wrong to limit the fast bins to search using get_max_fast
5113 because, except for the main arena, all the others might have
5114 blocks in the high fast bins. It's not worth it anyway, just
5115 search all bins all the time. */
5116 maxfb = &fastbin (av, fastbin_index(get_max_fast ()));
5117 #else
5118 maxfb = &fastbin (av, NFASTBINS - 1);
5119 #endif
5120 fb = &fastbin (av, 0);
5121 do {
5122 #ifdef ATOMIC_FASTBINS
5123 p = atomic_exchange_acq (fb, 0);
5124 #else
5125 p = *fb;
5126 #endif
5127 if (p != 0) {
5128 #ifndef ATOMIC_FASTBINS
5129 *fb = 0;
5130 #endif
5131 do {
5132 check_inuse_chunk(av, p);
5133 nextp = p->fd;
5135 /* Slightly streamlined version of consolidation code in free() */
5136 size = p->size & ~(PREV_INUSE|NON_MAIN_ARENA);
5137 nextchunk = chunk_at_offset(p, size);
5138 nextsize = chunksize(nextchunk);
5140 if (!prev_inuse(p)) {
5141 prevsize = p->prev_size;
5142 size += prevsize;
5143 p = chunk_at_offset(p, -((long) prevsize));
5144 unlink(p, bck, fwd);
5147 if (nextchunk != av->top) {
5148 nextinuse = inuse_bit_at_offset(nextchunk, nextsize);
5150 if (!nextinuse) {
5151 size += nextsize;
5152 unlink(nextchunk, bck, fwd);
5153 } else
5154 clear_inuse_bit_at_offset(nextchunk, 0);
5156 first_unsorted = unsorted_bin->fd;
5157 unsorted_bin->fd = p;
5158 first_unsorted->bk = p;
5160 if (!in_smallbin_range (size)) {
5161 p->fd_nextsize = NULL;
5162 p->bk_nextsize = NULL;
5165 set_head(p, size | PREV_INUSE);
5166 p->bk = unsorted_bin;
5167 p->fd = first_unsorted;
5168 set_foot(p, size);
5171 else {
5172 size += nextsize;
5173 set_head(p, size | PREV_INUSE);
5174 av->top = p;
5177 } while ( (p = nextp) != 0);
5180 } while (fb++ != maxfb);
5182 else {
5183 malloc_init_state(av);
5184 check_malloc_state(av);
5189 ------------------------------ realloc ------------------------------
5192 Void_t*
5193 _int_realloc(mstate av, mchunkptr oldp, INTERNAL_SIZE_T oldsize,
5194 INTERNAL_SIZE_T nb)
5196 mchunkptr newp; /* chunk to return */
5197 INTERNAL_SIZE_T newsize; /* its size */
5198 Void_t* newmem; /* corresponding user mem */
5200 mchunkptr next; /* next contiguous chunk after oldp */
5202 mchunkptr remainder; /* extra space at end of newp */
5203 unsigned long remainder_size; /* its size */
5205 mchunkptr bck; /* misc temp for linking */
5206 mchunkptr fwd; /* misc temp for linking */
5208 unsigned long copysize; /* bytes to copy */
5209 unsigned int ncopies; /* INTERNAL_SIZE_T words to copy */
5210 INTERNAL_SIZE_T* s; /* copy source */
5211 INTERNAL_SIZE_T* d; /* copy destination */
5213 const char *errstr = NULL;
5215 /* oldmem size */
5216 if (__builtin_expect (oldp->size <= 2 * SIZE_SZ, 0)
5217 || __builtin_expect (oldsize >= av->system_mem, 0))
5219 errstr = "realloc(): invalid old size";
5220 errout:
5221 malloc_printerr (check_action, errstr, chunk2mem(oldp));
5222 return NULL;
5225 check_inuse_chunk(av, oldp);
5227 /* All callers already filter out mmap'ed chunks. */
5228 #if 0
5229 if (!chunk_is_mmapped(oldp))
5230 #else
5231 assert (!chunk_is_mmapped(oldp));
5232 #endif
5235 next = chunk_at_offset(oldp, oldsize);
5236 INTERNAL_SIZE_T nextsize = chunksize(next);
5237 if (__builtin_expect (next->size <= 2 * SIZE_SZ, 0)
5238 || __builtin_expect (nextsize >= av->system_mem, 0))
5240 errstr = "realloc(): invalid next size";
5241 goto errout;
5244 if ((unsigned long)(oldsize) >= (unsigned long)(nb)) {
5245 /* already big enough; split below */
5246 newp = oldp;
5247 newsize = oldsize;
5250 else {
5251 /* Try to expand forward into top */
5252 if (next == av->top &&
5253 (unsigned long)(newsize = oldsize + nextsize) >=
5254 (unsigned long)(nb + MINSIZE)) {
5255 set_head_size(oldp, nb | (av != &main_arena ? NON_MAIN_ARENA : 0));
5256 av->top = chunk_at_offset(oldp, nb);
5257 set_head(av->top, (newsize - nb) | PREV_INUSE);
5258 check_inuse_chunk(av, oldp);
5259 return chunk2mem(oldp);
5262 /* Try to expand forward into next chunk; split off remainder below */
5263 else if (next != av->top &&
5264 !inuse(next) &&
5265 (unsigned long)(newsize = oldsize + nextsize) >=
5266 (unsigned long)(nb)) {
5267 newp = oldp;
5268 unlink(next, bck, fwd);
5271 /* allocate, copy, free */
5272 else {
5273 newmem = _int_malloc(av, nb - MALLOC_ALIGN_MASK);
5274 if (newmem == 0)
5275 return 0; /* propagate failure */
5277 newp = mem2chunk(newmem);
5278 newsize = chunksize(newp);
5281 Avoid copy if newp is next chunk after oldp.
5283 if (newp == next) {
5284 newsize += oldsize;
5285 newp = oldp;
5287 else {
5289 Unroll copy of <= 36 bytes (72 if 8byte sizes)
5290 We know that contents have an odd number of
5291 INTERNAL_SIZE_T-sized words; minimally 3.
5294 copysize = oldsize - SIZE_SZ;
5295 s = (INTERNAL_SIZE_T*)(chunk2mem(oldp));
5296 d = (INTERNAL_SIZE_T*)(newmem);
5297 ncopies = copysize / sizeof(INTERNAL_SIZE_T);
5298 assert(ncopies >= 3);
5300 if (ncopies > 9)
5301 MALLOC_COPY(d, s, copysize);
5303 else {
5304 *(d+0) = *(s+0);
5305 *(d+1) = *(s+1);
5306 *(d+2) = *(s+2);
5307 if (ncopies > 4) {
5308 *(d+3) = *(s+3);
5309 *(d+4) = *(s+4);
5310 if (ncopies > 6) {
5311 *(d+5) = *(s+5);
5312 *(d+6) = *(s+6);
5313 if (ncopies > 8) {
5314 *(d+7) = *(s+7);
5315 *(d+8) = *(s+8);
5321 #ifdef ATOMIC_FASTBINS
5322 _int_free(av, oldp, 1);
5323 #else
5324 _int_free(av, oldp);
5325 #endif
5326 check_inuse_chunk(av, newp);
5327 return chunk2mem(newp);
5332 /* If possible, free extra space in old or extended chunk */
5334 assert((unsigned long)(newsize) >= (unsigned long)(nb));
5336 remainder_size = newsize - nb;
5338 if (remainder_size < MINSIZE) { /* not enough extra to split off */
5339 set_head_size(newp, newsize | (av != &main_arena ? NON_MAIN_ARENA : 0));
5340 set_inuse_bit_at_offset(newp, newsize);
5342 else { /* split remainder */
5343 remainder = chunk_at_offset(newp, nb);
5344 set_head_size(newp, nb | (av != &main_arena ? NON_MAIN_ARENA : 0));
5345 set_head(remainder, remainder_size | PREV_INUSE |
5346 (av != &main_arena ? NON_MAIN_ARENA : 0));
5347 /* Mark remainder as inuse so free() won't complain */
5348 set_inuse_bit_at_offset(remainder, remainder_size);
5349 #ifdef ATOMIC_FASTBINS
5350 _int_free(av, remainder, 1);
5351 #else
5352 _int_free(av, remainder);
5353 #endif
5356 check_inuse_chunk(av, newp);
5357 return chunk2mem(newp);
5360 #if 0
5362 Handle mmap cases
5365 else {
5366 #if HAVE_MMAP
5368 #if HAVE_MREMAP
5369 INTERNAL_SIZE_T offset = oldp->prev_size;
5370 size_t pagemask = mp_.pagesize - 1;
5371 char *cp;
5372 unsigned long sum;
5374 /* Note the extra SIZE_SZ overhead */
5375 newsize = (nb + offset + SIZE_SZ + pagemask) & ~pagemask;
5377 /* don't need to remap if still within same page */
5378 if (oldsize == newsize - offset)
5379 return chunk2mem(oldp);
5381 cp = (char*)mremap((char*)oldp - offset, oldsize + offset, newsize, 1);
5383 if (cp != MAP_FAILED) {
5385 newp = (mchunkptr)(cp + offset);
5386 set_head(newp, (newsize - offset)|IS_MMAPPED);
5388 assert(aligned_OK(chunk2mem(newp)));
5389 assert((newp->prev_size == offset));
5391 /* update statistics */
5392 sum = mp_.mmapped_mem += newsize - oldsize;
5393 if (sum > (unsigned long)(mp_.max_mmapped_mem))
5394 mp_.max_mmapped_mem = sum;
5395 #ifdef NO_THREADS
5396 sum += main_arena.system_mem;
5397 if (sum > (unsigned long)(mp_.max_total_mem))
5398 mp_.max_total_mem = sum;
5399 #endif
5401 return chunk2mem(newp);
5403 #endif
5405 /* Note the extra SIZE_SZ overhead. */
5406 if ((unsigned long)(oldsize) >= (unsigned long)(nb + SIZE_SZ))
5407 newmem = chunk2mem(oldp); /* do nothing */
5408 else {
5409 /* Must alloc, copy, free. */
5410 newmem = _int_malloc(av, nb - MALLOC_ALIGN_MASK);
5411 if (newmem != 0) {
5412 MALLOC_COPY(newmem, chunk2mem(oldp), oldsize - 2*SIZE_SZ);
5413 #ifdef ATOMIC_FASTBINS
5414 _int_free(av, oldp, 1);
5415 #else
5416 _int_free(av, oldp);
5417 #endif
5420 return newmem;
5422 #else
5423 /* If !HAVE_MMAP, but chunk_is_mmapped, user must have overwritten mem */
5424 check_malloc_state(av);
5425 MALLOC_FAILURE_ACTION;
5426 return 0;
5427 #endif
5429 #endif
5433 ------------------------------ memalign ------------------------------
5436 static Void_t*
5437 _int_memalign(mstate av, size_t alignment, size_t bytes)
5439 INTERNAL_SIZE_T nb; /* padded request size */
5440 char* m; /* memory returned by malloc call */
5441 mchunkptr p; /* corresponding chunk */
5442 char* brk; /* alignment point within p */
5443 mchunkptr newp; /* chunk to return */
5444 INTERNAL_SIZE_T newsize; /* its size */
5445 INTERNAL_SIZE_T leadsize; /* leading space before alignment point */
5446 mchunkptr remainder; /* spare room at end to split off */
5447 unsigned long remainder_size; /* its size */
5448 INTERNAL_SIZE_T size;
5450 /* If need less alignment than we give anyway, just relay to malloc */
5452 if (alignment <= MALLOC_ALIGNMENT) return _int_malloc(av, bytes);
5454 /* Otherwise, ensure that it is at least a minimum chunk size */
5456 if (alignment < MINSIZE) alignment = MINSIZE;
5458 /* Make sure alignment is power of 2 (in case MINSIZE is not). */
5459 if ((alignment & (alignment - 1)) != 0) {
5460 size_t a = MALLOC_ALIGNMENT * 2;
5461 while ((unsigned long)a < (unsigned long)alignment) a <<= 1;
5462 alignment = a;
5465 checked_request2size(bytes, nb);
5468 Strategy: find a spot within that chunk that meets the alignment
5469 request, and then possibly free the leading and trailing space.
5473 /* Call malloc with worst case padding to hit alignment. */
5475 m = (char*)(_int_malloc(av, nb + alignment + MINSIZE));
5477 if (m == 0) return 0; /* propagate failure */
5479 p = mem2chunk(m);
5481 if ((((unsigned long)(m)) % alignment) != 0) { /* misaligned */
5484 Find an aligned spot inside chunk. Since we need to give back
5485 leading space in a chunk of at least MINSIZE, if the first
5486 calculation places us at a spot with less than MINSIZE leader,
5487 we can move to the next aligned spot -- we've allocated enough
5488 total room so that this is always possible.
5491 brk = (char*)mem2chunk(((unsigned long)(m + alignment - 1)) &
5492 -((signed long) alignment));
5493 if ((unsigned long)(brk - (char*)(p)) < MINSIZE)
5494 brk += alignment;
5496 newp = (mchunkptr)brk;
5497 leadsize = brk - (char*)(p);
5498 newsize = chunksize(p) - leadsize;
5500 /* For mmapped chunks, just adjust offset */
5501 if (chunk_is_mmapped(p)) {
5502 newp->prev_size = p->prev_size + leadsize;
5503 set_head(newp, newsize|IS_MMAPPED);
5504 return chunk2mem(newp);
5507 /* Otherwise, give back leader, use the rest */
5508 set_head(newp, newsize | PREV_INUSE |
5509 (av != &main_arena ? NON_MAIN_ARENA : 0));
5510 set_inuse_bit_at_offset(newp, newsize);
5511 set_head_size(p, leadsize | (av != &main_arena ? NON_MAIN_ARENA : 0));
5512 #ifdef ATOMIC_FASTBINS
5513 _int_free(av, p, 1);
5514 #else
5515 _int_free(av, p);
5516 #endif
5517 p = newp;
5519 assert (newsize >= nb &&
5520 (((unsigned long)(chunk2mem(p))) % alignment) == 0);
5523 /* Also give back spare room at the end */
5524 if (!chunk_is_mmapped(p)) {
5525 size = chunksize(p);
5526 if ((unsigned long)(size) > (unsigned long)(nb + MINSIZE)) {
5527 remainder_size = size - nb;
5528 remainder = chunk_at_offset(p, nb);
5529 set_head(remainder, remainder_size | PREV_INUSE |
5530 (av != &main_arena ? NON_MAIN_ARENA : 0));
5531 set_head_size(p, nb);
5532 #ifdef ATOMIC_FASTBINS
5533 _int_free(av, remainder, 1);
5534 #else
5535 _int_free(av, remainder);
5536 #endif
5540 check_inuse_chunk(av, p);
5541 return chunk2mem(p);
5544 #if 0
5546 ------------------------------ calloc ------------------------------
5549 #if __STD_C
5550 Void_t* cALLOc(size_t n_elements, size_t elem_size)
5551 #else
5552 Void_t* cALLOc(n_elements, elem_size) size_t n_elements; size_t elem_size;
5553 #endif
5555 mchunkptr p;
5556 unsigned long clearsize;
5557 unsigned long nclears;
5558 INTERNAL_SIZE_T* d;
5560 Void_t* mem = mALLOc(n_elements * elem_size);
5562 if (mem != 0) {
5563 p = mem2chunk(mem);
5565 #if MMAP_CLEARS
5566 if (!chunk_is_mmapped(p)) /* don't need to clear mmapped space */
5567 #endif
5570 Unroll clear of <= 36 bytes (72 if 8byte sizes)
5571 We know that contents have an odd number of
5572 INTERNAL_SIZE_T-sized words; minimally 3.
5575 d = (INTERNAL_SIZE_T*)mem;
5576 clearsize = chunksize(p) - SIZE_SZ;
5577 nclears = clearsize / sizeof(INTERNAL_SIZE_T);
5578 assert(nclears >= 3);
5580 if (nclears > 9)
5581 MALLOC_ZERO(d, clearsize);
5583 else {
5584 *(d+0) = 0;
5585 *(d+1) = 0;
5586 *(d+2) = 0;
5587 if (nclears > 4) {
5588 *(d+3) = 0;
5589 *(d+4) = 0;
5590 if (nclears > 6) {
5591 *(d+5) = 0;
5592 *(d+6) = 0;
5593 if (nclears > 8) {
5594 *(d+7) = 0;
5595 *(d+8) = 0;
5602 return mem;
5604 #endif /* 0 */
5606 #ifndef _LIBC
5608 ------------------------- independent_calloc -------------------------
5611 Void_t**
5612 #if __STD_C
5613 _int_icalloc(mstate av, size_t n_elements, size_t elem_size, Void_t* chunks[])
5614 #else
5615 _int_icalloc(av, n_elements, elem_size, chunks)
5616 mstate av; size_t n_elements; size_t elem_size; Void_t* chunks[];
5617 #endif
5619 size_t sz = elem_size; /* serves as 1-element array */
5620 /* opts arg of 3 means all elements are same size, and should be cleared */
5621 return iALLOc(av, n_elements, &sz, 3, chunks);
5625 ------------------------- independent_comalloc -------------------------
5628 Void_t**
5629 #if __STD_C
5630 _int_icomalloc(mstate av, size_t n_elements, size_t sizes[], Void_t* chunks[])
5631 #else
5632 _int_icomalloc(av, n_elements, sizes, chunks)
5633 mstate av; size_t n_elements; size_t sizes[]; Void_t* chunks[];
5634 #endif
5636 return iALLOc(av, n_elements, sizes, 0, chunks);
5641 ------------------------------ ialloc ------------------------------
5642 ialloc provides common support for independent_X routines, handling all of
5643 the combinations that can result.
5645 The opts arg has:
5646 bit 0 set if all elements are same size (using sizes[0])
5647 bit 1 set if elements should be zeroed
5651 static Void_t**
5652 #if __STD_C
5653 iALLOc(mstate av, size_t n_elements, size_t* sizes, int opts, Void_t* chunks[])
5654 #else
5655 iALLOc(av, n_elements, sizes, opts, chunks)
5656 mstate av; size_t n_elements; size_t* sizes; int opts; Void_t* chunks[];
5657 #endif
5659 INTERNAL_SIZE_T element_size; /* chunksize of each element, if all same */
5660 INTERNAL_SIZE_T contents_size; /* total size of elements */
5661 INTERNAL_SIZE_T array_size; /* request size of pointer array */
5662 Void_t* mem; /* malloced aggregate space */
5663 mchunkptr p; /* corresponding chunk */
5664 INTERNAL_SIZE_T remainder_size; /* remaining bytes while splitting */
5665 Void_t** marray; /* either "chunks" or malloced ptr array */
5666 mchunkptr array_chunk; /* chunk for malloced ptr array */
5667 int mmx; /* to disable mmap */
5668 INTERNAL_SIZE_T size;
5669 INTERNAL_SIZE_T size_flags;
5670 size_t i;
5672 /* Ensure initialization/consolidation */
5673 if (have_fastchunks(av)) malloc_consolidate(av);
5675 /* compute array length, if needed */
5676 if (chunks != 0) {
5677 if (n_elements == 0)
5678 return chunks; /* nothing to do */
5679 marray = chunks;
5680 array_size = 0;
5682 else {
5683 /* if empty req, must still return chunk representing empty array */
5684 if (n_elements == 0)
5685 return (Void_t**) _int_malloc(av, 0);
5686 marray = 0;
5687 array_size = request2size(n_elements * (sizeof(Void_t*)));
5690 /* compute total element size */
5691 if (opts & 0x1) { /* all-same-size */
5692 element_size = request2size(*sizes);
5693 contents_size = n_elements * element_size;
5695 else { /* add up all the sizes */
5696 element_size = 0;
5697 contents_size = 0;
5698 for (i = 0; i != n_elements; ++i)
5699 contents_size += request2size(sizes[i]);
5702 /* subtract out alignment bytes from total to minimize overallocation */
5703 size = contents_size + array_size - MALLOC_ALIGN_MASK;
5706 Allocate the aggregate chunk.
5707 But first disable mmap so malloc won't use it, since
5708 we would not be able to later free/realloc space internal
5709 to a segregated mmap region.
5711 mmx = mp_.n_mmaps_max; /* disable mmap */
5712 mp_.n_mmaps_max = 0;
5713 mem = _int_malloc(av, size);
5714 mp_.n_mmaps_max = mmx; /* reset mmap */
5715 if (mem == 0)
5716 return 0;
5718 p = mem2chunk(mem);
5719 assert(!chunk_is_mmapped(p));
5720 remainder_size = chunksize(p);
5722 if (opts & 0x2) { /* optionally clear the elements */
5723 MALLOC_ZERO(mem, remainder_size - SIZE_SZ - array_size);
5726 size_flags = PREV_INUSE | (av != &main_arena ? NON_MAIN_ARENA : 0);
5728 /* If not provided, allocate the pointer array as final part of chunk */
5729 if (marray == 0) {
5730 array_chunk = chunk_at_offset(p, contents_size);
5731 marray = (Void_t**) (chunk2mem(array_chunk));
5732 set_head(array_chunk, (remainder_size - contents_size) | size_flags);
5733 remainder_size = contents_size;
5736 /* split out elements */
5737 for (i = 0; ; ++i) {
5738 marray[i] = chunk2mem(p);
5739 if (i != n_elements-1) {
5740 if (element_size != 0)
5741 size = element_size;
5742 else
5743 size = request2size(sizes[i]);
5744 remainder_size -= size;
5745 set_head(p, size | size_flags);
5746 p = chunk_at_offset(p, size);
5748 else { /* the final element absorbs any overallocation slop */
5749 set_head(p, remainder_size | size_flags);
5750 break;
5754 #if MALLOC_DEBUG
5755 if (marray != chunks) {
5756 /* final element must have exactly exhausted chunk */
5757 if (element_size != 0)
5758 assert(remainder_size == element_size);
5759 else
5760 assert(remainder_size == request2size(sizes[i]));
5761 check_inuse_chunk(av, mem2chunk(marray));
5764 for (i = 0; i != n_elements; ++i)
5765 check_inuse_chunk(av, mem2chunk(marray[i]));
5766 #endif
5768 return marray;
5770 #endif /* _LIBC */
5774 ------------------------------ valloc ------------------------------
5777 static Void_t*
5778 #if __STD_C
5779 _int_valloc(mstate av, size_t bytes)
5780 #else
5781 _int_valloc(av, bytes) mstate av; size_t bytes;
5782 #endif
5784 /* Ensure initialization/consolidation */
5785 if (have_fastchunks(av)) malloc_consolidate(av);
5786 return _int_memalign(av, mp_.pagesize, bytes);
5790 ------------------------------ pvalloc ------------------------------
5794 static Void_t*
5795 #if __STD_C
5796 _int_pvalloc(mstate av, size_t bytes)
5797 #else
5798 _int_pvalloc(av, bytes) mstate av, size_t bytes;
5799 #endif
5801 size_t pagesz;
5803 /* Ensure initialization/consolidation */
5804 if (have_fastchunks(av)) malloc_consolidate(av);
5805 pagesz = mp_.pagesize;
5806 return _int_memalign(av, pagesz, (bytes + pagesz - 1) & ~(pagesz - 1));
5811 ------------------------------ malloc_trim ------------------------------
5814 #if __STD_C
5815 static int mTRIm(mstate av, size_t pad)
5816 #else
5817 static int mTRIm(av, pad) mstate av; size_t pad;
5818 #endif
5820 /* Ensure initialization/consolidation */
5821 malloc_consolidate (av);
5823 const size_t ps = mp_.pagesize;
5824 int psindex = bin_index (ps);
5825 const size_t psm1 = ps - 1;
5827 int result = 0;
5828 for (int i = 1; i < NBINS; ++i)
5829 if (i == 1 || i >= psindex)
5831 mbinptr bin = bin_at (av, i);
5833 for (mchunkptr p = last (bin); p != bin; p = p->bk)
5835 INTERNAL_SIZE_T size = chunksize (p);
5837 if (size > psm1 + sizeof (struct malloc_chunk))
5839 /* See whether the chunk contains at least one unused page. */
5840 char *paligned_mem = (char *) (((uintptr_t) p
5841 + sizeof (struct malloc_chunk)
5842 + psm1) & ~psm1);
5844 assert ((char *) chunk2mem (p) + 4 * SIZE_SZ <= paligned_mem);
5845 assert ((char *) p + size > paligned_mem);
5847 /* This is the size we could potentially free. */
5848 size -= paligned_mem - (char *) p;
5850 if (size > psm1)
5852 #ifdef MALLOC_DEBUG
5853 /* When debugging we simulate destroying the memory
5854 content. */
5855 memset (paligned_mem, 0x89, size & ~psm1);
5856 #endif
5857 madvise (paligned_mem, size & ~psm1, MADV_DONTNEED);
5859 result = 1;
5865 #ifndef MORECORE_CANNOT_TRIM
5866 return result | (av == &main_arena ? sYSTRIm (pad, av) : 0);
5867 #else
5868 return result;
5869 #endif
5874 ------------------------- malloc_usable_size -------------------------
5877 #if __STD_C
5878 size_t mUSABLe(Void_t* mem)
5879 #else
5880 size_t mUSABLe(mem) Void_t* mem;
5881 #endif
5883 mchunkptr p;
5884 if (mem != 0) {
5885 p = mem2chunk(mem);
5886 if (chunk_is_mmapped(p))
5887 return chunksize(p) - 2*SIZE_SZ;
5888 else if (inuse(p))
5889 return chunksize(p) - SIZE_SZ;
5891 return 0;
5895 ------------------------------ mallinfo ------------------------------
5898 struct mallinfo mALLINFo(mstate av)
5900 struct mallinfo mi;
5901 size_t i;
5902 mbinptr b;
5903 mchunkptr p;
5904 INTERNAL_SIZE_T avail;
5905 INTERNAL_SIZE_T fastavail;
5906 int nblocks;
5907 int nfastblocks;
5909 /* Ensure initialization */
5910 if (av->top == 0) malloc_consolidate(av);
5912 check_malloc_state(av);
5914 /* Account for top */
5915 avail = chunksize(av->top);
5916 nblocks = 1; /* top always exists */
5918 /* traverse fastbins */
5919 nfastblocks = 0;
5920 fastavail = 0;
5922 for (i = 0; i < NFASTBINS; ++i) {
5923 for (p = fastbin (av, i); p != 0; p = p->fd) {
5924 ++nfastblocks;
5925 fastavail += chunksize(p);
5929 avail += fastavail;
5931 /* traverse regular bins */
5932 for (i = 1; i < NBINS; ++i) {
5933 b = bin_at(av, i);
5934 for (p = last(b); p != b; p = p->bk) {
5935 ++nblocks;
5936 avail += chunksize(p);
5940 mi.smblks = nfastblocks;
5941 mi.ordblks = nblocks;
5942 mi.fordblks = avail;
5943 mi.uordblks = av->system_mem - avail;
5944 mi.arena = av->system_mem;
5945 mi.hblks = mp_.n_mmaps;
5946 mi.hblkhd = mp_.mmapped_mem;
5947 mi.fsmblks = fastavail;
5948 mi.keepcost = chunksize(av->top);
5949 mi.usmblks = mp_.max_total_mem;
5950 return mi;
5954 ------------------------------ malloc_stats ------------------------------
5957 void mSTATs()
5959 int i;
5960 mstate ar_ptr;
5961 struct mallinfo mi;
5962 unsigned int in_use_b = mp_.mmapped_mem, system_b = in_use_b;
5963 #if THREAD_STATS
5964 long stat_lock_direct = 0, stat_lock_loop = 0, stat_lock_wait = 0;
5965 #endif
5967 if(__malloc_initialized < 0)
5968 ptmalloc_init ();
5969 #ifdef _LIBC
5970 _IO_flockfile (stderr);
5971 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
5972 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
5973 #endif
5974 for (i=0, ar_ptr = &main_arena;; i++) {
5975 (void)mutex_lock(&ar_ptr->mutex);
5976 mi = mALLINFo(ar_ptr);
5977 fprintf(stderr, "Arena %d:\n", i);
5978 fprintf(stderr, "system bytes = %10u\n", (unsigned int)mi.arena);
5979 fprintf(stderr, "in use bytes = %10u\n", (unsigned int)mi.uordblks);
5980 #if MALLOC_DEBUG > 1
5981 if (i > 0)
5982 dump_heap(heap_for_ptr(top(ar_ptr)));
5983 #endif
5984 system_b += mi.arena;
5985 in_use_b += mi.uordblks;
5986 #if THREAD_STATS
5987 stat_lock_direct += ar_ptr->stat_lock_direct;
5988 stat_lock_loop += ar_ptr->stat_lock_loop;
5989 stat_lock_wait += ar_ptr->stat_lock_wait;
5990 #endif
5991 (void)mutex_unlock(&ar_ptr->mutex);
5992 ar_ptr = ar_ptr->next;
5993 if(ar_ptr == &main_arena) break;
5995 #if HAVE_MMAP
5996 fprintf(stderr, "Total (incl. mmap):\n");
5997 #else
5998 fprintf(stderr, "Total:\n");
5999 #endif
6000 fprintf(stderr, "system bytes = %10u\n", system_b);
6001 fprintf(stderr, "in use bytes = %10u\n", in_use_b);
6002 #ifdef NO_THREADS
6003 fprintf(stderr, "max system bytes = %10u\n", (unsigned int)mp_.max_total_mem);
6004 #endif
6005 #if HAVE_MMAP
6006 fprintf(stderr, "max mmap regions = %10u\n", (unsigned int)mp_.max_n_mmaps);
6007 fprintf(stderr, "max mmap bytes = %10lu\n",
6008 (unsigned long)mp_.max_mmapped_mem);
6009 #endif
6010 #if THREAD_STATS
6011 fprintf(stderr, "heaps created = %10d\n", stat_n_heaps);
6012 fprintf(stderr, "locked directly = %10ld\n", stat_lock_direct);
6013 fprintf(stderr, "locked in loop = %10ld\n", stat_lock_loop);
6014 fprintf(stderr, "locked waiting = %10ld\n", stat_lock_wait);
6015 fprintf(stderr, "locked total = %10ld\n",
6016 stat_lock_direct + stat_lock_loop + stat_lock_wait);
6017 #endif
6018 #ifdef _LIBC
6019 ((_IO_FILE *) stderr)->_flags2 |= old_flags2;
6020 _IO_funlockfile (stderr);
6021 #endif
6026 ------------------------------ mallopt ------------------------------
6029 #if __STD_C
6030 int mALLOPt(int param_number, int value)
6031 #else
6032 int mALLOPt(param_number, value) int param_number; int value;
6033 #endif
6035 mstate av = &main_arena;
6036 int res = 1;
6038 if(__malloc_initialized < 0)
6039 ptmalloc_init ();
6040 (void)mutex_lock(&av->mutex);
6041 /* Ensure initialization/consolidation */
6042 malloc_consolidate(av);
6044 switch(param_number) {
6045 case M_MXFAST:
6046 if (value >= 0 && value <= MAX_FAST_SIZE) {
6047 set_max_fast(value);
6049 else
6050 res = 0;
6051 break;
6053 case M_TRIM_THRESHOLD:
6054 mp_.trim_threshold = value;
6055 mp_.no_dyn_threshold = 1;
6056 break;
6058 case M_TOP_PAD:
6059 mp_.top_pad = value;
6060 mp_.no_dyn_threshold = 1;
6061 break;
6063 case M_MMAP_THRESHOLD:
6064 #if USE_ARENAS
6065 /* Forbid setting the threshold too high. */
6066 if((unsigned long)value > HEAP_MAX_SIZE/2)
6067 res = 0;
6068 else
6069 #endif
6070 mp_.mmap_threshold = value;
6071 mp_.no_dyn_threshold = 1;
6072 break;
6074 case M_MMAP_MAX:
6075 #if !HAVE_MMAP
6076 if (value != 0)
6077 res = 0;
6078 else
6079 #endif
6080 mp_.n_mmaps_max = value;
6081 mp_.no_dyn_threshold = 1;
6082 break;
6084 case M_CHECK_ACTION:
6085 check_action = value;
6086 break;
6088 case M_PERTURB:
6089 perturb_byte = value;
6090 break;
6092 #ifdef PER_THREAD
6093 case M_ARENA_TEST:
6094 if (value > 0)
6095 mp_.arena_test = value;
6096 break;
6098 case M_ARENA_MAX:
6099 if (value > 0)
6100 mp_.arena_max = value;
6101 break;
6102 #endif
6104 (void)mutex_unlock(&av->mutex);
6105 return res;
6110 -------------------- Alternative MORECORE functions --------------------
6115 General Requirements for MORECORE.
6117 The MORECORE function must have the following properties:
6119 If MORECORE_CONTIGUOUS is false:
6121 * MORECORE must allocate in multiples of pagesize. It will
6122 only be called with arguments that are multiples of pagesize.
6124 * MORECORE(0) must return an address that is at least
6125 MALLOC_ALIGNMENT aligned. (Page-aligning always suffices.)
6127 else (i.e. If MORECORE_CONTIGUOUS is true):
6129 * Consecutive calls to MORECORE with positive arguments
6130 return increasing addresses, indicating that space has been
6131 contiguously extended.
6133 * MORECORE need not allocate in multiples of pagesize.
6134 Calls to MORECORE need not have args of multiples of pagesize.
6136 * MORECORE need not page-align.
6138 In either case:
6140 * MORECORE may allocate more memory than requested. (Or even less,
6141 but this will generally result in a malloc failure.)
6143 * MORECORE must not allocate memory when given argument zero, but
6144 instead return one past the end address of memory from previous
6145 nonzero call. This malloc does NOT call MORECORE(0)
6146 until at least one call with positive arguments is made, so
6147 the initial value returned is not important.
6149 * Even though consecutive calls to MORECORE need not return contiguous
6150 addresses, it must be OK for malloc'ed chunks to span multiple
6151 regions in those cases where they do happen to be contiguous.
6153 * MORECORE need not handle negative arguments -- it may instead
6154 just return MORECORE_FAILURE when given negative arguments.
6155 Negative arguments are always multiples of pagesize. MORECORE
6156 must not misinterpret negative args as large positive unsigned
6157 args. You can suppress all such calls from even occurring by defining
6158 MORECORE_CANNOT_TRIM,
6160 There is some variation across systems about the type of the
6161 argument to sbrk/MORECORE. If size_t is unsigned, then it cannot
6162 actually be size_t, because sbrk supports negative args, so it is
6163 normally the signed type of the same width as size_t (sometimes
6164 declared as "intptr_t", and sometimes "ptrdiff_t"). It doesn't much
6165 matter though. Internally, we use "long" as arguments, which should
6166 work across all reasonable possibilities.
6168 Additionally, if MORECORE ever returns failure for a positive
6169 request, and HAVE_MMAP is true, then mmap is used as a noncontiguous
6170 system allocator. This is a useful backup strategy for systems with
6171 holes in address spaces -- in this case sbrk cannot contiguously
6172 expand the heap, but mmap may be able to map noncontiguous space.
6174 If you'd like mmap to ALWAYS be used, you can define MORECORE to be
6175 a function that always returns MORECORE_FAILURE.
6177 If you are using this malloc with something other than sbrk (or its
6178 emulation) to supply memory regions, you probably want to set
6179 MORECORE_CONTIGUOUS as false. As an example, here is a custom
6180 allocator kindly contributed for pre-OSX macOS. It uses virtually
6181 but not necessarily physically contiguous non-paged memory (locked
6182 in, present and won't get swapped out). You can use it by
6183 uncommenting this section, adding some #includes, and setting up the
6184 appropriate defines above:
6186 #define MORECORE osMoreCore
6187 #define MORECORE_CONTIGUOUS 0
6189 There is also a shutdown routine that should somehow be called for
6190 cleanup upon program exit.
6192 #define MAX_POOL_ENTRIES 100
6193 #define MINIMUM_MORECORE_SIZE (64 * 1024)
6194 static int next_os_pool;
6195 void *our_os_pools[MAX_POOL_ENTRIES];
6197 void *osMoreCore(int size)
6199 void *ptr = 0;
6200 static void *sbrk_top = 0;
6202 if (size > 0)
6204 if (size < MINIMUM_MORECORE_SIZE)
6205 size = MINIMUM_MORECORE_SIZE;
6206 if (CurrentExecutionLevel() == kTaskLevel)
6207 ptr = PoolAllocateResident(size + RM_PAGE_SIZE, 0);
6208 if (ptr == 0)
6210 return (void *) MORECORE_FAILURE;
6212 // save ptrs so they can be freed during cleanup
6213 our_os_pools[next_os_pool] = ptr;
6214 next_os_pool++;
6215 ptr = (void *) ((((unsigned long) ptr) + RM_PAGE_MASK) & ~RM_PAGE_MASK);
6216 sbrk_top = (char *) ptr + size;
6217 return ptr;
6219 else if (size < 0)
6221 // we don't currently support shrink behavior
6222 return (void *) MORECORE_FAILURE;
6224 else
6226 return sbrk_top;
6230 // cleanup any allocated memory pools
6231 // called as last thing before shutting down driver
6233 void osCleanupMem(void)
6235 void **ptr;
6237 for (ptr = our_os_pools; ptr < &our_os_pools[MAX_POOL_ENTRIES]; ptr++)
6238 if (*ptr)
6240 PoolDeallocate(*ptr);
6241 *ptr = 0;
6248 /* Helper code. */
6250 extern char **__libc_argv attribute_hidden;
6252 static void
6253 malloc_printerr(int action, const char *str, void *ptr)
6255 if ((action & 5) == 5)
6256 __libc_message (action & 2, "%s\n", str);
6257 else if (action & 1)
6259 char buf[2 * sizeof (uintptr_t) + 1];
6261 buf[sizeof (buf) - 1] = '\0';
6262 char *cp = _itoa_word ((uintptr_t) ptr, &buf[sizeof (buf) - 1], 16, 0);
6263 while (cp > buf)
6264 *--cp = '0';
6266 __libc_message (action & 2,
6267 "*** glibc detected *** %s: %s: 0x%s ***\n",
6268 __libc_argv[0] ?: "<unknown>", str, cp);
6270 else if (action & 2)
6271 abort ();
6274 #ifdef _LIBC
6275 # include <sys/param.h>
6277 /* We need a wrapper function for one of the additions of POSIX. */
6279 __posix_memalign (void **memptr, size_t alignment, size_t size)
6281 void *mem;
6283 /* Test whether the SIZE argument is valid. It must be a power of
6284 two multiple of sizeof (void *). */
6285 if (alignment % sizeof (void *) != 0
6286 || !powerof2 (alignment / sizeof (void *)) != 0
6287 || alignment == 0)
6288 return EINVAL;
6290 /* Call the hook here, so that caller is posix_memalign's caller
6291 and not posix_memalign itself. */
6292 __malloc_ptr_t (*hook) __MALLOC_PMT ((size_t, size_t,
6293 __const __malloc_ptr_t)) =
6294 force_reg (__memalign_hook);
6295 if (__builtin_expect (hook != NULL, 0))
6296 mem = (*hook)(alignment, size, RETURN_ADDRESS (0));
6297 else
6298 mem = public_mEMALIGn (alignment, size);
6300 if (mem != NULL) {
6301 *memptr = mem;
6302 return 0;
6305 return ENOMEM;
6307 weak_alias (__posix_memalign, posix_memalign)
6311 malloc_info (int options, FILE *fp)
6313 /* For now, at least. */
6314 if (options != 0)
6315 return EINVAL;
6317 int n = 0;
6318 size_t total_nblocks = 0;
6319 size_t total_nfastblocks = 0;
6320 size_t total_avail = 0;
6321 size_t total_fastavail = 0;
6322 size_t total_system = 0;
6323 size_t total_max_system = 0;
6324 size_t total_aspace = 0;
6325 size_t total_aspace_mprotect = 0;
6327 void mi_arena (mstate ar_ptr)
6329 fprintf (fp, "<heap nr=\"%d\">\n<sizes>\n", n++);
6331 size_t nblocks = 0;
6332 size_t nfastblocks = 0;
6333 size_t avail = 0;
6334 size_t fastavail = 0;
6335 struct
6337 size_t from;
6338 size_t to;
6339 size_t total;
6340 size_t count;
6341 } sizes[NFASTBINS + NBINS - 1];
6342 #define nsizes (sizeof (sizes) / sizeof (sizes[0]))
6344 mutex_lock (&ar_ptr->mutex);
6346 for (size_t i = 0; i < NFASTBINS; ++i)
6348 mchunkptr p = fastbin (ar_ptr, i);
6349 if (p != NULL)
6351 size_t nthissize = 0;
6352 size_t thissize = chunksize (p);
6354 while (p != NULL)
6356 ++nthissize;
6357 p = p->fd;
6360 fastavail += nthissize * thissize;
6361 nfastblocks += nthissize;
6362 sizes[i].from = thissize - (MALLOC_ALIGNMENT - 1);
6363 sizes[i].to = thissize;
6364 sizes[i].count = nthissize;
6366 else
6367 sizes[i].from = sizes[i].to = sizes[i].count = 0;
6369 sizes[i].total = sizes[i].count * sizes[i].to;
6372 mbinptr bin = bin_at (ar_ptr, 1);
6373 struct malloc_chunk *r = bin->fd;
6374 if (r != NULL)
6376 while (r != bin)
6378 ++sizes[NFASTBINS].count;
6379 sizes[NFASTBINS].total += r->size;
6380 sizes[NFASTBINS].from = MIN (sizes[NFASTBINS].from, r->size);
6381 sizes[NFASTBINS].to = MAX (sizes[NFASTBINS].to, r->size);
6382 r = r->fd;
6384 nblocks += sizes[NFASTBINS].count;
6385 avail += sizes[NFASTBINS].total;
6388 for (size_t i = 2; i < NBINS; ++i)
6390 bin = bin_at (ar_ptr, i);
6391 r = bin->fd;
6392 sizes[NFASTBINS - 1 + i].from = ~((size_t) 0);
6393 sizes[NFASTBINS - 1 + i].to = sizes[NFASTBINS - 1 + i].total
6394 = sizes[NFASTBINS - 1 + i].count = 0;
6396 if (r != NULL)
6397 while (r != bin)
6399 ++sizes[NFASTBINS - 1 + i].count;
6400 sizes[NFASTBINS - 1 + i].total += r->size;
6401 sizes[NFASTBINS - 1 + i].from
6402 = MIN (sizes[NFASTBINS - 1 + i].from, r->size);
6403 sizes[NFASTBINS - 1 + i].to = MAX (sizes[NFASTBINS - 1 + i].to,
6404 r->size);
6406 r = r->fd;
6409 if (sizes[NFASTBINS - 1 + i].count == 0)
6410 sizes[NFASTBINS - 1 + i].from = 0;
6411 nblocks += sizes[NFASTBINS - 1 + i].count;
6412 avail += sizes[NFASTBINS - 1 + i].total;
6415 mutex_unlock (&ar_ptr->mutex);
6417 total_nfastblocks += nfastblocks;
6418 total_fastavail += fastavail;
6420 total_nblocks += nblocks;
6421 total_avail += avail;
6423 for (size_t i = 0; i < nsizes; ++i)
6424 if (sizes[i].count != 0 && i != NFASTBINS)
6425 fprintf (fp, "\
6426 <size from=\"%zu\" to=\"%zu\" total=\"%zu\" count=\"%zu\"/>\n",
6427 sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);
6429 if (sizes[NFASTBINS].count != 0)
6430 fprintf (fp, "\
6431 <unsorted from=\"%zu\" to=\"%zu\" total=\"%zu\" count=\"%zu\"/>\n",
6432 sizes[NFASTBINS].from, sizes[NFASTBINS].to,
6433 sizes[NFASTBINS].total, sizes[NFASTBINS].count);
6435 total_system += ar_ptr->system_mem;
6436 total_max_system += ar_ptr->max_system_mem;
6438 fprintf (fp,
6439 "</sizes>\n<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
6440 "<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
6441 "<system type=\"current\" size=\"%zu\"/>\n"
6442 "<system type=\"max\" size=\"%zu\"/>\n",
6443 nfastblocks, fastavail, nblocks, avail,
6444 ar_ptr->system_mem, ar_ptr->max_system_mem);
6446 if (ar_ptr != &main_arena)
6448 heap_info *heap = heap_for_ptr(top(ar_ptr));
6449 fprintf (fp,
6450 "<aspace type=\"total\" size=\"%zu\"/>\n"
6451 "<aspace type=\"mprotect\" size=\"%zu\"/>\n",
6452 heap->size, heap->mprotect_size);
6453 total_aspace += heap->size;
6454 total_aspace_mprotect += heap->mprotect_size;
6456 else
6458 fprintf (fp,
6459 "<aspace type=\"total\" size=\"%zu\"/>\n"
6460 "<aspace type=\"mprotect\" size=\"%zu\"/>\n",
6461 ar_ptr->system_mem, ar_ptr->system_mem);
6462 total_aspace += ar_ptr->system_mem;
6463 total_aspace_mprotect += ar_ptr->system_mem;
6466 fputs ("</heap>\n", fp);
6469 if(__malloc_initialized < 0)
6470 ptmalloc_init ();
6472 fputs ("<malloc version=\"1\">\n", fp);
6474 /* Iterate over all arenas currently in use. */
6475 mstate ar_ptr = &main_arena;
6478 mi_arena (ar_ptr);
6479 ar_ptr = ar_ptr->next;
6481 while (ar_ptr != &main_arena);
6483 fprintf (fp,
6484 "<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"
6485 "<total type=\"rest\" count=\"%zu\" size=\"%zu\"/>\n"
6486 "<system type=\"current\" size=\"%zu\"/>\n"
6487 "<system type=\"max\" size=\"%zu\"/>\n"
6488 "<aspace type=\"total\" size=\"%zu\"/>\n"
6489 "<aspace type=\"mprotect\" size=\"%zu\"/>\n"
6490 "</malloc>\n",
6491 total_nfastblocks, total_fastavail, total_nblocks, total_avail,
6492 total_system, total_max_system,
6493 total_aspace, total_aspace_mprotect);
6495 return 0;
6499 strong_alias (__libc_calloc, __calloc) weak_alias (__libc_calloc, calloc)
6500 strong_alias (__libc_free, __cfree) weak_alias (__libc_free, cfree)
6501 strong_alias (__libc_free, __free) strong_alias (__libc_free, free)
6502 strong_alias (__libc_malloc, __malloc) strong_alias (__libc_malloc, malloc)
6503 strong_alias (__libc_memalign, __memalign)
6504 weak_alias (__libc_memalign, memalign)
6505 strong_alias (__libc_realloc, __realloc) strong_alias (__libc_realloc, realloc)
6506 strong_alias (__libc_valloc, __valloc) weak_alias (__libc_valloc, valloc)
6507 strong_alias (__libc_pvalloc, __pvalloc) weak_alias (__libc_pvalloc, pvalloc)
6508 strong_alias (__libc_mallinfo, __mallinfo)
6509 weak_alias (__libc_mallinfo, mallinfo)
6510 strong_alias (__libc_mallopt, __mallopt) weak_alias (__libc_mallopt, mallopt)
6512 weak_alias (__malloc_stats, malloc_stats)
6513 weak_alias (__malloc_usable_size, malloc_usable_size)
6514 weak_alias (__malloc_trim, malloc_trim)
6515 weak_alias (__malloc_get_state, malloc_get_state)
6516 weak_alias (__malloc_set_state, malloc_set_state)
6518 #endif /* _LIBC */
6520 /* ------------------------------------------------------------
6521 History:
6523 [see ftp://g.oswego.edu/pub/misc/malloc.c for the history of dlmalloc]
6527 * Local variables:
6528 * c-basic-offset: 2
6529 * End: