lmem.h 1.8 KB

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