lua/lmem.c

124 lines
2.6 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lmem.c,v 1.9 1999/01/22 18:08:57 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"
/*
** real ANSI systems do not need some of these tests,
** since realloc(NULL, s)==malloc(s).
** 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
1997-09-16 23:25:59 +04:00
#ifndef DEBUG
1997-09-16 23:25:59 +04:00
int luaM_growaux (void **block, unsigned long nelems, int size,
char *errormsg, unsigned long limit) {
1997-09-16 23:25:59 +04:00
if (nelems >= limit)
lua_error(errormsg);
nelems = (nelems == 0) ? 32 : nelems*2;
if (nelems > limit)
nelems = limit;
*block = luaM_realloc(*block, nelems*size);
return (int)nelems;
}
/*
** 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)
lua_error("Allocation Error: Block too big");
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>
int luaM_growaux (void **block, unsigned long nelems, int size,
char *errormsg, unsigned long limit) {
if (nelems >= limit)
lua_error(errormsg);
nelems = nelems+1;
if (nelems > limit)
nelems = limit;
*block = luaM_realloc(*block, nelems*size);
return (int)nelems;
}
#define HEADER (sizeof(double))
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;
LUA_ASSERT(*(((char *)b)+size+HEADER) == MARK,
1998-03-10 00:49:52 +03:00
"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+1;
1997-09-16 23:25:59 +04:00
if (realsize != (size_t)realsize)
lua_error("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;
*(((char *)block)+size+HEADER) = MARK;
return (unsigned long *)((char *)block+HEADER);
1997-09-16 23:25:59 +04:00
}
#endif