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/jmpi_local.c | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'tests/jmpi_local.c') diff --git a/tests/jmpi_local.c b/tests/jmpi_local.c index 1131997..76cba7c 100644 --- a/tests/jmpi_local.c +++ b/tests/jmpi_local.c @@ -1,25 +1,25 @@ -#include "test.h" +#include +#include +#include "do_jit.h" -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); + struct ejit_func *f = ejit_create_func(EJIT_TYPE(int), 0, NULL); + struct ejit_reloc r = ejit_jmp(f); + ejit_reti(f, 0); - jit_reloc_t r = jit_jmp (j); - jit_reti (j, 0); - jit_pointer_t addr = jit_address (j); - jit_reti (j, 1); - jit_patch_here (j, r); - jit_jmpi (j, addr); - jit_reti (j, 2); + struct ejit_label l = ejit_label(f); + ejit_reti(f, 1); - int (*f)(void) = jit_end(j, NULL); + ejit_patch(f, r, l); - ASSERT(f() == 1); -} + struct ejit_reloc j = ejit_jmp(f); + ejit_patch(f, j, l); + ejit_reti(f, 2); -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); + ejit_select_compile_func(f, 0, 0, EJIT_USE64(long), do_jit); + + assert(ejit_run_func(f, 0, NULL) == 1); + + ejit_destroy_func(f); } -- cgit v1.2.3