annotate src/gmalloc.c @ 390:c6012109f545 r21-2-10

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