aboutsummaryrefslogtreecommitdiff
path: root/tests/jmpi.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 20:19:10 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 20:19:10 +0300
commit864a078cf9faf9b85a7a9042b4033d46847aea8f (patch)
treea5aea56a78a9c9671a19d16d5921e5a599ec435d /tests/jmpi.c
parent9fe8ccf4ae09018fdde01a9d83f9db10ad354221 (diff)
downloadejit-864a078cf9faf9b85a7a9042b4033d46847aea8f.tar.gz
ejit-864a078cf9faf9b85a7a9042b4033d46847aea8f.zip
remove some tests that won't get implemented
Diffstat (limited to 'tests/jmpi.c')
-rw-r--r--tests/jmpi.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/jmpi.c b/tests/jmpi.c
deleted file mode 100644
index cb12789..0000000
--- a/tests/jmpi.c
+++ /dev/null
@@ -1,41 +0,0 @@
-#include "test.h"
-
-void *tail;
-
-static void *target;
-
-static void
-run_test(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
-{
- jit_begin(j, arena_base, arena_size);
- jit_enter_jit_abi(j, 0, 0, 0);
- jit_movi(j, JIT_R0, 42);
- jit_jmpi(j, target);
- // Unreachable.
- jit_breakpoint(j);
- int (*f)(void) = jit_end(j, NULL);
- ASSERT(f() == 42);
-}
-
-// Make the tail-call target via a separate main_helper because probably the new
-// arena will be allocated farther away, forcing nonlocal jumps.
-static void
-make_target(jit_state_t *j, uint8_t *arena_base, size_t arena_size)
-{
- jit_begin(j, arena_base, arena_size);
- size_t align = jit_enter_jit_abi(j, 0, 0, 0);
- // Tail call target assumes tail caller called enter_jit_abi with compatible
- // parameters.
- target = jit_address(j);
- jit_leave_jit_abi(j, 0, 0, align);
- jit_retr(j, JIT_R0);
- jit_end(j, NULL);
-
- main_helper(0, NULL, run_test);
-}
-
-int
-main (int argc, char *argv[])
-{
- return main_helper(argc, argv, make_target);
-}