diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 20:11:34 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 20:11:34 +0300 |
commit | 9fe8ccf4ae09018fdde01a9d83f9db10ad354221 (patch) | |
tree | 664f802240a2810b5db3e783400351f1eb51c1a0 /tests/blti_u.c | |
parent | 322c7fba3d2f4c9b5b0d78b44feefd38ae44d017 (diff) | |
download | ejit-9fe8ccf4ae09018fdde01a9d83f9db10ad354221.tar.gz ejit-9fe8ccf4ae09018fdde01a9d83f9db10ad354221.zip |
work through branching instructions
Diffstat (limited to 'tests/blti_u.c')
-rw-r--r-- | tests/blti_u.c | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/tests/blti_u.c b/tests/blti_u.c index 13582c3..ca30e7e 100644 --- a/tests/blti_u.c +++ b/tests/blti_u.c @@ -1,28 +1,27 @@ -#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(long)) + }; - jit_reloc_t r = jit_blti_u(j, JIT_R0, 0); - jit_leave_jit_abi(j, 0, 0, align); - jit_reti(j, 0); - jit_patch_here(j, r); - jit_leave_jit_abi(j, 0, 0, align); - jit_reti(j, 1); + struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 1, operands); + struct ejit_reloc r = ejit_blti_u(f, EJIT_GPR(0), 0); + ejit_reti(f, 0); - jit_word_t (*f)(jit_word_t) = jit_end(j, NULL); + struct ejit_label l = ejit_label(f); + ejit_patch(f, r, l); - ASSERT(f(0) == 0); - ASSERT(f(1) == 0); - ASSERT(f(-1) == 0); -} + ejit_reti(f, 1); -int -main (int argc, char *argv[]) -{ - return main_helper(argc, argv, run_test); + ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit); + + assert(ejit_run_func_1(f, EJIT_ARG(0, long)) == 0); + assert(ejit_run_func_1(f, EJIT_ARG(1, long)) == 0); + assert(ejit_run_func_1(f, EJIT_ARG(-1, long)) == 0); + + ejit_destroy_func(f); } |