mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-14 17:50:22 +02:00
Rework naming of test suite files
This commit is contained in:
parent
a20146777d
commit
ae1394831c
40 changed files with 3 additions and 40 deletions
51
tests/andr.c
Normal file
51
tests/andr.c
Normal file
|
@ -0,0 +1,51 @@
|
|||
#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_andr(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(0x7fffffff, 1) == 1);
|
||||
ASSERT(f(1, 0x7fffffff) == 1);
|
||||
ASSERT(f(0x80000000, 1) == 0);
|
||||
ASSERT(f(1, 0x80000000) == 0);
|
||||
ASSERT(f(0x7fffffff, 0x80000000) == 0);
|
||||
ASSERT(f(0x80000000, 0x7fffffff) == 0);
|
||||
ASSERT(f(0x7fffffff, 0xffffffff) == 0x7fffffff);
|
||||
ASSERT(f(0xffffffff, 0x7fffffff) == 0x7fffffff);
|
||||
ASSERT(f(0xffffffff, 0xffffffff) == 0xffffffff);
|
||||
ASSERT(f(0x7fffffff, 0) == 0);
|
||||
ASSERT(f(0, 0x7fffffff) == 0);
|
||||
#if __WORDSIZE == 64
|
||||
ASSERT(f(0x7fffffffffffffff, 1) == 1);
|
||||
ASSERT(f(1, 0x7fffffffffffffff) == 1);
|
||||
ASSERT(f(0x8000000000000000, 1) == 0);
|
||||
ASSERT(f(1, 0x8000000000000000) == 0);
|
||||
ASSERT(f(0x7fffffffffffffff, 0x8000000000000000) == 0);
|
||||
ASSERT(f(0x8000000000000000, 0x7fffffffffffffff) == 0);
|
||||
ASSERT(f(0x7fffffffffffffff, 0xffffffffffffffff) == 0x7fffffffffffffff);
|
||||
ASSERT(f(0xffffffffffffffff, 0x7fffffffffffffff) == 0x7fffffffffffffff);
|
||||
ASSERT(f(0xffffffffffffffff, 0xffffffffffffffff) == 0xffffffffffffffff);
|
||||
#endif
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
return main_helper(argc, argv, run_test);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue