diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 18:00:51 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 18:00:51 +0300 |
commit | 322c7fba3d2f4c9b5b0d78b44feefd38ae44d017 (patch) | |
tree | de20ed83ee9231e853cefb46bb8ba60cf65e09dd /src/common.h | |
parent | d4c1d32e0aa21677e72c54ed220fdc70cea732c8 (diff) | |
download | ejit-322c7fba3d2f4c9b5b0d78b44feefd38ae44d017.tar.gz ejit-322c7fba3d2f4c9b5b0d78b44feefd38ae44d017.zip |
continue working through bytecode ops
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); |