noparser.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * The code below can be used to make a Lua core that does not contain the
  3. * parsing modules (lcode, llex, lparser), which represent 35% of the total core.
  4. * You'll only be able to load binary files and strings, precompiled with luac.
  5. * (Of course, you'll have to build luac with the original parsing modules!)
  6. *
  7. * To use this module, simply compile it ("make noparser" does that) and list
  8. * its object file before the Lua libraries. The linker should then not load
  9. * the parsing modules. To try it, do "make luab".
  10. *
  11. * If you also want to avoid the dump module (ldump.o), define NODUMP.
  12. * #define NODUMP
  13. */
  14. #define LUA_CORE
  15. #include "llex.h"
  16. #include "lparser.h"
  17. #include "lzio.h"
  18. LUAI_FUNC void luaX_init (lua_State *L) {
  19. UNUSED(L);
  20. }
  21. LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *name) {
  22. UNUSED(z);
  23. UNUSED(buff);
  24. UNUSED(name);
  25. lua_pushliteral(L,"parser not loaded");
  26. lua_error(L);
  27. return NULL;
  28. }
  29. #ifdef NODUMP
  30. #include "lundump.h"
  31. LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip) {
  32. UNUSED(f);
  33. UNUSED(w);
  34. UNUSED(data);
  35. UNUSED(strip);
  36. #if 1
  37. UNUSED(L);
  38. return 0;
  39. #else
  40. lua_pushliteral(L,"dumper not loaded");
  41. lua_error(L);
  42. #endif
  43. }
  44. #endif