Files
mercury/tests/hard_coded/bitwise_int64.m
Zoltan Somogyi 4c528d429d Add <<u and >>u to library/{int,uint}*.m ...
... along with their unchecked equivalents. These differ from <<, >> and
their unchecked equivalents in that they take the shift amount as a uint,
instead of an int.

library/int.m:
library/int16.m:
library/int32.m:
library/int64.m:
library/int8.m:
library/uint.m:
library/uint16.m:
library/uint32.m:
library/uint64.m:
library/uint8.m:
    As above. The unchecked versions have only declarations, since
    these operations have been recognized as builtins for a while now.

NEWS:
    Document the new operations, and the recent change to recognize
    <<u and >>u as single tokens, and fix a typo in a recent addition.

configure.ac:
    Require the compiler to be sufficiently recent to be able to parse
    <<u and >>u as operators.

compiler/options.m:
    Provide a way for a later change to configure.ac to detect the presence
    of this change.

tests/hard_coded/bitwise_int.exp:
tests/hard_coded/bitwise_int.exp2:
tests/hard_coded/bitwise_int.m:
tests/hard_coded/bitwise_int16.exp:
tests/hard_coded/bitwise_int16.m:
tests/hard_coded/bitwise_int32.exp:
tests/hard_coded/bitwise_int32.m:
tests/hard_coded/bitwise_int64.exp:
tests/hard_coded/bitwise_int64.m:
tests/hard_coded/bitwise_int8.exp:
tests/hard_coded/bitwise_int8.m:
tests/hard_coded/bitwise_uint.exp:
tests/hard_coded/bitwise_uint.exp2:
tests/hard_coded/bitwise_uint.m:
tests/hard_coded/bitwise_uint16.exp:
tests/hard_coded/bitwise_uint16.m:
tests/hard_coded/bitwise_uint32.exp:
tests/hard_coded/bitwise_uint32.m:
tests/hard_coded/bitwise_uint64.exp:
tests/hard_coded/bitwise_uint64.m:
tests/hard_coded/bitwise_uint8.exp:
tests/hard_coded/bitwise_uint8.m:
    Check that <<u and >>u compute the same results as << and >> respectively.
2022-12-07 23:12:33 +11:00

231 lines
6.5 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Test bitwise operations for signed 64-bit integers.
:- module bitwise_int64.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module int64.
:- import_module exception.
:- import_module list.
:- import_module string.
:- import_module uint.
%---------------------------------------------------------------------------%
main(!IO) :-
run_unop_test(int64.(\), "\\", !IO),
run_binop_test(int64.(/\), "/\\", !IO),
run_binop_test(int64.(\/), "\\/", !IO),
run_binop_test((func(X, Y) = int64.xor(X, Y)), "xor", !IO),
run_shift_test(int64.(>>), ">>", int64.(>>u), ">>u", !IO),
run_shift_test(int64.(<<), "<<", int64.(<<u), "<<u", !IO).
%---------------------------------------------------------------------------%
:- pred run_unop_test((func(int64) = int64)::in, string::in,
io::di, io::uo) is cc_multi.
run_unop_test(UnOpFunc, Desc, !IO) :-
io.format("*** Test unary operation '%s' ***\n\n", [s(Desc)], !IO),
As = numbers,
list.foldl(run_unop_test_2(UnOpFunc, Desc), As, !IO).
:- pred run_unop_test_2((func(int64) = int64)::in, string::in,
int64::in, io::di, io::uo) is cc_multi.
run_unop_test_2(UnOpFunc, Desc, A, !IO) :-
( try []
Result0 = UnOpFunc(A)
then
ResultStr = to_binary_string_lz(Result0)
catch_any _ ->
ResultStr = "<<exception>>"
),
io.format("%s %s =\n %s\n\n",
[s(Desc), s(to_binary_string_lz(A)), s(ResultStr)], !IO).
%---------------------------------------------------------------------------%
:- pred run_binop_test((func(int64, int64) = int64)::in, string::in,
io::di, io::uo) is cc_multi.
run_binop_test(BinOpFunc, Desc, !IO) :-
io.format("*** Test binary operation '%s' ***\n\n", [s(Desc)], !IO),
As = numbers,
Bs = numbers,
list.foldl(run_binop_test_2(BinOpFunc, Desc, Bs), As, !IO).
:- pred run_binop_test_2((func(int64, int64) = int64)::in, string::in,
list(int64)::in, int64::in, io::di, io::uo) is cc_multi.
run_binop_test_2(BinOpFunc, Desc, Bs, A, !IO) :-
list.foldl(run_binop_test_3(BinOpFunc, Desc, A), Bs, !IO).
:- pred run_binop_test_3((func(int64, int64) = int64)::in, string::in,
int64::in, int64::in, io::di, io::uo) is cc_multi.
run_binop_test_3(BinOpFunc, Desc, A, B, !IO) :-
( try []
Result0 = BinOpFunc(A, B)
then
ResultStr = to_binary_string_lz(Result0)
catch_any _ ->
ResultStr = "<<exception>>"
),
io.format("%s %s\n%s =\n%s\n\n",
[s(to_binary_string_lz(A)), s(Desc),
s(to_binary_string_lz(B)), s(ResultStr)], !IO).
%---------------------------------------------------------------------------%
:- pred run_shift_test(
(func(int64, int) = int64)::in, string::in,
(func(int64, uint) = int64)::in, string::in,
io::di, io::uo) is cc_multi.
run_shift_test(ShiftOpFunc, Desc, UShiftOpFunc, UDesc, !IO) :-
io.format("*** Test shift operations '%s' and '%s' ***\n\n",
[s(Desc), s(UDesc)], !IO),
As = numbers,
Bs = shift_amounts,
list.foldl(run_shift_test_2(ShiftOpFunc, Desc, UShiftOpFunc, UDesc, Bs),
As, !IO).
:- pred run_shift_test_2(
(func(int64, int) = int64)::in, string::in,
(func(int64, uint) = int64)::in, string::in,
list(int)::in, int64::in, io::di, io::uo) is cc_multi.
run_shift_test_2(ShiftOpFunc, Desc, UShiftOpFunc, UDesc, Bs, A, !IO) :-
list.foldl(run_shift_test_3(ShiftOpFunc, Desc, UShiftOpFunc, UDesc, A),
Bs, !IO).
:- pred run_shift_test_3(
(func(int64, int) = int64)::in, string::in,
(func(int64, uint) = int64)::in, string::in,
int64::in, int::in, io::di, io::uo) is cc_multi.
run_shift_test_3(ShiftOpFunc, Desc, UShiftOpFunc, UDesc,
Number, Amount, !IO) :-
NumberStr = to_binary_string_lz(Number),
( try []
Result0 = ShiftOpFunc(Number, Amount)
then
ResultStr = to_binary_string_lz(Result0)
catch_any _ ->
ResultStr = "<<exception>>"
),
io.format("%s %s %d =\n%s\n\n",
[s(NumberStr), s(Desc), i(Amount), s(ResultStr)], !IO),
( if uint.from_int(Amount, UAmount) then
( try []
UResult0 = UShiftOpFunc(Number, UAmount)
then
UResultStr = to_binary_string_lz(UResult0)
catch_any _ ->
UResultStr = "<<exception>>"
),
( if UResultStr = ResultStr then
true
else
io.format("%s vs %s difference:\n",
[s(Desc), s(UDesc)], !IO),
io.format("%s %s %u =\n%s\n\n",
[s(NumberStr), s(UDesc), u(UAmount), s(UResultStr)], !IO)
)
else
true
).
%---------------------------------------------------------------------------%
:- func numbers = list(int64).
numbers = [
-9_223_372_036_854_775_808_i64,
-2_147_483_648_i64,
-32_768_i64,
-128_i64,
0_i64,
1_i64,
2_i64,
8_i64,
10_i64,
16_i64,
16_i64,
127_i64,
32_767_i64,
2_147_483_647_i64,
9_223_372_036_854_775_807_i64
].
:- func shift_amounts = list(int).
shift_amounts = [
-1,
0,
1,
2,
3,
4,
8,
16,
24,
31,
32,
63,
64
].
%---------------------------------------------------------------------------%
:- func to_binary_string_lz(int64::in) = (string::uo) is det.
:- pragma foreign_proc("C",
to_binary_string_lz(I::in) = (S::uo),
[will_not_call_mercury, promise_pure, thread_safe, will_not_modify_trail],
"
int i = 64;
uint64_t U = I;
MR_allocate_aligned_string_msg(S, 64, MR_ALLOC_ID);
S[64] = '\\0';
while (i > 0) {
i--;
S[i] = (U & 1) ? '1' : '0';
U = U >> 1;
}
").
:- pragma foreign_proc("C#",
to_binary_string_lz(U::in) = (S::uo),
[will_not_call_mercury, promise_pure, thread_safe],
"
S = System.Convert.ToString(U, 2).PadLeft(64, '0');
").
:- pragma foreign_proc("Java",
to_binary_string_lz(U::in) = (S::uo),
[will_not_call_mercury, promise_pure, thread_safe],
"
S = java.lang.String.format(""%64s"",
java.lang.Long.toBinaryString(U)).replace(' ', '0');
").
%---------------------------------------------------------------------------%
:- end_module bitwise_int64.
%---------------------------------------------------------------------------%