|
static const char * | getfuncname (lua_State *L, CallInfo *ci, const char **name) |
|
static int | currentpc (lua_State *L, CallInfo *ci) |
|
static int | currentline (lua_State *L, CallInfo *ci) |
|
LUA_API int | lua_sethook (lua_State *L, lua_Hook func, int mask, int count) |
|
LUA_API lua_Hook | lua_gethook (lua_State *L) |
|
LUA_API int | lua_gethookmask (lua_State *L) |
|
LUA_API int | lua_gethookcount (lua_State *L) |
|
LUA_API int | lua_getstack (lua_State *L, int level, lua_Debug *ar) |
|
static Proto * | getluaproto (CallInfo *ci) |
|
static const char * | findlocal (lua_State *L, CallInfo *ci, int n) |
|
LUA_API const char * | lua_getlocal (lua_State *L, const lua_Debug *ar, int n) |
|
LUA_API const char * | lua_setlocal (lua_State *L, const lua_Debug *ar, int n) |
|
static void | funcinfo (lua_Debug *ar, Closure *cl) |
|
static void | info_tailcall (lua_Debug *ar) |
|
static void | collectvalidlines (lua_State *L, Closure *f) |
|
static int | auxgetinfo (lua_State *L, const char *what, lua_Debug *ar, Closure *f, CallInfo *ci) |
|
LUA_API int | lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) |
|
static int | precheck (const Proto *pt) |
|
LUAI_FUNC int | luaG_checkopenop (Instruction i) |
|
static int | checkArgMode (const Proto *pt, int r, enum OpArgMask mode) |
|
static Instruction | symbexec (const Proto *pt, int lastpc, int reg) |
|
LUAI_FUNC int | luaG_checkcode (const Proto *pt) |
|
static const char * | kname (Proto *p, int c) |
|
static const char * | getobjname (lua_State *L, CallInfo *ci, int stackpos, const char **name) |
|
static int | isinstack (CallInfo *ci, const TValue *o) |
|
LUAI_FUNC void | luaG_typeerror (lua_State *L, const TValue *o, const char *op) |
|
LUAI_FUNC void | luaG_concaterror (lua_State *L, StkId p1, StkId p2) |
|
LUAI_FUNC void | luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) |
|
LUAI_FUNC int | luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) |
|
static void | addinfo (lua_State *L, const char *msg) |
|
LUAI_FUNC void | luaG_errormsg (lua_State *L) |
|
LUAI_FUNC void | luaG_runerror (lua_State *L, const char *fmt,...) |
|