aboutsummaryrefslogtreecommitdiff
path: root/tests/andi.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/andi.c')
-rw-r--r--tests/andi.c40
1 files changed, 16 insertions, 24 deletions
diff --git a/tests/andi.c b/tests/andi.c
index fa3551b..e41a424 100644
--- a/tests/andi.c
+++ b/tests/andi.c
@@ -1,31 +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_andi(j, JIT_R0, JIT_R0, 1);
- 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);
- size_t size = 0;
- void* ret = jit_end(j, &size);
+ ejit_andi(f, EJIT_GPR(0), EJIT_GPR(0), 1);
+ ejit_retr(f, EJIT_GPR(0));
- jit_word_t (*f)(jit_word_t) = ret;
+ ejit_select_compile_func(f, 1, 0, EJIT_USE64(long), do_jit);
- ASSERT(f(0x7fffffff) == 1);
- ASSERT(f(0x80000000) == 0);
-#if EJIT_WORDSIZE == 64
- ASSERT(f(0x7fffffffffffffff) == 1);
- ASSERT(f(0x8000000000000000) == 0);
-#endif
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
+ assert(ejit_run_func_1(f, EJIT_ARG(0x7fffffff, long)) == 1);
+ assert(ejit_run_func_1(f, EJIT_ARG(0x80000000, long)) == 0);
+ assert(ejit_run_func_1(f, EJIT_ARG(0x7fffffffffffffff, long)) == 1);
+ assert(ejit_run_func_1(f, EJIT_ARG(0x8000000000000000, long)) == 0);
+ ejit_destroy_func(f);
}