mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 09:23:44 +00:00
tests/hard_coded/*.m:
Rename modules as mentioned above.
In a few cases, where the main module's name itself had a suffix,
such as "_mod_a" or "_main", remove that suffix. This entails
renaming the .exp file as well. (In some cases, this meant that
the name of a helper module was "taken over" by the main module
of the test case.)
Update all references to the moved modules.
General updates to programming style, such as
- replacing DCG notation with state var notation
- replacing (C->T;E) with (if C then T else E)
- moving pred/func declarations to just before their code
- replacing io.write/io.nl sequences with io.write_line
- replacing io.print/io.nl sequences with io.print_line
- fixing too-long lines
- fixing grammar errors in comments
tests/hard_coded/Mmakefile:
tests/hard_coded/Mercury.options:
Update all references to the moved modules.
Enable the constant_prop_int test case. The fact that it wasn't enabled
before is probably an accident. (When constant_prop_int.m was created,
the test case was added to a list in the Mmakefile, but that list
was later removed due to never being referenced.)
tests/hard_coded/constant_prop_int.{m,exp}:
Delete the calls to shift operations with negative shift amounts,
since we have added a compile-time error for these since the test
was originally created.
76 lines
2.0 KiB
Mathematica
76 lines
2.0 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Test byte oriented lookups in bitmaps.
|
|
|
|
:- module bitmap_bytes.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is cc_multi.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bitmap.
|
|
:- import_module exception.
|
|
:- import_module list.
|
|
:- import_module string.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
main(!IO) :-
|
|
BM0 = bitmap.init(0),
|
|
do_bitmap_test(BM0, [-1, 0, 1], !IO),
|
|
io.nl(!IO),
|
|
|
|
BM1 = bitmap.init(24),
|
|
do_bitmap_test(BM1, [-1, 0, 1, 2, 3, 4], !IO),
|
|
io.nl(!IO),
|
|
|
|
% With partial final byte.
|
|
BM2 = bitmap.init(17),
|
|
do_bitmap_test(BM2, [-1, 0, 1, 2, 3], !IO),
|
|
io.nl(!IO),
|
|
|
|
BM3 = det_from_string("<24:FF00FF>"),
|
|
do_bitmap_test(BM3, [-1, 0, 1, 2, 3], !IO),
|
|
io.nl(!IO),
|
|
|
|
BM4 = det_from_string("<16:F00F>"),
|
|
do_bitmap_test(BM4, [-1, 0, 1, 2], !IO).
|
|
|
|
:- pred do_bitmap_test(bitmap::in, list(byte_index)::in,
|
|
io::di, io::uo) is cc_multi.
|
|
|
|
do_bitmap_test(BM, Indexes, !IO) :-
|
|
io.format("Bitmap: %s\n", [s(to_byte_string(BM))], !IO),
|
|
list.foldl(test_byte_lookup(BM), Indexes, !IO).
|
|
|
|
:- pred test_byte_lookup(bitmap::in, byte_index::in,
|
|
io::di, io::uo) is cc_multi.
|
|
|
|
test_byte_lookup(BM, Index, !IO) :-
|
|
io.format("^ byte(%d): ", [i(Index)], !IO),
|
|
( try []
|
|
Byte = BM ^ byte(Index)
|
|
then
|
|
io.write_int(Byte, !IO)
|
|
catch bitmap_error(ByteError) ->
|
|
io.write_string(ByteError, !IO)
|
|
),
|
|
io.nl(!IO),
|
|
io.format("get_uint(%d): ", [i(Index)], !IO),
|
|
( try []
|
|
U8 = get_uint8(BM, Index)
|
|
then
|
|
io.write_uint8(U8, !IO)
|
|
catch bitmap_error(U8Error) ->
|
|
io.write_string(U8Error, !IO)
|
|
),
|
|
io.nl(!IO).
|