Chameleon

Chameleon Svn Source Tree

Root/branches/Chimera/i386/libsa/zalloc.c

1/*
2 * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24/*
25 * Copyright 1993 NeXT Computer, Inc.
26 * All rights reserved.
27 *
28 * Sam's simple memory allocator.
29 *
30 */
31
32#include "libsa.h"
33//#include "saio_internal.h" - Azi: needed for ZDEBUG (printf)
34#include "memory.h"
35
36#define ZDEBUG 0 //Azi: booter doesn't load with this enabled; instant reboot at "boot1: ..."
37
38#if ZDEBUG
39int zout;
40#endif
41
42typedef struct {
43char * start;
44size_t size;
45} zmem;
46
47static zmem * zalloced;
48static zmem * zavailable;
49static short availableNodes, allocedNodes, totalNodes;
50static char * zalloc_base;
51static char * zalloc_end;
52static void (*zerror)(char *, size_t, const char *, int);
53
54static void zallocate(char * start,int size);
55static void zinsert(zmem * zp, int ndx);
56static void zdelete(zmem * zp, int ndx);
57static void zcoalesce(void);
58
59#if ZDEBUG
60size_t zalloced_size;
61#endif
62
63#define ZALLOC_NODES32767 /* was 16384 */
64
65static void malloc_error(char *addr, size_t size, const char *file, int line)
66{
67#ifdef i386
68asm volatile ("hlt");
69#endif
70}
71
72// define the block of memory that the allocator will use
73void malloc_init(char * start, int size, int nodes, void (*malloc_err_fn)(char *, size_t, const char *, int))
74{
75zalloc_base = start ? start : (char *)ZALLOC_ADDR;
76totalNodes = nodes ? nodes : ZALLOC_NODES;
77zalloced = (zmem *) zalloc_base;
78zavailable = (zmem *) zalloc_base + sizeof(zmem) * totalNodes;
79zavailable[0].start = (char *)zavailable + sizeof(zmem) * totalNodes;
80
81if (size == 0)
82{
83size = ZALLOC_LEN;
84}
85
86zavailable[0].size = size - (zavailable[0].start - zalloc_base);
87zalloc_end = zalloc_base + size;
88availableNodes = 1;
89allocedNodes = 0;
90zerror = malloc_err_fn ? malloc_err_fn : malloc_error;
91}
92
93#define BEST_FIT 1
94
95void * safe_malloc(size_t size, const char *file, int line)
96{
97int i;
98#if BEST_FIT
99int bestFit;
100size_t smallestSize;
101#endif
102char * ret = 0;
103
104if ( !zalloc_base )
105{
106// this used to follow the bss but some bios' corrupted it...
107malloc_init((char *)ZALLOC_ADDR, ZALLOC_LEN, ZALLOC_NODES, malloc_error);
108}
109
110size = ((size + 0xf) & ~0xf);
111
112if (size == 0)
113{
114if (zerror)
115{
116(*zerror)((char *)0xdeadbeef, 0, file, line);
117 }
118 }
119#if BEST_FIT
120smallestSize = 0;
121bestFit = -1;
122#endif
123
124for (i = 0; i < availableNodes; i++)
125{
126// find node with equal size, or if not found,
127 // then smallest node that fits.
128if (zavailable[i].size == size)
129{
130zallocate(ret = zavailable[i].start, size);
131zdelete(zavailable, i); availableNodes--;
132goto done;
133}
134#if BEST_FIT
135else {
136if ((zavailable[i].size > size) && ((smallestSize == 0) || (zavailable[i].size < smallestSize))) {
137bestFit = i;
138smallestSize = zavailable[i].size;
139}
140}
141#else
142else if (zavailable[i].size > size)
143{
144zallocate(ret = zavailable[i].start, size);
145zavailable[i].start += size;
146zavailable[i].size -= size;
147goto done;
148}
149#endif
150}
151#if BEST_FIT
152if (bestFit != -1) {
153zallocate(ret = zavailable[bestFit].start, size);
154zavailable[bestFit].start += size;
155zavailable[bestFit].size -= size;
156}
157#endif
158
159done:
160if ((ret == 0) || (ret + size >= zalloc_end)) {
161if (zerror)
162{
163(*zerror)(ret, size, file, line);
164}
165}
166
167if (ret != 0)
168{
169bzero(ret, size);
170}
171#if ZDEBUG
172zalloced_size += size;
173#endif
174return (void *) ret;
175}
176
177void free(void * pointer)
178{
179unsigned long rp;
180int i, found = 0;
181size_t tsize = 0;
182char * start = pointer;
183
184#if i386
185// Get return address of our caller,
186// in case we have to report an error below.
187asm volatile ("movl %%esp, %%eax\n\t"
188 "subl $4, %%eax\n\t"
189 "movl 0(%%eax), %%eax" : "=a" (rp));
190#else
191 rp = 0;
192#endif
193
194if (!start)
195{
196return;
197}
198
199for (i = 0; i < allocedNodes; i++)
200{
201if (zalloced[i].start == start)
202{
203tsize = zalloced[i].size;
204#if ZDEBUG
205zout -= tsize;
206printf(" zz out %d\n", zout);
207#endif
208zdelete(zalloced, i); allocedNodes--;
209found = 1;
210#if ZDEBUG
211memset(pointer, 0x5A, tsize);
212#endif
213break;
214}
215}
216if (!found)
217{
218if (zerror)
219{
220(*zerror)(pointer, rp, "free", 0);
221} else {
222return;
223}
224}
225#if ZDEBUG
226 zalloced_size -= tsize;
227#endif
228
229for (i = 0; i < availableNodes; i++)
230{
231if ((start + tsize) == zavailable[i].start) // merge it in
232{
233zavailable[i].start = start;
234zavailable[i].size += tsize;
235zcoalesce();
236return;
237}
238
239if ((i > 0) && (zavailable[i-1].start + zavailable[i-1].size == start))
240{
241zavailable[i-1].size += tsize;
242zcoalesce();
243return;
244}
245
246if ((start + tsize) < zavailable[i].start)
247{
248 if (++availableNodes > totalNodes)
249{
250if (zerror)
251{
252(*zerror)((char *)0xf000f000, 0, "free", 0);
253}
254}
255zinsert(zavailable, i);
256zavailable[i].start = start;
257zavailable[i].size = tsize;
258return;
259}
260}
261
262if (++availableNodes > totalNodes)
263{
264if (zerror)
265{
266(*zerror)((char *)0xf000f000, 1, "free", 0);
267}
268}
269zavailable[i].start = start;
270zavailable[i].size = tsize;
271zcoalesce();
272
273return;
274}
275
276static void
277zallocate(char * start,int size)
278{
279
280#if ZDEBUG
281zout += size;
282printf(" alloc %d, total 0x%x\n",size,zout);
283#endif
284
285zalloced[allocedNodes].start = start;
286zalloced[allocedNodes].size = size;
287
288if (++allocedNodes > totalNodes)
289{
290if (zerror)
291{
292(*zerror)((char *)0xf000f000, 2, "zallocate", 0);
293}
294};
295}
296
297static void
298zinsert(zmem * zp, int ndx)
299{
300int i;
301zmem *z1, *z2;
302
303i = totalNodes-2;
304z1 = zp + i;
305z2 = z1 + 1;
306
307for (; i >= ndx; i--, z1--, z2--)
308{
309*z2 = *z1;
310}
311}
312
313static void
314zdelete(zmem * zp, int ndx)
315{
316int i;
317zmem *z1, *z2;
318
319z1 = zp + ndx;
320z2 = z1 + 1;
321
322for (i = ndx; i < totalNodes - 1; i++, z1++, z2++)
323{
324*z1 = *z2;
325}
326}
327
328static void
329zcoalesce(void)
330{
331int i;
332
333for (i = 0; i < availableNodes-1; i++)
334{
335if ( zavailable[i].start + zavailable[i].size == zavailable[i + 1].start )
336{
337zavailable[i].size += zavailable[i + 1].size;
338zdelete(zavailable, i + 1); availableNodes--;
339return;
340}
341}
342}
343
344/* This is the simplest way possible. Should fix this. */
345void * realloc(void * start, size_t newsize)
346{
347 void * newstart = safe_malloc(newsize, __FILE__, __LINE__);
348 bcopy(start, newstart, newsize);
349 free(start);
350 return newstart;
351}
352

Archive Download this file

Revision: HEAD