aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-10-22 18:56:04 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-10-22 18:56:04 +0300
commit3e8bbb6bcbb3b36e9813344e2f4528bb830d6ff4 (patch)
treee57ed757cd9aeab0673cd33882a07989e52513b0 /src/common.h
parent7f7b22674ed8e9633cd0e47662508c3641e9f967 (diff)
downloadejit-3e8bbb6bcbb3b36e9813344e2f4528bb830d6ff4.tar.gz
ejit-3e8bbb6bcbb3b36e9813344e2f4528bb830d6ff4.zip
move interp into run_interp
+ This allows us to skip a potential extra function call
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h22
1 files changed, 14 insertions, 8 deletions
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);