2000-01-14 09:15:44 -08:00
|
|
|
/*
|
2004-06-02 12:07:55 -07:00
|
|
|
** $Id: ldebug.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
|
2000-01-14 09:15:44 -08:00
|
|
|
** Auxiliary functions from Debug Interface module
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldebug_h
|
|
|
|
#define ldebug_h
|
|
|
|
|
|
|
|
|
2000-06-28 13:21:06 -07:00
|
|
|
#include "lstate.h"
|
2000-01-14 09:15:44 -08:00
|
|
|
|
|
|
|
|
2002-04-10 05:11:07 -07:00
|
|
|
#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1)
|
|
|
|
|
2002-05-02 06:06:20 -07:00
|
|
|
#define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
|
|
|
|
|
2002-11-18 03:01:55 -08:00
|
|
|
#define resethookcount(L) (L->hookcount = L->basehookcount)
|
2002-07-08 11:21:33 -07:00
|
|
|
|
|
|
|
|
2003-12-10 04:13:36 -08:00
|
|
|
void luaG_typeerror (lua_State *L, const TValue *o, const char *opname);
|
2001-06-05 11:17:01 -07:00
|
|
|
void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
|
2003-12-10 04:13:36 -08:00
|
|
|
void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2);
|
|
|
|
int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2);
|
2002-05-15 11:57:44 -07:00
|
|
|
void luaG_runerror (lua_State *L, const char *fmt, ...);
|
2002-08-08 13:08:41 -07:00
|
|
|
void luaG_errormsg (lua_State *L);
|
2001-06-05 11:17:01 -07:00
|
|
|
int luaG_checkcode (const Proto *pt);
|
2004-06-02 12:07:55 -07:00
|
|
|
int luaG_checkopenop (Instruction i);
|
2000-01-14 09:15:44 -08:00
|
|
|
|
|
|
|
#endif
|