mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-05-01 01:04:43 +00:00
Estimated hours taken: 30 Branches: main Add a post-processing pass directly after mode checking that tries to transform procedures to avoid intermediate partially instantiated data structures. The Erlang backend in particular cannot handle partially instantiated data structures. compiler/delay_partial_inst.m: New module. compiler/check_hlds.m: Import delay_partial_inst.m compiler/modes.m: Call the delay partial instantiations pass after mode checking succeeds if it is enabled. compiler/options.m: Add a new internal option `--delay-partial-instantiations', disabled by default. compiler/handle_options.m: Make Erlang target imply --delay-partial-instantiations. compiler/notes/compiler_design.html: Mention delay_partial_inst.m tests/hard_coded/Mercury.options: tests/hard_coded/Mmakefile: tests/hard_coded/delay_partial_test.exp: tests/hard_coded/delay_partial_test.m: tests/hard_coded/delay_partial_test2.exp: tests/hard_coded/delay_partial_test2.m: Add test cases for --delay-partial-instantiations. compiler/goal_util.m: Fix a comment.
104 lines
1.9 KiB
Mathematica
104 lines
1.9 KiB
Mathematica
% Test the --delay-partial-instantiations option with disjunctions.
|
|
|
|
:- module delay_partial_test2.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is cc_multi.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bool.
|
|
:- import_module int.
|
|
:- import_module list.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
main(!IO) :-
|
|
( foo(2, Y) ->
|
|
io.print(Y, !IO),
|
|
io.nl(!IO)
|
|
;
|
|
io.print("foo failed\n", !IO)
|
|
),
|
|
( bar(3, Y2) ->
|
|
io.print(Y2, !IO),
|
|
io.nl(!IO)
|
|
;
|
|
io.print("bar failed\n", !IO)
|
|
),
|
|
quux(Q, yes),
|
|
io.print(Q, !IO),
|
|
io.nl(!IO).
|
|
|
|
:- type t
|
|
---> t(
|
|
a :: int,
|
|
b :: int
|
|
).
|
|
|
|
:- pred foo(int::in, t::out) is nondet.
|
|
:- pragma no_inline(foo/2).
|
|
|
|
foo(X, Y) :-
|
|
U ^ b = U ^ a - 1,
|
|
Y ^ b = Z,
|
|
(
|
|
X = 1,
|
|
Y ^ a = Z,
|
|
Z = U ^ b
|
|
;
|
|
int.even(X),
|
|
Z = U ^ a,
|
|
Y ^ a = U ^ a
|
|
;
|
|
int.odd(X),
|
|
Z = U ^ a,
|
|
Y ^ a = X
|
|
),
|
|
U ^ a = X.
|
|
|
|
:- pred bar(int::in, t::out) is nondet.
|
|
:- pragma no_inline(bar/2).
|
|
|
|
bar(X, Y) :-
|
|
Y ^ a = Z, % constructed outside
|
|
U ^ b = U ^ a - 1,
|
|
(
|
|
X = 1,
|
|
Z = U ^ b,
|
|
Y ^ b = Z % ground inside
|
|
;
|
|
int.even(X),
|
|
Z = U ^ a,
|
|
Y ^ b = 2 % ground inside
|
|
;
|
|
int.odd(X),
|
|
Z = U ^ a,
|
|
Y ^ b = 3 % ground inside
|
|
),
|
|
U ^ a = X.
|
|
|
|
:- type q
|
|
---> qa(int)
|
|
; qb(int, int)
|
|
; qc(int)
|
|
; qd.
|
|
|
|
:- pred quux(q, bool).
|
|
:- mode quux(in, in) is semidet.
|
|
:- mode quux(out, in(bound(yes))) is multi.
|
|
|
|
:- pragma no_inline(quux/2).
|
|
|
|
quux(qa(_), no).
|
|
quux(qb(_, _), no).
|
|
quux(qc(42), yes).
|
|
quux(qd, yes).
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=8 sw=4 et wm=0 tw=0
|