From 451797936119d8236843c4e9aee4a47dc5cddd56 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 30 Jun 2024 00:53:34 +0300 Subject: continue working through test cases + Remove overflow and more complicated floating point tests for now --- tests/escapei_float.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tests/escapei_float.c (limited to 'tests/escapei_float.c') diff --git a/tests/escapei_float.c b/tests/escapei_float.c new file mode 100644 index 0000000..a947f24 --- /dev/null +++ b/tests/escapei_float.c @@ -0,0 +1,43 @@ +#include +#include +#include "do_jit.h" + +static float func(int32_t a, float b) { + return b + a; +} + +static double escape_func(size_t argc, const struct ejit_arg args[argc]) +{ + assert(argc == 2); + assert(args[0].type == EJIT_INT32); + assert(args[1].type == EJIT_FLOAT); + int32_t a = args[0].i32; + float b = args[1].f; + return func(a, b); +} + +int main() +{ + struct ejit_operand operands[2] = { + EJIT_OPERAND_GPR(0, EJIT_POINTER), + EJIT_OPERAND_GPR(1, EJIT_POINTER) + }; + + struct ejit_func *f = ejit_create_func(EJIT_FLOAT, 2, operands); + EJIT_LDXI(f, int32_t, EJIT_GPR(0), EJIT_GPR(0), 0); + EJIT_LDXI(f, float, EJIT_FPR(0), EJIT_GPR(1), 0); + + struct ejit_operand args[2] = { + EJIT_OPERAND_GPR(0, EJIT_INT32), + EJIT_OPERAND_FPR(0, EJIT_FLOAT) + }; + ejit_escapei_f(f, escape_func, 2, args); + ejit_retval_f(f, EJIT_FPR(0)); + ejit_retr_f(f, EJIT_FPR(0)); + + ejit_select_compile_func(f, 2, 1, false, do_jit); + + float d = 22.0f; + int32_t i = 20; + assert(erff2(f, EJIT_ARG(&i, void *), EJIT_ARG(&d, void *)) == 42.0f); +} -- cgit v1.2.3