diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-26 22:36:59 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-26 22:36:59 +0300 |
commit | 892d0f16b2e69bc527b576ee896c39484216338f (patch) | |
tree | 473a4553d0dff32055ff1c22f9a7d44f4e984c02 /src/common.h | |
parent | 827dec28e4c0b1c4972f1419e0ac23e4dbd9d916 (diff) | |
download | ejit-892d0f16b2e69bc527b576ee896c39484216338f.tar.gz ejit-892d0f16b2e69bc527b576ee896c39484216338f.zip |
move labels out of the bytecode
+ Speeds up interpreter a little bit since we don't have to execute
what's effectively a no-op
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index 921fca2..8f42985 100644 --- a/src/common.h +++ b/src/common.h @@ -93,7 +93,6 @@ enum ejit_opcode { START, END, - LABEL, OPCODE_COUNT, }; @@ -116,6 +115,7 @@ struct ejit_insn { struct ejit_func { struct vec insns; + struct vec labels; enum ejit_type rtype; size_t gpr; |