1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2005-12-26 16:35:47 +03:00
|
|
|
** $Id: lmem.c,v 1.69 2005/02/23 17:30:22 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Interface to Memory Manager
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-10-03 00:31:17 +04:00
|
|
|
#include <stddef.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2002-12-04 20:38:31 +03:00
|
|
|
#define lmem_c
|
2004-05-01 00:13:38 +04:00
|
|
|
#define LUA_CORE
|
2002-12-04 20:38:31 +03:00
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-05-15 22:57:44 +04:00
|
|
|
#include "ldebug.h"
|
2000-08-04 23:38:35 +04:00
|
|
|
#include "ldo.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lmem.h"
|
1999-11-29 19:38:48 +03:00
|
|
|
#include "lobject.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
1999-01-22 20:28:00 +03:00
|
|
|
|
2002-06-11 20:26:12 +04:00
|
|
|
/*
|
2003-10-03 00:31:17 +04:00
|
|
|
** About the realloc function:
|
2005-02-23 20:30:22 +03:00
|
|
|
** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
|
2003-10-03 00:31:17 +04:00
|
|
|
** (`osize' is the old size, `nsize' is the new size)
|
|
|
|
**
|
|
|
|
** Lua ensures that (ptr == NULL) iff (osize == 0).
|
|
|
|
**
|
2005-02-23 20:30:22 +03:00
|
|
|
** * frealloc(ud, NULL, 0, x) creates a new block of size `x'
|
2003-10-03 00:31:17 +04:00
|
|
|
**
|
2005-02-23 20:30:22 +03:00
|
|
|
** * frealloc(ud, p, x, 0) frees the block `p'
|
|
|
|
** (in this specific case, frealloc must return NULL).
|
|
|
|
** particularly, frealloc(ud, NULL, 0, 0) does nothing
|
2003-10-03 00:31:17 +04:00
|
|
|
** (which is equivalent to free(NULL) in ANSI C)
|
|
|
|
**
|
2005-02-23 20:30:22 +03:00
|
|
|
** frealloc returns NULL if it cannot create or reallocate the area
|
2003-10-03 00:31:17 +04:00
|
|
|
** (any reallocation to an equal or smaller size cannot fail!)
|
2002-06-11 20:26:12 +04:00
|
|
|
*/
|
2000-10-11 20:47:50 +04:00
|
|
|
|
2002-10-08 22:45:07 +04:00
|
|
|
|
2000-10-11 20:47:50 +04:00
|
|
|
|
2001-10-25 23:13:33 +04:00
|
|
|
#define MINSIZEARRAY 4
|
|
|
|
|
|
|
|
|
2004-12-01 18:46:18 +03:00
|
|
|
void *luaM_growaux_ (lua_State *L, void *block, int *size, size_t size_elems,
|
|
|
|
int limit, const char *errormsg) {
|
2000-12-26 21:46:09 +03:00
|
|
|
void *newblock;
|
2003-11-27 21:18:37 +03:00
|
|
|
int newsize;
|
|
|
|
if (*size >= limit/2) { /* cannot double it? */
|
2004-12-01 18:46:18 +03:00
|
|
|
if (*size >= limit) /* cannot grow even a little? */
|
2003-11-27 21:18:37 +03:00
|
|
|
luaG_runerror(L, errormsg);
|
2004-12-01 18:46:18 +03:00
|
|
|
newsize = limit; /* still have at least one free place */
|
2003-11-27 21:18:37 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
newsize = (*size)*2;
|
|
|
|
if (newsize < MINSIZEARRAY)
|
|
|
|
newsize = MINSIZEARRAY; /* minimum size */
|
2000-12-26 21:46:09 +03:00
|
|
|
}
|
2004-11-19 18:52:40 +03:00
|
|
|
newblock = luaM_reallocv(L, block, *size, newsize, size_elems);
|
2000-12-26 21:46:09 +03:00
|
|
|
*size = newsize; /* update only when everything else is OK */
|
|
|
|
return newblock;
|
2000-01-13 19:30:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-19 18:52:40 +03:00
|
|
|
void *luaM_toobig (lua_State *L) {
|
|
|
|
luaG_runerror(L, "memory allocation error: block too big");
|
|
|
|
return NULL; /* to avoid warnings */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-13 19:30:47 +03:00
|
|
|
/*
|
|
|
|
** generic allocation routine.
|
|
|
|
*/
|
2004-12-01 18:46:18 +03:00
|
|
|
void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {
|
2003-10-03 00:31:17 +04:00
|
|
|
global_State *g = G(L);
|
|
|
|
lua_assert((osize == 0) == (block == NULL));
|
2005-02-23 20:30:22 +03:00
|
|
|
block = (*g->frealloc)(g->ud, block, osize, nsize);
|
2003-10-03 00:31:17 +04:00
|
|
|
if (block == NULL && nsize > 0)
|
|
|
|
luaD_throw(L, LUA_ERRMEM);
|
|
|
|
lua_assert((nsize == 0) == (block == NULL));
|
2004-08-30 17:44:44 +04:00
|
|
|
g->totalbytes = (g->totalbytes - osize) + nsize;
|
2000-01-13 19:30:47 +03:00
|
|
|
return block;
|
|
|
|
}
|
|
|
|
|