aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h32
1 files changed, 18 insertions, 14 deletions
diff --git a/lmem.h b/lmem.h
index 4ccb88ab..3c828789 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmem.h,v 1.43 2014/12/19 17:26:14 roberto Exp roberto $ 2** $Id: lmem.h,v 1.44 2017/12/06 18:36:31 roberto Exp roberto $
3** Interface to Memory Manager 3** Interface to Memory Manager
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -31,36 +31,40 @@
31#define luaM_checksize(L,n,e) \ 31#define luaM_checksize(L,n,e) \
32 (luaM_testsize(n,e) ? luaM_toobig(L) : cast_void(0)) 32 (luaM_testsize(n,e) ? luaM_toobig(L) : cast_void(0))
33 33
34
34/* 35/*
35** This macro reallocs a vector 'b' from 'on' to 'n' elements, where 36** Computes the minimum between 'n' and 'MAX_SIZET/sizeof(t)', so that
36** each element has size 'e'. In case of arithmetic overflow of the 37** the result is not larger than 'n' and cannot overflow a 'size_t'
37** product 'n'*'e', it raises an error (calling 'luaM_toobig'). 38** when multiplied by the size of type 't'. (Assumes that 'n' is an
39** 'int' or 'unsigned int' and that 'int' is not larger than 'size_t'.)
38*/ 40*/
39#define luaM_reallocv(L,b,on,n,e) \ 41#define luaM_limitN(n,t) \
40 (luaM_checksize(L,n,e), \ 42 ((cast(size_t, n) > MAX_SIZET/sizeof(t)) ? (MAX_SIZET/sizeof(t)) : (n))
41 luaM_realloc_(L, (b), cast(size_t, on)*(e), cast(size_t, n)*(e)))
42 43
43/* 44/*
44** Arrays of chars do not need any test 45** Arrays of chars do not need any test
45*/ 46*/
46#define luaM_reallocvchar(L,b,on,n) \ 47#define luaM_reallocvchar(L,b,on,n) \
47 cast(char *, luaM_realloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char))) 48 cast(char *, luaM_realloc(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
48 49
49#define luaM_freemem(L, b, s) luaM_free_(L, (b), (s)) 50#define luaM_freemem(L, b, s) luaM_free_(L, (b), (s))
50#define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b))) 51#define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b)))
51#define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b))) 52#define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b)))
52 53
53#define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t), 0)) 54#define luaM_new(L,t) cast(t*, luaM_malloc(L, sizeof(t), 0))
54#define luaM_newvector(L,n,t) \ 55#define luaM_newvector(L,n,t) cast(t*, luaM_malloc(L, (n)*sizeof(t), 0))
55 (luaM_checksize(L,n,sizeof(t)), cast(t *, luaM_malloc(L, (n)*sizeof(t), 0))) 56#define luaM_newvectorchecked(L,n,t) \
57 (luaM_checksize(L,n,sizeof(t)), luaM_newvector(L,n,t))
56 58
57#define luaM_newobject(L,tag,s) luaM_malloc(L, (s), tag) 59#define luaM_newobject(L,tag,s) luaM_malloc(L, (s), tag)
58 60
59#define luaM_growvector(L,v,nelems,size,t,limit,e) \ 61#define luaM_growvector(L,v,nelems,size,t,limit,e) \
60 ((v)=cast(t *, luaM_growaux_(L,v,nelems,&(size),sizeof(t),limit,e))) 62 ((v)=cast(t *, luaM_growaux_(L,v,nelems,&(size),sizeof(t), \
63 luaM_limitN(limit,t),e)))
61 64
62#define luaM_reallocvector(L, v,oldn,n,t) \ 65#define luaM_reallocvector(L, v,oldn,n,t) \
63 ((v)=cast(t *, luaM_reallocv(L, v, oldn, n, sizeof(t)))) 66 ((v)=cast(t *, luaM_realloc(L, v, cast(size_t, oldn) * sizeof(t), \
67 cast(size_t, n) * sizeof(t))))
64 68
65#define luaM_shrinkvector(L,v,size,fs,t) \ 69#define luaM_shrinkvector(L,v,size,fs,t) \
66 ((v)=cast(t *, luaM_shrinkvector_(L, v, &(size), fs, sizeof(t)))) 70 ((v)=cast(t *, luaM_shrinkvector_(L, v, &(size), fs, sizeof(t))))
@@ -68,7 +72,7 @@
68LUAI_FUNC l_noret luaM_toobig (lua_State *L); 72LUAI_FUNC l_noret luaM_toobig (lua_State *L);
69 73
70/* not to be called directly */ 74/* not to be called directly */
71LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize, 75LUAI_FUNC void *luaM_realloc (lua_State *L, void *block, size_t oldsize,
72 size_t size); 76 size_t size);
73LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize); 77LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize);
74LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems, 78LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems,