annotate src/gmalloc.c @ 64:a01e7a40045c r19-16-pre7

Import from CVS: tag r19-16-pre7
author cvs
date Mon, 13 Aug 2007 08:59:30 +0200
parents 441bb1e64a06
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Synched up with: Not synched up with FSF 19.28, even though I
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 thought I did so. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 /* Get the configuration files if we're being compiled for Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 # include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 # include "getpagesize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 # ifndef HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 # define HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #if defined (__STDC__) && !defined (STDC_HEADERS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 /* The ANSI standard says that defining __STDC__ to a non-zero value means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 that the compiler conforms to that standard. The standard requires
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 certain header files and library functions to be present. Therefore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 if your compiler defines __STDC__ to non-0 but does not have ANSI headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 and the ANSI library routines, then your compiler is buggy. Conversely,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 an ANSI-conforming environment (which has both the ANSI headers and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 library routines, i.e., stdlib.h and `memmove') does not necessarily
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 define the STDC_HEADERS flag. Lucid Emacs requires an ANSI compiler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Therefore, there is no need to consult the abominable STDC_HEADERS flag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 -- jwz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 # define STDC_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define __const const
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 /* DO NOT EDIT THIS FILE -- it is automagically generated. -*- C -*- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* Bwaa-haa-haa! Not a chance that this is actually true! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /* The malloc headers and source files from the C library follow here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* Declarations for `malloc' and friends.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #ifndef _MALLOC_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #define _MALLOC_H 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #ifdef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #ifdef HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #if defined(_LIBC) || defined(STDC_HEADERS) || defined(USG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #ifndef memset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #define memset(s, zero, n) bzero ((s), (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #ifndef memcpy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #define memcpy(d, s, n) bcopy ((s), (d), (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #if defined(__GNU_LIBRARY__) || defined(__STDC__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #include <limits.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #define CHAR_BIT 8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #ifdef HAVE_UNISTD_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #include <unistd.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #endif /* _MALLOC_INTERNAL. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 #ifdef __cplusplus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 extern "C"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* #### XEmacs change for Solaris */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #if defined (__cplusplus) || (defined (__STDC__) && __STDC__) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (defined (__STDC__) && defined (SOLARIS2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #undef __P
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #define __P(args) args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #undef __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #define __ptr_t void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #else /* Not C++ or ANSI C. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #undef __P
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #define __P(args) ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #undef const
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #define const
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 #undef __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #define __ptr_t char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #endif /* C++ or ANSI C. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #ifdef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #include <stddef.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #define __malloc_size_t size_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #ifdef OSF1 /* from grunwald@foobar.cs.colorado.edu */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #define __malloc_size_t unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #define __malloc_size_t unsigned int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #ifndef NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #define NULL 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 /* XEmacs: I thought this should be int under SunOS, but that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 apparently fails. Curses on all this shit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define __free_ret_t void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 /* XEmacs: I tried commenting these out and including stdlib.h,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 but that fails badly. Urk! This sucks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 /* Allocate SIZE bytes of memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 extern __ptr_t malloc __P ((size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* Re-allocate the previously allocated block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 in __ptr_t, making the new block SIZE bytes long. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 extern __ptr_t realloc __P ((__ptr_t __ptr, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 extern __ptr_t calloc __P ((size_t __nmemb, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 extern __free_ret_t free __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 extern __ptr_t memalign __P ((size_t __alignment, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 /* Allocate SIZE bytes on a page boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 extern __ptr_t valloc __P ((size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #ifdef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 /* The allocator divides the heap into blocks of fixed size; large
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 requests receive one or more whole blocks, and small requests
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 receive a fragment of a block. Fragment sizes are powers of two,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 and all fragments of a block are the same size. When all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 fragments in a block have been freed, the block itself is freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #define INT_BIT (CHAR_BIT * sizeof(int))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #define BLOCKLOG (INT_BIT > 16 ? 12 : 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define BLOCKSIZE (1 << BLOCKLOG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* Determine the amount of memory spanned by the initial heap table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (not an absolute limit). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define HEAP (INT_BIT > 16 ? 4194304 : 65536)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* Number of contiguous free blocks allowed to build up at the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 memory before they will be returned to the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 #define FINAL_FREE_BLOCKS 8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 /* Data structure giving per-block information. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 typedef union
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 /* Heap information for a busy block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 /* Zero for a large block, or positive giving the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 logarithm to the base two of the fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 int type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 union
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 __malloc_size_t nfree; /* Free frags in a fragmented block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 __malloc_size_t first; /* First free fragment of the block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 } frag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 /* Size (in blocks) of a large cluster. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 } info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 } busy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 /* Heap information for a free block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (that may be the first of a free cluster). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 __malloc_size_t size; /* Size (in blocks) of a free cluster. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 __malloc_size_t next; /* Index of next free cluster. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 __malloc_size_t prev; /* Index of previous free cluster. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 } free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 } malloc_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 /* Pointer to first block of the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 extern char *_heapbase;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 /* Table indexed by block number giving per-block information. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 extern malloc_info *_heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 /* Address to block number and vice versa. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 /* Current search index for the heap table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 extern __malloc_size_t _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 /* Limit of valid info table indices. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 extern __malloc_size_t _heaplimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* Doubly linked lists of free fragments. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 struct list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 struct list *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 struct list *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 /* Free list headers for each fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 extern struct list _fraghead[];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 /* List of blocks allocated with `memalign' (or `valloc'). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 struct alignlist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 struct alignlist *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 __ptr_t aligned; /* The address that memaligned returned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 __ptr_t exact; /* The address that malloc returned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 extern struct alignlist *_aligned_blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* Instrumentation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 extern __malloc_size_t _chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 extern __malloc_size_t _bytes_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 extern __malloc_size_t _chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 extern __malloc_size_t _bytes_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 /* Internal version of `free' used in `morecore' (malloc.c). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 extern void _free_internal __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #endif /* _MALLOC_INTERNAL. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 /* Underlying allocation function; successive calls should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 return contiguous pieces of memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 extern __ptr_t (*__morecore) __P ((ptrdiff_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* Default value of `__morecore'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 extern __ptr_t __default_morecore __P ((ptrdiff_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 /* If not NULL, this function is called after each time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 `__morecore' is called to increase the data size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 extern void (*__after_morecore_hook) __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 /* Nonzero if `malloc' has been called and done its initialization. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
261 /* extern int __malloc_initialized; */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 /* Hooks for debugging versions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 extern void (*__free_hook) __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 extern __ptr_t (*__malloc_hook) __P ((size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 extern __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 /* Return values for `mprobe': these are the kinds of inconsistencies that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 `mcheck' enables detection of. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 enum mcheck_status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 MCHECK_DISABLED = -1, /* Consistency checking is not turned on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 MCHECK_OK, /* Block is fine. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 MCHECK_FREE, /* Block freed twice. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 MCHECK_HEAD, /* Memory before the block was clobbered. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 MCHECK_TAIL /* Memory after the block was clobbered. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 /* Activate a standard collection of debugging hooks. This must be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 before `malloc' is ever called. ABORTFUNC is called with an error code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (see enum above) when an inconsistency is detected. If ABORTFUNC is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 null, the standard function prints on stderr and then calls `abort'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 extern int mcheck __P ((void (*__abortfunc) __P ((enum mcheck_status))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 /* Check for aberrations in a particular malloc'd block. You must have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 called `mcheck' already. These are the same checks that `mcheck' does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 when you free or reallocate a block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 extern enum mcheck_status mprobe __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* Activate a standard collection of tracing hooks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 extern void mtrace __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 extern void muntrace __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* Statistics available to the user. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 struct mstats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 __malloc_size_t bytes_total; /* Total size of the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 __malloc_size_t chunks_used; /* Chunks allocated by the user. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 __malloc_size_t bytes_used; /* Byte total of user-allocated chunks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 __malloc_size_t chunks_free; /* Chunks in the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 __malloc_size_t bytes_free; /* Byte total of chunks in the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 /* Pick up the current statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 extern struct mstats mstats __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 /* Call WARNFUN with a warning message when memory usage is high. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 extern void memory_warnings __P ((__ptr_t __start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 void (*__warnfun) __P ((__const char *))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 #if 0 /* unused in this file, and conflicting prototypes anyway */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 /* Relocating allocator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 /* Allocate SIZE bytes, and store the address in *HANDLEPTR. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 extern __ptr_t r_alloc __P ((__ptr_t *__handleptr, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 /* Free the storage allocated in HANDLEPTR. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 extern void r_alloc_free __P ((__ptr_t *__handleptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 /* Adjust the block at HANDLEPTR to be SIZE bytes long. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 extern __ptr_t r_re_alloc __P ((__ptr_t *__handleptr, size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 #ifdef __cplusplus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 #endif /* malloc.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 /* Allocate memory on a page boundary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 #if defined (__GNU_LIBRARY__) || defined (_LIBC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 #include <stddef.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 #include <sys/cdefs.h>
26
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
354 #if ! (defined (__GLIBC__) && (__GLIBC__ >= 2))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 extern size_t __getpagesize __P ((void));
26
441bb1e64a06 Import from CVS: tag r19-15b96
cvs
parents: 16
diff changeset
356 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 #include "getpagesize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 #define __getpagesize() getpagesize()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 static __malloc_size_t pagesize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 valloc (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 if (pagesize == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 pagesize = __getpagesize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 return memalign (pagesize, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 /* Memory allocator `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 /* How to really get more memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 __ptr_t (*__morecore) __P ((ptrdiff_t __size)) = __default_morecore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 /* Debugging hook for `malloc'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 __ptr_t (*__malloc_hook) __P ((__malloc_size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 /* Pointer to the base of the first block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 char *_heapbase;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 /* Block information table. Allocated with align/__free (not malloc/free). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 malloc_info *_heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 /* Number of info entries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 static __malloc_size_t heapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 /* Search index in the info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 __malloc_size_t _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 /* Limit of valid info table indices. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 __malloc_size_t _heaplimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 /* Free lists for each fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 struct list _fraghead[BLOCKLOG];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 /* Instrumentation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 __malloc_size_t _chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 __malloc_size_t _bytes_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 __malloc_size_t _chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 __malloc_size_t _bytes_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 /* Are you experienced? */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
436 static int __malloc_initialized;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 void (*__after_morecore_hook) __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 /* Aligned allocation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 static __ptr_t align __P ((__malloc_size_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 static __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 align (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 unsigned long int adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 result = (*__morecore) (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 adj = (unsigned long int) ((unsigned long int) ((char *) result -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (char *) NULL)) % BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 if (adj != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 adj = BLOCKSIZE - adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (void) (*__morecore) (adj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 result = (char *) result + adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 if (__after_morecore_hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (*__after_morecore_hook) ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 /* Set everything up and remember that we have. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 static int initialize __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 initialize ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 heapsize = HEAP / BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 _heapinfo = (malloc_info *) align (heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 if (_heapinfo == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 memset (_heapinfo, 0, heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 _heapinfo[0].free.size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 _heapindex = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 _heapbase = (char *) _heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 /* Account for the _heapinfo block itself in the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 _bytes_used = heapsize * sizeof (malloc_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 _chunks_used = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 __malloc_initialized = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 /* Get neatly aligned memory, initializing or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 growing the heap info table as necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 static __ptr_t morecore __P ((__malloc_size_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 static __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 morecore (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 malloc_info *newinfo, *oldinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 __malloc_size_t newsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 result = align (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 /* Check if we need to grow the info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 if ((__malloc_size_t) BLOCK ((char *) result + size) > heapsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 newsize = heapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 while ((__malloc_size_t) BLOCK ((char *) result + size) > newsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 newsize *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 newinfo = (malloc_info *) align (newsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 if (newinfo == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (*__morecore) (-size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 memset (&newinfo[heapsize], 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (newsize - heapsize) * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 oldinfo = _heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 newinfo[BLOCK (oldinfo)].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 newinfo[BLOCK (oldinfo)].busy.info.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 = BLOCKIFY (heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 _heapinfo = newinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 /* Account for the _heapinfo block itself in the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 _bytes_used += newsize * sizeof (malloc_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 _free_internal (oldinfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 heapsize = newsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 _heaplimit = BLOCK ((char *) result + size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 /* Allocate memory from the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 malloc (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 __malloc_size_t block, blocks, lastblocks, start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 __malloc_size_t i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 struct list *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 /* ANSI C allows `malloc (0)' to either return NULL, or to return a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 valid address you can realloc and free (though not dereference).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 It turns out that some extant code (sunrpc, at least Ultrix's version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 expects `malloc (0)' to return non-NULL and breaks otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Be compatible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 /* there is at least one Xt bug where calloc(n,x) is blindly called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 where n can be 0, and yet if 0 is returned, Xt barfs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 size = sizeof (struct list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 if (__malloc_hook != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 return (*__malloc_hook) (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 if (!__malloc_initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 if (!initialize ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 #ifdef SUNOS_LOCALTIME_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 /* Workaround for localtime() allocating 8 bytes and writing 9 bug... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 if (size < 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 size = 16;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 if (size < sizeof (struct list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 size = sizeof (struct list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 /* Determine the allocation policy based on the request size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 if (size <= BLOCKSIZE / 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 /* Small allocation to receive a fragment of a block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Determine the logarithm to base two of the fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 __malloc_size_t log = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 --size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 while ((size /= 2) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 ++log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 /* Look in the fragment lists for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 free fragment of the desired size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 next = _fraghead[log].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 if (next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 /* There are free fragments of this size.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 Pop a fragment out of the fragment list and return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 Update the block's nfree and first counters. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 result = (__ptr_t) next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 next->prev->next = next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 next->next->prev = next->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 if (--_heapinfo[block].busy.info.frag.nfree != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 _heapinfo[block].busy.info.frag.first = (unsigned long int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 ((unsigned long int) ((char *) next->next - (char *) NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 % BLOCKSIZE) >> log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 /* Update the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 _bytes_used += 1 << log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 _bytes_free -= 1 << log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 /* No free fragments of the desired size, so get a new block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 and break it into fragments, returning the first. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 result = malloc (BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 /* Link all fragments but the first into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> log); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 next = (struct list *) ((char *) result + (i << log));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 next->next = _fraghead[log].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 next->prev = &_fraghead[log];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 next->prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 next->next->prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 /* Initialize the nfree and first counters for this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 _heapinfo[block].busy.type = log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 _heapinfo[block].busy.info.frag.nfree = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 _heapinfo[block].busy.info.frag.first = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 _chunks_free += (BLOCKSIZE >> log) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 _bytes_free += BLOCKSIZE - (1 << log);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 _bytes_used -= BLOCKSIZE - (1 << log);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 /* Large allocation to receive one or more blocks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 Search the free list in a circle starting at the last place visited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 If we loop completely around without finding a large enough
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 space we will have to get more memory from the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 blocks = BLOCKIFY (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 start = block = _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 while (_heapinfo[block].free.size < blocks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 block = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 if (block == start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 /* Need to get more from the system. Check to see if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 the new core will be contiguous with the final free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 block; if so we don't need to get as much. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 block = _heapinfo[0].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 lastblocks = _heapinfo[block].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 if (_heaplimit != 0 && block + lastblocks == _heaplimit &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (*__morecore) (0) == ADDRESS (block + lastblocks) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (morecore ((blocks - lastblocks) * BLOCKSIZE)) != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 /* Which block we are extending (the `final free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 block' referred to above) might have changed, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 it got combined with a freed info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 block = _heapinfo[0].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 _heapinfo[block].free.size += (blocks - lastblocks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 _bytes_free += (blocks - lastblocks) * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 result = morecore (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 _bytes_used += blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 /* At this point we have found a suitable free list entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 Figure out how to remove what we need from the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 result = ADDRESS (block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 if (_heapinfo[block].free.size > blocks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 /* The block we found has a bit left over,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 so relink the tail end back into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 _heapinfo[block + blocks].free.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 = _heapinfo[block].free.size - blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 _heapinfo[block + blocks].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 _heapinfo[block + blocks].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 = _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 = _heapindex = block + blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 /* The block exactly matches our requirements,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 so just remove it from the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 = _heapindex = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 _bytes_used += blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 _bytes_free -= blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 #ifndef _LIBC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 /* On some ANSI C systems, some libc functions call _malloc, _free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 and _realloc. Make them use the GNU functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 __ptr_t _malloc (__malloc_size_t size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 _malloc (__malloc_size_t size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 return malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 void _free (__ptr_t ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 _free (__ptr_t ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 __ptr_t _realloc (__ptr_t ptr, __malloc_size_t size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 _realloc (__ptr_t ptr, __malloc_size_t size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 return realloc (ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 /* Free a block of memory allocated by `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 Copyright 1990, 1991, 1992, 1994 Free Software Foundation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 /* Debugging hook for free. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 void (*__free_hook) __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 /* List of blocks allocated by memalign. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 struct alignlist *_aligned_blocks = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 /* Return memory to the heap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 Like `free' but don't call a __free_hook if there is one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 _free_internal (ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 __ptr_t ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 int type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 __malloc_size_t block, blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 __malloc_size_t i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 struct list *prev, *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 block = BLOCK (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 type = _heapinfo[block].busy.type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* Get as many statistics as early as we can. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 --_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 /* Find the free cluster previous to this one in the free list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 Start searching at the last block referenced; this may benefit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 programs with locality of allocation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 i = _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 if (i > block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 while (i > block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 i = _heapinfo[i].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 i = _heapinfo[i].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 while (i > 0 && i < block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 i = _heapinfo[i].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 /* Determine how to link this block into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 if (block == i + _heapinfo[i].free.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 /* Coalesce this block with its predecessor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 _heapinfo[i].free.size += _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 block = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 /* Really link this block back into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 _heapinfo[block].free.size = _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 _heapinfo[block].free.next = _heapinfo[i].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 _heapinfo[block].free.prev = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 _heapinfo[i].free.next = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 _heapinfo[_heapinfo[block].free.next].free.prev = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 ++_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 /* Now that the block is linked in, see if we can coalesce it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 with its successor (by deleting its successor from the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 and adding in its size). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 if (block + _heapinfo[block].free.size == _heapinfo[block].free.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 _heapinfo[block].free.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 += _heapinfo[_heapinfo[block].free.next].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 _heapinfo[block].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 = _heapinfo[_heapinfo[block].free.next].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 _heapinfo[_heapinfo[block].free.next].free.prev = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 /* Now see if we can return stuff to the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 blocks = _heapinfo[block].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 if (blocks >= FINAL_FREE_BLOCKS && block + blocks == _heaplimit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 && (*__morecore) (0) == ADDRESS (block + blocks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 __malloc_size_t bytes = blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 _heaplimit -= blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (*__morecore) (-bytes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 block = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 _bytes_free -= bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 /* Set the next search to begin at this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 _heapindex = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 /* Do some of the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 --_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 _bytes_used -= 1 << type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 ++_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 _bytes_free += 1 << type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 /* Get the address of the first free fragment in this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 prev = (struct list *) ((char *) ADDRESS (block) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (_heapinfo[block].busy.info.frag.first << type));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 /* If all fragments of this block are free, remove them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 from the fragment list and free the whole block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 next = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> type); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 next = next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 prev->prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 if (next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 next->prev = prev->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 _heapinfo[block].busy.info.size = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 /* Keep the statistics accurate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 _bytes_used += BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 _chunks_free -= BLOCKSIZE >> type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 _bytes_free -= BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 free (ADDRESS (block));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 else if (_heapinfo[block].busy.info.frag.nfree != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 /* If some fragments of this block are free, link this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 fragment into the fragment list after the first free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 fragment of this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 next = (struct list *) ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 next->next = prev->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 next->prev = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 next->next->prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 ++_heapinfo[block].busy.info.frag.nfree;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 /* No fragments of this block are free, so link this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 fragment into the fragment list and announce that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 it is the first free fragment of this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 prev = (struct list *) ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 _heapinfo[block].busy.info.frag.nfree = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 _heapinfo[block].busy.info.frag.first = (unsigned long int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 ((unsigned long int) ((char *) ptr - (char *) NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 % BLOCKSIZE >> type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 prev->next = _fraghead[type].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 prev->prev = &_fraghead[type];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 prev->prev->next = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 if (prev->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 prev->next->prev = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 /* Return memory to the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 __free_ret_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 free (ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 __ptr_t ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 struct alignlist *l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 if (ptr == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 for (l = _aligned_blocks; l != NULL; l = l->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 if (l->aligned == ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 l->aligned = NULL; /* Mark the slot in the list as free. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ptr = l->exact;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 if (__free_hook != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (*__free_hook) (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 _free_internal (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 /* Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 This file is part of the GNU C Library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 The GNU C Library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 The GNU C Library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 #ifdef _LIBC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 #include <ansidecl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 #include <gnu-stabs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 #undef cfree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 function_alias(cfree, free, void, (ptr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 DEFUN(cfree, (ptr), PTR ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 void cfree (__ptr_t ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 cfree (__ptr_t ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 /* Change the size of a block allocated by `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 /* XEmacs requires an ANSI compiler, and memmove() is part of the ANSI-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 mandated functions. For losing systems like SunOS 4, we provide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 our own memmove(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 #if (defined (MEMMOVE_MISSING) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 !defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 /* Snarfed directly from Emacs src/dispnew.c:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 XXX Should use system bcopy if it handles overlap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 #ifndef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 /* Like bcopy except never gets confused by overlap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 safe_bcopy (from, to, size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 char *from, *to;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 if (size <= 0 || from == to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 /* If the source and destination don't overlap, then bcopy can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 handle it. If they do overlap, but the destination is lower in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 memory than the source, we'll assume bcopy can handle that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 if (to < from || from + size <= to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 bcopy (from, to, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 /* Otherwise, we'll copy from the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 char *endf = from + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 char *endt = to + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 /* If TO - FROM is large, then we should break the copy into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 nonoverlapping chunks of TO - FROM bytes each. However, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 TO - FROM is small, then the bcopy function call overhead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 makes this not worth it. The crossover point could be about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 anywhere. Since I don't think the obvious copy loop is too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 bad, I'm trying to err in its favor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 if (to - from < 64)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 *--endt = *--endf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 while (endf != from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 endt -= (to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 endf -= (to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 if (endt < to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 bcopy (endf, endt, to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 /* If SIZE wasn't a multiple of TO - FROM, there will be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 little left over. The amount left over is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (endt + (to - from)) - to, which is endt - from. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 bcopy (from, to, endt - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 #endif /* Not emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 #define memmove(to, from, size) safe_bcopy ((from), (to), (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 #endif /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 #ifndef min
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 #define min(A, B) ((A) < (B) ? (A) : (B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 /* Debugging hook for realloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, __malloc_size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 /* Resize the given region to the new size, returning a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 to the (possibly moved) region. This is optimized for speed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 some benchmarks seem to indicate that greater compactness is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 achieved by unconditionally allocating and copying to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 new region. This module has incestuous knowledge of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 internals of both free and malloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 realloc (ptr, size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 __ptr_t ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 int type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 __malloc_size_t block, blocks, oldlimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 return malloc (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 else if (ptr == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 return malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 if (__realloc_hook != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 return (*__realloc_hook) (ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 block = BLOCK (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 type = _heapinfo[block].busy.type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 /* Maybe reallocate a large block to a small fragment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 if (size <= BLOCKSIZE / 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 if (result != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 memcpy (result, ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 _free_internal (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 /* The new size is a large allocation as well;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 see if we can hold it in place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 blocks = BLOCKIFY (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 if (blocks < _heapinfo[block].busy.info.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 /* The new size is smaller; return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 excess memory to the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 _heapinfo[block + blocks].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 _heapinfo[block + blocks].busy.info.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 = _heapinfo[block].busy.info.size - blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 /* We have just created a new chunk by splitting a chunk in two.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 Now we will free this chunk; increment the statistics counter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 so it doesn't become wrong when _free_internal decrements it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 _free_internal (ADDRESS (block + blocks));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 else if (blocks == _heapinfo[block].busy.info.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 /* No size change necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 /* Won't fit, so allocate a new region that will.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 Free the old region first in case there is sufficient
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 adjacent free space to grow without moving. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 blocks = _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 /* Prevent free from actually returning memory to the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 oldlimit = _heaplimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 _heaplimit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 _heaplimit = oldlimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 /* Now we're really in trouble. We have to unfree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 the thing we just freed. Unfortunately it might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 have been coalesced with its neighbors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 if (_heapindex == block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (void) malloc (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 __ptr_t previous = malloc ((block - _heapindex) * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (void) malloc (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 free (previous);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 if (ptr != result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 memmove (result, ptr, blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 /* Old size is a fragment; type is logarithm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 to base two of the fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 if (size > (__malloc_size_t) (1 << (type - 1)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 size <= (__malloc_size_t) (1 << type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 /* The new size is the same kind of fragment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 /* The new size is different; allocate a new space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 and copy the lesser of the new size and the old. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 memcpy (result, ptr, min (size, (__malloc_size_t) 1 << type));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 /* Allocate an array of NMEMB elements each SIZE bytes long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 The entire array is initialized to zeros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 calloc (nmemb, size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 __malloc_size_t nmemb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 __ptr_t result = malloc (nmemb * size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 if (result != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (void) memset (result, 0, nmemb * size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 This file is part of the GNU C Library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 The GNU C Library is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 The GNU C Library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 along with the GNU C Library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 the Free the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 #ifndef __GNU_LIBRARY__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 #define __sbrk sbrk
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 #ifdef GMALLOC_NEEDS_SBRK_DECL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 /* some versions of OSF1 need this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 extern __ptr_t __sbrk __P ((ssize_t increment));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 #ifdef __GNU_LIBRARY__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* It is best not to declare this and cast its result on foreign operating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 systems with potentially hostile include files. */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
1302 #if !(defined(linux) && defined(sparc))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 extern __ptr_t __sbrk __P ((int increment));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 #endif
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 0
diff changeset
1306 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 #ifndef NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 #define NULL 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 /* Allocate INCREMENT more bytes of data space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 and return the start of data space, or NULL on errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 If INCREMENT is negative, shrink data space. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 __default_morecore (increment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 #ifdef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 ptrdiff_t increment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 #ifdef OSF1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 long increment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 int increment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 #ifdef OSF1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 __ptr_t result = (__ptr_t) __sbrk ((ssize_t) increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 __ptr_t result = (__ptr_t) __sbrk ((int) increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 if (result == (__ptr_t) -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 memalign (alignment, size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 __malloc_size_t alignment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 __malloc_size_t size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 unsigned long int adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 size = ((size + alignment - 1) / alignment) * alignment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 adj = (unsigned long int) ((unsigned long int) ((char *) result -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 (char *) NULL)) % alignment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 if (adj != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 struct alignlist *l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 for (l = _aligned_blocks; l != NULL; l = l->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 if (l->aligned == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 /* This slot is free. Use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 if (l == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 l = (struct alignlist *) malloc (sizeof (struct alignlist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 if (l == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 free (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 l->next = _aligned_blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 _aligned_blocks = l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 l->exact = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 result = l->aligned = (char *) result + alignment - adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 }