Skip to content

Commit

Permalink
fix copypaste typo, update wasm3
Browse files Browse the repository at this point in the history
  • Loading branch information
Quodss committed Dec 12, 2024
1 parent 118e0c7 commit db1b6c2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
4 changes: 2 additions & 2 deletions ext/wasm3/build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
.wasm3 = .{
// .path = "../../../../wasm3"
.url = "https://github.com/Quodss/wasm3/archive/3455357e2ead521bb6037ff2352b97a27984d5b9.tar.gz",
.hash = "122065d12d05da26733a8a789f35e3f7e6561f085a84f4fe5569c0337f620bc0dfc9",
.url = "https://github.com/Quodss/wasm3/archive/a8ccdb9a96eda023730e5b876c37e1550a4d18f9.tar.gz",
.hash = "1220ccd506e41df3d84563f3d997911e6d628ed7d7490854193215c6ac2dc69a3586",
},
},
.paths = .{
Expand Down
34 changes: 19 additions & 15 deletions pkg/noun/jets/e/urwasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1059,22 +1059,26 @@ u3we_lia_run_once(u3_noun cor)
u3m_hate(1 << 20);
#endif

u3r_mug(cor);
u3_noun ctx = u3at(ONCE_CTX, cor);
u3r_mug(ctx);

u3_noun runnable = u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_RUNNABLE);

u3_noun call_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_CALL), 2);
u3_noun memread_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_MEMREAD), 2);
u3_noun memwrite_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_MEMWRITE), 2);
u3_noun call_ext_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_CALL_EXT), 2);
u3_noun global_set_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_GLOBAL_SET), 2);
u3_noun global_get_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_GLOBAL_GET), 2);
u3_noun mem_grow_script = u3j_kink(u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_MEM_GROW), 2);
u3_noun mem_size_script = u3j_kink(u3k(u3at(ONCE_CTX, cor)), AX_MEM_SIZE);

u3_noun try_script = u3j_kink(u3j_kink(u3j_kink(u3k(runnable), AX_TRY), 2), 2);
u3_noun catch_script = u3j_kink(u3j_kink(u3j_kink(u3k(runnable), AX_CATCH), 2), 2);
u3_noun return_script = u3j_kink(u3j_kink(runnable, AX_RETURN), 2);

#define KICK1(TRAP) u3j_kink(TRAP, 2)
#define KICK2(TRAP) u3j_kink(KICK1(TRAP), 2)

u3_noun call_script = KICK1(u3j_kink(u3k(ctx), AX_CALL));
u3_noun memread_script = KICK1(u3j_kink(u3k(ctx), AX_MEMREAD));
u3_noun memwrite_script = KICK1(u3j_kink(u3k(ctx), AX_MEMWRITE));
u3_noun call_ext_script = KICK1(u3j_kink(u3k(ctx), AX_CALL_EXT));
u3_noun global_set_script = KICK1(u3j_kink(u3k(ctx), AX_GLOBAL_SET));
u3_noun global_get_script = KICK1(u3j_kink(u3k(ctx), AX_GLOBAL_GET));
u3_noun mem_grow_script = KICK1(u3j_kink(u3k(ctx), AX_MEM_GROW));
u3_noun mem_size_script = u3j_kink(u3k(ctx), AX_MEM_SIZE);

u3_noun try_script = KICK2(u3j_kink(u3k(runnable), AX_TRY));
u3_noun catch_script = KICK2(u3j_kink(u3k(runnable), AX_CATCH));
u3_noun return_script = KICK1(u3j_kink(u3k(runnable), AX_RETURN));

u3_noun call_bat = u3k(u3h(call_script));
u3_noun memread_bat = u3k(u3h(memread_script));
Expand All @@ -1094,7 +1098,7 @@ u3we_lia_run_once(u3_noun cor)
u3_noun global_set_ctx = u3k(u3at(ARROW_CTX, global_set_script));
u3_noun global_get_ctx = u3k(u3at(ARROW_CTX, global_get_script));
u3_noun mem_grow_ctx = u3k(u3at(ARROW_CTX, mem_grow_script));
u3_noun mem_size_ctx = u3k(u3at(MONAD_CTX, mem_grow_script));
u3_noun mem_size_ctx = u3k(u3at(MONAD_CTX, mem_size_script));

u3z(call_script);
u3z(memread_script);
Expand Down

0 comments on commit db1b6c2

Please sign in to comment.