From d4c1d32e0aa21677e72c54ed220fdc70cea732c8 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 14:49:30 +0300 Subject: add flag for using 64 bit values on 32 machines + JIT backends needs to still trigger an assertion if we detect that the user lied --- src/ejit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ejit.c') diff --git a/src/ejit.c b/src/ejit.c index f6f4d8e..d0d2b07 100644 --- a/src/ejit.c +++ b/src/ejit.c @@ -60,13 +60,13 @@ struct ejit_func *ejit_create_func(enum ejit_type rtype, size_t argc, return f; } -void ejit_compile_func(struct ejit_func *f, size_t gpr, size_t fpr) +void ejit_compile_func(struct ejit_func *f, size_t gpr, size_t fpr, bool use_64) { - ejit_select_compile_func(f, gpr, fpr, true); + ejit_select_compile_func(f, gpr, fpr, use_64, true); } void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr, - bool try_jit) + bool use_64, bool try_jit) { /* emit a final end instruction in case user didn't do a return */ emit_insn_i(f, END, 0, 0, 0); @@ -75,7 +75,7 @@ void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr, f->fpr = fpr; /* try to jit compile if possible */ - if (try_jit && ejit_compile(f)) + if (try_jit && ejit_compile(f, use_64)) return; /* otherwise, convert opcodes to address labels */ -- cgit v1.2.3