Mercurial > emacs
annotate src/gmalloc.c @ 52401:695cf19ef79e
Add arch taglines
| author | Miles Bader <miles@gnu.org> |
|---|---|
| date | Mon, 01 Sep 2003 15:45:59 +0000 |
| parents | 23a1cea22d13 |
| children | 54395b0b6779 375f2633d815 |
| rev | line source |
|---|---|
| 17130 | 1 /* This file is no longer automatically generated from libc. */ |
| 2 | |
| 3 #define _MALLOC_INTERNAL | |
| 4 | |
| 5 /* The malloc headers and source files from the C library follow here. */ | |
| 6 | |
| 7 /* Declarations for `malloc' and friends. | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
18667
diff
changeset
|
8 Copyright 1990, 91, 92, 93, 95, 96, 99 Free Software Foundation, Inc. |
| 17130 | 9 Written May 1989 by Mike Haertel. |
| 10 | |
| 11 This library is free software; you can redistribute it and/or | |
| 12 modify it under the terms of the GNU Library General Public License as | |
| 13 published by the Free Software Foundation; either version 2 of the | |
| 14 License, or (at your option) any later version. | |
| 15 | |
| 16 This library is distributed in the hope that it will be useful, | |
| 17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 19 Library General Public License for more details. | |
| 20 | |
| 21 You should have received a copy of the GNU Library General Public | |
| 22 License along with this library; see the file COPYING.LIB. If | |
| 23 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 24 Cambridge, MA 02139, USA. | |
| 25 | |
| 26 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 27 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 28 | |
| 29 #ifndef _MALLOC_H | |
| 30 | |
| 31 #define _MALLOC_H 1 | |
| 32 | |
| 33 #ifdef _MALLOC_INTERNAL | |
| 34 | |
| 35 #ifdef HAVE_CONFIG_H | |
| 36 #include <config.h> | |
| 37 #endif | |
| 38 | |
|
40670
8cb4d744ae0d
Test BROKEN_PROTOTYPES.
Richard M. Stallman <rms@gnu.org>
parents:
37372
diff
changeset
|
39 #if ((defined __cplusplus || (defined (__STDC__) && __STDC__) \ |
|
8cb4d744ae0d
Test BROKEN_PROTOTYPES.
Richard M. Stallman <rms@gnu.org>
parents:
37372
diff
changeset
|
40 || defined STDC_HEADERS || defined PROTOTYPES) \ |
|
8cb4d744ae0d
Test BROKEN_PROTOTYPES.
Richard M. Stallman <rms@gnu.org>
parents:
37372
diff
changeset
|
41 && ! defined (BROKEN_PROTOTYPES)) |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
42 #undef PP |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
43 #define PP(args) args |
| 17130 | 44 #undef __ptr_t |
| 45 #define __ptr_t void * | |
| 46 #else /* Not C++ or ANSI C. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
47 #undef PP |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
48 #define PP(args) () |
| 17130 | 49 #undef __ptr_t |
| 50 #define __ptr_t char * | |
| 51 #endif /* C++ or ANSI C. */ | |
| 52 | |
| 53 #if defined(_LIBC) || defined(STDC_HEADERS) || defined(USG) | |
| 54 #include <string.h> | |
| 55 #else | |
| 56 #ifndef memset | |
| 57 #define memset(s, zero, n) bzero ((s), (n)) | |
| 58 #endif | |
| 59 #ifndef memcpy | |
| 60 #define memcpy(d, s, n) bcopy ((s), (d), (n)) | |
| 61 #endif | |
| 62 #endif | |
| 63 | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
64 #ifdef HAVE_LIMITS_H |
| 17130 | 65 #include <limits.h> |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
66 #endif |
| 17130 | 67 #ifndef CHAR_BIT |
| 68 #define CHAR_BIT 8 | |
| 69 #endif | |
| 70 | |
| 71 #ifdef HAVE_UNISTD_H | |
| 72 #include <unistd.h> | |
| 73 #endif | |
| 74 | |
| 75 #endif /* _MALLOC_INTERNAL. */ | |
| 76 | |
| 77 | |
| 78 #ifdef __cplusplus | |
| 79 extern "C" | |
| 80 { | |
| 81 #endif | |
| 82 | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
83 #ifdef STDC_HEADERS |
| 17130 | 84 #include <stddef.h> |
| 85 #define __malloc_size_t size_t | |
| 86 #define __malloc_ptrdiff_t ptrdiff_t | |
| 87 #else | |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
88 #ifdef __GNUC__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
89 #include <stddef.h> |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
90 #ifdef __SIZE_TYPE__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
91 #define __malloc_size_t __SIZE_TYPE__ |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
92 #endif |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
93 #endif |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
94 #ifndef __malloc_size_t |
| 17130 | 95 #define __malloc_size_t unsigned int |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
96 #endif |
| 17130 | 97 #define __malloc_ptrdiff_t int |
| 98 #endif | |
| 99 | |
| 100 #ifndef NULL | |
| 101 #define NULL 0 | |
| 102 #endif | |
| 103 | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
104 #ifndef FREE_RETURN_TYPE |
|
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
105 #define FREE_RETURN_TYPE void |
|
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
106 #endif |
|
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
107 |
| 17130 | 108 |
| 109 /* Allocate SIZE bytes of memory. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
110 extern __ptr_t malloc PP ((__malloc_size_t __size)); |
| 17130 | 111 /* Re-allocate the previously allocated block |
| 112 in __ptr_t, making the new block SIZE bytes long. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
113 extern __ptr_t realloc PP ((__ptr_t __ptr, __malloc_size_t __size)); |
| 17130 | 114 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */ |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
115 extern __ptr_t calloc PP ((__malloc_size_t __nmemb, __malloc_size_t __size)); |
| 17130 | 116 /* Free a block allocated by `malloc', `realloc' or `calloc'. */ |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
117 extern FREE_RETURN_TYPE free PP ((__ptr_t __ptr)); |
| 17130 | 118 |
| 119 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */ | |
| 120 #if ! (defined (_MALLOC_INTERNAL) && __DJGPP__ - 0 == 1) /* Avoid conflict. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
121 extern __ptr_t memalign PP ((__malloc_size_t __alignment, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
122 __malloc_size_t __size)); |
| 17130 | 123 #endif |
| 124 | |
| 125 /* Allocate SIZE bytes on a page boundary. */ | |
| 126 #if ! (defined (_MALLOC_INTERNAL) && defined (GMALLOC_INHIBIT_VALLOC)) | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
127 extern __ptr_t valloc PP ((__malloc_size_t __size)); |
| 17130 | 128 #endif |
| 129 | |
| 130 | |
| 131 #ifdef _MALLOC_INTERNAL | |
| 132 | |
| 133 /* The allocator divides the heap into blocks of fixed size; large | |
| 134 requests receive one or more whole blocks, and small requests | |
| 135 receive a fragment of a block. Fragment sizes are powers of two, | |
| 136 and all fragments of a block are the same size. When all the | |
| 137 fragments in a block have been freed, the block itself is freed. */ | |
| 138 #define INT_BIT (CHAR_BIT * sizeof(int)) | |
| 139 #define BLOCKLOG (INT_BIT > 16 ? 12 : 9) | |
| 140 #define BLOCKSIZE (1 << BLOCKLOG) | |
| 141 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE) | |
| 142 | |
| 143 /* Determine the amount of memory spanned by the initial heap table | |
| 144 (not an absolute limit). */ | |
| 145 #define HEAP (INT_BIT > 16 ? 4194304 : 65536) | |
| 146 | |
| 147 /* Number of contiguous free blocks allowed to build up at the end of | |
| 148 memory before they will be returned to the system. */ | |
| 149 #define FINAL_FREE_BLOCKS 8 | |
| 150 | |
| 151 /* Data structure giving per-block information. */ | |
| 152 typedef union | |
| 153 { | |
| 154 /* Heap information for a busy block. */ | |
| 155 struct | |
| 156 { | |
| 157 /* Zero for a large (multiblock) object, or positive giving the | |
| 158 logarithm to the base two of the fragment size. */ | |
| 159 int type; | |
| 160 union | |
| 161 { | |
| 162 struct | |
| 163 { | |
| 164 __malloc_size_t nfree; /* Free frags in a fragmented block. */ | |
| 165 __malloc_size_t first; /* First free fragment of the block. */ | |
| 166 } frag; | |
| 167 /* For a large object, in its first block, this has the number | |
| 168 of blocks in the object. In the other blocks, this has a | |
| 169 negative number which says how far back the first block is. */ | |
| 170 __malloc_ptrdiff_t size; | |
| 171 } info; | |
| 172 } busy; | |
| 173 /* Heap information for a free block | |
| 174 (that may be the first of a free cluster). */ | |
| 175 struct | |
| 176 { | |
| 177 __malloc_size_t size; /* Size (in blocks) of a free cluster. */ | |
| 178 __malloc_size_t next; /* Index of next free cluster. */ | |
| 179 __malloc_size_t prev; /* Index of previous free cluster. */ | |
| 180 } free; | |
| 181 } malloc_info; | |
| 182 | |
| 183 /* Pointer to first block of the heap. */ | |
| 184 extern char *_heapbase; | |
| 185 | |
| 186 /* Table indexed by block number giving per-block information. */ | |
| 187 extern malloc_info *_heapinfo; | |
| 188 | |
| 189 /* Address to block number and vice versa. */ | |
| 190 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1) | |
| 191 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase)) | |
| 192 | |
| 193 /* Current search index for the heap table. */ | |
| 194 extern __malloc_size_t _heapindex; | |
| 195 | |
| 196 /* Limit of valid info table indices. */ | |
| 197 extern __malloc_size_t _heaplimit; | |
| 198 | |
| 199 /* Doubly linked lists of free fragments. */ | |
| 200 struct list | |
| 201 { | |
| 202 struct list *next; | |
| 203 struct list *prev; | |
| 204 }; | |
| 205 | |
| 206 /* Free list headers for each fragment size. */ | |
| 207 extern struct list _fraghead[]; | |
| 208 | |
| 209 /* List of blocks allocated with `memalign' (or `valloc'). */ | |
| 210 struct alignlist | |
| 211 { | |
| 212 struct alignlist *next; | |
| 213 __ptr_t aligned; /* The address that memaligned returned. */ | |
| 214 __ptr_t exact; /* The address that malloc returned. */ | |
| 215 }; | |
| 216 extern struct alignlist *_aligned_blocks; | |
| 217 | |
| 218 /* Instrumentation. */ | |
| 219 extern __malloc_size_t _chunks_used; | |
| 220 extern __malloc_size_t _bytes_used; | |
| 221 extern __malloc_size_t _chunks_free; | |
| 222 extern __malloc_size_t _bytes_free; | |
| 223 | |
| 224 /* Internal versions of `malloc', `realloc', and `free' | |
| 225 used when these functions need to call each other. | |
| 226 They are the same but don't call the hooks. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
227 extern __ptr_t _malloc_internal PP ((__malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
228 extern __ptr_t _realloc_internal PP ((__ptr_t __ptr, __malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
229 extern void _free_internal PP ((__ptr_t __ptr)); |
| 17130 | 230 |
| 231 #endif /* _MALLOC_INTERNAL. */ | |
| 232 | |
| 233 /* Given an address in the middle of a malloc'd object, | |
| 234 return the address of the beginning of the object. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
235 extern __ptr_t malloc_find_object_address PP ((__ptr_t __ptr)); |
| 17130 | 236 |
| 237 /* Underlying allocation function; successive calls should | |
| 238 return contiguous pieces of memory. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
239 extern __ptr_t (*__morecore) PP ((__malloc_ptrdiff_t __size)); |
| 17130 | 240 |
| 241 /* Default value of `__morecore'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
242 extern __ptr_t __default_morecore PP ((__malloc_ptrdiff_t __size)); |
| 17130 | 243 |
| 244 /* If not NULL, this function is called after each time | |
| 245 `__morecore' is called to increase the data size. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
246 extern void (*__after_morecore_hook) PP ((void)); |
| 17130 | 247 |
| 248 /* Number of extra blocks to get each time we ask for more core. | |
| 249 This reduces the frequency of calling `(*__morecore)'. */ | |
| 250 extern __malloc_size_t __malloc_extra_blocks; | |
| 251 | |
| 252 /* Nonzero if `malloc' has been called and done its initialization. */ | |
| 253 extern int __malloc_initialized; | |
| 254 /* Function called to initialize malloc data structures. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
255 extern int __malloc_initialize PP ((void)); |
| 17130 | 256 |
| 257 /* Hooks for debugging versions. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
258 extern void (*__malloc_initialize_hook) PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
259 extern void (*__free_hook) PP ((__ptr_t __ptr)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
260 extern __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
261 extern __ptr_t (*__realloc_hook) PP ((__ptr_t __ptr, __malloc_size_t __size)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
262 extern __ptr_t (*__memalign_hook) PP ((__malloc_size_t __size, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
263 __malloc_size_t __alignment)); |
| 17130 | 264 |
| 265 /* Return values for `mprobe': these are the kinds of inconsistencies that | |
| 266 `mcheck' enables detection of. */ | |
| 267 enum mcheck_status | |
| 268 { | |
| 269 MCHECK_DISABLED = -1, /* Consistency checking is not turned on. */ | |
| 270 MCHECK_OK, /* Block is fine. */ | |
| 271 MCHECK_FREE, /* Block freed twice. */ | |
| 272 MCHECK_HEAD, /* Memory before the block was clobbered. */ | |
| 273 MCHECK_TAIL /* Memory after the block was clobbered. */ | |
| 274 }; | |
| 275 | |
| 276 /* Activate a standard collection of debugging hooks. This must be called | |
| 277 before `malloc' is ever called. ABORTFUNC is called with an error code | |
| 278 (see enum above) when an inconsistency is detected. If ABORTFUNC is | |
| 279 null, the standard function prints on stderr and then calls `abort'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
280 extern int mcheck PP ((void (*__abortfunc) PP ((enum mcheck_status)))); |
| 17130 | 281 |
| 282 /* Check for aberrations in a particular malloc'd block. You must have | |
| 283 called `mcheck' already. These are the same checks that `mcheck' does | |
| 284 when you free or reallocate a block. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
285 extern enum mcheck_status mprobe PP ((__ptr_t __ptr)); |
| 17130 | 286 |
| 287 /* Activate a standard collection of tracing hooks. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
288 extern void mtrace PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
289 extern void muntrace PP ((void)); |
| 17130 | 290 |
| 291 /* Statistics available to the user. */ | |
| 292 struct mstats | |
| 293 { | |
| 294 __malloc_size_t bytes_total; /* Total size of the heap. */ | |
| 295 __malloc_size_t chunks_used; /* Chunks allocated by the user. */ | |
| 296 __malloc_size_t bytes_used; /* Byte total of user-allocated chunks. */ | |
| 297 __malloc_size_t chunks_free; /* Chunks in the free list. */ | |
| 298 __malloc_size_t bytes_free; /* Byte total of chunks in the free list. */ | |
| 299 }; | |
| 300 | |
| 301 /* Pick up the current statistics. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
302 extern struct mstats mstats PP ((void)); |
| 17130 | 303 |
| 304 /* Call WARNFUN with a warning message when memory usage is high. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
305 extern void memory_warnings PP ((__ptr_t __start, |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
306 void (*__warnfun) PP ((const char *)))); |
| 17130 | 307 |
| 308 | |
| 309 /* Relocating allocator. */ | |
| 310 | |
| 311 /* Allocate SIZE bytes, and store the address in *HANDLEPTR. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
312 extern __ptr_t r_alloc PP ((__ptr_t *__handleptr, __malloc_size_t __size)); |
| 17130 | 313 |
| 314 /* Free the storage allocated in HANDLEPTR. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
315 extern void r_alloc_free PP ((__ptr_t *__handleptr)); |
| 17130 | 316 |
| 317 /* Adjust the block at HANDLEPTR to be SIZE bytes long. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
318 extern __ptr_t r_re_alloc PP ((__ptr_t *__handleptr, __malloc_size_t __size)); |
| 17130 | 319 |
| 320 | |
| 321 #ifdef __cplusplus | |
| 322 } | |
| 323 #endif | |
| 324 | |
| 325 #endif /* malloc.h */ | |
| 326 /* Memory allocator `malloc'. | |
| 327 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 328 Written May 1989 by Mike Haertel. | |
| 329 | |
| 330 This library is free software; you can redistribute it and/or | |
| 331 modify it under the terms of the GNU Library General Public License as | |
| 332 published by the Free Software Foundation; either version 2 of the | |
| 333 License, or (at your option) any later version. | |
| 334 | |
| 335 This library is distributed in the hope that it will be useful, | |
| 336 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 337 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 338 Library General Public License for more details. | |
| 339 | |
| 340 You should have received a copy of the GNU Library General Public | |
| 341 License along with this library; see the file COPYING.LIB. If | |
| 342 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 343 Cambridge, MA 02139, USA. | |
| 344 | |
| 345 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 346 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 347 | |
| 348 #ifndef _MALLOC_INTERNAL | |
| 349 #define _MALLOC_INTERNAL | |
| 350 #include <malloc.h> | |
| 351 #endif | |
| 352 #include <errno.h> | |
| 353 | |
| 354 /* How to really get more memory. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
355 __ptr_t (*__morecore) PP ((ptrdiff_t __size)) = __default_morecore; |
| 17130 | 356 |
| 357 /* Debugging hook for `malloc'. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
358 __ptr_t (*__malloc_hook) PP ((__malloc_size_t __size)); |
| 17130 | 359 |
| 360 /* Pointer to the base of the first block. */ | |
| 361 char *_heapbase; | |
| 362 | |
| 363 /* Block information table. Allocated with align/__free (not malloc/free). */ | |
| 364 malloc_info *_heapinfo; | |
| 365 | |
| 366 /* Number of info entries. */ | |
| 367 static __malloc_size_t heapsize; | |
| 368 | |
| 369 /* Search index in the info table. */ | |
| 370 __malloc_size_t _heapindex; | |
| 371 | |
| 372 /* Limit of valid info table indices. */ | |
| 373 __malloc_size_t _heaplimit; | |
| 374 | |
| 375 /* Free lists for each fragment size. */ | |
| 376 struct list _fraghead[BLOCKLOG]; | |
| 377 | |
| 378 /* Instrumentation. */ | |
| 379 __malloc_size_t _chunks_used; | |
| 380 __malloc_size_t _bytes_used; | |
| 381 __malloc_size_t _chunks_free; | |
| 382 __malloc_size_t _bytes_free; | |
| 383 | |
| 384 /* Are you experienced? */ | |
| 385 int __malloc_initialized; | |
| 386 | |
| 387 __malloc_size_t __malloc_extra_blocks; | |
| 388 | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
389 void (*__malloc_initialize_hook) PP ((void)); |
|
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
390 void (*__after_morecore_hook) PP ((void)); |
| 17130 | 391 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
392 #if defined GC_MALLOC_CHECK && defined GC_PROTECT_MALLOC_STATE |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
393 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
394 /* Some code for hunting a bug writing into _heapinfo. |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
395 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
396 Call this macro with argument PROT non-zero to protect internal |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
397 malloc state against writing to it, call it with a zero argument to |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
398 make it readable and writable. |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
399 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
400 Note that this only works if BLOCKSIZE == page size, which is |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
401 the case on the i386. */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
402 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
403 #include <sys/types.h> |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
404 #include <sys/mman.h> |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
405 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
406 static int state_protected_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
407 static __malloc_size_t last_state_size; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
408 static malloc_info *last_heapinfo; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
409 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
410 void |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
411 protect_malloc_state (protect_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
412 int protect_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
413 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
414 /* If _heapinfo has been relocated, make sure its old location |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
415 isn't left read-only; it will be reused by malloc. */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
416 if (_heapinfo != last_heapinfo |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
417 && last_heapinfo |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
418 && state_protected_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
419 mprotect (last_heapinfo, last_state_size, PROT_READ | PROT_WRITE); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
420 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
421 last_state_size = _heaplimit * sizeof *_heapinfo; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
422 last_heapinfo = _heapinfo; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
423 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
424 if (protect_p != state_protected_p) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
425 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
426 state_protected_p = protect_p; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
427 if (mprotect (_heapinfo, last_state_size, |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
428 protect_p ? PROT_READ : PROT_READ | PROT_WRITE) != 0) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
429 abort (); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
430 } |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
431 } |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
432 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
433 #define PROTECT_MALLOC_STATE(PROT) protect_malloc_state(PROT) |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
434 |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
435 #else |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
436 #define PROTECT_MALLOC_STATE(PROT) /* empty */ |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
437 #endif |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
438 |
| 17130 | 439 |
| 440 /* Aligned allocation. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
441 static __ptr_t align PP ((__malloc_size_t)); |
| 17130 | 442 static __ptr_t |
| 443 align (size) | |
| 444 __malloc_size_t size; | |
| 445 { | |
| 446 __ptr_t result; | |
| 447 unsigned long int adj; | |
| 448 | |
|
37268
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
449 /* align accepts an unsigned argument, but __morecore accepts a |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
450 signed one. This could lead to trouble if SIZE overflows a |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
451 signed int type accepted by __morecore. We just punt in that |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
452 case, since they are requesting a ludicrous amount anyway. */ |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
453 if ((__malloc_ptrdiff_t)size < 0) |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
454 result = 0; |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
455 else |
|
0f5de719ab07
(align): If the argument SIZE would overflow
Eli Zaretskii <eliz@gnu.org>
parents:
32973
diff
changeset
|
456 result = (*__morecore) (size); |
| 17130 | 457 adj = (unsigned long int) ((unsigned long int) ((char *) result - |
| 458 (char *) NULL)) % BLOCKSIZE; | |
| 459 if (adj != 0) | |
| 460 { | |
| 461 __ptr_t new; | |
| 462 adj = BLOCKSIZE - adj; | |
| 463 new = (*__morecore) (adj); | |
| 464 result = (char *) result + adj; | |
| 465 } | |
| 466 | |
| 467 if (__after_morecore_hook) | |
| 468 (*__after_morecore_hook) (); | |
| 469 | |
| 470 return result; | |
| 471 } | |
| 472 | |
| 473 /* Get SIZE bytes, if we can get them starting at END. | |
| 474 Return the address of the space we got. | |
| 475 If we cannot get space at END, fail and return 0. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
476 static __ptr_t get_contiguous_space PP ((__malloc_ptrdiff_t, __ptr_t)); |
| 17130 | 477 static __ptr_t |
| 478 get_contiguous_space (size, position) | |
| 479 __malloc_ptrdiff_t size; | |
| 480 __ptr_t position; | |
| 481 { | |
| 482 __ptr_t before; | |
| 483 __ptr_t after; | |
| 484 | |
| 485 before = (*__morecore) (0); | |
| 486 /* If we can tell in advance that the break is at the wrong place, | |
| 487 fail now. */ | |
| 488 if (before != position) | |
| 489 return 0; | |
| 490 | |
| 491 /* Allocate SIZE bytes and get the address of them. */ | |
| 492 after = (*__morecore) (size); | |
| 493 if (!after) | |
| 494 return 0; | |
| 495 | |
| 496 /* It was not contiguous--reject it. */ | |
| 497 if (after != position) | |
| 498 { | |
| 499 (*__morecore) (- size); | |
| 500 return 0; | |
| 501 } | |
| 502 | |
| 503 return after; | |
| 504 } | |
| 505 | |
| 506 | |
| 507 /* This is called when `_heapinfo' and `heapsize' have just | |
| 508 been set to describe a new info table. Set up the table | |
| 509 to describe itself and account for it in the statistics. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
510 static void register_heapinfo PP ((void)); |
| 17130 | 511 #ifdef __GNUC__ |
| 512 __inline__ | |
| 513 #endif | |
| 514 static void | |
| 515 register_heapinfo () | |
| 516 { | |
| 517 __malloc_size_t block, blocks; | |
| 518 | |
| 519 block = BLOCK (_heapinfo); | |
| 520 blocks = BLOCKIFY (heapsize * sizeof (malloc_info)); | |
| 521 | |
| 522 /* Account for the _heapinfo block itself in the statistics. */ | |
| 523 _bytes_used += blocks * BLOCKSIZE; | |
| 524 ++_chunks_used; | |
| 525 | |
| 526 /* Describe the heapinfo block itself in the heapinfo. */ | |
| 527 _heapinfo[block].busy.type = 0; | |
| 528 _heapinfo[block].busy.info.size = blocks; | |
| 529 /* Leave back-pointers for malloc_find_address. */ | |
| 530 while (--blocks > 0) | |
| 531 _heapinfo[block + blocks].busy.info.size = -blocks; | |
| 532 } | |
| 533 | |
| 534 /* Set everything up and remember that we have. */ | |
| 535 int | |
| 536 __malloc_initialize () | |
| 537 { | |
| 538 if (__malloc_initialized) | |
| 539 return 0; | |
| 540 | |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
541 #ifdef GC_MCHECK |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
542 mcheck (NULL); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
543 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
544 |
| 17130 | 545 if (__malloc_initialize_hook) |
| 546 (*__malloc_initialize_hook) (); | |
| 547 | |
| 548 heapsize = HEAP / BLOCKSIZE; | |
| 549 _heapinfo = (malloc_info *) align (heapsize * sizeof (malloc_info)); | |
| 550 if (_heapinfo == NULL) | |
| 551 return 0; | |
| 552 memset (_heapinfo, 0, heapsize * sizeof (malloc_info)); | |
| 553 _heapinfo[0].free.size = 0; | |
| 554 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0; | |
| 555 _heapindex = 0; | |
| 556 _heapbase = (char *) _heapinfo; | |
| 557 _heaplimit = BLOCK (_heapbase + heapsize * sizeof (malloc_info)); | |
| 558 | |
| 559 register_heapinfo (); | |
| 560 | |
| 561 __malloc_initialized = 1; | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
562 PROTECT_MALLOC_STATE (1); |
| 17130 | 563 return 1; |
| 564 } | |
| 565 | |
| 566 static int morecore_recursing; | |
| 567 | |
| 568 /* Get neatly aligned memory, initializing or | |
| 569 growing the heap info table as necessary. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
570 static __ptr_t morecore PP ((__malloc_size_t)); |
| 17130 | 571 static __ptr_t |
| 572 morecore (size) | |
| 573 __malloc_size_t size; | |
| 574 { | |
| 575 __ptr_t result; | |
| 576 malloc_info *newinfo, *oldinfo; | |
| 577 __malloc_size_t newsize; | |
| 578 | |
| 579 if (morecore_recursing) | |
| 580 /* Avoid recursion. The caller will know how to handle a null return. */ | |
| 581 return NULL; | |
| 582 | |
| 583 result = align (size); | |
| 584 if (result == NULL) | |
| 585 return NULL; | |
| 586 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
587 PROTECT_MALLOC_STATE (0); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
588 |
| 17130 | 589 /* Check if we need to grow the info table. */ |
| 590 if ((__malloc_size_t) BLOCK ((char *) result + size) > heapsize) | |
| 591 { | |
| 592 /* Calculate the new _heapinfo table size. We do not account for the | |
| 593 added blocks in the table itself, as we hope to place them in | |
| 594 existing free space, which is already covered by part of the | |
| 595 existing table. */ | |
| 596 newsize = heapsize; | |
| 597 do | |
| 598 newsize *= 2; | |
| 599 while ((__malloc_size_t) BLOCK ((char *) result + size) > newsize); | |
| 600 | |
| 601 /* We must not reuse existing core for the new info table when called | |
| 602 from realloc in the case of growing a large block, because the | |
| 603 block being grown is momentarily marked as free. In this case | |
| 604 _heaplimit is zero so we know not to reuse space for internal | |
| 605 allocation. */ | |
| 606 if (_heaplimit != 0) | |
| 607 { | |
| 608 /* First try to allocate the new info table in core we already | |
| 609 have, in the usual way using realloc. If realloc cannot | |
| 610 extend it in place or relocate it to existing sufficient core, | |
| 611 we will get called again, and the code above will notice the | |
| 612 `morecore_recursing' flag and return null. */ | |
| 613 int save = errno; /* Don't want to clobber errno with ENOMEM. */ | |
| 614 morecore_recursing = 1; | |
| 615 newinfo = (malloc_info *) _realloc_internal | |
| 616 (_heapinfo, newsize * sizeof (malloc_info)); | |
| 617 morecore_recursing = 0; | |
| 618 if (newinfo == NULL) | |
| 619 errno = save; | |
| 620 else | |
| 621 { | |
| 622 /* We found some space in core, and realloc has put the old | |
| 623 table's blocks on the free list. Now zero the new part | |
| 624 of the table and install the new table location. */ | |
| 625 memset (&newinfo[heapsize], 0, | |
| 626 (newsize - heapsize) * sizeof (malloc_info)); | |
| 627 _heapinfo = newinfo; | |
| 628 heapsize = newsize; | |
| 629 goto got_heap; | |
| 630 } | |
| 631 } | |
| 632 | |
| 633 /* Allocate new space for the malloc info table. */ | |
| 634 while (1) | |
| 635 { | |
| 636 newinfo = (malloc_info *) align (newsize * sizeof (malloc_info)); | |
| 637 | |
| 638 /* Did it fail? */ | |
| 639 if (newinfo == NULL) | |
| 640 { | |
| 641 (*__morecore) (-size); | |
| 642 return NULL; | |
| 643 } | |
| 644 | |
| 645 /* Is it big enough to record status for its own space? | |
| 646 If so, we win. */ | |
| 647 if ((__malloc_size_t) BLOCK ((char *) newinfo | |
| 648 + newsize * sizeof (malloc_info)) | |
| 649 < newsize) | |
| 650 break; | |
| 651 | |
| 652 /* Must try again. First give back most of what we just got. */ | |
| 653 (*__morecore) (- newsize * sizeof (malloc_info)); | |
| 654 newsize *= 2; | |
| 655 } | |
| 656 | |
| 657 /* Copy the old table to the beginning of the new, | |
| 658 and zero the rest of the new table. */ | |
| 659 memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info)); | |
| 660 memset (&newinfo[heapsize], 0, | |
| 661 (newsize - heapsize) * sizeof (malloc_info)); | |
| 662 oldinfo = _heapinfo; | |
| 663 _heapinfo = newinfo; | |
| 664 heapsize = newsize; | |
| 665 | |
| 666 register_heapinfo (); | |
| 667 | |
| 668 /* Reset _heaplimit so _free_internal never decides | |
| 669 it can relocate or resize the info table. */ | |
| 670 _heaplimit = 0; | |
| 671 _free_internal (oldinfo); | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
672 PROTECT_MALLOC_STATE (0); |
| 17130 | 673 |
| 674 /* The new heap limit includes the new table just allocated. */ | |
| 675 _heaplimit = BLOCK ((char *) newinfo + heapsize * sizeof (malloc_info)); | |
| 676 return result; | |
| 677 } | |
| 678 | |
| 679 got_heap: | |
| 680 _heaplimit = BLOCK ((char *) result + size); | |
| 681 return result; | |
| 682 } | |
| 683 | |
| 684 /* Allocate memory from the heap. */ | |
| 685 __ptr_t | |
| 686 _malloc_internal (size) | |
| 687 __malloc_size_t size; | |
| 688 { | |
| 689 __ptr_t result; | |
| 690 __malloc_size_t block, blocks, lastblocks, start; | |
| 691 register __malloc_size_t i; | |
| 692 struct list *next; | |
| 693 | |
| 694 /* ANSI C allows `malloc (0)' to either return NULL, or to return a | |
| 695 valid address you can realloc and free (though not dereference). | |
| 696 | |
| 697 It turns out that some extant code (sunrpc, at least Ultrix's version) | |
| 698 expects `malloc (0)' to return non-NULL and breaks otherwise. | |
| 699 Be compatible. */ | |
| 700 | |
| 701 #if 0 | |
| 702 if (size == 0) | |
| 703 return NULL; | |
| 704 #endif | |
| 705 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
706 PROTECT_MALLOC_STATE (0); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
707 |
| 17130 | 708 if (size < sizeof (struct list)) |
| 709 size = sizeof (struct list); | |
| 710 | |
| 711 #ifdef SUNOS_LOCALTIME_BUG | |
| 712 if (size < 16) | |
| 713 size = 16; | |
| 714 #endif | |
| 715 | |
| 716 /* Determine the allocation policy based on the request size. */ | |
| 717 if (size <= BLOCKSIZE / 2) | |
| 718 { | |
| 719 /* Small allocation to receive a fragment of a block. | |
| 720 Determine the logarithm to base two of the fragment size. */ | |
| 721 register __malloc_size_t log = 1; | |
| 722 --size; | |
| 723 while ((size /= 2) != 0) | |
| 724 ++log; | |
| 725 | |
| 726 /* Look in the fragment lists for a | |
| 727 free fragment of the desired size. */ | |
| 728 next = _fraghead[log].next; | |
| 729 if (next != NULL) | |
| 730 { | |
| 731 /* There are free fragments of this size. | |
| 732 Pop a fragment out of the fragment list and return it. | |
| 733 Update the block's nfree and first counters. */ | |
| 734 result = (__ptr_t) next; | |
| 735 next->prev->next = next->next; | |
| 736 if (next->next != NULL) | |
| 737 next->next->prev = next->prev; | |
| 738 block = BLOCK (result); | |
| 739 if (--_heapinfo[block].busy.info.frag.nfree != 0) | |
| 740 _heapinfo[block].busy.info.frag.first = (unsigned long int) | |
| 741 ((unsigned long int) ((char *) next->next - (char *) NULL) | |
| 742 % BLOCKSIZE) >> log; | |
| 743 | |
| 744 /* Update the statistics. */ | |
| 745 ++_chunks_used; | |
| 746 _bytes_used += 1 << log; | |
| 747 --_chunks_free; | |
| 748 _bytes_free -= 1 << log; | |
| 749 } | |
| 750 else | |
| 751 { | |
| 752 /* No free fragments of the desired size, so get a new block | |
| 753 and break it into fragments, returning the first. */ | |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
754 #ifdef GC_MALLOC_CHECK |
|
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
755 result = _malloc_internal (BLOCKSIZE); |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
756 PROTECT_MALLOC_STATE (0); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
757 #else |
| 17130 | 758 result = malloc (BLOCKSIZE); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
759 #endif |
| 17130 | 760 if (result == NULL) |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
761 { |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
762 PROTECT_MALLOC_STATE (1); |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
763 return NULL; |
|
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
764 } |
| 17130 | 765 |
| 766 /* Link all fragments but the first into the free list. */ | |
| 767 next = (struct list *) ((char *) result + (1 << log)); | |
| 768 next->next = NULL; | |
| 769 next->prev = &_fraghead[log]; | |
| 770 _fraghead[log].next = next; | |
| 771 | |
| 772 for (i = 2; i < (__malloc_size_t) (BLOCKSIZE >> log); ++i) | |
| 773 { | |
| 774 next = (struct list *) ((char *) result + (i << log)); | |
| 775 next->next = _fraghead[log].next; | |
| 776 next->prev = &_fraghead[log]; | |
| 777 next->prev->next = next; | |
| 778 next->next->prev = next; | |
| 779 } | |
| 780 | |
| 781 /* Initialize the nfree and first counters for this block. */ | |
| 782 block = BLOCK (result); | |
| 783 _heapinfo[block].busy.type = log; | |
| 784 _heapinfo[block].busy.info.frag.nfree = i - 1; | |
| 785 _heapinfo[block].busy.info.frag.first = i - 1; | |
| 786 | |
| 787 _chunks_free += (BLOCKSIZE >> log) - 1; | |
| 788 _bytes_free += BLOCKSIZE - (1 << log); | |
| 789 _bytes_used -= BLOCKSIZE - (1 << log); | |
| 790 } | |
| 791 } | |
| 792 else | |
| 793 { | |
| 794 /* Large allocation to receive one or more blocks. | |
| 795 Search the free list in a circle starting at the last place visited. | |
| 796 If we loop completely around without finding a large enough | |
| 797 space we will have to get more memory from the system. */ | |
| 798 blocks = BLOCKIFY (size); | |
| 799 start = block = _heapindex; | |
| 800 while (_heapinfo[block].free.size < blocks) | |
| 801 { | |
| 802 block = _heapinfo[block].free.next; | |
| 803 if (block == start) | |
| 804 { | |
| 805 /* Need to get more from the system. Get a little extra. */ | |
| 806 __malloc_size_t wantblocks = blocks + __malloc_extra_blocks; | |
| 807 block = _heapinfo[0].free.prev; | |
| 808 lastblocks = _heapinfo[block].free.size; | |
| 809 /* Check to see if the new core will be contiguous with the | |
| 810 final free block; if so we don't need to get as much. */ | |
| 811 if (_heaplimit != 0 && block + lastblocks == _heaplimit && | |
| 812 /* We can't do this if we will have to make the heap info | |
| 813 table bigger to accomodate the new space. */ | |
| 814 block + wantblocks <= heapsize && | |
| 815 get_contiguous_space ((wantblocks - lastblocks) * BLOCKSIZE, | |
| 816 ADDRESS (block + lastblocks))) | |
| 817 { | |
| 818 /* We got it contiguously. Which block we are extending | |
| 819 (the `final free block' referred to above) might have | |
| 820 changed, if it got combined with a freed info table. */ | |
| 821 block = _heapinfo[0].free.prev; | |
| 822 _heapinfo[block].free.size += (wantblocks - lastblocks); | |
| 823 _bytes_free += (wantblocks - lastblocks) * BLOCKSIZE; | |
| 824 _heaplimit += wantblocks - lastblocks; | |
| 825 continue; | |
| 826 } | |
| 827 result = morecore (wantblocks * BLOCKSIZE); | |
| 828 if (result == NULL) | |
| 829 return NULL; | |
| 830 block = BLOCK (result); | |
| 831 /* Put the new block at the end of the free list. */ | |
| 832 _heapinfo[block].free.size = wantblocks; | |
| 833 _heapinfo[block].free.prev = _heapinfo[0].free.prev; | |
| 834 _heapinfo[block].free.next = 0; | |
| 835 _heapinfo[0].free.prev = block; | |
| 836 _heapinfo[_heapinfo[block].free.prev].free.next = block; | |
| 837 ++_chunks_free; | |
| 838 /* Now loop to use some of that block for this allocation. */ | |
| 839 } | |
| 840 } | |
| 841 | |
| 842 /* At this point we have found a suitable free list entry. | |
| 843 Figure out how to remove what we need from the list. */ | |
| 844 result = ADDRESS (block); | |
| 845 if (_heapinfo[block].free.size > blocks) | |
| 846 { | |
| 847 /* The block we found has a bit left over, | |
| 848 so relink the tail end back into the free list. */ | |
| 849 _heapinfo[block + blocks].free.size | |
| 850 = _heapinfo[block].free.size - blocks; | |
| 851 _heapinfo[block + blocks].free.next | |
| 852 = _heapinfo[block].free.next; | |
| 853 _heapinfo[block + blocks].free.prev | |
| 854 = _heapinfo[block].free.prev; | |
| 855 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 856 = _heapinfo[_heapinfo[block].free.next].free.prev | |
| 857 = _heapindex = block + blocks; | |
| 858 } | |
| 859 else | |
| 860 { | |
| 861 /* The block exactly matches our requirements, | |
| 862 so just remove it from the list. */ | |
| 863 _heapinfo[_heapinfo[block].free.next].free.prev | |
| 864 = _heapinfo[block].free.prev; | |
| 865 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 866 = _heapindex = _heapinfo[block].free.next; | |
| 867 --_chunks_free; | |
| 868 } | |
| 869 | |
| 870 _heapinfo[block].busy.type = 0; | |
| 871 _heapinfo[block].busy.info.size = blocks; | |
| 872 ++_chunks_used; | |
| 873 _bytes_used += blocks * BLOCKSIZE; | |
| 874 _bytes_free -= blocks * BLOCKSIZE; | |
| 875 | |
| 876 /* Mark all the blocks of the object just allocated except for the | |
| 877 first with a negative number so you can find the first block by | |
| 878 adding that adjustment. */ | |
| 879 while (--blocks > 0) | |
| 880 _heapinfo[block + blocks].busy.info.size = -blocks; | |
| 881 } | |
| 882 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
883 PROTECT_MALLOC_STATE (1); |
| 17130 | 884 return result; |
| 885 } | |
| 886 | |
| 887 __ptr_t | |
| 888 malloc (size) | |
| 889 __malloc_size_t size; | |
| 890 { | |
| 891 if (!__malloc_initialized && !__malloc_initialize ()) | |
| 892 return NULL; | |
| 893 | |
| 894 return (__malloc_hook != NULL ? *__malloc_hook : _malloc_internal) (size); | |
| 895 } | |
| 896 | |
| 897 #ifndef _LIBC | |
| 898 | |
| 899 /* On some ANSI C systems, some libc functions call _malloc, _free | |
| 900 and _realloc. Make them use the GNU functions. */ | |
| 901 | |
| 902 __ptr_t | |
| 903 _malloc (size) | |
| 904 __malloc_size_t size; | |
| 905 { | |
| 906 return malloc (size); | |
| 907 } | |
| 908 | |
| 909 void | |
| 910 _free (ptr) | |
| 911 __ptr_t ptr; | |
| 912 { | |
| 913 free (ptr); | |
| 914 } | |
| 915 | |
| 916 __ptr_t | |
| 917 _realloc (ptr, size) | |
| 918 __ptr_t ptr; | |
| 919 __malloc_size_t size; | |
| 920 { | |
| 921 return realloc (ptr, size); | |
| 922 } | |
| 923 | |
| 924 #endif | |
| 925 /* Free a block of memory allocated by `malloc'. | |
| 926 Copyright 1990, 1991, 1992, 1994, 1995 Free Software Foundation, Inc. | |
| 927 Written May 1989 by Mike Haertel. | |
| 928 | |
| 929 This library is free software; you can redistribute it and/or | |
| 930 modify it under the terms of the GNU Library General Public License as | |
| 931 published by the Free Software Foundation; either version 2 of the | |
| 932 License, or (at your option) any later version. | |
| 933 | |
| 934 This library is distributed in the hope that it will be useful, | |
| 935 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 936 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 937 Library General Public License for more details. | |
| 938 | |
| 939 You should have received a copy of the GNU Library General Public | |
| 940 License along with this library; see the file COPYING.LIB. If | |
| 941 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 942 Cambridge, MA 02139, USA. | |
| 943 | |
| 944 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 945 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 946 | |
| 947 #ifndef _MALLOC_INTERNAL | |
| 948 #define _MALLOC_INTERNAL | |
| 949 #include <malloc.h> | |
| 950 #endif | |
| 951 | |
| 952 | |
| 953 /* Cope with systems lacking `memmove'. */ | |
| 954 #ifndef memmove | |
| 955 #if (defined (MEMMOVE_MISSING) || \ | |
| 956 !defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG)) | |
| 957 #ifdef emacs | |
| 958 #undef __malloc_safe_bcopy | |
| 959 #define __malloc_safe_bcopy safe_bcopy | |
| 960 #endif | |
| 961 /* This function is defined in realloc.c. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
962 extern void __malloc_safe_bcopy PP ((__ptr_t, __ptr_t, __malloc_size_t)); |
| 17130 | 963 #define memmove(to, from, size) __malloc_safe_bcopy ((from), (to), (size)) |
| 964 #endif | |
| 965 #endif | |
| 966 | |
| 967 | |
| 968 /* Debugging hook for free. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
969 void (*__free_hook) PP ((__ptr_t __ptr)); |
| 17130 | 970 |
| 971 /* List of blocks allocated by memalign. */ | |
| 972 struct alignlist *_aligned_blocks = NULL; | |
| 973 | |
| 974 /* Return memory to the heap. | |
| 975 Like `free' but don't call a __free_hook if there is one. */ | |
| 976 void | |
| 977 _free_internal (ptr) | |
| 978 __ptr_t ptr; | |
| 979 { | |
| 980 int type; | |
| 981 __malloc_size_t block, blocks; | |
| 982 register __malloc_size_t i; | |
| 983 struct list *prev, *next; | |
| 984 __ptr_t curbrk; | |
| 985 const __malloc_size_t lesscore_threshold | |
| 986 /* Threshold of free space at which we will return some to the system. */ | |
| 987 = FINAL_FREE_BLOCKS + 2 * __malloc_extra_blocks; | |
| 988 | |
| 989 register struct alignlist *l; | |
| 990 | |
| 991 if (ptr == NULL) | |
| 992 return; | |
| 993 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
994 PROTECT_MALLOC_STATE (0); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
995 |
| 17130 | 996 for (l = _aligned_blocks; l != NULL; l = l->next) |
| 997 if (l->aligned == ptr) | |
| 998 { | |
| 999 l->aligned = NULL; /* Mark the slot in the list as free. */ | |
| 1000 ptr = l->exact; | |
| 1001 break; | |
| 1002 } | |
| 1003 | |
| 1004 block = BLOCK (ptr); | |
| 1005 | |
| 1006 type = _heapinfo[block].busy.type; | |
| 1007 switch (type) | |
| 1008 { | |
| 1009 case 0: | |
| 1010 /* Get as many statistics as early as we can. */ | |
| 1011 --_chunks_used; | |
| 1012 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE; | |
| 1013 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE; | |
| 1014 | |
| 1015 /* Find the free cluster previous to this one in the free list. | |
| 1016 Start searching at the last block referenced; this may benefit | |
| 1017 programs with locality of allocation. */ | |
| 1018 i = _heapindex; | |
| 1019 if (i > block) | |
| 1020 while (i > block) | |
| 1021 i = _heapinfo[i].free.prev; | |
| 1022 else | |
| 1023 { | |
| 1024 do | |
| 1025 i = _heapinfo[i].free.next; | |
| 1026 while (i > 0 && i < block); | |
| 1027 i = _heapinfo[i].free.prev; | |
| 1028 } | |
| 1029 | |
| 1030 /* Determine how to link this block into the free list. */ | |
| 1031 if (block == i + _heapinfo[i].free.size) | |
| 1032 { | |
| 1033 /* Coalesce this block with its predecessor. */ | |
| 1034 _heapinfo[i].free.size += _heapinfo[block].busy.info.size; | |
| 1035 block = i; | |
| 1036 } | |
| 1037 else | |
| 1038 { | |
| 1039 /* Really link this block back into the free list. */ | |
| 1040 _heapinfo[block].free.size = _heapinfo[block].busy.info.size; | |
| 1041 _heapinfo[block].free.next = _heapinfo[i].free.next; | |
| 1042 _heapinfo[block].free.prev = i; | |
| 1043 _heapinfo[i].free.next = block; | |
| 1044 _heapinfo[_heapinfo[block].free.next].free.prev = block; | |
| 1045 ++_chunks_free; | |
| 1046 } | |
| 1047 | |
| 1048 /* Now that the block is linked in, see if we can coalesce it | |
| 1049 with its successor (by deleting its successor from the list | |
| 1050 and adding in its size). */ | |
| 1051 if (block + _heapinfo[block].free.size == _heapinfo[block].free.next) | |
| 1052 { | |
| 1053 _heapinfo[block].free.size | |
| 1054 += _heapinfo[_heapinfo[block].free.next].free.size; | |
| 1055 _heapinfo[block].free.next | |
| 1056 = _heapinfo[_heapinfo[block].free.next].free.next; | |
| 1057 _heapinfo[_heapinfo[block].free.next].free.prev = block; | |
| 1058 --_chunks_free; | |
| 1059 } | |
| 1060 | |
| 1061 /* How many trailing free blocks are there now? */ | |
| 1062 blocks = _heapinfo[block].free.size; | |
| 1063 | |
| 1064 /* Where is the current end of accessible core? */ | |
| 1065 curbrk = (*__morecore) (0); | |
| 1066 | |
| 1067 if (_heaplimit != 0 && curbrk == ADDRESS (_heaplimit)) | |
| 1068 { | |
| 1069 /* The end of the malloc heap is at the end of accessible core. | |
| 1070 It's possible that moving _heapinfo will allow us to | |
| 1071 return some space to the system. */ | |
| 1072 | |
| 1073 __malloc_size_t info_block = BLOCK (_heapinfo); | |
| 1074 __malloc_size_t info_blocks = _heapinfo[info_block].busy.info.size; | |
| 1075 __malloc_size_t prev_block = _heapinfo[block].free.prev; | |
| 1076 __malloc_size_t prev_blocks = _heapinfo[prev_block].free.size; | |
| 1077 __malloc_size_t next_block = _heapinfo[block].free.next; | |
| 1078 __malloc_size_t next_blocks = _heapinfo[next_block].free.size; | |
| 1079 | |
| 1080 if (/* Win if this block being freed is last in core, the info table | |
| 1081 is just before it, the previous free block is just before the | |
| 1082 info table, and the two free blocks together form a useful | |
| 1083 amount to return to the system. */ | |
| 1084 (block + blocks == _heaplimit && | |
| 1085 info_block + info_blocks == block && | |
| 1086 prev_block != 0 && prev_block + prev_blocks == info_block && | |
| 1087 blocks + prev_blocks >= lesscore_threshold) || | |
| 1088 /* Nope, not the case. We can also win if this block being | |
| 1089 freed is just before the info table, and the table extends | |
| 1090 to the end of core or is followed only by a free block, | |
| 1091 and the total free space is worth returning to the system. */ | |
| 1092 (block + blocks == info_block && | |
| 1093 ((info_block + info_blocks == _heaplimit && | |
| 1094 blocks >= lesscore_threshold) || | |
| 1095 (info_block + info_blocks == next_block && | |
| 1096 next_block + next_blocks == _heaplimit && | |
| 1097 blocks + next_blocks >= lesscore_threshold))) | |
| 1098 ) | |
| 1099 { | |
| 1100 malloc_info *newinfo; | |
| 1101 __malloc_size_t oldlimit = _heaplimit; | |
| 1102 | |
| 1103 /* Free the old info table, clearing _heaplimit to avoid | |
| 1104 recursion into this code. We don't want to return the | |
| 1105 table's blocks to the system before we have copied them to | |
| 1106 the new location. */ | |
| 1107 _heaplimit = 0; | |
| 1108 _free_internal (_heapinfo); | |
| 1109 _heaplimit = oldlimit; | |
| 1110 | |
| 1111 /* Tell malloc to search from the beginning of the heap for | |
| 1112 free blocks, so it doesn't reuse the ones just freed. */ | |
| 1113 _heapindex = 0; | |
| 1114 | |
| 1115 /* Allocate new space for the info table and move its data. */ | |
| 1116 newinfo = (malloc_info *) _malloc_internal (info_blocks | |
| 1117 * BLOCKSIZE); | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1118 PROTECT_MALLOC_STATE (0); |
| 17130 | 1119 memmove (newinfo, _heapinfo, info_blocks * BLOCKSIZE); |
| 1120 _heapinfo = newinfo; | |
| 1121 | |
| 1122 /* We should now have coalesced the free block with the | |
| 1123 blocks freed from the old info table. Examine the entire | |
| 1124 trailing free block to decide below whether to return some | |
| 1125 to the system. */ | |
| 1126 block = _heapinfo[0].free.prev; | |
| 1127 blocks = _heapinfo[block].free.size; | |
| 1128 } | |
| 1129 | |
| 1130 /* Now see if we can return stuff to the system. */ | |
| 1131 if (block + blocks == _heaplimit && blocks >= lesscore_threshold) | |
| 1132 { | |
| 1133 register __malloc_size_t bytes = blocks * BLOCKSIZE; | |
| 1134 _heaplimit -= blocks; | |
| 1135 (*__morecore) (-bytes); | |
| 1136 _heapinfo[_heapinfo[block].free.prev].free.next | |
| 1137 = _heapinfo[block].free.next; | |
| 1138 _heapinfo[_heapinfo[block].free.next].free.prev | |
| 1139 = _heapinfo[block].free.prev; | |
| 1140 block = _heapinfo[block].free.prev; | |
| 1141 --_chunks_free; | |
| 1142 _bytes_free -= bytes; | |
| 1143 } | |
| 1144 } | |
| 1145 | |
| 1146 /* Set the next search to begin at this block. */ | |
| 1147 _heapindex = block; | |
| 1148 break; | |
| 1149 | |
| 1150 default: | |
| 1151 /* Do some of the statistics. */ | |
| 1152 --_chunks_used; | |
| 1153 _bytes_used -= 1 << type; | |
| 1154 ++_chunks_free; | |
| 1155 _bytes_free += 1 << type; | |
| 1156 | |
| 1157 /* Get the address of the first free fragment in this block. */ | |
| 1158 prev = (struct list *) ((char *) ADDRESS (block) + | |
| 1159 (_heapinfo[block].busy.info.frag.first << type)); | |
| 1160 | |
| 1161 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1) | |
| 1162 { | |
| 1163 /* If all fragments of this block are free, remove them | |
| 1164 from the fragment list and free the whole block. */ | |
| 1165 next = prev; | |
| 1166 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> type); ++i) | |
| 1167 next = next->next; | |
| 1168 prev->prev->next = next; | |
| 1169 if (next != NULL) | |
| 1170 next->prev = prev->prev; | |
| 1171 _heapinfo[block].busy.type = 0; | |
| 1172 _heapinfo[block].busy.info.size = 1; | |
| 1173 | |
| 1174 /* Keep the statistics accurate. */ | |
| 1175 ++_chunks_used; | |
| 1176 _bytes_used += BLOCKSIZE; | |
| 1177 _chunks_free -= BLOCKSIZE >> type; | |
| 1178 _bytes_free -= BLOCKSIZE; | |
| 1179 | |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1180 #ifdef GC_MALLOC_CHECK |
|
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1181 _free_internal (ADDRESS (block)); |
|
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1182 #else |
| 17130 | 1183 free (ADDRESS (block)); |
|
32693
8223a86fa594
(_malloc_internal) [GC_MALLOC_CHECK]: Use
Gerd Moellmann <gerd@gnu.org>
parents:
29837
diff
changeset
|
1184 #endif |
| 17130 | 1185 } |
| 1186 else if (_heapinfo[block].busy.info.frag.nfree != 0) | |
| 1187 { | |
| 1188 /* If some fragments of this block are free, link this | |
| 1189 fragment into the fragment list after the first free | |
| 1190 fragment of this block. */ | |
| 1191 next = (struct list *) ptr; | |
| 1192 next->next = prev->next; | |
| 1193 next->prev = prev; | |
| 1194 prev->next = next; | |
| 1195 if (next->next != NULL) | |
| 1196 next->next->prev = next; | |
| 1197 ++_heapinfo[block].busy.info.frag.nfree; | |
| 1198 } | |
| 1199 else | |
| 1200 { | |
| 1201 /* No fragments of this block are free, so link this | |
| 1202 fragment into the fragment list and announce that | |
| 1203 it is the first free fragment of this block. */ | |
| 1204 prev = (struct list *) ptr; | |
| 1205 _heapinfo[block].busy.info.frag.nfree = 1; | |
| 1206 _heapinfo[block].busy.info.frag.first = (unsigned long int) | |
| 1207 ((unsigned long int) ((char *) ptr - (char *) NULL) | |
| 1208 % BLOCKSIZE >> type); | |
| 1209 prev->next = _fraghead[type].next; | |
| 1210 prev->prev = &_fraghead[type]; | |
| 1211 prev->prev->next = prev; | |
| 1212 if (prev->next != NULL) | |
| 1213 prev->next->prev = prev; | |
| 1214 } | |
| 1215 break; | |
| 1216 } | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1217 |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1218 PROTECT_MALLOC_STATE (1); |
| 17130 | 1219 } |
| 1220 | |
| 1221 /* Return memory to the heap. */ | |
|
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
1222 |
|
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
1223 FREE_RETURN_TYPE |
| 17130 | 1224 free (ptr) |
| 1225 __ptr_t ptr; | |
| 1226 { | |
| 1227 if (__free_hook != NULL) | |
| 1228 (*__free_hook) (ptr); | |
| 1229 else | |
| 1230 _free_internal (ptr); | |
| 1231 } | |
| 1232 | |
| 1233 /* Define the `cfree' alias for `free'. */ | |
| 1234 #ifdef weak_alias | |
| 1235 weak_alias (free, cfree) | |
| 1236 #else | |
| 1237 void | |
| 1238 cfree (ptr) | |
| 1239 __ptr_t ptr; | |
| 1240 { | |
| 1241 free (ptr); | |
| 1242 } | |
| 1243 #endif | |
| 1244 /* Change the size of a block allocated by `malloc'. | |
| 1245 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 1246 Written May 1989 by Mike Haertel. | |
| 1247 | |
| 1248 This library is free software; you can redistribute it and/or | |
| 1249 modify it under the terms of the GNU Library General Public License as | |
| 1250 published by the Free Software Foundation; either version 2 of the | |
| 1251 License, or (at your option) any later version. | |
| 1252 | |
| 1253 This library is distributed in the hope that it will be useful, | |
| 1254 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1255 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 1256 Library General Public License for more details. | |
| 1257 | |
| 1258 You should have received a copy of the GNU Library General Public | |
| 1259 License along with this library; see the file COPYING.LIB. If | |
| 1260 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 1261 Cambridge, MA 02139, USA. | |
| 1262 | |
| 1263 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1264 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1265 | |
| 1266 #ifndef _MALLOC_INTERNAL | |
| 1267 #define _MALLOC_INTERNAL | |
| 1268 #include <malloc.h> | |
| 1269 #endif | |
| 1270 | |
| 1271 | |
| 1272 | |
| 1273 /* Cope with systems lacking `memmove'. */ | |
| 1274 #if (defined (MEMMOVE_MISSING) || \ | |
| 1275 !defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG)) | |
| 1276 | |
| 1277 #ifdef emacs | |
| 1278 #undef __malloc_safe_bcopy | |
| 1279 #define __malloc_safe_bcopy safe_bcopy | |
| 1280 #else | |
| 1281 | |
| 1282 /* Snarfed directly from Emacs src/dispnew.c: | |
| 1283 XXX Should use system bcopy if it handles overlap. */ | |
| 1284 | |
| 1285 /* Like bcopy except never gets confused by overlap. */ | |
| 1286 | |
| 1287 void | |
| 1288 __malloc_safe_bcopy (afrom, ato, size) | |
| 1289 __ptr_t afrom; | |
| 1290 __ptr_t ato; | |
| 1291 __malloc_size_t size; | |
| 1292 { | |
| 1293 char *from = afrom, *to = ato; | |
| 1294 | |
| 1295 if (size <= 0 || from == to) | |
| 1296 return; | |
| 1297 | |
| 1298 /* If the source and destination don't overlap, then bcopy can | |
| 1299 handle it. If they do overlap, but the destination is lower in | |
| 1300 memory than the source, we'll assume bcopy can handle that. */ | |
| 1301 if (to < from || from + size <= to) | |
| 1302 bcopy (from, to, size); | |
| 1303 | |
| 1304 /* Otherwise, we'll copy from the end. */ | |
| 1305 else | |
| 1306 { | |
| 1307 register char *endf = from + size; | |
| 1308 register char *endt = to + size; | |
| 1309 | |
| 1310 /* If TO - FROM is large, then we should break the copy into | |
| 1311 nonoverlapping chunks of TO - FROM bytes each. However, if | |
| 1312 TO - FROM is small, then the bcopy function call overhead | |
| 1313 makes this not worth it. The crossover point could be about | |
| 1314 anywhere. Since I don't think the obvious copy loop is too | |
| 1315 bad, I'm trying to err in its favor. */ | |
| 1316 if (to - from < 64) | |
| 1317 { | |
| 1318 do | |
| 1319 *--endt = *--endf; | |
| 1320 while (endf != from); | |
| 1321 } | |
| 1322 else | |
| 1323 { | |
| 1324 for (;;) | |
| 1325 { | |
| 1326 endt -= (to - from); | |
| 1327 endf -= (to - from); | |
| 1328 | |
| 1329 if (endt < to) | |
| 1330 break; | |
| 1331 | |
| 1332 bcopy (endf, endt, to - from); | |
| 1333 } | |
| 1334 | |
| 1335 /* If SIZE wasn't a multiple of TO - FROM, there will be a | |
| 1336 little left over. The amount left over is | |
| 1337 (endt + (to - from)) - to, which is endt - from. */ | |
| 1338 bcopy (from, to, endt - from); | |
| 1339 } | |
| 1340 } | |
| 1341 } | |
| 1342 #endif /* emacs */ | |
| 1343 | |
| 1344 #ifndef memmove | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1345 extern void __malloc_safe_bcopy PP ((__ptr_t, __ptr_t, __malloc_size_t)); |
| 17130 | 1346 #define memmove(to, from, size) __malloc_safe_bcopy ((from), (to), (size)) |
| 1347 #endif | |
| 1348 | |
| 1349 #endif | |
| 1350 | |
| 1351 | |
| 1352 #define min(A, B) ((A) < (B) ? (A) : (B)) | |
| 1353 | |
| 1354 /* Debugging hook for realloc. */ | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1355 __ptr_t (*__realloc_hook) PP ((__ptr_t __ptr, __malloc_size_t __size)); |
| 17130 | 1356 |
| 1357 /* Resize the given region to the new size, returning a pointer | |
| 1358 to the (possibly moved) region. This is optimized for speed; | |
| 1359 some benchmarks seem to indicate that greater compactness is | |
| 1360 achieved by unconditionally allocating and copying to a | |
| 1361 new region. This module has incestuous knowledge of the | |
| 1362 internals of both free and malloc. */ | |
| 1363 __ptr_t | |
| 1364 _realloc_internal (ptr, size) | |
| 1365 __ptr_t ptr; | |
| 1366 __malloc_size_t size; | |
| 1367 { | |
| 1368 __ptr_t result; | |
| 1369 int type; | |
| 1370 __malloc_size_t block, blocks, oldlimit; | |
| 1371 | |
| 1372 if (size == 0) | |
| 1373 { | |
| 1374 _free_internal (ptr); | |
| 1375 return _malloc_internal (0); | |
| 1376 } | |
| 1377 else if (ptr == NULL) | |
| 1378 return _malloc_internal (size); | |
| 1379 | |
| 1380 block = BLOCK (ptr); | |
| 1381 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1382 PROTECT_MALLOC_STATE (0); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1383 |
| 17130 | 1384 type = _heapinfo[block].busy.type; |
| 1385 switch (type) | |
| 1386 { | |
| 1387 case 0: | |
| 1388 /* Maybe reallocate a large block to a small fragment. */ | |
| 1389 if (size <= BLOCKSIZE / 2) | |
| 1390 { | |
| 1391 result = _malloc_internal (size); | |
| 1392 if (result != NULL) | |
| 1393 { | |
| 1394 memcpy (result, ptr, size); | |
| 1395 _free_internal (ptr); | |
| 1396 return result; | |
| 1397 } | |
| 1398 } | |
| 1399 | |
| 1400 /* The new size is a large allocation as well; | |
| 1401 see if we can hold it in place. */ | |
| 1402 blocks = BLOCKIFY (size); | |
| 1403 if (blocks < _heapinfo[block].busy.info.size) | |
| 1404 { | |
| 1405 /* The new size is smaller; return | |
| 1406 excess memory to the free list. */ | |
| 1407 _heapinfo[block + blocks].busy.type = 0; | |
| 1408 _heapinfo[block + blocks].busy.info.size | |
| 1409 = _heapinfo[block].busy.info.size - blocks; | |
| 1410 _heapinfo[block].busy.info.size = blocks; | |
| 1411 /* We have just created a new chunk by splitting a chunk in two. | |
| 1412 Now we will free this chunk; increment the statistics counter | |
| 1413 so it doesn't become wrong when _free_internal decrements it. */ | |
| 1414 ++_chunks_used; | |
| 1415 _free_internal (ADDRESS (block + blocks)); | |
| 1416 result = ptr; | |
| 1417 } | |
| 1418 else if (blocks == _heapinfo[block].busy.info.size) | |
| 1419 /* No size change necessary. */ | |
| 1420 result = ptr; | |
| 1421 else | |
| 1422 { | |
| 1423 /* Won't fit, so allocate a new region that will. | |
| 1424 Free the old region first in case there is sufficient | |
| 1425 adjacent free space to grow without moving. */ | |
| 1426 blocks = _heapinfo[block].busy.info.size; | |
| 1427 /* Prevent free from actually returning memory to the system. */ | |
| 1428 oldlimit = _heaplimit; | |
| 1429 _heaplimit = 0; | |
| 1430 _free_internal (ptr); | |
| 1431 result = _malloc_internal (size); | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1432 PROTECT_MALLOC_STATE (0); |
| 17130 | 1433 if (_heaplimit == 0) |
| 1434 _heaplimit = oldlimit; | |
| 1435 if (result == NULL) | |
| 1436 { | |
| 1437 /* Now we're really in trouble. We have to unfree | |
| 1438 the thing we just freed. Unfortunately it might | |
| 1439 have been coalesced with its neighbors. */ | |
| 1440 if (_heapindex == block) | |
| 1441 (void) _malloc_internal (blocks * BLOCKSIZE); | |
| 1442 else | |
| 1443 { | |
| 1444 __ptr_t previous | |
| 1445 = _malloc_internal ((block - _heapindex) * BLOCKSIZE); | |
| 1446 (void) _malloc_internal (blocks * BLOCKSIZE); | |
| 1447 _free_internal (previous); | |
| 1448 } | |
| 1449 return NULL; | |
| 1450 } | |
| 1451 if (ptr != result) | |
| 1452 memmove (result, ptr, blocks * BLOCKSIZE); | |
| 1453 } | |
| 1454 break; | |
| 1455 | |
| 1456 default: | |
| 1457 /* Old size is a fragment; type is logarithm | |
| 1458 to base two of the fragment size. */ | |
| 1459 if (size > (__malloc_size_t) (1 << (type - 1)) && | |
| 1460 size <= (__malloc_size_t) (1 << type)) | |
| 1461 /* The new size is the same kind of fragment. */ | |
| 1462 result = ptr; | |
| 1463 else | |
| 1464 { | |
| 1465 /* The new size is different; allocate a new space, | |
| 1466 and copy the lesser of the new size and the old. */ | |
| 1467 result = _malloc_internal (size); | |
| 1468 if (result == NULL) | |
| 1469 return NULL; | |
| 1470 memcpy (result, ptr, min (size, (__malloc_size_t) 1 << type)); | |
| 1471 _free_internal (ptr); | |
| 1472 } | |
| 1473 break; | |
| 1474 } | |
| 1475 | |
|
32821
08e5ab6d998f
(state_protected_p, last_state_size, last_heapinfo)
Gerd Moellmann <gerd@gnu.org>
parents:
32693
diff
changeset
|
1476 PROTECT_MALLOC_STATE (1); |
| 17130 | 1477 return result; |
| 1478 } | |
| 1479 | |
| 1480 __ptr_t | |
| 1481 realloc (ptr, size) | |
| 1482 __ptr_t ptr; | |
| 1483 __malloc_size_t size; | |
| 1484 { | |
| 1485 if (!__malloc_initialized && !__malloc_initialize ()) | |
| 1486 return NULL; | |
| 1487 | |
| 1488 return (__realloc_hook != NULL ? *__realloc_hook : _realloc_internal) | |
| 1489 (ptr, size); | |
| 1490 } | |
| 1491 /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc. | |
| 1492 | |
| 1493 This library is free software; you can redistribute it and/or | |
| 1494 modify it under the terms of the GNU Library General Public License as | |
| 1495 published by the Free Software Foundation; either version 2 of the | |
| 1496 License, or (at your option) any later version. | |
| 1497 | |
| 1498 This library is distributed in the hope that it will be useful, | |
| 1499 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1500 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 1501 Library General Public License for more details. | |
| 1502 | |
| 1503 You should have received a copy of the GNU Library General Public | |
| 1504 License along with this library; see the file COPYING.LIB. If | |
| 1505 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 1506 Cambridge, MA 02139, USA. | |
| 1507 | |
| 1508 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1509 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1510 | |
| 1511 #ifndef _MALLOC_INTERNAL | |
| 1512 #define _MALLOC_INTERNAL | |
| 1513 #include <malloc.h> | |
| 1514 #endif | |
| 1515 | |
| 1516 /* Allocate an array of NMEMB elements each SIZE bytes long. | |
| 1517 The entire array is initialized to zeros. */ | |
| 1518 __ptr_t | |
| 1519 calloc (nmemb, size) | |
| 1520 register __malloc_size_t nmemb; | |
| 1521 register __malloc_size_t size; | |
| 1522 { | |
| 1523 register __ptr_t result = malloc (nmemb * size); | |
| 1524 | |
| 1525 if (result != NULL) | |
| 1526 (void) memset (result, 0, nmemb * size); | |
| 1527 | |
| 1528 return result; | |
| 1529 } | |
| 1530 /* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
| 1531 This file is part of the GNU C Library. | |
| 1532 | |
| 1533 The GNU C Library is free software; you can redistribute it and/or modify | |
| 1534 it under the terms of the GNU General Public License as published by | |
| 1535 the Free Software Foundation; either version 2, or (at your option) | |
| 1536 any later version. | |
| 1537 | |
| 1538 The GNU C Library is distributed in the hope that it will be useful, | |
| 1539 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1540 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 1541 GNU General Public License for more details. | |
| 1542 | |
| 1543 You should have received a copy of the GNU General Public License | |
| 1544 along with the GNU C Library; see the file COPYING. If not, write to | |
| 1545 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 1546 | |
| 1547 #ifndef _MALLOC_INTERNAL | |
| 1548 #define _MALLOC_INTERNAL | |
| 1549 #include <malloc.h> | |
| 1550 #endif | |
| 1551 | |
| 1552 #ifndef __GNU_LIBRARY__ | |
| 1553 #define __sbrk sbrk | |
| 1554 #endif | |
| 1555 | |
| 1556 #ifdef __GNU_LIBRARY__ | |
| 1557 /* It is best not to declare this and cast its result on foreign operating | |
| 1558 systems with potentially hostile include files. */ | |
| 1559 | |
| 1560 #include <stddef.h> | |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1561 extern __ptr_t __sbrk PP ((ptrdiff_t increment)); |
| 17130 | 1562 #endif |
| 1563 | |
| 1564 #ifndef NULL | |
| 1565 #define NULL 0 | |
| 1566 #endif | |
| 1567 | |
| 1568 /* Allocate INCREMENT more bytes of data space, | |
| 1569 and return the start of data space, or NULL on errors. | |
| 1570 If INCREMENT is negative, shrink data space. */ | |
| 1571 __ptr_t | |
| 1572 __default_morecore (increment) | |
| 1573 __malloc_ptrdiff_t increment; | |
| 1574 { | |
| 1575 __ptr_t result = (__ptr_t) __sbrk (increment); | |
| 1576 if (result == (__ptr_t) -1) | |
| 1577 return NULL; | |
| 1578 return result; | |
| 1579 } | |
| 1580 /* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc. | |
| 1581 | |
| 1582 This library is free software; you can redistribute it and/or | |
| 1583 modify it under the terms of the GNU Library General Public License as | |
| 1584 published by the Free Software Foundation; either version 2 of the | |
| 1585 License, or (at your option) any later version. | |
| 1586 | |
| 1587 This library is distributed in the hope that it will be useful, | |
| 1588 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1589 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 1590 Library General Public License for more details. | |
| 1591 | |
| 1592 You should have received a copy of the GNU Library General Public | |
| 1593 License along with this library; see the file COPYING.LIB. If | |
| 1594 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 1595 Cambridge, MA 02139, USA. */ | |
| 1596 | |
| 1597 #ifndef _MALLOC_INTERNAL | |
| 1598 #define _MALLOC_INTERNAL | |
| 1599 #include <malloc.h> | |
| 1600 #endif | |
| 1601 | |
| 1602 #if __DJGPP__ - 0 == 1 | |
| 1603 | |
| 1604 /* There is some problem with memalign in DJGPP v1 and we are supposed | |
| 1605 to omit it. Noone told me why, they just told me to do it. */ | |
| 1606 | |
| 1607 #else | |
| 1608 | |
|
37372
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
1609 __ptr_t (*__memalign_hook) PP ((__malloc_size_t __size, |
|
46942d9e7537
(__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
Eli Zaretskii <eliz@gnu.org>
parents:
37268
diff
changeset
|
1610 __malloc_size_t __alignment)); |
| 17130 | 1611 |
| 1612 __ptr_t | |
| 1613 memalign (alignment, size) | |
| 1614 __malloc_size_t alignment; | |
| 1615 __malloc_size_t size; | |
| 1616 { | |
| 1617 __ptr_t result; | |
| 1618 unsigned long int adj, lastadj; | |
| 1619 | |
| 1620 if (__memalign_hook) | |
| 1621 return (*__memalign_hook) (alignment, size); | |
| 1622 | |
| 1623 /* Allocate a block with enough extra space to pad the block with up to | |
| 1624 (ALIGNMENT - 1) bytes if necessary. */ | |
| 1625 result = malloc (size + alignment - 1); | |
| 1626 if (result == NULL) | |
| 1627 return NULL; | |
| 1628 | |
| 1629 /* Figure out how much we will need to pad this particular block | |
| 1630 to achieve the required alignment. */ | |
| 1631 adj = (unsigned long int) ((char *) result - (char *) NULL) % alignment; | |
| 1632 | |
| 1633 do | |
| 1634 { | |
| 1635 /* Reallocate the block with only as much excess as it needs. */ | |
| 1636 free (result); | |
| 1637 result = malloc (adj + size); | |
| 1638 if (result == NULL) /* Impossible unless interrupted. */ | |
| 1639 return NULL; | |
| 1640 | |
| 1641 lastadj = adj; | |
| 1642 adj = (unsigned long int) ((char *) result - (char *) NULL) % alignment; | |
| 1643 /* It's conceivable we might have been so unlucky as to get a | |
| 1644 different block with weaker alignment. If so, this block is too | |
| 1645 short to contain SIZE after alignment correction. So we must | |
| 1646 try again and get another block, slightly larger. */ | |
| 1647 } while (adj > lastadj); | |
| 1648 | |
| 1649 if (adj != 0) | |
| 1650 { | |
| 1651 /* Record this block in the list of aligned blocks, so that `free' | |
| 1652 can identify the pointer it is passed, which will be in the middle | |
| 1653 of an allocated block. */ | |
| 1654 | |
| 1655 struct alignlist *l; | |
| 1656 for (l = _aligned_blocks; l != NULL; l = l->next) | |
| 1657 if (l->aligned == NULL) | |
| 1658 /* This slot is free. Use it. */ | |
| 1659 break; | |
| 1660 if (l == NULL) | |
| 1661 { | |
| 1662 l = (struct alignlist *) malloc (sizeof (struct alignlist)); | |
| 1663 if (l == NULL) | |
| 1664 { | |
| 1665 free (result); | |
| 1666 return NULL; | |
| 1667 } | |
| 1668 l->next = _aligned_blocks; | |
| 1669 _aligned_blocks = l; | |
| 1670 } | |
| 1671 l->exact = result; | |
| 1672 result = l->aligned = (char *) result + alignment - adj; | |
| 1673 } | |
| 1674 | |
| 1675 return result; | |
| 1676 } | |
| 1677 | |
| 1678 #endif /* Not DJGPP v1 */ | |
| 1679 /* Allocate memory on a page boundary. | |
| 1680 Copyright (C) 1991, 92, 93, 94, 96 Free Software Foundation, Inc. | |
| 1681 | |
| 1682 This library is free software; you can redistribute it and/or | |
| 1683 modify it under the terms of the GNU Library General Public License as | |
| 1684 published by the Free Software Foundation; either version 2 of the | |
| 1685 License, or (at your option) any later version. | |
| 1686 | |
| 1687 This library is distributed in the hope that it will be useful, | |
| 1688 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 1689 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 1690 Library General Public License for more details. | |
| 1691 | |
| 1692 You should have received a copy of the GNU Library General Public | |
| 1693 License along with this library; see the file COPYING.LIB. If | |
| 1694 not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
| 1695 Cambridge, MA 02139, USA. | |
| 1696 | |
| 1697 The author may be reached (Email) at the address mike@ai.mit.edu, | |
| 1698 or (US mail) as Mike Haertel c/o Free Software Foundation. */ | |
| 1699 | |
| 1700 #if defined (_MALLOC_INTERNAL) && defined (GMALLOC_INHIBIT_VALLOC) | |
| 1701 | |
| 1702 /* Emacs defines GMALLOC_INHIBIT_VALLOC to avoid this definition | |
| 1703 on MSDOS, where it conflicts with a system header file. */ | |
| 1704 | |
| 1705 #define ELIDE_VALLOC | |
| 1706 | |
| 1707 #endif | |
| 1708 | |
| 1709 #ifndef ELIDE_VALLOC | |
| 1710 | |
| 1711 #if defined (__GNU_LIBRARY__) || defined (_LIBC) | |
| 1712 #include <stddef.h> | |
| 1713 #include <sys/cdefs.h> | |
|
17131
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1714 #if defined (__GLIBC__) && __GLIBC__ >= 2 |
|
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1715 /* __getpagesize is already declared in <unistd.h> with return type int */ |
|
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1716 #else |
|
18667
d4f53287fc5b
Rename macro __P to PP.
Richard M. Stallman <rms@gnu.org>
parents:
17131
diff
changeset
|
1717 extern size_t __getpagesize PP ((void)); |
|
17131
6ff1e0aec51e
[__GLIBC__ >= 2]: Don't declare __getpagesize.
Karl Heuer <kwzh@gnu.org>
parents:
17130
diff
changeset
|
1718 #endif |
| 17130 | 1719 #else |
| 1720 #include "getpagesize.h" | |
| 1721 #define __getpagesize() getpagesize() | |
| 1722 #endif | |
| 1723 | |
| 1724 #ifndef _MALLOC_INTERNAL | |
| 1725 #define _MALLOC_INTERNAL | |
| 1726 #include <malloc.h> | |
| 1727 #endif | |
| 1728 | |
| 1729 static __malloc_size_t pagesize; | |
| 1730 | |
| 1731 __ptr_t | |
| 1732 valloc (size) | |
| 1733 __malloc_size_t size; | |
| 1734 { | |
| 1735 if (pagesize == 0) | |
| 1736 pagesize = __getpagesize (); | |
| 1737 | |
| 1738 return memalign (pagesize, size); | |
| 1739 } | |
| 1740 | |
| 1741 #endif /* Not ELIDE_VALLOC. */ | |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1742 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1743 #ifdef GC_MCHECK |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1744 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1745 /* Standard debugging hooks for `malloc'. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1746 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1747 Written May 1989 by Mike Haertel. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1748 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1749 This library is free software; you can redistribute it and/or |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1750 modify it under the terms of the GNU Library General Public License as |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1751 published by the Free Software Foundation; either version 2 of the |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1752 License, or (at your option) any later version. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1753 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1754 This library is distributed in the hope that it will be useful, |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1755 but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1756 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1757 Library General Public License for more details. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1758 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1759 You should have received a copy of the GNU Library General Public |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1760 License along with this library; see the file COPYING.LIB. If |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1761 not, write to the Free Software Foundation, Inc., 675 Mass Ave, |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1762 Cambridge, MA 02139, USA. |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1763 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1764 The author may be reached (Email) at the address mike@ai.mit.edu, |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1765 or (US mail) as Mike Haertel c/o Free Software Foundation. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1766 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1767 #ifdef emacs |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1768 #include <stdio.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1769 #else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1770 #ifndef _MALLOC_INTERNAL |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1771 #define _MALLOC_INTERNAL |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1772 #include <malloc.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1773 #include <stdio.h> |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1774 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1775 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1776 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1777 /* Old hook values. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1778 static void (*old_free_hook) __P ((__ptr_t ptr)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1779 static __ptr_t (*old_malloc_hook) __P ((__malloc_size_t size)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1780 static __ptr_t (*old_realloc_hook) __P ((__ptr_t ptr, __malloc_size_t size)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1781 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1782 /* Function to call when something awful happens. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1783 static void (*abortfunc) __P ((enum mcheck_status)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1784 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1785 /* Arbitrary magical numbers. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1786 #define MAGICWORD 0xfedabeeb |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1787 #define MAGICFREE 0xd8675309 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1788 #define MAGICBYTE ((char) 0xd7) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1789 #define MALLOCFLOOD ((char) 0x93) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1790 #define FREEFLOOD ((char) 0x95) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1791 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1792 struct hdr |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1793 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1794 __malloc_size_t size; /* Exact size requested by user. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1795 unsigned long int magic; /* Magic number to check header integrity. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1796 }; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1797 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1798 #if defined(_LIBC) || defined(STDC_HEADERS) || defined(USG) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1799 #define flood memset |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1800 #else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1801 static void flood __P ((__ptr_t, int, __malloc_size_t)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1802 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1803 flood (ptr, val, size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1804 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1805 int val; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1806 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1807 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1808 char *cp = ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1809 while (size--) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1810 *cp++ = val; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1811 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1812 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1813 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1814 static enum mcheck_status checkhdr __P ((const struct hdr *)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1815 static enum mcheck_status |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1816 checkhdr (hdr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1817 const struct hdr *hdr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1818 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1819 enum mcheck_status status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1820 switch (hdr->magic) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1821 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1822 default: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1823 status = MCHECK_HEAD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1824 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1825 case MAGICFREE: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1826 status = MCHECK_FREE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1827 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1828 case MAGICWORD: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1829 if (((char *) &hdr[1])[hdr->size] != MAGICBYTE) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1830 status = MCHECK_TAIL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1831 else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1832 status = MCHECK_OK; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1833 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1834 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1835 if (status != MCHECK_OK) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1836 (*abortfunc) (status); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1837 return status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1838 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1839 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1840 static void freehook __P ((__ptr_t)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1841 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1842 freehook (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1843 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1844 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1845 struct hdr *hdr; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1846 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1847 if (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1848 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1849 hdr = ((struct hdr *) ptr) - 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1850 checkhdr (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1851 hdr->magic = MAGICFREE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1852 flood (ptr, FREEFLOOD, hdr->size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1853 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1854 else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1855 hdr = NULL; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1856 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1857 __free_hook = old_free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1858 free (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1859 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1860 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1861 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1862 static __ptr_t mallochook __P ((__malloc_size_t)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1863 static __ptr_t |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1864 mallochook (size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1865 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1866 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1867 struct hdr *hdr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1868 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1869 __malloc_hook = old_malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1870 hdr = (struct hdr *) malloc (sizeof (struct hdr) + size + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1871 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1872 if (hdr == NULL) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1873 return NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1874 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1875 hdr->size = size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1876 hdr->magic = MAGICWORD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1877 ((char *) &hdr[1])[size] = MAGICBYTE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1878 flood ((__ptr_t) (hdr + 1), MALLOCFLOOD, size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1879 return (__ptr_t) (hdr + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1880 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1881 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1882 static __ptr_t reallochook __P ((__ptr_t, __malloc_size_t)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1883 static __ptr_t |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1884 reallochook (ptr, size) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1885 __ptr_t ptr; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1886 __malloc_size_t size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1887 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1888 struct hdr *hdr = NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1889 __malloc_size_t osize = 0; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1890 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1891 if (ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1892 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1893 hdr = ((struct hdr *) ptr) - 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1894 osize = hdr->size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1895 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1896 checkhdr (hdr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1897 if (size < osize) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1898 flood ((char *) ptr + size, FREEFLOOD, osize - size); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1899 } |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
40670
diff
changeset
|
1900 |
|
32973
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1901 __free_hook = old_free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1902 __malloc_hook = old_malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1903 __realloc_hook = old_realloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1904 hdr = (struct hdr *) realloc ((__ptr_t) hdr, sizeof (struct hdr) + size + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1905 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1906 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1907 __realloc_hook = reallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1908 if (hdr == NULL) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1909 return NULL; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1910 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1911 hdr->size = size; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1912 hdr->magic = MAGICWORD; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1913 ((char *) &hdr[1])[size] = MAGICBYTE; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1914 if (size > osize) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1915 flood ((char *) (hdr + 1) + osize, MALLOCFLOOD, size - osize); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1916 return (__ptr_t) (hdr + 1); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1917 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1918 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1919 static void |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1920 mabort (status) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1921 enum mcheck_status status; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1922 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1923 const char *msg; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1924 switch (status) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1925 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1926 case MCHECK_OK: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1927 msg = "memory is consistent, library is buggy"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1928 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1929 case MCHECK_HEAD: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1930 msg = "memory clobbered before allocated block"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1931 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1932 case MCHECK_TAIL: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1933 msg = "memory clobbered past end of allocated block"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1934 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1935 case MCHECK_FREE: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1936 msg = "block freed twice"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1937 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1938 default: |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1939 msg = "bogus mcheck_status, library is buggy"; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1940 break; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1941 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1942 #ifdef __GNU_LIBRARY__ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1943 __libc_fatal (msg); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1944 #else |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1945 fprintf (stderr, "mcheck: %s\n", msg); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1946 fflush (stderr); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1947 abort (); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1948 #endif |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1949 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1950 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1951 static int mcheck_used = 0; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1952 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1953 int |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1954 mcheck (func) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1955 void (*func) __P ((enum mcheck_status)); |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1956 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1957 abortfunc = (func != NULL) ? func : &mabort; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1958 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1959 /* These hooks may not be safely inserted if malloc is already in use. */ |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1960 if (!__malloc_initialized && !mcheck_used) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1961 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1962 old_free_hook = __free_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1963 __free_hook = freehook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1964 old_malloc_hook = __malloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1965 __malloc_hook = mallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1966 old_realloc_hook = __realloc_hook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1967 __realloc_hook = reallochook; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1968 mcheck_used = 1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1969 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1970 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1971 return mcheck_used ? 0 : -1; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1972 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1973 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1974 enum mcheck_status |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1975 mprobe (__ptr_t ptr) |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1976 { |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1977 return mcheck_used ? checkhdr (ptr) : MCHECK_DISABLED; |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1978 } |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1979 |
|
c3f68b4d9e37
Add code from mcheck.c of glibc-1.09.1.
Gerd Moellmann <gerd@gnu.org>
parents:
32821
diff
changeset
|
1980 #endif /* GC_MCHECK */ |
| 52401 | 1981 |
| 1982 /* arch-tag: 93dce5c0-f49a-41b5-86b1-f91c4169c02e | |
| 1983 (do not change this comment) */ |
