aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-15 13:16:54 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-15 13:16:54 +0200
commit912c07167705613c6db70e542723c7ec2c06c7ea (patch)
tree119b74c5af8508f663e6fd9cdbdf91b27723b023 /src/common.h
parent2a2d096b61262c2059ea022379869b9c4a70eafa (diff)
downloadejit-912c07167705613c6db70e542723c7ec2c06c7ea.tar.gz
ejit-912c07167705613c6db70e542723c7ec2c06c7ea.zip
experiment with allocating regs on stack in interp
+ Avoids having to lug around an execution context, arguably simplified things but now there's no real way to detect when we run out memory for regs.
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h
index 6ee0df7..493a89d 100644
--- a/src/common.h
+++ b/src/common.h
@@ -288,13 +288,7 @@ struct ejit_func {
void *direct_call;
size_t size;
size_t prio;
-};
-
-
-struct interp_state {
- struct gprs gprs;
- struct fprs fprs;
- struct args args;
+ size_t max_args;
};
union interp_ret {
@@ -304,7 +298,6 @@ union interp_ret {
union interp_ret ejit_run(struct ejit_func *f, size_t argc,
struct ejit_arg args[argc],
- struct interp_state *state,
bool run,
void ***labels_wb);