1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2013-02-20 06:08:21 -08:00
|
|
|
** $Id: lmem.h,v 1.39 2012/11/14 17:21:34 roberto Exp roberto $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Interface to Memory Manager
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lmem_h
|
|
|
|
#define lmem_h
|
|
|
|
|
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
#include <stddef.h>
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2000-05-24 06:54:49 -07:00
|
|
|
#include "llimits.h"
|
1999-11-22 05:12:07 -08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-05-01 13:48:12 -07:00
|
|
|
|
2012-11-14 09:21:34 -08:00
|
|
|
/*
|
|
|
|
** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is
|
|
|
|
** always constant.
|
|
|
|
** The macro is somewhat complex to avoid warnings:
|
2013-02-20 06:08:21 -08:00
|
|
|
** +1 avoids warnings of "comparison has constant result";
|
2012-11-14 09:21:34 -08:00
|
|
|
** cast to 'void' avoids warnings of "value unused".
|
|
|
|
*/
|
2004-11-19 07:52:40 -08:00
|
|
|
#define luaM_reallocv(L,b,on,n,e) \
|
2012-11-14 09:21:34 -08:00
|
|
|
(cast(void, \
|
|
|
|
(cast(size_t, (n)+1) > MAX_SIZET/(e)) ? (luaM_toobig(L), 0) : 0), \
|
|
|
|
luaM_realloc_(L, (b), (on)*(e), (n)*(e)))
|
2004-11-19 07:52:40 -08:00
|
|
|
|
2004-12-01 07:46:18 -08:00
|
|
|
#define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0)
|
|
|
|
#define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0)
|
2009-04-17 07:40:13 -07:00
|
|
|
#define luaM_freearray(L, b, n) luaM_reallocv(L, (b), n, 0, sizeof((b)[0]))
|
2000-12-28 04:55:41 -08:00
|
|
|
|
2009-12-17 07:46:44 -08:00
|
|
|
#define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s))
|
2004-11-19 07:52:40 -08:00
|
|
|
#define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t)))
|
|
|
|
#define luaM_newvector(L,n,t) \
|
|
|
|
cast(t *, luaM_reallocv(L, NULL, 0, n, sizeof(t)))
|
2000-05-24 06:54:49 -07:00
|
|
|
|
2009-12-17 07:46:44 -08:00
|
|
|
#define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s))
|
|
|
|
|
2000-12-26 10:46:09 -08:00
|
|
|
#define luaM_growvector(L,v,nelems,size,t,limit,e) \
|
2004-12-01 07:46:18 -08:00
|
|
|
if ((nelems)+1 > (size)) \
|
|
|
|
((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e)))
|
2000-05-24 06:54:49 -07:00
|
|
|
|
2000-12-28 04:55:41 -08:00
|
|
|
#define luaM_reallocvector(L, v,oldn,n,t) \
|
2004-11-19 07:52:40 -08:00
|
|
|
((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t))))
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2011-11-30 04:42:49 -08:00
|
|
|
LUAI_FUNC l_noret luaM_toobig (lua_State *L);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2007-02-09 05:04:52 -08:00
|
|
|
/* not to be called directly */
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
|
|
|
|
size_t size);
|
|
|
|
LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size,
|
|
|
|
size_t size_elem, int limit,
|
2006-09-14 11:42:28 -07:00
|
|
|
const char *what);
|
2005-04-25 12:24:10 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#endif
|
|
|
|
|