From 892d0f16b2e69bc527b576ee896c39484216338f Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 26 Jun 2024 22:36:59 +0300 Subject: 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 --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.h') 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; -- cgit v1.2.3