aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 22:36:59 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 22:36:59 +0300
commit892d0f16b2e69bc527b576ee896c39484216338f (patch)
tree473a4553d0dff32055ff1c22f9a7d44f4e984c02 /src/interp.c
parent827dec28e4c0b1c4972f1419e0ac23e4dbd9d916 (diff)
downloadejit-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/interp.c')
-rw-r--r--src/interp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp.c b/src/interp.c
index f15adc5..4f034f7 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -46,7 +46,6 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a
[CALLI_F] = &&CALLI_F,
[ESCAPEI] = &&ESCAPEI,
- [LABEL] = &&LABEL,
[START] = &&START,
[END] = &&END,
};
@@ -79,9 +78,6 @@ union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg a
DO(START);
DISPATCH();
- DO(LABEL);
- DISPATCH();
-
DO(END);
goto out_int;
DISPATCH();