lmem.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. ** $Id: lmem.h,v 1.45 2017/12/07 18:59:52 roberto Exp roberto $
  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. #define luaM_error(L) luaD_throw(L, LUA_ERRMEM)
  12. /*
  13. ** This macro tests whether it is safe to multiply 'n' by the size of
  14. ** type 't' without overflows. Because 'e' is always constant, it avoids
  15. ** the runtime division MAX_SIZET/(e).
  16. ** (The macro is somewhat complex to avoid warnings: The 'sizeof'
  17. ** comparison avoids a runtime comparison when overflow cannot occur.
  18. ** The compiler should be able to optimize the real test by itself, but
  19. ** when it does it, it may give a warning about "comparison is always
  20. ** false due to limited range of data type"; the +1 tricks the compiler,
  21. ** avoiding this warning but also this optimization.)
  22. */
  23. #define luaM_testsize(n,e) \
  24. (sizeof(n) >= sizeof(size_t) && cast(size_t, (n)) + 1 > MAX_SIZET/(e))
  25. #define luaM_checksize(L,n,e) \
  26. (luaM_testsize(n,e) ? luaM_toobig(L) : cast_void(0))
  27. /*
  28. ** Computes the minimum between 'n' and 'MAX_SIZET/sizeof(t)', so that
  29. ** the result is not larger than 'n' and cannot overflow a 'size_t'
  30. ** when multiplied by the size of type 't'. (Assumes that 'n' is an
  31. ** 'int' or 'unsigned int' and that 'int' is not larger than 'size_t'.)
  32. */
  33. #define luaM_limitN(n,t) \
  34. ((cast(size_t, n) > MAX_SIZET/sizeof(t)) ? (MAX_SIZET/sizeof(t)) : (n))
  35. /*
  36. ** Arrays of chars do not need any test
  37. */
  38. #define luaM_reallocvchar(L,b,on,n) \
  39. cast(char *, luaM_saferealloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
  40. #define luaM_freemem(L, b, s) luaM_free_(L, (b), (s))
  41. #define luaM_free(L, b) luaM_free_(L, (b), sizeof(*(b)))
  42. #define luaM_freearray(L, b, n) luaM_free_(L, (b), (n)*sizeof(*(b)))
  43. #define luaM_new(L,t) cast(t*, luaM_malloc_(L, sizeof(t), 0))
  44. #define luaM_newvector(L,n,t) cast(t*, luaM_malloc_(L, (n)*sizeof(t), 0))
  45. #define luaM_newvectorchecked(L,n,t) \
  46. (luaM_checksize(L,n,sizeof(t)), luaM_newvector(L,n,t))
  47. #define luaM_newobject(L,tag,s) luaM_malloc_(L, (s), tag)
  48. #define luaM_growvector(L,v,nelems,size,t,limit,e) \
  49. ((v)=cast(t *, luaM_growaux_(L,v,nelems,&(size),sizeof(t), \
  50. luaM_limitN(limit,t),e)))
  51. #define luaM_reallocvector(L, v,oldn,n,t) \
  52. (cast(t *, luaM_realloc_(L, v, cast(size_t, oldn) * sizeof(t), \
  53. cast(size_t, n) * sizeof(t))))
  54. #define luaM_shrinkvector(L,v,size,fs,t) \
  55. ((v)=cast(t *, luaM_shrinkvector_(L, v, &(size), fs, sizeof(t))))
  56. LUAI_FUNC l_noret luaM_toobig (lua_State *L);
  57. /* not to be called directly */
  58. LUAI_FUNC void *luaM_realloc_ (lua_State *L, void *block, size_t oldsize,
  59. size_t size);
  60. LUAI_FUNC void *luaM_saferealloc_ (lua_State *L, void *block, size_t oldsize,
  61. size_t size);
  62. LUAI_FUNC void luaM_free_ (lua_State *L, void *block, size_t osize);
  63. LUAI_FUNC void *luaM_growaux_ (lua_State *L, void *block, int nelems,
  64. int *size, int size_elem, int limit,
  65. const char *what);
  66. LUAI_FUNC void *luaM_shrinkvector_ (lua_State *L, void *block, int *nelem,
  67. int final_n, int size_elem);
  68. LUAI_FUNC void *luaM_malloc_ (lua_State *L, size_t size, int tag);
  69. #endif