aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 22:47:06 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-26 22:47:06 +0300
commit0dd8d9d6f07201bcbbaa677b8bfa2db227236898 (patch)
treecbce33db0f2b4a903fc5783ad91b4d901185b84e
parent892d0f16b2e69bc527b576ee896c39484216338f (diff)
downloadejit-0dd8d9d6f07201bcbbaa677b8bfa2db227236898.tar.gz
ejit-0dd8d9d6f07201bcbbaa677b8bfa2db227236898.zip
allow toggling between jit and bytecode
-rw-r--r--include/ejit/ejit.h3
-rw-r--r--src/ejit.c7
2 files changed, 9 insertions, 1 deletions
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]);
diff --git a/src/ejit.c b/src/ejit.c
index 2e13e93..2040865 100644
--- a/src/ejit.c
+++ b/src/ejit.c
@@ -55,6 +55,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 */