From 322c7fba3d2f4c9b5b0d78b44feefd38ae44d017 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 18:00:51 +0300 Subject: continue working through bytecode ops --- src/common.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 1e21e89..37332aa 100644 --- a/src/common.h +++ b/src/common.h @@ -67,11 +67,15 @@ enum ejit_opcode { DIVR, NEGR, + ANDR, + ANDI, + EQR, LTR, BLTR, BNEI, + BEQR, BEQI, BGTI, JMP, @@ -115,7 +119,7 @@ struct ejit_insn { union { size_t r2; void *p; - long o; + int64_t o; double d; }; }; @@ -150,7 +154,7 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, void ***labels_wb); int64_t ejit_run_interp(struct ejit_func *f, size_t argc, - struct ejit_arg args[argc], struct interp_state *state); + struct ejit_arg args[argc], struct interp_state *state); bool ejit_compile(struct ejit_func *f, bool use_64); -- cgit v1.2.3