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