aboutsummaryrefslogtreecommitdiff
path: root/tests/jmp0.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-30 16:39:24 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-30 16:40:12 +0300
commite618924df98d4ee5037db86c768a8c8014e49c4c (patch)
treeabf7e2457f49c52d3ea6c6c5fb79577e5a4ad011 /tests/jmp0.c
parent451797936119d8236843c4e9aee4a47dc5cddd56 (diff)
downloadejit-e618924df98d4ee5037db86c768a8c8014e49c4c.tar.gz
ejit-e618924df98d4ee5037db86c768a8c8014e49c4c.zip
work through loads and stores
Diffstat (limited to 'tests/jmp0.c')
-rw-r--r--tests/jmp0.c35
1 files changed, 17 insertions, 18 deletions
diff --git a/tests/jmp0.c b/tests/jmp0.c
index 0f86fe6..c5fda98 100644
--- a/tests/jmp0.c
+++ b/tests/jmp0.c
@@ -1,24 +1,23 @@
-#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_jmp(j);
- jit_patch_here(j, r);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr(j, JIT_R0);
+ struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 1, operands);
+ struct ejit_reloc r = ejit_jmp(f);
+ struct ejit_label l = ejit_label(f);
+ ejit_patch(f, r, l);
+ ejit_retr(f, EJIT_GPR(0));
- jit_word_t (*f)(jit_word_t) = jit_end(j, NULL);
- ASSERT(f(42) == 42);
- ASSERT(f(-1) == -1);
-}
+ ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit);
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
+ assert(erf1(f, EJIT_ARG(42, long)) == 42);
+ assert(erf1(f, EJIT_ARG(-1, long)) == -1);
+
+ ejit_destroy_func(f);
}