|
native Lua
0.5.0-devel
Lua on the platform you use with the compiler you choose
|
Go to the documentation of this file.
19 #define luaM_error(L) luaD_throw(L, LUA_ERRMEM)
33 #define luaM_testsize(n,e) \
34 (sizeof(n) >= sizeof(size_t) && cast_sizet((n)) + 1 > MAX_SIZET/(e))
36 #define luaM_checksize(L,n,e) \
37 (luaM_testsize(n,e) ? luaM_toobig(L) : cast_void(0))
46 #define luaM_limitN(n,t) \
47 ((cast_sizet(n) <= MAX_SIZET/sizeof(t)) ? (n) : \
48 cast_uint((MAX_SIZET/sizeof(t))))
54 #define luaM_reallocvchar(L,b,on,n) \
55 cast_charp(luaM_saferealloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
57 #define luaM_freemem(L, b, s) luaM_free_(L, (b), (s))
58 #define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b)))
59 #define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b)))
61 #define luaM_new(L,t) cast(t*, luaM_malloc_(L, sizeof(t), 0))
62 #define luaM_newvector(L,n,t) cast(t*, luaM_malloc_(L, (n)*sizeof(t), 0))
63 #define luaM_newvectorchecked(L,n,t) \
64 (luaM_checksize(L,n,sizeof(t)), luaM_newvector(L,n,t))
66 #define luaM_newobject(L,tag,s) luaM_malloc_(L, (s), tag)
68 #define luaM_growvector(L,v,nelems,size,t,limit,e) \
69 ((v)=cast(t *, luaM_growaux_(L,v,nelems,&(size),sizeof(t), \
70 luaM_limitN(limit,t),e)))
72 #define luaM_reallocvector(L, v,oldn,n,t) \
73 (cast(t *, luaM_realloc_(L, v, cast_sizet(oldn) * sizeof(t), \
74 cast_sizet(n) * sizeof(t))))
76 #define luaM_shrinkvector(L,v,size,fs,t) \
77 ((v)=cast(t *, luaM_shrinkvector_(L, v, &(size), fs, sizeof(t))))
88 int *
size,
int size_elem,
int limit,
91 int final_n,
int size_elem);
#define LUAI_FUNC
Definition: luaconf.h:324
#define l_noret
Definition: llimits.h:172
LUAI_FUNC void * luaM_shrinkvector_(lua_State *L, void *block, int *nelem, int final_n, int size_elem)
Definition: lmem.c:110
LUAI_FUNC void * luaM_malloc_(lua_State *L, size_t size, int tag)
Definition: lmem.c:188
native Lua configuration file
LUAI_FUNC void * luaM_saferealloc_(lua_State *L, void *block, size_t oldsize, size_t size)
Definition: lmem.c:179
LUAI_FUNC void * luaM_growaux_(lua_State *L, void *block, int nelems, int *size, int size_elem, int limit, const char *what)
Definition: lmem.c:79
LUAI_FUNC l_noret luaM_toobig(lua_State *L)
Definition: lmem.c:124
LUAI_FUNC void luaM_free_(lua_State *L, void *block, size_t osize)
Definition: lmem.c:132
int size
Definition: lparser.h:133
LUAI_FUNC void * luaM_realloc_(lua_State *L, void *block, size_t oldsize, size_t size)
Definition: lmem.c:162