1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 12:20:26 +02:00
guile/libguile/lightning/tests/lshr.c
2019-04-03 13:28:13 +02:00

72 lines
2.4 KiB
C

#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);
const jit_arg_abi_t abi[] = { JIT_ARG_ABI_INTMAX, JIT_ARG_ABI_INTMAX };
jit_arg_t args[2];
const jit_anyreg_t regs[] = { { .gpr=JIT_R0 }, { .gpr=JIT_R1 }};
jit_receive(j, 2, abi, args);
jit_load_args(j, 2, abi, args, regs);
jit_lshr(j, JIT_R0, JIT_R0, JIT_R1);
jit_retr(j, JIT_R0);
size_t size = 0;
void* ret = jit_end(j, &size);
intmax_t (*f)(intmax_t, intmax_t) = ret;
ASSERT(f(0x7f, 1) == 0xfe);
ASSERT(f(0x7fff, 2) == 0x1fffc);
ASSERT(f(0x81, 16) == 0x810000);
ASSERT(f(0xff, 15) == 0x7f8000);
ASSERT(f(0x7fffffff, 0) == 0x7fffffff);
#if __WORDSIZE == 32
ASSERT(f(0xffffffff, 8) == 0xffffff00);
ASSERT(f(0x7fffffff, 3) == 0xfffffff8);
ASSERT(f(-0x7f, 31) == 0x80000000);
ASSERT(f(-0x7fff, 30) == 0x40000000);
ASSERT(f(-0x7fffffff, 29) == 0x20000000);
ASSERT(f(0x80000001, 28) == 0x10000000);
ASSERT(f(0x8001, 17) == 0x20000);
ASSERT(f(0x80000001, 18) == 0x40000);
ASSERT(f(-0xffff, 24) == 0x1000000);
#else
ASSERT(f(0xffffffff, 8) == 0xffffffff00);
ASSERT(f(0x7fffffff, 3) == 0x3fffffff8);
ASSERT(f(-0x7f, 31) == 0xffffffc080000000);
ASSERT(f(-0x7fff, 30) == 0xffffe00040000000);
ASSERT(f(-0x7fffffff, 29) == 0xf000000020000000);
ASSERT(f(0x80000001, 28) == 0x800000010000000);
ASSERT(f(0x8001, 17) == 0x100020000);
ASSERT(f(0x80000001, 18) == 0x2000000040000);
ASSERT(f(-0xffff, 24) == 0xffffff0001000000);
ASSERT(f(0x7f, 33) == 0xfe00000000);
ASSERT(f(0x7ffff, 34) == 0x1ffffc00000000);
ASSERT(f(0x7fffffff, 35) == 0xfffffff800000000);
ASSERT(f(-0x7f, 63) == 0x8000000000000000);
ASSERT(f(-0x7fff, 62) == 0x4000000000000000);
ASSERT(f(-0x7fffffff, 61) == 0x2000000000000000);
ASSERT(f(0x80000001, 60) == 0x1000000000000000);
ASSERT(f(0x81, 48) == 0x81000000000000);
ASSERT(f(0x8001, 49) == 0x2000000000000);
ASSERT(f(0x80000001, 40) == 0x10000000000);
ASSERT(f(0xff, 47) == 0x7f800000000000);
ASSERT(f(0xffff0001, 56) == 0x100000000000000);
ASSERT(f(0xffffffff, 40) == 0xffffff0000000000);
ASSERT(f(0x7fffffffff, 33) == 0xfffffffe00000000);
ASSERT(f(-0x7fffffffff, 63) == 0x8000000000000000);
ASSERT(f(0x8000000001, 48) == 0x1000000000000);
ASSERT(f(0xffffffffff, 47) == 0xffff800000000000);
#endif
}
int
main (int argc, char *argv[])
{
return main_helper(argc, argv, run_test);
}