Files
mercury/tests/submodules/non_word_mutable.m
Zoltan Somogyi eb6617c175 Rename X's aux modules as X_helper_N in submodules.
tests/submodules/*.m:
    Rename modules as mentioned above.

    Indent nested submodules to make them stand out.

    Group foreign_procs by what predicate they implement, not by
    their implementation language.

tests/submodules/*.m:
tests/submodules/*.err_exp:
tests/submodules/Mmakefile:
tests/submodules/Mercury.options:
    Update all references to the moved modules.
2023-06-19 22:16:36 +02:00

195 lines
4.4 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury sw=4 ts=4 expandtab
%---------------------------------------------------------------------------%
%
% This regression test is an expanded version of the program files by Greg Duck
% in a bug report on Feb 22 2006.
%
:- module non_word_mutable.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- include_module non_word_mutable.non_word_mutable_helper_1.
:- import_module non_word_mutable.non_word_mutable_helper_1.
:- import_module float.
:- type c
---> c(int, int).
:- type coord.
:- pragma foreign_type(c, coord, "coord *").
:- pragma foreign_type("C#", coord, "coord").
:- pragma foreign_type("Java", coord, "non_word_mutable.coord").
:- pragma foreign_decl(c, "
typedef struct {
int x, y;
} coord;
").
:- pragma foreign_decl("C#", "
public class coord {
public int x, y;
}
").
:- pragma foreign_code("Java", "
public static class coord {
public int x, y;
}
").
:- func new_coord(int, int) = coord.
:- pragma foreign_proc(c,
new_coord(X::in, Y::in) = (C::out),
[will_not_call_mercury, promise_pure],
"
C = MR_GC_NEW(coord);
C->x = X;
C->y = Y;
").
:- pragma foreign_proc("C#",
new_coord(X::in, Y::in) = (C::out),
[will_not_call_mercury, promise_pure],
"
C = new coord();
C.x = X;
C.y = Y;
").
:- pragma foreign_proc("Java",
new_coord(X::in, Y::in) = (C::out),
[will_not_call_mercury, promise_pure],
"
C = new non_word_mutable.coord();
C.x = X;
C.y = Y;
").
:- func x(coord) = int.
:- pragma foreign_proc(c,
x(C::in) = (X::out),
[will_not_call_mercury, promise_pure],
"
X = C->x;
").
:- pragma foreign_proc("C#",
x(C::in) = (X::out),
[will_not_call_mercury, promise_pure],
"
X = C.x;
").
:- pragma foreign_proc("Java",
x(C::in) = (X::out),
[will_not_call_mercury, promise_pure],
"
X = C.x;
").
:- func y(coord) = int.
:- pragma foreign_proc(c,
y(C::in) = (Y::out),
[will_not_call_mercury, promise_pure],
"
Y = C->y;
").
:- pragma foreign_proc("C#",
y(C::in) = (Y::out),
[will_not_call_mercury, promise_pure],
"
Y = C.y;
").
:- pragma foreign_proc("Java",
y(C::in) = (Y::out),
[will_not_call_mercury, promise_pure],
"
Y = C.y;
").
:- pragma promise_pure(main/2).
main(!IO) :-
% Check whether we get back the same value as we set.
GV1Init = 1.2,
io.write_line(GV1Init, !IO),
impure exported_set_gv1(GV1Init),
semipure exported_get_gv1(GV1Final),
io.write_line(GV1Final, !IO),
( if GV1Init = GV1Final then
true
else
io.write_string("GV1 NOT SAME!\n", !IO)
),
% Check whether we get back the same value as the initialization.
GV2Init = 2.3,
io.write_line(GV2Init, !IO),
semipure exported_get_gv2(GV2Final),
io.write_line(GV2Final, !IO),
( if GV2Init = GV2Final then
true
else
io.write_string("GV2 NOT SAME!\n", !IO)
),
% Check whether we get back the same value as we set.
GV3Init = "abc",
io.write_line(GV3Init, !IO),
impure exported_set_gv3(GV3Init),
semipure exported_get_gv3(GV3Final),
io.write_line(GV3Final, !IO),
( if GV3Init = GV3Final then
true
else
io.write_string("GV3 NOT SAME!\n", !IO)
),
% Check whether we get back the same value as the initialization.
GV4Init = "def",
io.write_line(GV4Init, !IO),
semipure exported_get_gv4(GV4Final),
io.write_line(GV4Final, !IO),
( if GV4Init = GV4Final then
true
else
io.write_string("GV4 NOT SAME!\n", !IO)
),
% Check whether we get back the same value as we set.
GV5Init = new_coord(1, 2),
io.write_line(c(x(GV5Init), y(GV5Init)), !IO),
impure exported_set_gv5(GV5Init),
semipure exported_get_gv5(GV5Final),
io.write_line(c(x(GV5Final), y(GV5Final)), !IO),
( if
x(GV5Init) = x(GV5Final),
y(GV5Init) = y(GV5Final)
then
true
else
io.write_string("GV5 NOT SAME!\n", !IO)
),
% Check whether we get back the same value as the initialization.
GV6Init = new_coord(2, 3),
io.write_line(c(x(GV6Init), y(GV6Init)), !IO),
semipure exported_get_gv6(GV6Final),
io.write_line(c(x(GV6Final), y(GV6Final)), !IO),
( if
x(GV6Init) = x(GV6Final),
y(GV6Init) = y(GV6Final)
then
true
else
io.write_string("GV6 NOT SAME!\n", !IO)
).