summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/ldebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/ldebug.h')
-rw-r--r--apps/plugins/lua/ldebug.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/apps/plugins/lua/ldebug.h b/apps/plugins/lua/ldebug.h
index 22226b4096..7aa9f459d5 100644
--- a/apps/plugins/lua/ldebug.h
+++ b/apps/plugins/lua/ldebug.h
@@ -13,7 +13,19 @@
13 13
14#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1) 14#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1)
15 15
16#define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0) 16#ifdef LUA_OPTIMIZE_DEBUG
17# include "lvm.h"
18# define getline(f,pc) (((f)->packedlineinfo) ? luaG_getline((f), pc) : 0)
19# define INFO_FILL_BYTE 0x7F
20# define INFO_DELTA_MASK 0x80
21# define INFO_SIGN_MASK 0x40
22# define INFO_DELTA_6BITS 0x3F
23# define INFO_DELTA_7BITS 0x7F
24# define INFO_MAX_LINECNT 126
25# define lineInfoTop(fs) ((fs)->f->packedlineinfo + (fs)->lastlineOffset)
26#else
27# define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
28#endif
17 29
18#define resethookcount(L) (L->hookcount = L->basehookcount) 30#define resethookcount(L) (L->hookcount = L->basehookcount)
19 31
@@ -30,4 +42,9 @@ LUAI_FUNC void luaG_errormsg (lua_State *L);
30LUAI_FUNC int luaG_checkcode (const Proto *pt); 42LUAI_FUNC int luaG_checkcode (const Proto *pt);
31LUAI_FUNC int luaG_checkopenop (Instruction i); 43LUAI_FUNC int luaG_checkopenop (Instruction i);
32 44
45#ifdef LUA_OPTIMIZE_DEBUG
46LUAI_FUNC int luaG_getline (const Proto *f, int pc);
47LUAI_FUNC int luaG_stripdebug (lua_State *L, Proto *f, int level, int recv);
48#endif
49
33#endif 50#endif