From e618924df98d4ee5037db86c768a8c8014e49c4c Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Jun 2024 16:39:24 +0300 Subject: work through loads and stores --- tests/ldi_d.c | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) (limited to 'tests/ldi_d.c') diff --git a/tests/ldi_d.c b/tests/ldi_d.c index c7574dc..7c9b36c 100644 --- a/tests/ldi_d.c +++ b/tests/ldi_d.c @@ -1,24 +1,18 @@ -#include "test.h" +#include +#include +#include "do_jit.h" static double data = -1.5; -static void -run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size) +int main() { - jit_begin(j, arena_base, arena_size); - size_t align = jit_enter_jit_abi(j, 0, 0, 0); + struct ejit_func *f = ejit_create_func(EJIT_TYPE(double), 0, NULL); + ejit_ldi_d(f, EJIT_FPR(0), &data); + ejit_retr_f(f, EJIT_FPR(0)); - jit_ldi_d(j, JIT_F0, &data); - jit_leave_jit_abi(j, 0, 0, align); - jit_retr_d(j, JIT_F0); + ejit_select_compile_func(f, 1, 0, EJIT_USE64(double), do_jit); - double (*f)(void) = jit_end(j, NULL); + assert(ejit_run_func_f(f, 0, NULL) == data); - ASSERT(f() == data); -} - -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); + ejit_destroy_func(f); } -- cgit v1.2.3