diff options
Diffstat (limited to 'tests/jmpi_local.c')
-rw-r--r-- | tests/jmpi_local.c | 36 |
1 files changed, 18 insertions, 18 deletions
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 <ejit/ejit.h> +#include <assert.h> +#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); } |