1997-09-17 03:25:59 +08:00
|
|
|
/*
|
2015-03-07 03:45:54 +08:00
|
|
|
** $Id: lmem.c,v 1.90 2015/03/03 18:18:29 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** Interface to Memory Manager
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2002-12-05 01:38:31 +08:00
|
|
|
#define lmem_c
|
2004-05-01 04:13:38 +08:00
|
|
|
#define LUA_CORE
|
2002-12-05 01:38:31 +08:00
|
|
|
|
2014-11-03 03:19:04 +08:00
|
|
|
#include "lprefix.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-05-16 02:57:44 +08:00
|
|
|
#include "ldebug.h"
|
2000-08-05 03:38:35 +08:00
|
|
|
#include "ldo.h"
|
2006-07-11 23:53:29 +08:00
|
|
|
#include "lgc.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lmem.h"
|
1999-11-30 00:38:48 +08:00
|
|
|
#include "lobject.h"
|
1997-11-20 01:29:23 +08:00
|
|
|
#include "lstate.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
|
|
|
|
|
1999-01-23 01:28:00 +08:00
|
|
|
|
2002-06-12 00:26:12 +08:00
|
|
|
/*
|
2003-10-03 04:31:17 +08:00
|
|
|
** About the realloc function:
|
2005-02-24 01:30:22 +08:00
|
|
|
** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
|
2014-10-25 19:50:46 +08:00
|
|
|
** ('osize' is the old size, 'nsize' is the new size)
|
2003-10-03 04:31:17 +08:00
|
|
|
**
|
2014-10-25 19:50:46 +08:00
|
|
|
** * frealloc(ud, NULL, x, s) creates a new block of size 's' (no
|
2009-12-17 23:46:44 +08:00
|
|
|
** matter 'x').
|
2003-10-03 04:31:17 +08:00
|
|
|
**
|
2014-10-25 19:50:46 +08:00
|
|
|
** * frealloc(ud, p, x, 0) frees the block 'p'
|
2009-12-17 23:46:44 +08:00
|
|
|
** (in this specific case, frealloc must return NULL);
|
2005-02-24 01:30:22 +08:00
|
|
|
** particularly, frealloc(ud, NULL, 0, 0) does nothing
|
2014-11-03 03:33:33 +08:00
|
|
|
** (which is equivalent to free(NULL) in ISO C)
|
2003-10-03 04:31:17 +08:00
|
|
|
**
|
2005-02-24 01:30:22 +08:00
|
|
|
** frealloc returns NULL if it cannot create or reallocate the area
|
2003-10-03 04:31:17 +08:00
|
|
|
** (any reallocation to an equal or smaller size cannot fail!)
|
2002-06-12 00:26:12 +08:00
|
|
|
*/
|
2000-10-12 00:47:50 +08:00
|
|
|
|
2002-10-09 02:45:07 +08:00
|
|
|
|
2000-10-12 00:47:50 +08:00
|
|
|
|
2001-10-26 03:13:33 +08:00
|
|
|
#define MINSIZEARRAY 4
|
|
|
|
|
|
|
|
|
2004-12-01 23:46:18 +08:00
|
|
|
void *luaM_growaux_ (lua_State *L, void *block, int *size, size_t size_elems,
|
2006-09-15 02:42:28 +08:00
|
|
|
int limit, const char *what) {
|
2000-12-27 02:46:09 +08:00
|
|
|
void *newblock;
|
2003-11-28 02:18:37 +08:00
|
|
|
int newsize;
|
|
|
|
if (*size >= limit/2) { /* cannot double it? */
|
2004-12-01 23:46:18 +08:00
|
|
|
if (*size >= limit) /* cannot grow even a little? */
|
2006-09-15 02:42:28 +08:00
|
|
|
luaG_runerror(L, "too many %s (limit is %d)", what, limit);
|
2004-12-01 23:46:18 +08:00
|
|
|
newsize = limit; /* still have at least one free place */
|
2003-11-28 02:18:37 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
newsize = (*size)*2;
|
|
|
|
if (newsize < MINSIZEARRAY)
|
|
|
|
newsize = MINSIZEARRAY; /* minimum size */
|
2000-12-27 02:46:09 +08:00
|
|
|
}
|
2004-11-19 23:52:40 +08:00
|
|
|
newblock = luaM_reallocv(L, block, *size, newsize, size_elems);
|
2000-12-27 02:46:09 +08:00
|
|
|
*size = newsize; /* update only when everything else is OK */
|
|
|
|
return newblock;
|
2000-01-14 00:30:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-30 20:42:49 +08:00
|
|
|
l_noret luaM_toobig (lua_State *L) {
|
2004-11-19 23:52:40 +08:00
|
|
|
luaG_runerror(L, "memory allocation error: block too big");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-01-14 00:30:47 +08:00
|
|
|
/*
|
|
|
|
** generic allocation routine.
|
|
|
|
*/
|
2004-12-01 23:46:18 +08:00
|
|
|
void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {
|
2006-07-11 23:53:29 +08:00
|
|
|
void *newblock;
|
2003-10-03 04:31:17 +08:00
|
|
|
global_State *g = G(L);
|
2009-12-17 23:46:44 +08:00
|
|
|
size_t realosize = (block) ? osize : 0;
|
|
|
|
lua_assert((realosize == 0) == (block == NULL));
|
2006-07-11 23:53:29 +08:00
|
|
|
#if defined(HARDMEMTESTS)
|
2010-12-21 02:17:46 +08:00
|
|
|
if (nsize > realosize && g->gcrunning)
|
2006-07-11 23:53:29 +08:00
|
|
|
luaC_fullgc(L, 1); /* force a GC whenever possible */
|
|
|
|
#endif
|
|
|
|
newblock = (*g->frealloc)(g->ud, block, osize, nsize);
|
|
|
|
if (newblock == NULL && nsize > 0) {
|
2015-03-07 03:45:54 +08:00
|
|
|
lua_assert(nsize > realosize); /* cannot fail when shrinking a block */
|
2015-03-04 02:18:29 +08:00
|
|
|
if (g->version) { /* is state fully built? */
|
|
|
|
luaC_fullgc(L, 1); /* try to free some memory... */
|
|
|
|
newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */
|
|
|
|
}
|
2006-07-11 23:53:29 +08:00
|
|
|
if (newblock == NULL)
|
|
|
|
luaD_throw(L, LUA_ERRMEM);
|
|
|
|
}
|
|
|
|
lua_assert((nsize == 0) == (newblock == NULL));
|
2010-12-21 03:40:07 +08:00
|
|
|
g->GCdebt = (g->GCdebt + nsize) - realosize;
|
2006-07-11 23:53:29 +08:00
|
|
|
return newblock;
|
2000-01-14 00:30:47 +08:00
|
|
|
}
|
|
|
|
|