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 --- src/ejit.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/ejit.c') diff --git a/src/ejit.c b/src/ejit.c index 2e13e93..2040865 100644 --- a/src/ejit.c +++ b/src/ejit.c @@ -54,6 +54,11 @@ struct ejit_func *ejit_create_func(enum ejit_type rtype, size_t argc, const stru } void ejit_compile_func(struct ejit_func *f, size_t gpr, size_t fpr) +{ + ejit_select_compile_func(f, gpr, fpr, true); +} + +void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr, bool try_jit) { /* emit a final end instruction in case user didn't do a return */ emit_insn_i(f, END, 0, 0, 0); @@ -62,7 +67,7 @@ void ejit_compile_func(struct ejit_func *f, size_t gpr, size_t fpr) f->fpr = fpr; /* try to jit compile if possible */ - if (ejit_compile(f)) + if (try_jit && ejit_compile(f)) return; /* otherwise, convert opcodes to address labels */ -- cgit v1.2.3