2001-02-02 18:12:25 +03:00
|
|
|
/*
|
2014-10-01 15:54:56 +04:00
|
|
|
** $Id: ltests.h,v 2.39 2014/07/24 19:33:29 roberto Exp roberto $
|
2001-02-02 18:12:25 +03:00
|
|
|
** Internal Header for Debugging of the Lua Implementation
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltests_h
|
|
|
|
#define ltests_h
|
|
|
|
|
|
|
|
|
2001-02-06 19:01:29 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
/* test Lua with no compatibility code */
|
|
|
|
#undef LUA_COMPAT_MATHLIB
|
2014-07-24 23:33:29 +04:00
|
|
|
#undef LUA_COMPAT_IPAIRS
|
2014-07-23 20:47:47 +04:00
|
|
|
#undef LUA_COMPAT_BITLIB
|
2014-10-01 15:54:56 +04:00
|
|
|
#undef LUA_COMPAT_APIINTCASTS
|
2014-07-23 20:47:47 +04:00
|
|
|
#undef LUA_COMPAT_FLOATSTRING
|
|
|
|
#undef LUA_COMPAT_UNPACK
|
|
|
|
#undef LUA_COMPAT_LOADERS
|
|
|
|
#undef LUA_COMPAT_LOG10
|
|
|
|
#undef LUA_COMPAT_LOADSTRING
|
|
|
|
#undef LUA_COMPAT_MAXN
|
|
|
|
#undef LUA_COMPAT_MODULE
|
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
|
|
|
|
/* turn on assertions */
|
2001-02-02 18:12:25 +03:00
|
|
|
#undef NDEBUG
|
|
|
|
#include <assert.h>
|
|
|
|
#define lua_assert(c) assert(c)
|
|
|
|
|
|
|
|
|
|
|
|
/* to avoid warnings, and to make sure value is really unused */
|
|
|
|
#define UNUSED(x) (x=0, (void)(x))
|
|
|
|
|
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
/* memory-allocator control variables */
|
2003-10-03 00:31:17 +04:00
|
|
|
typedef struct Memcontrol {
|
|
|
|
unsigned long numblocks;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long maxmem;
|
|
|
|
unsigned long memlimit;
|
2010-04-12 20:07:29 +04:00
|
|
|
unsigned long objcount[LUA_NUMTAGS];
|
2003-10-03 00:31:17 +04:00
|
|
|
} Memcontrol;
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2009-12-16 19:42:58 +03:00
|
|
|
extern Memcontrol l_memcontrol;
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2004-03-16 00:04:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
2010-01-11 20:33:09 +03:00
|
|
|
extern void *l_Trick;
|
2004-03-16 00:04:54 +03:00
|
|
|
|
|
|
|
|
2005-05-03 23:01:17 +04:00
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
/*
|
|
|
|
** Function to traverse and check all memory used by Lua
|
|
|
|
*/
|
2004-03-16 00:04:54 +03:00
|
|
|
int lua_checkmemory (lua_State *L);
|
2004-02-16 22:09:52 +03:00
|
|
|
|
2001-02-06 19:01:29 +03:00
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
/* test for lock/unlock */
|
2004-06-02 23:09:21 +04:00
|
|
|
|
2005-09-14 21:48:57 +04:00
|
|
|
struct L_EXTRA { int lock; int *plock; };
|
2014-07-24 18:00:16 +04:00
|
|
|
#undef LUA_EXTRASPACE
|
|
|
|
#define LUA_EXTRASPACE sizeof(struct L_EXTRA)
|
|
|
|
#define getlock(l) cast(struct L_EXTRA*, lua_getextraspace(l))
|
2005-09-14 21:48:57 +04:00
|
|
|
#define luai_userstateopen(l) \
|
|
|
|
(getlock(l)->lock = 0, getlock(l)->plock = &(getlock(l)->lock))
|
2013-11-08 21:36:05 +04:00
|
|
|
#define luai_userstateclose(l) \
|
|
|
|
lua_assert(getlock(l)->lock == 1 && getlock(l)->plock == &(getlock(l)->lock))
|
2014-07-24 18:00:16 +04:00
|
|
|
#define luai_userstatethread(l,l1) \
|
|
|
|
lua_assert(getlock(l1)->plock == getlock(l)->plock)
|
2010-04-19 21:40:13 +04:00
|
|
|
#define luai_userstatefree(l,l1) \
|
|
|
|
lua_assert(getlock(l)->plock == getlock(l1)->plock)
|
2005-09-14 21:48:57 +04:00
|
|
|
#define lua_lock(l) lua_assert((*getlock(l)->plock)++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)->plock) == 0)
|
2001-02-02 18:12:25 +03:00
|
|
|
|
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
|
2002-07-17 20:25:13 +04:00
|
|
|
int luaB_opentests (lua_State *L);
|
2001-02-02 18:12:25 +03:00
|
|
|
|
2014-07-23 20:47:47 +04:00
|
|
|
void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
|
2009-12-17 15:26:09 +03:00
|
|
|
|
|
|
|
#if defined(lua_c)
|
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &l_memcontrol)
|
2010-07-28 19:51:59 +04:00
|
|
|
#define luaL_openlibs(L) \
|
|
|
|
{ (luaL_openlibs)(L); luaL_requiref(L, "T", luaB_opentests, 1); }
|
2005-01-10 19:31:30 +03:00
|
|
|
#endif
|
2004-05-01 00:13:38 +04:00
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
|
|
|
|
|
2001-10-18 01:06:56 +04:00
|
|
|
/* change some sizes to give some bugs a chance */
|
|
|
|
|
2004-05-03 16:28:43 +04:00
|
|
|
#undef LUAL_BUFFERSIZE
|
2007-09-30 17:09:43 +04:00
|
|
|
#define LUAL_BUFFERSIZE 23
|
2002-03-08 22:17:59 +03:00
|
|
|
#define MINSTRTABSIZE 2
|
2001-10-18 01:06:56 +04:00
|
|
|
|
2008-08-05 23:24:46 +04:00
|
|
|
|
|
|
|
#undef LUAI_USER_ALIGNMENT_T
|
2014-07-18 17:27:45 +04:00
|
|
|
#define LUAI_USER_ALIGNMENT_T union { char b[sizeof(void*) * 8]; }
|
2008-08-05 23:24:46 +04:00
|
|
|
|
|
|
|
|
2001-02-02 18:12:25 +03:00
|
|
|
#endif
|
2014-07-23 20:47:47 +04:00
|
|
|
|