1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
|
/*
* *********************************************************************
* * Copyright (C) 1988, 1990 Stanford University. *
* * Permission to use, copy, modify, and distribute this *
* * software and its documentation for any purpose and without *
* * fee is hereby granted, provided that the above copyright *
* * notice appear in all copies. Stanford University *
* * makes no representations about the suitability of this *
* * software for any purpose. It is provided "as is" without *
* * express or implied warranty. Export of this software outside *
* * of the United States of America may require an export license. *
* *********************************************************************
*/
/*
* This is a very low overhead storage allocator for managing many
* "small" objects.
*
* The allocator recognizes 2 different types of objects: (1) small
* fixed size objects, and (2) large or variable size objects.
*
* Variable size objects are allocated on demand, using a next-fit
* algorithm. The same is used for large objects.
*
* When a small fixed size object is requested, the allocator will
* pre-allocate as many such objects as will fit in one page (4Kbytes in-
* this implementation). The unused objects are put in a free list for
* quick access later on. A separate free list for every object size is
* maintained. When such an object is freed, it is simply put back in
* its respective free list (small objects don't migrate from one free
* list to another).
*
* All objects returned by Malloc are word aligned: a word is defined to
* be the smallest size integer into which an address can be cast. All
* requests are rounded to a multiple of words (as defined above).
*
* The allocator does not "remember" the size of fixed-size objects. Keeping
* this information is left to the user. It does however, remeber the size of
* objects allocated using Valloc.
*
* The allocator provides the following interfaces:
* 1) Falloc( nbytes )
* returns a pointer to nbytes of storage. For fixed size objects.
* 2) Valloc( nbytes )
* returns a pointer to nbytes of storage. For variable size objects.
* 3) MallocList( size )
* returns a linked list of 'size' bytes objects.
* 4) Ffree( ptr, nbytes )
* deallocate the fixed size object of 'nbytes' pointed to by 'ptr'.
* 4) Vfree( ptr )
* deallocate the variable object of 'nbytes' pointed to by 'ptr'.
*
* The argument to Ffree can be any any object obtained from Falloc, or
* any one of the elements obtained from MallocList.
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include "defs.h"
/* number of bytes in a word */
#define WORDSIZE ( sizeof( Object ) )
/* round x to nearest z (ceiling function) */
#define ROUND( x, z ) ( ((x) + (z) - 1) / (z) )
/* convert size in bytes to nearest number of words */
#define NWORDS( x ) ROUND( x, WORDSIZE )
/* number of bytes/words per page */
#define DATABYTES 4096
#define DATAWORDS ( DATABYTES / WORDSIZE )
/* objects larger than this many words are considered large */
#define BIG_OBJ 40
#define NBINS (BIG_OBJ + 1)
typedef union Object *Pointer;
typedef union Object /* Basic data object (i.e. `machine word') */
{
Pointer ptr;
int num;
double dble;
int align[1];
} Object;
/* export this definition for the user's sake */
public typedef union MElem
{
union MElem *next; /* points to next element in linked list */
int align[1]; /* dummy used to force word alignment */
} *MList;
typedef struct
{
Pointer free1; /* Lists of free objects of this size */
Pointer free2;
} Bucket;
private Bucket bucket[NBINS]; /* free list hash table */
#if !defined(CYGWIN) && !defined(macosx)
/* External definitions */
extern int etext;
extern unsigned sleep();
#endif /* CYGWIN */
#define SBRK_FAIL ( (char *) -1 )
#define MAXTRIES 5
#define PAGE_SIZE 1024 /* for alignment */
#define PAGE_MASK ( PAGE_SIZE - 1 )
#define FPRINTF (void) fprintf
#if defined(CYGWIN) || defined(macosx)
private Pointer GetMoreCore( npages )
int npages;
{
void *ret;
int nbytes;
nbytes = npages * DATABYTES + PAGE_SIZE;
ret = malloc(nbytes);
return ( (Pointer) ret);
}
#else
/*
* Interface to the system's sbrk call. If sbrk fails, try to determine
* what's happening and attempt to solve it. If all fails return NULL.
*/
#ifdef SYS_V
private Pointer GetMoreCore( npages )
int npages;
{
void *ret;
long cursize, newsize, nbytes;
long tries, inc;
long lim;
cursize = (long) sbrk( 0 ); /* align on 1K boundary */
inc = PAGE_SIZE - (cursize & PAGE_MASK) & PAGE_MASK;
nbytes = npages * DATABYTES + inc;
ret = sbrk( nbytes );
if( ret != SBRK_FAIL )
return( (Pointer) ret );
newsize = cursize + nbytes;
lim = ulimit( 3, 0 );
ret = SBRK_FAIL;
if( newsize <= lim )
{
for( tries = 0; tries < MAXTRIES and ret == SBRK_FAIL; tries++ )
{
if( tries == 0 )
{
FPRINTF( stderr, "*** MEMORY WARNING ***\n" );
FPRINTF( stderr, "Current data size: %ld (%ldK)\n", cursize,
ROUND( cursize, 1024 ));
FPRINTF( stderr, "New data size = %ld (%ldK)\n", newsize,
ROUND( newsize, 1024 ) );
FPRINTF( stderr, "Hard limit = %d (%dK)\n", lim,
ROUND( lim, 1024 ));
}
FPRINTF( stderr, "I seem to be short on swap space\n" );
FPRINTF( stderr, "Will sleep for 15 seconds and try again\n");
(void) sleep( 15 );
ret = sbrk( nbytes );
}
}
return( ( ret == SBRK_FAIL ) ? (Pointer) NULL : (Pointer) ret );
}
#else /* BSD */
#ifdef host_mips /* kludge for mips based systems */
# define heap_start (char *) 0x10000000
#else
# define heap_start (char *) &etext
#endif
private Pointer GetMoreCore( npages )
int npages;
{
void *ret;
long cursize, newsize, nbytes;
long tries, inc;
struct rlimit lim;
cursize = (long) sbrk( 0 ); /* align on 1K boundary */
inc = PAGE_SIZE - ((cursize & PAGE_MASK) & PAGE_MASK);
nbytes = npages * DATABYTES + inc;
ret = sbrk( nbytes );
if( ret != SBRK_FAIL )
return( (Pointer) ret );
cursize -= (long) heap_start;
newsize = cursize + nbytes;
(void) getrlimit( RLIMIT_DATA, &lim );
if( newsize > lim.rlim_max )
{
FPRINTF( stderr, "Memory Error: Hard limit exceeded %d\n",
(int)ROUND( lim.rlim_max, 1024 ) );
return( (Pointer) NULL );
}
ret = SBRK_FAIL;
for( tries = 0; tries < MAXTRIES and ret == SBRK_FAIL; tries++ )
{
if( newsize < lim.rlim_cur )
{
if( tries == 0 )
{
FPRINTF( stderr, "*** MEMORY WARNING ***\n" );
FPRINTF( stderr, "Current data size: %ld (%ldK)\n", cursize,
ROUND( cursize, 1024 ));
FPRINTF( stderr, "New data size = %ld (%ldK)\n", newsize,
ROUND( newsize, 1024 ) );
FPRINTF( stderr, "Soft limit = %d (%dK)\n", (int)lim.rlim_cur,
(int)ROUND( lim.rlim_cur, 1024 ));
FPRINTF( stderr, "Hard limit = %d (%dK)\n", (int)lim.rlim_max,
(int)ROUND( lim.rlim_max, 1024 ));
}
FPRINTF( stderr, "I seem to be short on swap space\n" );
FPRINTF( stderr, "Will sleep for 15 seconds and try again\n");
(void) sleep( 15 );
}
else if( newsize < lim.rlim_max )
{
int softlim = lim.rlim_cur;
FPRINTF( stderr, "MEMORY WARNING: Soft limit exceeded\n" );
lim.rlim_cur = lim.rlim_max;
if( setrlimit( RLIMIT_DATA, &lim ) == 0 )
{
FPRINTF( stderr,
" => Soft limit increased from %d (%dK) to %d (%d)\n",
softlim, ROUND( softlim, 1024 ),
(int)lim.rlim_max, (int)ROUND( lim.rlim_max, 1024 ) );
}
else
{
FPRINTF( stderr,
" => Can NOT increase Soft limit [%d (%dK)] to %d (%d)\n",
softlim, ROUND( softlim, 1024 ),
(int)lim.rlim_max, (int)ROUND( lim.rlim_max, 1024 ) );
FPRINTF( stderr, "I Will try again in 15 seconds\n" );
(void) sleep( 15 );
}
}
ret = sbrk( nbytes );
}
return( ( ret == SBRK_FAIL ) ? (Pointer) NULL : (Pointer) ret );
}
#endif /* SYS_V */
#endif /* CYGWIN */
/*
* Get nPages contiguous pages. Make sure new pages are aligned on system
* page boundaries.
* If 'size' is <> 0, the elements in the page(s) are linked into a list.
*/
private Pointer GetPage( nPages, size, no_mem_exit )
int nPages;
int size;
int no_mem_exit;
{
Pointer pg;
int inc;
pg = GetMoreCore( nPages );
if( pg == NULL )
{
if( no_mem_exit == 0 )
return( pg );
FPRINTF( stderr, "Out of memory.\n" );
exit( 1 );
}
if( size != 0 ) /* Initialize the new page */
{
register Pointer p, page;
register int n, np, nwords;
inc = DATAWORDS / size;
nwords = size;
page = pg;
np = nPages;
while( np-- > 0 )
{
n = inc;
for( p = page; --n > 0; p->ptr = p + nwords, p += nwords );
p->ptr = (np == 0) ? NULL : (page += DATAWORDS);
}
}
return( pg );
}
/* forward references */
private MList MallocBigList();
char *Valloc();
void Ffree(), Vfree();
public char *Falloc( nbytes, no_mem_exit )
int nbytes;
int no_mem_exit;
{
register Bucket *bin;
register Pointer p;
register int nwords;
if( nbytes <= 0 ) /* ubiquitous check */
return( NULL );
nwords = NWORDS( nbytes );
if( nwords >= NBINS )
return( Valloc( nbytes, no_mem_exit ) );
bin = &(bucket[nwords]);
if( (p = bin->free1) != NULL )
{
if( (bin->free1 = p->ptr) == NULL )
{
bin->free1 = bin->free2;
bin->free2 = NULL;
}
}
else
{
int n;
p = GetPage( 1, nwords, no_mem_exit );
if( p == NULL ) /* Out of memory */
return( NULL );
n = nwords * ((DATAWORDS / nwords) / 2);
bin->free1 = p->ptr;
bin->free2 = p + n;
p[n - nwords].ptr = NULL;
}
return( (char *) p );
}
public void Ffree( p, nbytes )
Pointer p;
int nbytes;
{
register int nwords;
if( p == NULL or nbytes <= 0 ) /* sanity ? */
return;
nwords = NWORDS( nbytes );
if( nwords >= NBINS ) /* big block */
Vfree( p );
else /* return to its corresponding bin */
{
p->ptr = bucket[nwords].free1;
bucket[nwords].free1 = p;
}
}
/*
* Return a linked list of elements, each 'nbytes' long in size.
*/
public MList MallocList( nbytes, no_mem_exit )
int nbytes;
int no_mem_exit;
{
register Pointer p;
register int nwords, n;
register Bucket *bin;
if( nbytes <= 0 )
return( NULL );
nwords = NWORDS( nbytes );
if( nwords >= NBINS )
return( MallocBigList( nbytes, no_mem_exit ) );
bin = &(bucket[nwords]);
if( (p = bin->free1) != NULL )
{
bin->free1 = bin->free2;
bin->free2 = NULL;
}
else
{
p = GetPage( 1, nwords, no_mem_exit );
if( p == NULL ) /* Out of memory */
return( NULL );
n = nwords * ((DATAWORDS / nwords) / 2);
bin->free1 = p + n; /* save 2nd half of the page */
bin->free2 = NULL;
p[n - nwords].ptr = NULL;
}
return( (MList) p );
}
/*
* Handle the large (infrequent) case.
*/
private MList MallocBigList( nbytes, no_mem_exit )
int nbytes;
int no_mem_exit;
{
int nelem;
Pointer head, tail;
nelem = ( nbytes < 2 * DATABYTES ) ? DATABYTES / nbytes : 2;
head = tail = (Pointer) Valloc( nbytes, no_mem_exit );
if( head == NULL )
return( NULL );
while( --nelem > 0 )
{
tail->ptr = (Pointer) Valloc( nbytes, no_mem_exit );
if( tail->ptr == NULL )
{
while( head != NULL )
{ /* free everything already Malloc`d */
tail = head->ptr;
Vfree( head );
head = tail;
}
return( NULL );
}
tail = tail->ptr;
}
tail->ptr = NULL;
return( (MList) head );
}
/*
* Next-fit storage allocation for variable (infrequent) size objects.
* Algorithm and variable names from Knuth V1, p 437. See Exercise 2.5.6.
*/
private Object avail[2]; /* dummy header that points to first
* free element. Free list is kept
* in address order */
private Pointer rover = avail; /* pointer into the free list */
#define NEXT( blk ) ( (blk)->ptr ) /* next block in free list */
#define SIZE( blk ) ( blk[1].num ) /* words available in block */
/*
* Add the block pointed to by 'ptr' to the free list.
*/
public void Vfree( ptr )
Pointer ptr;
{
register Pointer p, q, r;
register int nwords;
if( ptr == NULL )
return;
ptr--;
nwords = ptr->num;
if( nwords <= 0 )
return;
q = avail;
r = ptr;
p = NEXT( q );
while( (p != NULL) and (p < r) ) /* search for the right place */
{
q = p;
p = NEXT( p );
}
/* this is where it should go */
/* note: since NULL = 0, if p = NULL, p != r + nwords */
if( p == r + nwords ) /* new block abuts p, consolidate */
{
nwords += SIZE( p );
NEXT( r ) = NEXT( p );
}
else /* does not abut, just connect */
{
NEXT( r ) = p;
}
if( r == q + SIZE( q ) ) /* new block abuts q, consolidate */
{
SIZE( q ) += nwords;
NEXT( q ) = NEXT( r );
}
else /* does not abut, just connect */
{
NEXT( q ) = r;
SIZE( r ) = nwords;
}
rover = q; /* start searching here next time */
}
/*
* Return a pointer to (at least) n bytes of storage.
*/
public char *Valloc( nbytes, no_mem_exit )
int nbytes;
int no_mem_exit;
{
register Pointer p, q;
register int nwords;
int firstTime;
if( nbytes <= 0 ) /* ubiquitous check */
return( NULL );
nwords = (NWORDS( nbytes ) + 2) & ~1;
Start :
if( (q = rover) == NULL )
{
q = rover = avail;
firstTime = 0;
}
else
firstTime = 1;
again:
p = NEXT( q );
while( p != NULL ) /* search for a block large enough */
{
if( SIZE( p ) >= nwords )
goto found;
q = p;
p = NEXT( p );
}
if( firstTime )
{
q = avail; /* first time, one more chance */
firstTime = 0;
goto again;
}
{ /* fall through: out of memory, get some more */
int nPages;
Pointer pg;
nPages = 2 * (ROUND( nwords, DATAWORDS ));
pg = GetPage( nPages, 0, no_mem_exit );
if( pg == NULL )
return( NULL );
pg->num = nPages * DATAWORDS;
Vfree( pg + 1 );
goto Start; /* try again */
}
found :
if( SIZE( p ) == nwords ) /* exact match. remove block */
{
NEXT( q ) = NEXT( p );
}
else /* SIZE( p ) > nwords => too large. take part of it */
{
register Pointer r;
r = p + nwords; /* remaining free area */
NEXT( q ) = r;
NEXT( r ) = NEXT( p );
SIZE( r ) = SIZE( p ) - nwords;
}
rover = q; /* start looking here next time */
p->num = nwords;
p++;
return( (char *) p );
}
|