%---------------------------------------------------------------------------% % vim: ft=mercury ts=4 sw=4 et %---------------------------------------------------------------------------% % Test bitwise operations for signed 16-bit integers. :- module bitwise_int16. :- interface. :- import_module io. :- pred main(io::di, io::uo) is cc_multi. %---------------------------------------------------------------------------% %---------------------------------------------------------------------------% :- implementation. :- import_module int16. :- import_module exception. :- import_module list. :- import_module string. :- import_module uint. %---------------------------------------------------------------------------% main(!IO) :- run_unop_test(int16.(\), "\\", !IO), run_binop_test(int16.(/\), "/\\", !IO), run_binop_test(int16.(\/), "\\/", !IO), run_binop_test((func(X, Y) = int16.xor(X, Y)), "xor", !IO), run_shift_test(int16.(>>), ">>", int16.(>>u), ">>u", !IO), run_shift_test(int16.(<<), "<<", int16.(< ResultStr = "<>" ), io.format("%s %s =\n %s\n\n", [s(Desc), s(to_binary_string_lz(A)), s(ResultStr)], !IO). %---------------------------------------------------------------------------% :- pred run_binop_test((func(int16, int16) = int16)::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(int16, int16) = int16)::in, string::in, list(int16)::in, int16::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(int16, int16) = int16)::in, string::in, int16::in, int16::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 = "<>" ), 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(int16, int) = int16)::in, string::in, (func(int16, uint) = int16)::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(int16, int) = int16)::in, string::in, (func(int16, uint) = int16)::in, string::in, list(int)::in, int16::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(int16, int) = int16)::in, string::in, (func(int16, uint) = int16)::in, string::in, int16::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 = "<>" ), 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 = "<>" ), ( 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(ResultStr)], !IO) ) else true ). %---------------------------------------------------------------------------% :- func numbers = list(int16). numbers = [ -32_768_i16, -128_i16, 0_i16, 1_i16, 2_i16, 8_i16, 10_i16, 16_i16, 127_i16, 32_767_i16 ]. :- func shift_amounts = list(int). shift_amounts = [ -1, 0, 1, 2, 3, 4, 8, 15, 16, 17 ]. %---------------------------------------------------------------------------% :- func to_binary_string_lz(int16::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 = 16; uint16_t U = I; 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_int16. %---------------------------------------------------------------------------%