From 912c07167705613c6db70e542723c7ec2c06c7ea Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 15 Mar 2025 13:16:54 +0200 Subject: 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. --- src/common.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/common.h') 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); -- cgit v1.2.3