aboutsummaryrefslogtreecommitdiff
path: root/tests/stxi_d.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stxi_d.c')
-rw-r--r--tests/stxi_d.c43
1 files changed, 20 insertions, 23 deletions
diff --git a/tests/stxi_d.c b/tests/stxi_d.c
index 85b3a4a..6de76f8 100644
--- a/tests/stxi_d.c
+++ b/tests/stxi_d.c
@@ -1,32 +1,29 @@
-#include "test.h"
+#include <ejit/ejit.h>
+#include <assert.h>
+#include "do_jit.h"
static double data[] = { -1.0, 0.0, 0.5 };
-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_2(j, jit_operand_gpr (JIT_OPERAND_ABI_WORD, JIT_R2),
- jit_operand_fpr (JIT_OPERAND_ABI_DOUBLE, JIT_F0));
+ struct ejit_operand operands[2] = {
+ EJIT_OPERAND_GPR(0, EJIT_TYPE(int)),
+ EJIT_OPERAND_FPR(0, EJIT_TYPE(double))
+ };
+ struct ejit_func *f = ejit_create_func(EJIT_VOID, 2, operands);
- jit_stxi_d(j, (uintptr_t)data, JIT_R2, JIT_F0);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_ret(j);
+ ejit_stxi_d(f, EJIT_FPR(0), EJIT_GPR(0), (uintptr_t)data);
+ ejit_ret(f);
- void (*f)(jit_word_t, double) = jit_end(j, NULL);
+ ejit_select_compile_func(f, 1, 1, EJIT_USE64(double), do_jit);
- ASSERT(data[0] == -1.0);
- ASSERT(data[1] == 0.0);
- ASSERT(data[2] == 0.5);
- f(8, 42.5);
- ASSERT(data[0] == -1.0);
- ASSERT(data[1] == 42.5);
- ASSERT(data[2] == 0.5);
-}
+ assert(data[0] == -1.0f);
+ assert(data[1] == 0.0f);
+ assert(data[2] == 0.5f);
+ erf2(f, EJIT_ARG(sizeof(double), int), EJIT_ARG(42.5, double));
+ assert(data[0] == -1.0f);
+ assert(data[1] == 42.5);
+ assert(data[2] == 0.5f);
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, run_test);
+ ejit_destroy_func(f);
}