Files
mercury/tests/hard_coded/bitwise_int.m
Peter Wang 88047bbb45 Delete Erlang from tests.
tests/general/float_test.exp3:
tests/general/float_test.m:
tests/general/read_dir_regression.exp4:
tests/general/read_dir_regression.m:
tests/hard_coded/remove_file.exp2:
tests/hard_coded/remove_file.m:
    Delete Erlang backend specific expected outputs.

tests/hard_coded/Mmakefile:
tests/hard_coded/erlang_deconstruct.exp:
tests/hard_coded/erlang_deconstruct.m:
tests/hard_coded/existential_list.exp:
tests/hard_coded/existential_list.m:
tests/valid/Mmakefile:
tests/valid/erl_ite_vars.m:
tests/valid/zf_erlang_bug.m:
    Delete erlang target specific tests.

tests/*:
    Delete Erlang foreign procs and foreign types.
2020-10-27 11:10:11 +11:00

211 lines
5.8 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et wm=0 tw=0
%---------------------------------------------------------------------------%
%
% Test bitwise operations for signed integers.
%
% The .exp file is for grades where int is 64-bit.
% The .exp2 file is for grades where int is 32-bit.
%
%---------------------------------------------------------------------------%
:- module bitwise_int.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is cc_multi.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module int.
:- import_module exception.
:- import_module list.
:- import_module require.
:- import_module string.
:- pragma foreign_import_module("C", int). % For ML_BITS_PER_INT.
%---------------------------------------------------------------------------%
main(!IO) :-
run_unop_test(int.(\), "\\", !IO),
io.nl(!IO),
run_binop_test(int.(/\), "/\\", !IO),
io.nl(!IO),
run_binop_test(int.(\/), "\\/", !IO),
io.nl(!IO),
run_binop_test(int_xor_proxy, "xor", !IO),
io.nl(!IO),
run_shift_test(int.(>>), ">>", !IO),
io.nl(!IO),
run_shift_test(int.(<<), "<<", !IO).
:- func int_xor_proxy(int, int) = int.
int_xor_proxy(A, B) = int.xor(A, B).
%---------------------------------------------------------------------------%
:- pred run_unop_test((func(int) = int)::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(int) = int)::in, string::in,
int::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",
[s(Desc), s(to_binary_string_lz(A)), s(ResultStr)], !IO),
io.nl(!IO).
%---------------------------------------------------------------------------%
:- pred run_binop_test((func(int, int) = int)::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(int, int) = int)::in, string::in,
list(int)::in, int::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(int, int) = int)::in, string::in,
int::in, int::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",
[s(to_binary_string_lz(A)), s(Desc),
s(to_binary_string_lz(B)), s(ResultStr)], !IO),
io.nl(!IO).
%---------------------------------------------------------------------------%
:- pred run_shift_test((func(int, int) = int)::in, string::in,
io::di, io::uo) is cc_multi.
run_shift_test(ShiftOpFunc, Desc, !IO) :-
io.format("*** Test binary operation '%s' ***\n\n", [s(Desc)], !IO),
As = numbers,
Bs = shift_amounts,
list.foldl(run_shift_test_2(ShiftOpFunc, Desc, Bs), As, !IO).
:- pred run_shift_test_2((func(int, int) = int)::in, string::in,
list(int)::in, int::in, io::di, io::uo) is cc_multi.
run_shift_test_2(ShiftOpFunc, Desc, Bs, A, !IO) :-
list.foldl(run_shift_test_3(ShiftOpFunc, Desc, A), Bs, !IO).
:- pred run_shift_test_3((func(int, int) = int)::in, string::in,
int::in, int::in, io::di, io::uo) is cc_multi.
run_shift_test_3(ShiftOpFunc, Desc, A, B, !IO) :-
( try []
Result0 = ShiftOpFunc(A, B)
then
ResultStr = to_binary_string_lz(Result0)
catch_any _ ->
ResultStr = "<<exception>>"
),
io.format("%s %s %d =\n%s\n",
[s(to_binary_string_lz(A)), s(Desc), i(B), s(ResultStr)], !IO),
io.nl(!IO).
%---------------------------------------------------------------------------%
:- func numbers = list(int).
numbers = [
min_int,
0,
1,
2,
8,
10,
16,
max_int
].
:- func shift_amounts = list(int).
shift_amounts = [
-1,
0,
1,
2,
3,
4,
8,
16,
24,
bits_per_int - 1,
bits_per_int
].
%---------------------------------------------------------------------------%
:- func to_binary_string_lz(int::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 = ML_BITS_PER_INT;
MR_Unsigned U = (MR_Unsigned) I;
MR_allocate_aligned_string_msg(S, ML_BITS_PER_INT, MR_ALLOC_ID);
S[ML_BITS_PER_INT] = '\\0';
while (i > 0) {
i--;
S[i] = (U & 1) ? '1' : '0';
U = U >> 1;
}
").
:- pragma foreign_proc("C#",
to_binary_string_lz(I::in) = (S::uo),
[will_not_call_mercury, promise_pure, thread_safe],
"
S = System.Convert.ToString((uint)I, 2).PadLeft(32, '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(""%32s"",
java.lang.Integer.toBinaryString(U)).replace(' ', '0');
").
%---------------------------------------------------------------------------%
:- end_module bitwise_int.
%---------------------------------------------------------------------------%