aboutsummaryrefslogtreecommitdiff
path: root/tests/movi_f.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/movi_f.c')
-rw-r--r--tests/movi_f.c28
1 files changed, 10 insertions, 18 deletions
diff --git a/tests/movi_f.c b/tests/movi_f.c
index 82e2d0a..73d22e3 100644
--- a/tests/movi_f.c
+++ b/tests/movi_f.c
@@ -1,22 +1,14 @@
-#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);
+ struct ejit_func *f = ejit_create_func(EJIT_TYPE(double), 0, NULL);
+ ejit_movi_f(f, EJIT_FPR(0), 3.14159f);
+ ejit_retr_f(f, EJIT_FPR(0));
+ ejit_select_compile_func(f, 0, 1, EJIT_USE64(double), do_jit);
- jit_movi_f(j, JIT_F0, 3.14159f);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr_f(j, JIT_F0);
-
- float (*f)(void) = jit_end(j, NULL);
-
- ASSERT(f() == 3.14159f);
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
+ assert(ejit_run_func_f(f, 0, NULL) == 3.14159f);
+ ejit_destroy_func(f);
}