From ba9145b0b7af2a82c62f8dfa28807958af5d0c8d Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 7 Mar 2025 18:50:34 +0200 Subject: make code a bit more robust + Should be more difficult to make mistakes in the future, ejit can now automatically keep track of how many register slots are used and if 64 bit mode is required. Slight runtime overhead, but not too bad. --- src/common.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 5cc0c7f..cf5bdf6 100644 --- a/src/common.h +++ b/src/common.h @@ -255,6 +255,7 @@ struct ejit_func { size_t gpr; size_t fpr; + bool use_64; void *arena; void *direct_call; -- cgit v1.2.3