summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/ldebug.h
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2019-08-05 00:03:08 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2019-08-08 07:11:30 +0200
commitd61ea6c5eeef4343e40c0225f22ad39c994f84a9 (patch)
tree13a5e6261dda3fda33aa7ae743105fc3f2bc2e39 /apps/plugins/lua/ldebug.h
parent1dabca6c267c2f8dfc8c0fb9269877856c00d4f1 (diff)
downloadrockbox-d61ea6c5eeef4343e40c0225f22ad39c994f84a9.tar.gz
rockbox-d61ea6c5eeef4343e40c0225f22ad39c994f84a9.zip
lua LCD (Lua Compact Debug) patch
LCD developed 9/2015 by Terry Ellison We've already discarded the ldebug module from lua it only makes sense to discard the debug info as well adds 1.5 K to the binary saves 8 Kb on the base state once scripts start getting called i've seen 10-50Kb savings but it all depends on what exactly you are running Change-Id: Ibb74f344df1c4c96380ec6c98b010a810e9ae9cc
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