From 3e8bbb6bcbb3b36e9813344e2f4528bb830d6ff4 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 22 Oct 2024 18:56:04 +0300 Subject: move interp into run_interp + This allows us to skip a potential extra function call --- src/common.h | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index eb91409..64ca250 100644 --- a/src/common.h +++ b/src/common.h @@ -261,27 +261,33 @@ struct ejit_func { }; -union interp_ret { - int64_t r; - double d; -}; - struct interp_state { struct gprs gprs; struct fprs fprs; struct args args; }; -union interp_ret ejit_interp(struct ejit_func *f, size_t argc, +int64_t ejit_interp(struct ejit_func *f, size_t argc, + struct ejit_arg args[argc], + struct interp_state *state, bool run, + void ***labels_wb); + +double ejit_interp_f(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], struct interp_state *state, bool run, void ***labels_wb); int64_t ejit_run_interp(struct ejit_func *f, size_t argc, - struct ejit_arg args[static argc], struct interp_state *state); + struct ejit_arg args[argc], + struct interp_state *state, + bool run, + void ***labels_wb); double ejit_run_interp_f(struct ejit_func *f, size_t argc, - struct ejit_arg args[static argc], struct interp_state *state); + struct ejit_arg args[argc], + struct interp_state *state, + bool run, + void ***labels_wb); bool ejit_compile(struct ejit_func *f, bool use_64); -- cgit v1.2.3