1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-21 11:10:21 +02:00

Add movi_[df] tests

This commit is contained in:
Andy Wingo 2019-03-26 22:34:04 +01:00
parent bbb8bd94f2
commit 40ebd5de44
2 changed files with 40 additions and 0 deletions

20
tests/movi_d.c Normal file
View file

@ -0,0 +1,20 @@
#include "test.h"
static void
run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
{
jit_begin(j, arena_base, arena_size);
jit_movi_d(j, JIT_F0, 3.14159);
jit_retr_d(j, JIT_F0);
double (*f)(void) = jit_end(j, NULL);
ASSERT(f() == 3.14159);
}
int
main (int argc, char *argv[])
{
return main_helper(argc, argv, run_test);
}

20
tests/movi_f.c Normal file
View file

@ -0,0 +1,20 @@
#include "test.h"
static void
run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
{
jit_begin(j, arena_base, arena_size);
jit_movi_f(j, JIT_F0, 3.14159f);
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);
}