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/interp.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/interp.c') 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(); -- cgit v1.2.3