1*eda14cbcSMatt Macy /* BEGIN CSTYLED */ 2*eda14cbcSMatt Macy /* 3*eda14cbcSMatt Macy ** $Id: lmem.h,v 1.40.1.1 2013/04/12 18:48:47 roberto Exp $ 4*eda14cbcSMatt Macy ** Interface to Memory Manager 5*eda14cbcSMatt Macy ** See Copyright Notice in lua.h 6*eda14cbcSMatt Macy */ 7*eda14cbcSMatt Macy 8*eda14cbcSMatt Macy #ifndef lmem_h 9*eda14cbcSMatt Macy #define lmem_h 10*eda14cbcSMatt Macy 11*eda14cbcSMatt Macy 12*eda14cbcSMatt Macy #include "llimits.h" 13*eda14cbcSMatt Macy #include <sys/lua/lua.h> 14*eda14cbcSMatt Macy 15*eda14cbcSMatt Macy 16*eda14cbcSMatt Macy /* 17*eda14cbcSMatt Macy ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is 18*eda14cbcSMatt Macy ** always constant. 19*eda14cbcSMatt Macy ** The macro is somewhat complex to avoid warnings: 20*eda14cbcSMatt Macy ** +1 avoids warnings of "comparison has constant result"; 21*eda14cbcSMatt Macy ** cast to 'void' avoids warnings of "value unused". 22*eda14cbcSMatt Macy */ 23*eda14cbcSMatt Macy #define luaM_reallocv(L,b,on,n,e) \ 24*eda14cbcSMatt Macy (cast(void, \ 25*eda14cbcSMatt Macy (cast(size_t, (n)+1) > MAX_SIZET/(e)) ? (luaM_toobig(L), 0) : 0), \ 26*eda14cbcSMatt Macy luaM_realloc_(L, (b), (on)*(e), (n)*(e))) 27*eda14cbcSMatt Macy 28*eda14cbcSMatt Macy #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) 29*eda14cbcSMatt Macy #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) 30*eda14cbcSMatt Macy #define luaM_freearray(L, b, n) luaM_reallocv(L, (b), n, 0, sizeof((b)[0])) 31*eda14cbcSMatt Macy 32*eda14cbcSMatt Macy #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) 33*eda14cbcSMatt Macy #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) 34*eda14cbcSMatt Macy #define luaM_newvector(L,n,t) \ 35*eda14cbcSMatt Macy cast(t *, luaM_reallocv(L, NULL, 0, n, sizeof(t))) 36*eda14cbcSMatt Macy 37*eda14cbcSMatt Macy #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) 38*eda14cbcSMatt Macy 39*eda14cbcSMatt Macy #define luaM_growvector(L,v,nelems,size,t,limit,e) \ 40*eda14cbcSMatt Macy if ((nelems)+1 > (size)) \ 41*eda14cbcSMatt Macy ((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e))) 42*eda14cbcSMatt Macy 43*eda14cbcSMatt Macy #define luaM_reallocvector(L, v,oldn,n,t) \ 44*eda14cbcSMatt Macy ((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t)))) 45*eda14cbcSMatt Macy 46*eda14cbcSMatt Macy LUAI_FUNC l_noret luaM_toobig (lua_State *L); 47*eda14cbcSMatt Macy 48*eda14cbcSMatt Macy /* not to be called directly */ 49*eda14cbcSMatt Macy LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize, 50*eda14cbcSMatt Macy size_t size); 51*eda14cbcSMatt Macy LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int *size, 52*eda14cbcSMatt Macy size_t size_elem, int limit, 53*eda14cbcSMatt Macy const char *what); 54*eda14cbcSMatt Macy 55*eda14cbcSMatt Macy #endif 56*eda14cbcSMatt Macy /* END CSTYLED */ 57