1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2017-12-06 10:36:31 -08:00
|
|
|
** $Id: lmem.h,v 1.43 2014/12/19 17:26:14 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
|
|
|
/*
|
2017-12-06 10:36:31 -08:00
|
|
|
** This macro tests whether it is safe to multiply 'n' by the size of
|
|
|
|
** type 't' without overflows. Because 'e' is always constant, it avoids
|
|
|
|
** the runtime division MAX_SIZET/(e).
|
2014-10-08 13:25:51 -07:00
|
|
|
** (The macro is somewhat complex to avoid warnings: The 'sizeof'
|
|
|
|
** comparison avoids a runtime comparison when overflow cannot occur.
|
|
|
|
** The compiler should be able to optimize the real test by itself, but
|
|
|
|
** when it does it, it may give a warning about "comparison is always
|
|
|
|
** false due to limited range of data type"; the +1 tricks the compiler,
|
|
|
|
** avoiding this warning but also this optimization.)
|
2012-11-14 09:21:34 -08:00
|
|
|
*/
|
2017-12-06 10:36:31 -08:00
|
|
|
#define luaM_testsize(n,e) \
|
|
|
|
(sizeof(n) >= sizeof(size_t) && cast(size_t, (n)) + 1 > MAX_SIZET/(e))
|
|
|
|
|
|
|
|
#define luaM_checksize(L,n,e) \
|
|
|
|
(luaM_testsize(n,e) ? luaM_toobig(L) : cast_void(0))
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This macro reallocs a vector 'b' from 'on' to 'n' elements, where
|
|
|
|
** each element has size 'e'. In case of arithmetic overflow of the
|
|
|
|
** product 'n'*'e', it raises an error (calling 'luaM_toobig').
|
|
|
|
*/
|
2004-11-19 07:52:40 -08:00
|
|
|
#define luaM_reallocv(L,b,on,n,e) \
|
2017-12-06 10:36:31 -08:00
|
|
|
(luaM_checksize(L,n,e), \
|
|
|
|
luaM_realloc_(L, (b), cast(size_t, on)*(e), cast(size_t, n)*(e)))
|
2004-11-19 07:52:40 -08:00
|
|
|
|
2014-12-19 05:45:40 -08:00
|
|
|
/*
|
|
|
|
** Arrays of chars do not need any test
|
|
|
|
*/
|
2014-12-19 09:26:14 -08:00
|
|
|
#define luaM_reallocvchar(L,b,on,n) \
|
|
|
|
cast(char *, luaM_realloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
|
2014-12-19 05:45:40 -08:00
|
|
|
|
2017-12-06 10:36:31 -08:00
|
|
|
#define luaM_freemem(L, b, s) luaM_free_(L, (b), (s))
|
|
|
|
#define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b)))
|
|
|
|
#define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b)))
|
2000-12-28 04:55:41 -08:00
|
|
|
|
2017-12-06 10:36:31 -08:00
|
|
|
#define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t), 0))
|
2004-11-19 07:52:40 -08:00
|
|
|
#define luaM_newvector(L,n,t) \
|
2017-12-06 10:36:31 -08:00
|
|
|
(luaM_checksize(L,n,sizeof(t)), cast(t *, luaM_malloc(L, (n)*sizeof(t), 0)))
|
2000-05-24 06:54:49 -07:00
|
|
|
|
2017-12-06 10:36:31 -08:00
|
|
|
#define luaM_newobject(L,tag,s) luaM_malloc(L, (s), tag)
|
2009-12-17 07:46:44 -08:00
|
|
|
|
2000-12-26 10:46:09 -08:00
|
|
|
#define luaM_growvector(L,v,nelems,size,t,limit,e) \
|
2017-12-06 10:36:31 -08:00
|
|
|
((v)=cast(t *, luaM_growaux_(L,v,nelems,&(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
|
|
|
|
2017-12-06 10:36:31 -08:00
|
|
|
#define luaM_shrinkvector(L,v,size,fs,t) \
|
|
|
|
((v)=cast(t *, luaM_shrinkvector_(L, v, &(size), fs, sizeof(t))))
|
|
|
|
|
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);
|
2017-12-06 10:36:31 -08:00
|
|
|
LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize);
|
|
|
|
LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems,
|
|
|
|
int *size, int size_elem, int limit,
|
2006-09-14 11:42:28 -07:00
|
|
|
const char *what);
|
2017-12-06 10:36:31 -08:00
|
|
|
LUAI_FUNC void *luaM_shrinkvector_ (lua_State *L, void *block, int *nelem,
|
|
|
|
int final_n, int size_elem);
|
|
|
|
LUAI_FUNC void *luaM_malloc (lua_State *L, size_t size, int tag);
|
2005-04-25 12:24:10 -07:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#endif
|
|
|
|
|