lua/lmem.c

133 lines
3.0 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lmem.c,v 1.15 1999/05/11 14:18:40 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Interface to Memory Manager
** See Copyright Notice in lua.h
*/
#include <stdlib.h>
#include "lmem.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lua.h"
/*
1999-02-26 18:50:10 +03:00
** real ANSI systems do not need these tests;
** but some systems (Sun OS) are not that ANSI...
*/
#ifdef OLD_ANSI
#define realloc(b,s) ((b) == NULL ? malloc(s) : (realloc)(b, s))
#define free(b) if (b) (free)(b)
#endif
#define MINSIZE 8 /* minimum size for "growing" vectors */
1997-09-16 23:25:59 +04:00
1999-02-26 18:50:10 +03:00
#ifndef DEBUG
1999-02-25 18:16:26 +03:00
static unsigned long power2 (unsigned long n) {
unsigned long p = MINSIZE;
while (p<=n) p<<=1;
return p;
}
void *luaM_growaux (void *block, unsigned long nelems, int inc, int size,
char *errormsg, unsigned long limit) {
1999-02-25 18:16:26 +03:00
unsigned long newn = nelems+inc;
if (newn >= limit) lua_error(errormsg);
if ((newn ^ nelems) <= nelems || /* still the same power of 2 limit? */
(nelems > 0 && newn < MINSIZE)) /* or block already is MINSIZE? */
return block; /* do not need to reallocate */
else /* it crossed a power of 2 boundary; grow to next power */
return luaM_realloc(block, power2(newn)*size);
1997-09-16 23:25:59 +04:00
}
/*
** generic allocation routine.
*/
void *luaM_realloc (void *block, unsigned long size) {
1997-09-16 23:25:59 +04:00
size_t s = (size_t)size;
if (s != size)
1999-02-26 00:07:26 +03:00
lua_error("memory allocation error: block too big");
1997-09-16 23:25:59 +04:00
if (size == 0) {
free(block); /* block may be NULL, that is OK for free */
1997-09-16 23:25:59 +04:00
return NULL;
}
block = realloc(block, s);
1997-09-16 23:25:59 +04:00
if (block == NULL)
lua_error(memEM);
return block;
}
#else
/* DEBUG */
#include <string.h>
1999-02-26 18:50:10 +03:00
void *luaM_growaux (void *block, unsigned long nelems, int inc, int size,
char *errormsg, unsigned long limit) {
unsigned long newn = nelems+inc;
if (newn >= limit)
lua_error(errormsg);
return luaM_realloc(block, newn*size);
}
#define HEADER (sizeof(double))
#define MARKSIZE 32
1997-09-16 23:25:59 +04:00
#define MARK 55
unsigned long numblocks = 0;
unsigned long totalmem = 0;
1997-09-16 23:25:59 +04:00
static void *checkblock (void *block) {
unsigned long *b = (unsigned long *)((char *)block - HEADER);
1997-09-16 23:25:59 +04:00
unsigned long size = *b;
int i;
for (i=0;i<MARKSIZE;i++)
LUA_ASSERT(*(((char *)b)+size+HEADER+i) == MARK+i, "corrupted block");
1997-09-16 23:25:59 +04:00
numblocks--;
totalmem -= size;
return b;
}
void *luaM_realloc (void *block, unsigned long size) {
unsigned long realsize = HEADER+size+MARKSIZE;
1997-09-16 23:25:59 +04:00
if (realsize != (size_t)realsize)
1999-02-26 00:07:26 +03:00
lua_error("memory allocation error: block too big");
if (size == 0) {
1997-09-16 23:25:59 +04:00
if (block) {
unsigned long *b = (unsigned long *)((char *)block - HEADER);
memset(block, -1, *b); /* erase block */
1997-09-16 23:25:59 +04:00
block = checkblock(block);
}
free(block);
1997-09-16 23:25:59 +04:00
return NULL;
}
if (block)
1997-09-16 23:25:59 +04:00
block = checkblock(block);
block = (unsigned long *)realloc(block, realsize);
1997-09-16 23:25:59 +04:00
if (block == NULL)
lua_error(memEM);
totalmem += size;
numblocks++;
*(unsigned long *)block = size;
{ int i; for (i=0;i<MARKSIZE;i++) *(((char *)block)+size+HEADER+i) = MARK+i; }
return (unsigned long *)((char *)block+HEADER);
1997-09-16 23:25:59 +04:00
}
#endif