2001-02-02 13:12:25 -02:00
|
|
|
/*
|
2008-07-18 16:58:10 -03:00
|
|
|
** $Id: ltests.h,v 2.22 2008/07/11 17:51:01 roberto Exp roberto $
|
2001-02-02 13:12:25 -02:00
|
|
|
** Internal Header for Debugging of the Lua Implementation
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ltests_h
|
|
|
|
#define ltests_h
|
|
|
|
|
|
|
|
|
2001-02-06 14:01:29 -02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2008-07-11 14:51:01 -03:00
|
|
|
/* do not use compatibility macros in Lua code */
|
2008-07-18 16:58:10 -03:00
|
|
|
#undef LUA_COMPAT_API
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
#define LUA_DEBUG
|
|
|
|
|
|
|
|
#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))
|
|
|
|
|
|
|
|
|
|
|
|
/* memory allocator control variables */
|
2003-10-02 17:31:17 -03:00
|
|
|
typedef struct Memcontrol {
|
|
|
|
unsigned long numblocks;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long maxmem;
|
|
|
|
unsigned long memlimit;
|
|
|
|
} Memcontrol;
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2007-11-12 14:28:45 -02:00
|
|
|
LUAI_DATA Memcontrol l_memcontrol;
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2004-03-15 18:04:54 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
** generic variable for debug tricks
|
|
|
|
*/
|
2008-06-23 13:50:34 -03:00
|
|
|
LUAI_DATA void *l_Trick;
|
2004-03-15 18:04:54 -03:00
|
|
|
|
|
|
|
|
2003-10-02 17:31:17 -03:00
|
|
|
void *debug_realloc (void *ud, void *block, size_t osize, size_t nsize);
|
2001-02-06 14:01:29 -02:00
|
|
|
|
2003-10-02 17:31:17 -03:00
|
|
|
#ifdef lua_c
|
2007-11-12 14:28:45 -02:00
|
|
|
#define luaL_newstate() lua_newstate(debug_realloc, &l_memcontrol)
|
2003-10-02 17:31:17 -03:00
|
|
|
#endif
|
2001-02-06 14:01:29 -02:00
|
|
|
|
|
|
|
|
2005-05-03 16:01:17 -03:00
|
|
|
typedef struct CallInfo *pCallInfo;
|
|
|
|
|
2004-03-15 18:04:54 -03:00
|
|
|
int lua_checkmemory (lua_State *L);
|
2005-05-03 16:01:17 -03:00
|
|
|
int lua_checkpc (lua_State *L, pCallInfo ci);
|
2004-02-16 16:09:52 -03:00
|
|
|
|
2001-02-06 14:01:29 -02:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
/* test for lock/unlock */
|
2005-03-18 15:55:45 -03:00
|
|
|
#undef luai_userstateopen
|
2005-09-14 14:48:57 -03:00
|
|
|
#undef luai_userstatethread
|
2004-06-02 16:09:21 -03:00
|
|
|
#undef lua_lock
|
|
|
|
#undef lua_unlock
|
2005-03-18 15:55:45 -03:00
|
|
|
#undef LUAI_EXTRASPACE
|
2004-06-02 16:09:21 -03:00
|
|
|
|
2005-09-14 14:48:57 -03:00
|
|
|
struct L_EXTRA { int lock; int *plock; };
|
|
|
|
#define LUAI_EXTRASPACE sizeof(struct L_EXTRA)
|
|
|
|
#define getlock(l) (cast(struct L_EXTRA *, l) - 1)
|
|
|
|
#define luai_userstateopen(l) \
|
|
|
|
(getlock(l)->lock = 0, getlock(l)->plock = &(getlock(l)->lock))
|
|
|
|
#define luai_userstatethread(l,l1) (getlock(l1)->plock = getlock(l)->plock)
|
|
|
|
#define lua_lock(l) lua_assert((*getlock(l)->plock)++ == 0)
|
|
|
|
#define lua_unlock(l) lua_assert(--(*getlock(l)->plock) == 0)
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
|
2002-07-17 13:25:13 -03:00
|
|
|
int luaB_opentests (lua_State *L);
|
2001-02-02 13:12:25 -02:00
|
|
|
|
2005-01-10 14:31:30 -02:00
|
|
|
#ifdef lua_c
|
2005-04-13 14:24:20 -03:00
|
|
|
#define luaL_openlibs(L) { (luaL_openlibs)(L); luaB_opentests(L); }
|
2005-01-10 14:31:30 -02:00
|
|
|
#endif
|
2004-04-30 17:13:38 -03:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
|
|
|
|
|
2001-10-17 19:06:56 -02:00
|
|
|
/* change some sizes to give some bugs a chance */
|
|
|
|
|
2004-05-03 09:28:43 -03:00
|
|
|
#undef LUAL_BUFFERSIZE
|
2007-09-30 10:09:43 -03:00
|
|
|
#define LUAL_BUFFERSIZE 23
|
2002-03-08 16:17:59 -03:00
|
|
|
#define MINSTRTABSIZE 2
|
2001-10-17 19:06:56 -02:00
|
|
|
|
2001-02-02 13:12:25 -02:00
|
|
|
#endif
|