mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 01:13:30 +00:00
150 lines
5.5 KiB
Mathematica
150 lines
5.5 KiB
Mathematica
%-----------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%-----------------------------------------------------------------------------%
|
|
% Copyright (C) 2008, 2010-2012 The University of Melbourne.
|
|
% Copyright (C) 2014-2015, 2018, 2021 the Mercury team.
|
|
% This file may only be copied under the terms of the GNU General
|
|
% Public License - see the file COPYING in the Mercury distribution.
|
|
%-----------------------------------------------------------------------------%
|
|
%
|
|
% File: parallel_to_plain_conj.m.
|
|
%
|
|
% This module converts parallel conjunction to plain conjunctions,
|
|
% for use in grades that do not allow parallelism.
|
|
%
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- module transform_hlds.parallel_to_plain_conj.
|
|
:- interface.
|
|
|
|
:- import_module hlds.
|
|
:- import_module hlds.hlds_module.
|
|
:- import_module hlds.hlds_pred.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
% Transform all parallel conjunctions in the procedure into sequential
|
|
% conjunctions.
|
|
%
|
|
:- pred parallel_to_plain_conjs(module_info::in, pred_proc_id::in,
|
|
proc_info::in, proc_info::out) is det.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module hlds.hlds_goal.
|
|
:- import_module hlds.passes_aux.
|
|
|
|
:- import_module io.
|
|
:- import_module list.
|
|
:- import_module require.
|
|
:- import_module string.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
parallel_to_plain_conjs(ModuleInfo, PredProcId, !ProcInfo) :-
|
|
proc_info_get_has_parallel_conj(!.ProcInfo, HasParallelConj),
|
|
trace [compiletime(flag("debug_par_to_plain_conj")), io(!IO)] (
|
|
PredProcId = proc(PredId, ProcId),
|
|
(
|
|
HasParallelConj = has_no_parallel_conj,
|
|
HasParallelConjStr = "no"
|
|
;
|
|
HasParallelConj = has_parallel_conj,
|
|
HasParallelConjStr = "has"
|
|
),
|
|
get_debug_output_stream(ModuleInfo, DebugStream, !IO),
|
|
io.format(DebugStream,
|
|
"PAR_TO_PLAIN_CONJ: pred %d proc %d: %s par conj\n",
|
|
[i(pred_id_to_int(PredId)), i(proc_id_to_int(ProcId)),
|
|
s(HasParallelConjStr)], !IO)
|
|
),
|
|
(
|
|
HasParallelConj = has_no_parallel_conj
|
|
;
|
|
HasParallelConj = has_parallel_conj,
|
|
proc_info_get_goal(!.ProcInfo, Goal0),
|
|
parallel_to_plain_conjs_goal(Goal0, Goal),
|
|
proc_info_set_goal(Goal, !ProcInfo),
|
|
% The procedure *had* one or more parallel conjunctions,
|
|
% but we just converted them all to sequential conjunctions.
|
|
proc_info_set_has_parallel_conj(has_no_parallel_conj, !ProcInfo)
|
|
).
|
|
|
|
:- pred parallel_to_plain_conjs_goal(hlds_goal::in, hlds_goal::out) is det.
|
|
|
|
parallel_to_plain_conjs_goal(Goal0, Goal) :-
|
|
Goal0 = hlds_goal(GoalExpr0, GoalInfo0),
|
|
(
|
|
GoalExpr0 = conj(_ConjType, Goals0),
|
|
parallel_to_plain_conjs_goals(Goals0, Goals),
|
|
GoalExpr = conj(plain_conj, Goals)
|
|
;
|
|
GoalExpr0 = disj(Goals0),
|
|
parallel_to_plain_conjs_goals(Goals0, Goals),
|
|
GoalExpr = disj(Goals)
|
|
;
|
|
GoalExpr0 = switch(Var, CanFail, Cases0),
|
|
parallel_to_plain_conjs_cases(Cases0, Cases),
|
|
GoalExpr = switch(Var, CanFail, Cases)
|
|
;
|
|
GoalExpr0 = if_then_else(QuantVars, Cond0, Then0, Else0),
|
|
parallel_to_plain_conjs_goal(Cond0, Cond),
|
|
parallel_to_plain_conjs_goal(Then0, Then),
|
|
parallel_to_plain_conjs_goal(Else0, Else),
|
|
GoalExpr = if_then_else(QuantVars, Cond, Then, Else)
|
|
;
|
|
GoalExpr0 = negation(SubGoal0),
|
|
parallel_to_plain_conjs_goal(SubGoal0, SubGoal),
|
|
GoalExpr = negation(SubGoal)
|
|
;
|
|
GoalExpr0 = scope(Reason, SubGoal0),
|
|
( if
|
|
Reason = from_ground_term(_, FGT),
|
|
( FGT = from_ground_term_construct
|
|
; FGT = from_ground_term_deconstruct
|
|
)
|
|
then
|
|
% There cannot be parallel conjunctions inside these scopes.
|
|
GoalExpr = GoalExpr0
|
|
else
|
|
parallel_to_plain_conjs_goal(SubGoal0, SubGoal),
|
|
GoalExpr = scope(Reason, SubGoal)
|
|
)
|
|
;
|
|
( GoalExpr0 = unify(_, _, _, _, _)
|
|
; GoalExpr0 = plain_call(_, _, _, _, _, _)
|
|
; GoalExpr0 = generic_call(_, _, _, _, _)
|
|
; GoalExpr0 = call_foreign_proc(_, _, _, _, _, _, _)
|
|
),
|
|
GoalExpr = GoalExpr0
|
|
;
|
|
GoalExpr0 = shorthand(_),
|
|
% These should have been expanded out by now.
|
|
unexpected($pred, "shorthand")
|
|
),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0).
|
|
|
|
:- pred parallel_to_plain_conjs_goals(
|
|
list(hlds_goal)::in, list(hlds_goal)::out) is det.
|
|
|
|
parallel_to_plain_conjs_goals([], []).
|
|
parallel_to_plain_conjs_goals([Goal0 | Goals0], [Goal | Goals]) :-
|
|
parallel_to_plain_conjs_goal(Goal0, Goal),
|
|
parallel_to_plain_conjs_goals(Goals0, Goals).
|
|
|
|
:- pred parallel_to_plain_conjs_cases(list(case)::in, list(case)::out) is det.
|
|
|
|
parallel_to_plain_conjs_cases([], []).
|
|
parallel_to_plain_conjs_cases([Case0 | Cases0], [Case | Cases]) :-
|
|
Case0 = case(MainConsId, OtherConsIds, Goal0),
|
|
parallel_to_plain_conjs_goal(Goal0, Goal),
|
|
Case = case(MainConsId, OtherConsIds, Goal),
|
|
parallel_to_plain_conjs_cases(Cases0, Cases).
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
:- end_module transform_hlds.parallel_to_plain_conj.
|
|
%-----------------------------------------------------------------------------%
|