diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 8 |
1 files changed, 6 insertions, 2 deletions
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); |