From 0dd8d9d6f07201bcbbaa677b8bfa2db227236898 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 26 Jun 2024 22:47:06 +0300 Subject: allow toggling between jit and bytecode --- include/ejit/ejit.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index 3063ceb..c816a29 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -149,7 +149,10 @@ struct ejit_operand { struct ejit_func; struct ejit_func *ejit_create_func(enum ejit_type rtype, size_t argc, const struct ejit_operand args[argc]); + void ejit_compile_func(struct ejit_func *f, size_t gpr, size_t fpr); +void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr, bool try_jit); + long ejit_run_func(struct ejit_func *f, size_t argc, struct ejit_arg args[argc]); double ejit_run_func_f(struct ejit_func *f, size_t argc, struct ejit_arg args[argc]); -- cgit v1.2.3