Files
mercury/tests/hard_coded/bitwise_uint16.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

221 lines
6.4 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Test bitwise operations for unsigned 16-bit integers.
:- module bitwise_uint16.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module uint16.
:- import_module exception.
:- import_module list.
:- import_module string.
:- import_module uint.
%---------------------------------------------------------------------------%
main(!IO) :-
run_unop_test(uint16.(\), "\\", !IO),
run_binop_test(uint16.(/\), "/\\", !IO),
run_binop_test(uint16.(\/), "\\/", !IO),
run_binop_test((func(X, Y) = uint16.xor(X, Y)), "xor", !IO),
run_shift_test(uint16.(>>), ">>", uint16.(>>u), ">>u", !IO),
run_shift_test(uint16.(<<), "<<", uint16.(<<u), "<<u", !IO).
%---------------------------------------------------------------------------%
:- pred run_unop_test((func(uint16) = uint16)::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(uint16) = uint16)::in, string::in,
uint16::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(uint16, uint16) = uint16)::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(uint16, uint16) = uint16)::in, string::in,
list(uint16)::in, uint16::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(uint16, uint16) = uint16)::in, string::in,
uint16::in, uint16::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(uint16, int) = uint16)::in, string::in,
(func(uint16, uint) = uint16)::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(uint16, int) = uint16)::in, string::in,
(func(uint16, uint) = uint16)::in, string::in,
list(int)::in, uint16::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(uint16, int) = uint16)::in, string::in,
(func(uint16, uint) = uint16)::in, string::in,
uint16::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(uint16).
numbers = [
0_u16,
1_u16,
2_u16,
8_u16,
10_u16,
16_u16,
255_u16,
65_535_u16
].
:- func shift_amounts = list(int).
shift_amounts = [
-1,
0,
1,
2,
3,
4,
8,
16,
24,
32,
36
].
%---------------------------------------------------------------------------%
:- func to_binary_string_lz(uint16::in) = (string::uo) is det.
:- pragma foreign_proc("C",
to_binary_string_lz(U::in) = (S::uo),
[will_not_call_mercury, promise_pure, thread_safe, will_not_modify_trail],
"
int i = 16;
MR_allocate_aligned_string_msg(S, 16, MR_ALLOC_ID);
S[16] = '\\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(16, '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(""%16s"",
java.lang.Integer.toBinaryString(U & 0xffff)).replace(' ', '0');
").
%---------------------------------------------------------------------------%
:- end_module bitwise_uint16.
%---------------------------------------------------------------------------%