annotate src/gmalloc.c @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents 4be1180a9e89
children 51092a27c943
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__) || \
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 88
diff changeset
101 (defined (__STDC__) && defined (SOLARIS2)) || defined (WINDOWSNT)
0
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
221 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
222 struct list *next;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
223 struct list *prev;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
224 };
0
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
231 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
232 struct alignlist *next;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
233 __ptr_t aligned; /* The address that memaligned returned. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
234 __ptr_t exact; /* The address that malloc returned. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
235 };
0
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. */
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 86
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
271 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
272 MCHECK_DISABLED = -1, /* Consistency checking is not turned on. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
273 MCHECK_OK, /* Block is fine. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
274 MCHECK_FREE, /* Block freed twice. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
275 MCHECK_HEAD, /* Memory before the block was clobbered. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
276 MCHECK_TAIL /* Memory after the block was clobbered. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
277 };
0
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
296 {
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
297 __malloc_size_t bytes_total; /* Total size of the heap. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
298 __malloc_size_t chunks_used; /* Chunks allocated by the user. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
299 __malloc_size_t bytes_used; /* Byte total of user-allocated chunks. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
300 __malloc_size_t chunks_free; /* Chunks in the free list. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
301 __malloc_size_t bytes_free; /* Byte total of chunks in the free list. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
302 };
0
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>
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 88
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));
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 88
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
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
370 valloc (__malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 if (pagesize == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 pagesize = __getpagesize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 return memalign (pagesize, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 /* Memory allocator `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 /* How to really get more memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 __ptr_t (*__morecore) __P ((ptrdiff_t __size)) = __default_morecore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 /* Debugging hook for `malloc'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 __ptr_t (*__malloc_hook) __P ((__malloc_size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 /* Pointer to the base of the first block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 char *_heapbase;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 /* Block information table. Allocated with align/__free (not malloc/free). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 malloc_info *_heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 /* Number of info entries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 static __malloc_size_t heapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 /* Search index in the info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 __malloc_size_t _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 /* Limit of valid info table indices. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 __malloc_size_t _heaplimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 /* Free lists for each fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 struct list _fraghead[BLOCKLOG];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 /* Instrumentation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 __malloc_size_t _chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 __malloc_size_t _bytes_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 __malloc_size_t _chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 __malloc_size_t _bytes_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 /* Are you experienced? */
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 86
diff changeset
435 static int __malloc_initialized;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 void (*__after_morecore_hook) __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* Aligned allocation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 static __ptr_t align __P ((__malloc_size_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 static __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
442 align (__malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 unsigned long int adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 result = (*__morecore) (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 adj = (unsigned long int) ((unsigned long int) ((char *) result -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (char *) NULL)) % BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 if (adj != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 adj = BLOCKSIZE - adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (void) (*__morecore) (adj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 result = (char *) result + adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 if (__after_morecore_hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (*__after_morecore_hook) ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 /* Set everything up and remember that we have. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 static int initialize __P ((void));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 initialize ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 heapsize = HEAP / BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 _heapinfo = (malloc_info *) align (heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 if (_heapinfo == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 memset (_heapinfo, 0, heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 _heapinfo[0].free.size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 _heapindex = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 _heapbase = (char *) _heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 /* Account for the _heapinfo block itself in the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 _bytes_used = heapsize * sizeof (malloc_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 _chunks_used = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 __malloc_initialized = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 /* Get neatly aligned memory, initializing or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 growing the heap info table as necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 static __ptr_t morecore __P ((__malloc_size_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 static __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
490 morecore (__malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 malloc_info *newinfo, *oldinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 __malloc_size_t newsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 result = align (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 /* Check if we need to grow the info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 if ((__malloc_size_t) BLOCK ((char *) result + size) > heapsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 newsize = heapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 while ((__malloc_size_t) BLOCK ((char *) result + size) > newsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 newsize *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 newinfo = (malloc_info *) align (newsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 if (newinfo == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (*__morecore) (-size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 return 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 memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 memset (&newinfo[heapsize], 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (newsize - heapsize) * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 oldinfo = _heapinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 newinfo[BLOCK (oldinfo)].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 newinfo[BLOCK (oldinfo)].busy.info.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 = BLOCKIFY (heapsize * sizeof (malloc_info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 _heapinfo = newinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 /* Account for the _heapinfo block itself in the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 _bytes_used += newsize * sizeof (malloc_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 _free_internal (oldinfo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 heapsize = newsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 _heaplimit = BLOCK ((char *) result + size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 /* Allocate memory from the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
533 malloc (__malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 __malloc_size_t block, blocks, lastblocks, start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 __malloc_size_t i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 struct list *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 /* ANSI C allows `malloc (0)' to either return NULL, or to return a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 valid address you can realloc and free (though not dereference).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 It turns out that some extant code (sunrpc, at least Ultrix's version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 expects `malloc (0)' to return non-NULL and breaks otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 Be compatible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 /* 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
549 where n can be 0, and yet if 0 is returned, Xt barfs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 size = sizeof (struct list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 86
diff changeset
557 if (__malloc_hook != NULL)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 86
diff changeset
558 return (*__malloc_hook) (size);
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 86
diff changeset
559
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 if (!__malloc_initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 if (!initialize ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 #ifdef SUNOS_LOCALTIME_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 /* Workaround for localtime() allocating 8 bytes and writing 9 bug... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 if (size < 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 size = 16;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 if (size < sizeof (struct list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 size = sizeof (struct list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 /* Determine the allocation policy based on the request size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 if (size <= BLOCKSIZE / 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 /* Small allocation to receive a fragment of a block.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 Determine the logarithm to base two of the fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 __malloc_size_t log = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 --size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 while ((size /= 2) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ++log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 /* Look in the fragment lists for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 free fragment of the desired size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 next = _fraghead[log].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 if (next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 /* There are free fragments of this size.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 Pop a fragment out of the fragment list and return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 Update the block's nfree and first counters. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 result = (__ptr_t) next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 next->prev->next = next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 next->next->prev = next->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 if (--_heapinfo[block].busy.info.frag.nfree != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 _heapinfo[block].busy.info.frag.first = (unsigned long int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 ((unsigned long int) ((char *) next->next - (char *) NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 % BLOCKSIZE) >> log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 /* Update the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 _bytes_used += 1 << log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 _bytes_free -= 1 << log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 /* No free fragments of the desired size, so get a new block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 and break it into fragments, returning the first. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 result = malloc (BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 /* Link all fragments but the first into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> log); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 next = (struct list *) ((char *) result + (i << log));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 next->next = _fraghead[log].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 next->prev = &_fraghead[log];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 next->prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 next->next->prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 /* Initialize the nfree and first counters for this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 _heapinfo[block].busy.type = log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 _heapinfo[block].busy.info.frag.nfree = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 _heapinfo[block].busy.info.frag.first = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 _chunks_free += (BLOCKSIZE >> log) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 _bytes_free += BLOCKSIZE - (1 << log);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 _bytes_used -= BLOCKSIZE - (1 << log);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 /* Large allocation to receive one or more blocks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 Search the free list in a circle starting at the last place visited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 If we loop completely around without finding a large enough
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 space we will have to get more memory from the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 blocks = BLOCKIFY (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 start = block = _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 while (_heapinfo[block].free.size < blocks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 block = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 if (block == start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 /* Need to get more from the system. Check to see if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 the new core will be contiguous with the final free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 block; if so we don't need to get as much. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 block = _heapinfo[0].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 lastblocks = _heapinfo[block].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 if (_heaplimit != 0 && block + lastblocks == _heaplimit &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (*__morecore) (0) == ADDRESS (block + lastblocks) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (morecore ((blocks - lastblocks) * BLOCKSIZE)) != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 /* Which block we are extending (the `final free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 block' referred to above) might have changed, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 it got combined with a freed info table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 block = _heapinfo[0].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 _heapinfo[block].free.size += (blocks - lastblocks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 _bytes_free += (blocks - lastblocks) * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 result = morecore (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 block = BLOCK (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 _bytes_used += blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 /* At this point we have found a suitable free list entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 Figure out how to remove what we need from the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 result = ADDRESS (block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 if (_heapinfo[block].free.size > blocks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 /* The block we found has a bit left over,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 so relink the tail end back into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 _heapinfo[block + blocks].free.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 = _heapinfo[block].free.size - blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 _heapinfo[block + blocks].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 _heapinfo[block + blocks].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 = _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 = _heapindex = block + blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 /* The block exactly matches our requirements,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 so just remove it from the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 = _heapindex = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 _bytes_used += blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 _bytes_free -= blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 #ifndef _LIBC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 /* On some ANSI C systems, some libc functions call _malloc, _free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 and _realloc. Make them use the GNU functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 __ptr_t _malloc (__malloc_size_t size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 _malloc (__malloc_size_t size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 return malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 void _free (__ptr_t ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 _free (__ptr_t ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 __ptr_t _realloc (__ptr_t ptr, __malloc_size_t size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 __ptr_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 _realloc (__ptr_t ptr, __malloc_size_t size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 return realloc (ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 /* Free a block of memory allocated by `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 Copyright 1990, 1991, 1992, 1994 Free Software Foundation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 /* Debugging hook for free. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 void (*__free_hook) __P ((__ptr_t __ptr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 /* List of blocks allocated by memalign. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 struct alignlist *_aligned_blocks = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 /* Return memory to the heap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 Like `free' but don't call a __free_hook if there is one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 void
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
780 _free_internal (__ptr_t ptr)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 int type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 __malloc_size_t block, blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 __malloc_size_t i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 struct list *prev, *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 block = BLOCK (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 type = _heapinfo[block].busy.type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 /* Get as many statistics as early as we can. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 --_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* Find the free cluster previous to this one in the free list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 Start searching at the last block referenced; this may benefit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 programs with locality of allocation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 i = _heapindex;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 if (i > block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 while (i > block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 i = _heapinfo[i].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 i = _heapinfo[i].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 while (i > 0 && i < block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 i = _heapinfo[i].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 /* Determine how to link this block into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 if (block == i + _heapinfo[i].free.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 /* Coalesce this block with its predecessor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 _heapinfo[i].free.size += _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 block = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 /* Really link this block back into the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 _heapinfo[block].free.size = _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 _heapinfo[block].free.next = _heapinfo[i].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 _heapinfo[block].free.prev = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 _heapinfo[i].free.next = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 _heapinfo[_heapinfo[block].free.next].free.prev = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 ++_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 /* Now that the block is linked in, see if we can coalesce it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 with its successor (by deleting its successor from the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 and adding in its size). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 if (block + _heapinfo[block].free.size == _heapinfo[block].free.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 _heapinfo[block].free.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 += _heapinfo[_heapinfo[block].free.next].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 _heapinfo[block].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 = _heapinfo[_heapinfo[block].free.next].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 _heapinfo[_heapinfo[block].free.next].free.prev = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 /* Now see if we can return stuff to the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 blocks = _heapinfo[block].free.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 if (blocks >= FINAL_FREE_BLOCKS && block + blocks == _heaplimit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 && (*__morecore) (0) == ADDRESS (block + blocks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 __malloc_size_t bytes = blocks * BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 _heaplimit -= blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (*__morecore) (-bytes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 _heapinfo[_heapinfo[block].free.prev].free.next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 = _heapinfo[block].free.next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 _heapinfo[_heapinfo[block].free.next].free.prev
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 block = _heapinfo[block].free.prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 --_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 _bytes_free -= bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 /* Set the next search to begin at this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 _heapindex = block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 /* Do some of the statistics. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 --_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 _bytes_used -= 1 << type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 ++_chunks_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 _bytes_free += 1 << type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 /* Get the address of the first free fragment in this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 prev = (struct list *) ((char *) ADDRESS (block) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (_heapinfo[block].busy.info.frag.first << type));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 /* If all fragments of this block are free, remove them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 from the fragment list and free the whole block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 next = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> type); ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 next = next->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 prev->prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 if (next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 next->prev = prev->prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 _heapinfo[block].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 _heapinfo[block].busy.info.size = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 /* Keep the statistics accurate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 _bytes_used += BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 _chunks_free -= BLOCKSIZE >> type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 _bytes_free -= BLOCKSIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 free (ADDRESS (block));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 else if (_heapinfo[block].busy.info.frag.nfree != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 /* If some fragments of this block are free, link this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 fragment into the fragment list after the first free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 fragment of this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 next = (struct list *) ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 next->next = prev->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 next->prev = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 prev->next = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 if (next->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 next->next->prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 ++_heapinfo[block].busy.info.frag.nfree;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 /* No fragments of this block are free, so link this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 fragment into the fragment list and announce that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 it is the first free fragment of this block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 prev = (struct list *) ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 _heapinfo[block].busy.info.frag.nfree = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 _heapinfo[block].busy.info.frag.first = (unsigned long int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 ((unsigned long int) ((char *) ptr - (char *) NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 % BLOCKSIZE >> type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 prev->next = _fraghead[type].next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 prev->prev = &_fraghead[type];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 prev->prev->next = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 if (prev->next != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 prev->next->prev = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 /* Return memory to the heap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 __free_ret_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
932 free (__ptr_t ptr)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 struct alignlist *l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 if (ptr == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 for (l = _aligned_blocks; l != NULL; l = l->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 if (l->aligned == ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 l->aligned = NULL; /* Mark the slot in the list as free. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 ptr = l->exact;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 if (__free_hook != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (*__free_hook) (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 _free_internal (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 /* Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 This file is part of the GNU C Library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 The GNU C Library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 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
961 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 #ifdef _LIBC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 #include <ansidecl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 #include <gnu-stabs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 #undef cfree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 function_alias(cfree, free, void, (ptr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 DEFUN(cfree, (ptr), PTR ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 void cfree (__ptr_t ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 cfree (__ptr_t 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 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 /* Change the size of a block allocated by `malloc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 Written May 1989 by Mike Haertel.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 /* XEmacs requires an ANSI compiler, and memmove() is part of the ANSI-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 mandated functions. For losing systems like SunOS 4, we provide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 our own memmove(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 #if (defined (MEMMOVE_MISSING) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 !defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 /* Snarfed directly from Emacs src/dispnew.c:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 XXX Should use system bcopy if it handles overlap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 #ifndef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 /* Like bcopy except never gets confused by overlap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 static void
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1037 safe_bcopy (char *from, char *to, int size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 if (size <= 0 || from == to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 /* If the source and destination don't overlap, then bcopy can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 handle it. If they do overlap, but the destination is lower in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 memory than the source, we'll assume bcopy can handle that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 if (to < from || from + size <= to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 bcopy (from, to, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 /* Otherwise, we'll copy from the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 char *endf = from + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 char *endt = to + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 /* If TO - FROM is large, then we should break the copy into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 nonoverlapping chunks of TO - FROM bytes each. However, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 TO - FROM is small, then the bcopy function call overhead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 makes this not worth it. The crossover point could be about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 anywhere. Since I don't think the obvious copy loop is too
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 bad, I'm trying to err in its favor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 if (to - from < 64)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 *--endt = *--endf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 while (endf != from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 endt -= (to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 endf -= (to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 if (endt < to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 bcopy (endf, endt, to - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 /* If SIZE wasn't a multiple of TO - FROM, there will be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 little left over. The amount left over is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (endt + (to - from)) - to, which is endt - from. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 bcopy (from, to, endt - from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1085 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 #endif /* Not emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 #define memmove(to, from, size) safe_bcopy ((from), (to), (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 #endif /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 #ifndef min
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 #define min(A, B) ((A) < (B) ? (A) : (B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 /* Debugging hook for realloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, __malloc_size_t __size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 /* Resize the given region to the new size, returning a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 to the (possibly moved) region. This is optimized for speed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 some benchmarks seem to indicate that greater compactness is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 achieved by unconditionally allocating and copying to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 new region. This module has incestuous knowledge of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 internals of both free and malloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1109 realloc (__ptr_t ptr, __malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 int type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 __malloc_size_t block, blocks, oldlimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 return malloc (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 else if (ptr == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 return malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 if (__realloc_hook != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 return (*__realloc_hook) (ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 block = BLOCK (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 type = _heapinfo[block].busy.type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 switch (type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 /* Maybe reallocate a large block to a small fragment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 if (size <= BLOCKSIZE / 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 if (result != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 memcpy (result, ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 _free_internal (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 /* The new size is a large allocation as well;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 see if we can hold it in place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 blocks = BLOCKIFY (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 if (blocks < _heapinfo[block].busy.info.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 /* The new size is smaller; return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 excess memory to the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 _heapinfo[block + blocks].busy.type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 _heapinfo[block + blocks].busy.info.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 = _heapinfo[block].busy.info.size - blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 _heapinfo[block].busy.info.size = blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 /* We have just created a new chunk by splitting a chunk in two.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 Now we will free this chunk; increment the statistics counter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 so it doesn't become wrong when _free_internal decrements it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 ++_chunks_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 _free_internal (ADDRESS (block + blocks));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 else if (blocks == _heapinfo[block].busy.info.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 /* No size change necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 /* Won't fit, so allocate a new region that will.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 Free the old region first in case there is sufficient
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 adjacent free space to grow without moving. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 blocks = _heapinfo[block].busy.info.size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 /* Prevent free from actually returning memory to the system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 oldlimit = _heaplimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 _heaplimit = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 _heaplimit = oldlimit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 /* Now we're really in trouble. We have to unfree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 the thing we just freed. Unfortunately it might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 have been coalesced with its neighbors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 if (_heapindex == block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (void) malloc (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 __ptr_t previous = malloc ((block - _heapindex) * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 (void) malloc (blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 free (previous);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 if (ptr != result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 memmove (result, ptr, blocks * BLOCKSIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 /* Old size is a fragment; type is logarithm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 to base two of the fragment size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 if (size > (__malloc_size_t) (1 << (type - 1)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 size <= (__malloc_size_t) (1 << type))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 /* The new size is the same kind of fragment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 result = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 /* The new size is different; allocate a new space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 and copy the lesser of the new size and the old. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 memcpy (result, ptr, min (size, (__malloc_size_t) 1 << type));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 The author may be reached (Email) at the address mike@ai.mit.edu,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 or (US mail) as Mike Haertel c/o Free Software Foundation, Inc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 /* Allocate an array of NMEMB elements each SIZE bytes long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 The entire array is initialized to zeros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1247 calloc (__malloc_size_t nmemb, __malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 __ptr_t result = malloc (nmemb * size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 if (result != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (void) memset (result, 0, nmemb * size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 This file is part of the GNU C Library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 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
1260 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 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
1265 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 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
1271 the Free the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 #ifndef __GNU_LIBRARY__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 #define __sbrk sbrk
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 #ifdef GMALLOC_NEEDS_SBRK_DECL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 /* some versions of OSF1 need this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 extern __ptr_t __sbrk __P ((ssize_t increment));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 #ifdef __GNU_LIBRARY__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 /* 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
1289 systems with potentially hostile include files. */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1290 #if !(defined(linux) && defined(sparc))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 extern __ptr_t __sbrk __P ((int increment));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 #endif
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1294 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 #ifndef NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 #define NULL 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* Allocate INCREMENT more bytes of data space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 and return the start of data space, or NULL on errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 If INCREMENT is negative, shrink data space. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1304 __default_morecore (
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 #ifdef __STDC__
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1306 ptrdiff_t increment
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 #ifdef OSF1
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1309 long increment
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 #else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1311 int increment
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1314 )
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 #ifdef OSF1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 __ptr_t result = (__ptr_t) __sbrk ((ssize_t) increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 __ptr_t result = (__ptr_t) __sbrk ((int) increment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 if (result == (__ptr_t) -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 This library is free software; you can redistribute it and/or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 modify it under the terms of the GNU Library General Public License as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 published by the Free Software Foundation; either version 2 of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 License, or (at your option) any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 This library is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 Library General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 along with this library; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 #ifndef _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 #define _MALLOC_INTERNAL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 #include <malloc.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 __ptr_t
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 100
diff changeset
1348 memalign (__malloc_size_t alignment, __malloc_size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 __ptr_t result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 unsigned long int adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 size = ((size + alignment - 1) / alignment) * alignment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 if (result == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 adj = (unsigned long int) ((unsigned long int) ((char *) result -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (char *) NULL)) % alignment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 if (adj != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 struct alignlist *l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 for (l = _aligned_blocks; l != NULL; l = l->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 if (l->aligned == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 /* This slot is free. Use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 if (l == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 l = (struct alignlist *) malloc (sizeof (struct alignlist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 if (l == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 free (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 l->next = _aligned_blocks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 _aligned_blocks = l;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 l->exact = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 result = l->aligned = (char *) result + alignment - adj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 }