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