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