diff options
Diffstat (limited to 'tests/addi.c')
-rw-r--r-- | tests/addi.c | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/tests/addi.c b/tests/addi.c index 27cdfab..e0471d6 100644 --- a/tests/addi.c +++ b/tests/addi.c @@ -1,25 +1,17 @@ -#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); - size_t align = jit_enter_jit_abi(j, 0, 0, 0); - jit_load_args_1(j, jit_operand_gpr (JIT_OPERAND_ABI_WORD, JIT_R0)); + struct ejit_operand operands[1] = { + EJIT_OPERAND_GPR(0, EJIT_TYPE(int)) + }; + struct ejit_func *f = ejit_create_func(EJIT_TYPE(int), 1, operands); + ejit_addi(f, EJIT_GPR(0), EJIT_GPR(0), 69); + ejit_retr(f, EJIT_GPR(0)); + ejit_select_compile_func(f, 1, 0, do_jit); - jit_addi(j, JIT_R0, JIT_R0, 69); - jit_leave_jit_abi(j, 0, 0, align); - jit_retr(j, JIT_R0); - - size_t size = 0; - void* ret = jit_end(j, &size); - - int (*f)(int) = ret; - ASSERT(f(42) == 111); -} - -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); + assert(ejit_run_func_1(f, EJIT_ARG(42, int)) == 111); + ejit_destroy_func(f); } |