diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-28 19:33:03 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-28 19:33:03 +0300 |
commit | 29718f2e84478b296c3198ae6d35cfd5d79efb14 (patch) | |
tree | 5261fe6e369f27f66a48c6f307870fc854c693c8 /src/common.h | |
parent | 2fc4f728643f78577c26e548619bc7db90a7c6ae (diff) | |
download | ejit-29718f2e84478b296c3198ae6d35cfd5d79efb14.tar.gz ejit-29718f2e84478b296c3198ae6d35cfd5d79efb14.zip |
optimize interpreter a bit
+ Use a gpr/fpr/arg stack shared between different functions to minimize
amount of memory allocations done at runtime while still allowing
interleaving bytecode/machine code functions during call, just with a
bit of extra setup in between
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index 1f52f76..1f2289d 100644 --- a/src/common.h +++ b/src/common.h @@ -136,7 +136,15 @@ union interp_ret { double d; }; -union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], bool run, void ***labels_wb); +struct interp_state { + struct vec gprs; + struct vec fprs; + struct vec args; +}; + +union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], struct interp_state *state, bool run, void ***labels_wb); + +long ejit_run_interp(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], struct interp_state *state); bool ejit_compile(struct ejit_func *f); |