2000-01-14 20:15:44 +03:00
|
|
|
/*
|
2017-06-27 14:35:31 +03:00
|
|
|
** $Id: ldebug.h,v 2.14 2015/05/22 17:45:56 roberto Exp roberto $
|
2000-01-14 20:15:44 +03:00
|
|
|
** Auxiliary functions from Debug Interface module
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldebug_h
|
|
|
|
#define ldebug_h
|
|
|
|
|
|
|
|
|
2000-06-29 00:21:06 +04:00
|
|
|
#include "lstate.h"
|
2000-01-14 20:15:44 +03:00
|
|
|
|
|
|
|
|
2002-04-10 16:11:07 +04:00
|
|
|
#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1)
|
|
|
|
|
2002-11-18 14:01:55 +03:00
|
|
|
#define resethookcount(L) (L->hookcount = L->basehookcount)
|
2002-07-08 22:21:33 +04:00
|
|
|
|
2017-06-27 14:35:31 +03:00
|
|
|
/*
|
|
|
|
** mark for entries in 'lineinfo' array that has absolute information in
|
|
|
|
** 'abslineinfo' array
|
|
|
|
*/
|
|
|
|
#define ABSLINEINFO (-0x80)
|
2002-07-08 22:21:33 +04:00
|
|
|
|
2017-06-27 14:35:31 +03:00
|
|
|
LUAI_FUNC int luaG_getfuncline (Proto *f, int pc);
|
2011-10-08 00:45:19 +04:00
|
|
|
LUAI_FUNC l_noret luaG_typeerror (lua_State *L, const TValue *o,
|
|
|
|
const char *opname);
|
2013-04-29 20:58:10 +04:00
|
|
|
LUAI_FUNC l_noret luaG_concaterror (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2);
|
2014-11-10 17:46:05 +03:00
|
|
|
LUAI_FUNC l_noret luaG_opinterror (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2,
|
|
|
|
const char *msg);
|
2013-05-06 21:21:59 +04:00
|
|
|
LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2);
|
2011-10-08 00:45:19 +04:00
|
|
|
LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
|
|
|
|
const TValue *p2);
|
|
|
|
LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
|
2015-05-22 20:45:56 +03:00
|
|
|
LUAI_FUNC const char *luaG_addinfo (lua_State *L, const char *msg,
|
|
|
|
TString *src, int line);
|
2011-10-08 00:45:19 +04:00
|
|
|
LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
|
2013-04-25 19:59:42 +04:00
|
|
|
LUAI_FUNC void luaG_traceexec (lua_State *L);
|
|
|
|
|
2000-01-14 20:15:44 +03:00
|
|
|
|
|
|
|
#endif
|