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