diff options
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); |