2021-10-11 18:37:13 -03:00

227 lines
3.9 KiB
C

/* Copyright (c) 1984 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
#ifndef lint
static char sccsid[] = "@(#)blok.c 1.1 94/10/31 SMI"; /* from S5R3.1 1.9 */
#endif
/*
* UNIX shell
*/
#include "defs.h"
/*
* storage allocator
* (circular first fit strategy)
*/
#define BUSY 01
#define busy(x) (Rcheat((x)->word) & BUSY)
unsigned brkincr = BRKINCR;
struct blk *blokp; /*current search pointer*/
struct blk *bloktop; /* top of arena (last blok) */
char *brkbegin;
char *setbrk();
char *
alloc(nbytes)
unsigned nbytes;
{
register unsigned rbytes = round(nbytes+BYTESPERWORD, BYTESPERWORD);
for (;;)
{
int c = 0;
register struct blk *p = blokp;
register struct blk *q;
do
{
if (!busy(p))
{
while (!busy(q = p->word))
p->word = q->word;
if ((char *)q - (char *)p >= rbytes)
{
blokp = (struct blk *)((char *)p + rbytes);
if (q > blokp)
blokp->word = p->word;
p->word = (struct blk *)(Rcheat(blokp) | BUSY);
return((char *)(p + 1));
}
}
q = p;
p = (struct blk *)(Rcheat(p->word) & ~BUSY);
} while (p > q || (c++) == 0);
addblok(rbytes);
}
}
addblok(reqd)
unsigned reqd;
{
if (stakbot == 0)
{
brkbegin = setbrk(3 * BRKINCR);
bloktop = (struct blk *)brkbegin;
}
if (stakbas != staktop)
{
register char *rndstak;
register struct blk *blokstak;
if (staktop >= brkend)
growstak(staktop);
pushstak(0);
rndstak = (char *)round(staktop, BYTESPERWORD);
blokstak = (struct blk *)(stakbas) - 1;
blokstak->word = stakbsy;
stakbsy = blokstak;
bloktop->word = (struct blk *)(Rcheat(rndstak) | BUSY);
bloktop = (struct blk *)(rndstak);
}
reqd += brkincr;
reqd &= ~(brkincr - 1);
blokp = bloktop;
/*
* brkend points to the first invalid address.
* make sure bloktop is valid.
*/
if ((char *)&bloktop->word >= brkend)
{
if (setbrk((unsigned)((char *)
(&bloktop->word) - brkend + sizeof (struct blk))) ==
(char *)-1)
error(nospace);
}
bloktop = bloktop->word = (struct blk *)(Rcheat(bloktop) + reqd);
if ((char *)&bloktop->word >= brkend)
{
if (setbrk((unsigned)((char *)
(&bloktop->word) - brkend + sizeof (struct blk))) ==
(char *)-1)
error(nospace);
}
bloktop->word = (struct blk *)(brkbegin + 1);
{
register char *stakadr = (char *)(bloktop + 2);
register char *sp = stakadr;
if(reqd = (staktop-stakbot))
{
if (stakadr + reqd >= brkend)
growstak(stakadr + reqd);
while(reqd-- > 0)
*sp++ = *stakbot++;
sp--;
}
staktop = sp;
if (staktop >= brkend)
growstak(staktop);
stakbas=stakbot=stakadr;
}
}
free(ap)
struct blk *ap;
{
register struct blk *p;
if ((p = ap) && p < bloktop && p > (struct blk *)brkbegin)
{
#ifdef DEBUG
chkbptr(p);
#endif
--p;
p->word = (struct blk *)(Rcheat(p->word) & ~BUSY);
}
}
#ifdef DEBUG
chkbptr(ptr)
struct blk *ptr;
{
int exf = 0;
register struct blk *p = (struct blk *)brkbegin;
register struct blk *q;
int us = 0, un = 0;
for (;;)
{
q = (struct blk *)(Rcheat(p->word) & ~BUSY);
if (p+1 == ptr)
exf++;
if (q < (struct blk *)brkbegin || q > bloktop)
abort(3);
if (p == bloktop)
break;
if (busy(p))
us += q - p;
else
un += q - p;
if (p >= q)
abort(4);
p = q;
}
if (exf == 0)
abort(1);
}
chkmem()
{
register struct blk *p = (struct blk *)brkbegin;
register struct blk *q;
int us = 0, un = 0;
for (;;)
{
q = (struct blk *)(Rcheat(p->word) & ~BUSY);
if (q < (struct blk *)brkbegin || q > bloktop)
abort(3);
if (p == bloktop)
break;
if (busy(p))
us += q - p;
else
un += q - p;
if (p >= q)
abort(4);
p = q;
}
prs("un/used/avail ");
prn(un);
blank();
prn(us);
blank();
prn((char *)bloktop - brkbegin - (un + us));
newline();
}
#endif