From 7b844c5caf81ac843a210477ef47fd16e8af2f2c Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Thu, 2 Feb 2017 22:38:35 +0100 Subject: Lua VM --- sandbox/hello.bc.txt | 17 +++++++++++++++++ sandbox/hello.js | 3 +-- 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 sandbox/hello.bc.txt (limited to 'sandbox') diff --git a/sandbox/hello.bc.txt b/sandbox/hello.bc.txt new file mode 100644 index 0000000..b41f555 --- /dev/null +++ b/sandbox/hello.bc.txt @@ -0,0 +1,17 @@ +main (9 instructions at 0x7ff931403170) +0+ params, 5 slots, 1 upvalue, 2 locals, 4 constants, 1 function + 1 [1] LOADK 0 -1 ; 1 + 2 [2] LOADK 1 -2 ; 2 + 3 [3] GETTABUP 2 0 -3 ; _ENV "print" + 4 [3] MOVE 3 0 + 5 [3] MOVE 4 1 + 6 [3] CALL 2 3 1 + 7 [7] CLOSURE 2 0 ; 0x7ff9314032e0 + 8 [5] SETTABUP 0 -4 2 ; _ENV "c" + 9 [7] RETURN 0 1 + +function (3 instructions at 0x7ff9314032e0) +2 params, 3 slots, 0 upvalues, 2 locals, 0 constants, 0 functions + 1 [6] ADD 2 0 1 + 2 [6] RETURN 2 2 + 3 [7] RETURN 0 1 \ No newline at end of file diff --git a/sandbox/hello.js b/sandbox/hello.js index f8f6e15..df32dd8 100644 --- a/sandbox/hello.js +++ b/sandbox/hello.js @@ -2,7 +2,6 @@ const DataView = require('buffer-dataview'); const fs = require('fs'); const BytecodeParser = require("../src/lundump.js"); -const lua_State = require('../src/lstate.js').lua_State; -let p = new BytecodeParser(new lua_State(), new DataView(fs.readFileSync("./sandbox/hello.bc"))) +let p = new BytecodeParser(new DataView(fs.readFileSync("./sandbox/hello.bc"))) p.luaU_undump(); \ No newline at end of file -- cgit v1.2.3-54-g00ecf