mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 02:13:54 +00:00
Given a switch arm that matches several cons_ids, and which contains
one or more switches on the *same* variable, such as the arm for
f1/f2/f3/f4 below,
(
(X = f1 ; X = f2 ; X = f3 ; X = f4),
...
(
X = f1,
...
;
(X = f2 ; X = f3),
...
;
X = f4,
...
),
...
;
...
)
this new optimization
- partitions the set of cons_id in that arm (in this case, {f1,f2,f3,f4})
as finely as needed by any other the switches on X in that arm
(in this case, that is three partitions containing {f1}, {f2,f3} and {f4}),
- splits that original switch arm into N arms, one arm for each partition,
making a copy of the switch arm's goal for each partition,
- restricts any switches on the original switch variable (in this case, X)
inside the copy of the arm goal inside each new case to only the cons_ids
in that case's partition, and then replacing any resulting one-arm switches
with the just goal inside that one arm.
The code resulting from these three steps will include some code duplication
(some of the pieces of code denoted by ... in the example above would be
duplicated), but it will need to execute fewer transfers of control.
This is worthwhile because (a) the branch instructions used to implement
switches are hard to predict unless most paths through the nested switches
are rarely if ever taken, and (b) the pipeline breaks caused by branches
that are not correctly predicted are one of the two major contributors
to the runtime of Mercury programs. (The other major contributors are
data cache misses.)
The implementation of this option has two major parts.
- Part 1 consists of discovering whether a procedure body contains
any code in which a switch on a variable is nested inside an arm
of another switch on that same variable. For any instance of such
a pair of switches, it records the identity of the variable and
the set of cons_ids of the outermost arm.
- Part 2 consists of actually transforming the procedure body
by splitting each outermost switch arm thus recorded. (This part
contains all three of the steps above.)
We integrate part 1 with the usual procedure body traversal of the
simplification pass, which makes it quite cheap. In most procedure bodies,
it won't find any nested switches meeting its criteria. We execute part 2,
which is relatively expensive, only if it does.
compiler/simplify_info.m:
Add a new type, switch_arm, which represents one arm of a switch.
Add a new field to the simplify_nested_context type. Its type
is list(switch_arm), and it represents the stack of switch arms (if any)
that the goal currently being simplified is inside. simplify_goal_switch.m
uses this field to detect switches that occur inside an arm of an
ancestor goal that is also a switch on the same variable.
Add a new field to the simplify_info, a set of switch_arms,
that denotes the set of switch arms from which that detection
has actually happened, and which should therefore be
partitioned and split.
compiler/simplify_goal_switch.m:
Add the code for doing the detection and recording mentioned just above.
This is the Part 1 mentioned above.
compiler/split_switch_arms.m:
This new module implements the splitting up process.
This is the Part 2 mentioned above.
compiler/simplify.m:
Include the new module in the simplify subpackage of the check_hlds
package.
compiler/notes/compiler_design.html:
Document the new module.
compiler/simplify_proc.m:
Invoke split_switch_arms.m (part 2) if the part of simplify_goal_switch.m
implementing part 1 has found any work for it to do.
compiler/simplify_tasks.m:
Add split_switch_arms as one of the tasks that simplification
may be asked to do. Set its default value from the value of
a new optimization option that, when specified, calls for it to be done.
compiler/options.m:
Add this option, --split-switch-arms.
Change the internal name of an existing option,
everything_in_one_c_function, to the one expected by
tools/make_optimization_options_middle.
Replace the part of this file that is constructed by
tools/make_optimization_options_middle.
doc/user_guide.texi:
Document the new option.
tools/make_optimization_options_db:
Add --split-switch-arms to the optimization tuple.
Fix software rot by
- renaming optimize_tailcalls to optimize_mlds_tailcalls inside the
optimization tuple, as it has been in options.m, and
- deleting erlang_switch_on_strings_as_atoms from the opt_tuple,
as it has been from options.m.
tools/make_optimization_options_end:
Enable the new option by default at optimization level 2.
tools/make_optimization_options_middle:
Fix bugs in this script, which generates compiler/optimization_options.m.
One bug was that it referred to the opt_level and opt_space options
by the wrong name (optopt_level and optopt_space respectively).
The other bug was that it expected opt_level to be a string_special option,
when it is an int_special option.
Make the handler_file this script generates easier to put into options.m
by not generating a line that (a) already exists in options.m, and
(b) would need to have a comma put after it, if one wanted this line
to replace the copy already in options.m.
compiler/optimization_options.m:
Rebuild this file after the changes above.
compiler/simplify_goal_unify.m:
Conform to the changes above.
compiler/inst_merge.m:
Mark two predicates, inst_merge_[34], to be inlined. The intention
is that inst_merge_4 should be inlined into inst_merge_3, and then
inst_merge_3 should be inlined inside inst_merge_2; that would then
generate six levels of switches, three on one of the insts to be
merged and three on the other, which the new optimization could
then flatten. Unfortunately, inlining does not do this yet.
tests/hard_coded/test_split_switch_arms.{m,exp}:
A new test case for the the new transformation.
tests/hard_coded/Mmakefile:
tests/hard_coded/Mercury.options:
Enable the new test case, and specify the new option for it.
363 lines
16 KiB
Mathematica
363 lines
16 KiB
Mathematica
%----------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%----------------------------------------------------------------------------%
|
|
% Copyright (C) 2014-2015 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: simplify_goal_switch.m.
|
|
%
|
|
% This module handles simplification of switches.
|
|
%
|
|
%----------------------------------------------------------------------------%
|
|
|
|
:- module check_hlds.simplify.simplify_goal_switch.
|
|
:- interface.
|
|
|
|
:- import_module check_hlds.simplify.common.
|
|
:- import_module check_hlds.simplify.simplify_info.
|
|
:- import_module hlds.
|
|
:- import_module hlds.hlds_goal.
|
|
:- import_module hlds.instmap.
|
|
|
|
% Handle simplifications of switches.
|
|
%
|
|
:- pred simplify_goal_switch(
|
|
hlds_goal_expr::in(goal_expr_switch), hlds_goal_expr::out,
|
|
hlds_goal_info::in, hlds_goal_info::out,
|
|
simplify_nested_context::in, instmap::in,
|
|
common_info::in, common_info::out,
|
|
simplify_info::in, simplify_info::out) is det.
|
|
|
|
%----------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module check_hlds.det_util.
|
|
:- import_module check_hlds.inst_lookup.
|
|
:- import_module check_hlds.inst_test.
|
|
:- import_module check_hlds.simplify.simplify_goal.
|
|
:- import_module check_hlds.type_util.
|
|
:- import_module hlds.goal_util.
|
|
:- import_module hlds.make_goal.
|
|
:- import_module parse_tree.
|
|
:- import_module parse_tree.prog_data.
|
|
:- import_module parse_tree.prog_detism.
|
|
:- import_module parse_tree.prog_mode.
|
|
:- import_module parse_tree.prog_type.
|
|
:- import_module parse_tree.prog_util.
|
|
:- import_module parse_tree.set_of_var.
|
|
:- import_module parse_tree.var_table.
|
|
:- import_module transform_hlds.
|
|
:- import_module transform_hlds.pd_cost.
|
|
|
|
:- import_module list.
|
|
:- import_module maybe.
|
|
:- import_module set.
|
|
:- import_module set_tree234.
|
|
|
|
simplify_goal_switch(GoalExpr0, GoalExpr, GoalInfo0, GoalInfo,
|
|
NestedContext0, InstMap0, Common0, Common, !Info) :-
|
|
GoalExpr0 = switch(Var, SwitchCanFail0, Cases0),
|
|
simplify_info_get_module_info(!.Info, ModuleInfo0),
|
|
instmap_lookup_var(InstMap0, Var, VarInst),
|
|
simplify_info_get_var_table(!.Info, VarTable),
|
|
( if inst_is_bound_to_functors(ModuleInfo0, VarInst, BoundInsts) then
|
|
lookup_var_type(VarTable, Var, VarType),
|
|
type_to_ctor_det(VarType, VarTypeCtor),
|
|
bound_insts_to_cons_ids(VarTypeCtor, BoundInsts, ConsIds),
|
|
list.sort_and_remove_dups(ConsIds, SortedConsIds),
|
|
set_tree234.sorted_list_to_set(ConsIds, ConsIdSet),
|
|
delete_unreachable_cases(Cases0, ConsIdSet,
|
|
Cases1, UnreachableCaseGoals),
|
|
MaybeInstConsIds = yes(SortedConsIds),
|
|
|
|
simplify_info_get_deleted_call_callees(!.Info, DeletedCallCallees0),
|
|
SubGoalCalledProcs = goals_proc_refs(UnreachableCaseGoals),
|
|
set.union(SubGoalCalledProcs,
|
|
DeletedCallCallees0, DeletedCallCallees),
|
|
simplify_info_set_deleted_call_callees(DeletedCallCallees, !Info)
|
|
else
|
|
Cases1 = Cases0,
|
|
MaybeInstConsIds = no
|
|
),
|
|
simplify_switch_cases(Var, Cases1, NestedContext0, InstMap0, Common0,
|
|
[], RevCases, [], RevInstMapDeltas, SwitchCanFail0, SwitchCanFail,
|
|
not_seen_non_ground_term, SeenNonGroundTerm, !Info),
|
|
list.reverse(RevCases, Cases),
|
|
(
|
|
Cases = [],
|
|
% An empty switch always fails.
|
|
simplify_info_incr_cost_delta(cost_of_eliminate_switch, !Info),
|
|
Context = goal_info_get_context(GoalInfo0),
|
|
hlds_goal(GoalExpr, GoalInfo) = fail_goal_with_context(Context)
|
|
;
|
|
Cases = [Case],
|
|
Case = case(MainConsId, OtherConsIds, SingleGoal),
|
|
(
|
|
OtherConsIds = [],
|
|
% A singleton switch is equivalent to the goal itself with a
|
|
% possibly can_fail unification with the functor on the front.
|
|
MainConsIdArity = cons_id_arity(MainConsId),
|
|
( if
|
|
SwitchCanFail = can_fail,
|
|
MaybeInstConsIds \= yes([MainConsId])
|
|
then
|
|
% Don't optimize in the case of an existentially typed
|
|
% constructor, because currently create_test_unification
|
|
% does not handle the existential type variables in the types
|
|
% of the constructor arguments or their typeinfos.
|
|
|
|
lookup_var_type(VarTable, Var, Type),
|
|
simplify_info_get_module_info(!.Info, ModuleInfo1),
|
|
( if cons_id_is_existq_cons(ModuleInfo1, Type, MainConsId) then
|
|
GoalExpr = switch(Var, SwitchCanFail, Cases),
|
|
NonLocals = goal_info_get_nonlocals(GoalInfo0),
|
|
merge_instmap_deltas(VarTable, NonLocals, InstMap0,
|
|
RevInstMapDeltas, NewDelta, ModuleInfo1, ModuleInfo2),
|
|
simplify_info_set_module_info(ModuleInfo2, !Info),
|
|
goal_info_set_instmap_delta(NewDelta, GoalInfo0, GoalInfo)
|
|
else
|
|
create_test_unification(Var, MainConsId, MainConsIdArity,
|
|
UnifyGoal, InstMap0, !Info),
|
|
|
|
% Conjoin the test and the rest of the case.
|
|
goal_to_conj_list(SingleGoal, SingleGoalConj),
|
|
GoalList = [UnifyGoal | SingleGoalConj],
|
|
|
|
% Work out the nonlocals, instmap_delta
|
|
% and determinism of the entire conjunction.
|
|
NonLocals0 = goal_info_get_nonlocals(GoalInfo0),
|
|
set_of_var.insert(Var, NonLocals0, NonLocals),
|
|
InstMapDelta0 = goal_info_get_instmap_delta(GoalInfo0),
|
|
instmap_delta_bind_var_to_functor(Var, Type, MainConsId,
|
|
InstMap0, InstMapDelta0, InstMapDelta,
|
|
ModuleInfo1, ModuleInfo),
|
|
simplify_info_set_module_info(ModuleInfo, !Info),
|
|
CaseDetism = goal_info_get_determinism(GoalInfo0),
|
|
det_conjunction_detism(detism_semi, CaseDetism, Detism),
|
|
goal_list_purity(GoalList, Purity),
|
|
goal_info_init(NonLocals, InstMapDelta, Detism, Purity,
|
|
CombinedGoalInfo),
|
|
|
|
simplify_info_set_rerun_quant_instmap_delta(!Info),
|
|
GoalExpr = conj(plain_conj, GoalList),
|
|
GoalInfo = CombinedGoalInfo
|
|
)
|
|
else
|
|
% The var can only be bound to this cons_id, so a test
|
|
% is unnecessary.
|
|
SingleGoal = hlds_goal(GoalExpr, GoalInfo)
|
|
),
|
|
simplify_info_incr_cost_delta(cost_of_eliminate_switch, !Info)
|
|
;
|
|
OtherConsIds = [_ | _],
|
|
GoalExpr = switch(Var, SwitchCanFail, Cases),
|
|
update_switch_goal_info(VarTable, InstMap0, RevInstMapDeltas,
|
|
SeenNonGroundTerm, GoalInfo0, GoalInfo, !Info)
|
|
)
|
|
;
|
|
Cases = [_, _ | _],
|
|
GoalExpr = switch(Var, SwitchCanFail, Cases),
|
|
update_switch_goal_info(VarTable, InstMap0, RevInstMapDeltas,
|
|
SeenNonGroundTerm, GoalInfo0, GoalInfo, !Info),
|
|
SwitchArms0 = NestedContext0 ^ snc_switch_arms,
|
|
( if
|
|
find_outermost_switch_on_var(Var, SwitchArms0, OutermostArm)
|
|
then
|
|
simplify_info_get_switch_arms_to_split(!.Info, ToSplit0),
|
|
set.insert(OutermostArm, ToSplit0, ToSplit),
|
|
simplify_info_set_switch_arms_to_split(ToSplit, !Info)
|
|
else
|
|
true
|
|
)
|
|
),
|
|
% Any information that is in the updated Common at the end of a switch arm
|
|
% is valid only for that arm. We cannot use that information after the
|
|
% switch as a whole unless the switch turns out to have only one arm.
|
|
% Currently, simplify_switch_cases does not bother returning the commons
|
|
% at the ends of arms, since we expect one-arm switches to be so rare
|
|
% that they are not worth optimizing.
|
|
Common = Common0,
|
|
list.length(Cases0, Cases0Length),
|
|
list.length(Cases, CasesLength),
|
|
( if CasesLength = Cases0Length then
|
|
true
|
|
else
|
|
% If we pruned some cases, variables used by those cases may no longer
|
|
% be used by the switch, which means they may no longer be nonlocal
|
|
% to the switch. Also, the determinism may have changed (especially
|
|
% if we pruned all the cases). If the switch now can't succeed,
|
|
% we have to recompute instmap_deltas and rerun determinism analysis
|
|
% to avoid aborts in the code generator because the switch now
|
|
% cannot produce variables it did before.
|
|
simplify_info_set_rerun_quant_instmap_delta(!Info),
|
|
simplify_info_set_rerun_det(!Info)
|
|
).
|
|
|
|
:- pred update_switch_goal_info(var_table::in, instmap::in,
|
|
list(instmap_delta)::in, seen_non_ground_term::in,
|
|
hlds_goal_info::in, hlds_goal_info::out,
|
|
simplify_info::in, simplify_info::out) is det.
|
|
|
|
update_switch_goal_info(VarTable, InstMap0, InstMapDeltas, SeenNonGroundTerm,
|
|
GoalInfo0, GoalInfo, !Info) :-
|
|
( if
|
|
( goal_info_has_feature(GoalInfo0, feature_mode_check_clauses_goal)
|
|
; SeenNonGroundTerm = not_seen_non_ground_term
|
|
)
|
|
then
|
|
% Recomputing the instmap delta would take very long
|
|
% and is very unlikely to get any better precision.
|
|
GoalInfo = GoalInfo0
|
|
else
|
|
simplify_info_get_module_info(!.Info, ModuleInfo1),
|
|
NonLocals = goal_info_get_nonlocals(GoalInfo0),
|
|
merge_instmap_deltas(VarTable, NonLocals, InstMap0,
|
|
InstMapDeltas, NewDelta, ModuleInfo1, ModuleInfo2),
|
|
simplify_info_set_module_info(ModuleInfo2, !Info),
|
|
goal_info_set_instmap_delta(NewDelta, GoalInfo0, GoalInfo)
|
|
).
|
|
|
|
:- pred find_outermost_switch_on_var(prog_var::in, list(switch_arm)::in,
|
|
switch_arm::out) is semidet.
|
|
|
|
find_outermost_switch_on_var(Var, Arms, OutermostArm) :-
|
|
(
|
|
Arms = [],
|
|
fail
|
|
;
|
|
Arms = [InnerArm | OuterArms],
|
|
InnerArm = switch_arm(ArmVar, _),
|
|
( if Var = ArmVar then
|
|
( if
|
|
find_outermost_switch_on_var(Var, OuterArms, OutermostArmPrime)
|
|
then
|
|
OutermostArm = OutermostArmPrime
|
|
else
|
|
OutermostArm = InnerArm
|
|
)
|
|
else
|
|
find_outermost_switch_on_var(Var, OuterArms, OutermostArm)
|
|
)
|
|
).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- type seen_non_ground_term
|
|
---> not_seen_non_ground_term
|
|
; seen_non_ground_term.
|
|
|
|
:- pred simplify_switch_cases(prog_var::in, list(case)::in,
|
|
simplify_nested_context::in, instmap::in, common_info::in,
|
|
list(case)::in, list(case)::out,
|
|
list(instmap_delta)::in, list(instmap_delta)::out,
|
|
can_fail::in, can_fail::out,
|
|
seen_non_ground_term::in, seen_non_ground_term::out,
|
|
simplify_info::in, simplify_info::out) is det.
|
|
|
|
simplify_switch_cases(_, [], _NestedContext0, _InstMap0, _Common0,
|
|
!RevCases, !RevInstMapDeltas, !CanFail, !SeenNonGroundTerm, !Info).
|
|
simplify_switch_cases(Var, [Case0 | Cases0], NestedContext0, InstMap0, Common0,
|
|
!RevCases, !RevInstMapDeltas, !CanFail, !SeenNonGroundTerm, !Info) :-
|
|
Case0 = case(MainConsId, OtherConsIds, Goal0),
|
|
simplify_info_get_module_info(!.Info, ModuleInfo0),
|
|
simplify_info_get_var_table(!.Info, VarTable),
|
|
lookup_var_type(VarTable, Var, Type),
|
|
bind_var_to_functors(Var, Type, MainConsId, OtherConsIds,
|
|
InstMap0, CaseInstMap0, ModuleInfo0, ModuleInfo1),
|
|
simplify_info_set_module_info(ModuleInfo1, !Info),
|
|
|
|
set.list_to_set([MainConsId | OtherConsIds], ConsIdSet),
|
|
SwitchArms0 = NestedContext0 ^ snc_switch_arms,
|
|
SwitchArm = switch_arm(Var, ConsIdSet),
|
|
SwitchArms = [SwitchArm | SwitchArms0],
|
|
NestedContext = NestedContext0 ^ snc_switch_arms := SwitchArms,
|
|
|
|
simplify_goal(Goal0, Goal, NestedContext, CaseInstMap0,
|
|
Common0, _Common1, !Info),
|
|
|
|
% Remove failing branches.
|
|
( if Goal = hlds_goal(disj([]), _) then
|
|
% We don't add the case to !RevCases.
|
|
!:CanFail = can_fail
|
|
else
|
|
Case = case(MainConsId, OtherConsIds, Goal),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo),
|
|
( if
|
|
GoalExpr = scope(Reason, _),
|
|
Reason = from_ground_term(_, from_ground_term_construct)
|
|
then
|
|
% Leave !SeenNonGroundTerm as it is.
|
|
true
|
|
else
|
|
!:SeenNonGroundTerm = seen_non_ground_term
|
|
),
|
|
|
|
% Make sure the switched on variable appears in the instmap delta.
|
|
% This avoids an abort in merge_instmap_delta if another branch
|
|
% further instantiates the switched-on variable. If the switched on
|
|
% variable does not appear in this branch's instmap_delta, the inst
|
|
% before the goal would be used, resulting in a mode error.
|
|
|
|
InstMapDelta0 = goal_info_get_instmap_delta(GoalInfo),
|
|
simplify_info_get_module_info(!.Info, ModuleInfo2),
|
|
instmap_delta_bind_var_to_functors(Var, Type, MainConsId, OtherConsIds,
|
|
InstMap0, InstMapDelta0, InstMapDelta, ModuleInfo2, ModuleInfo),
|
|
simplify_info_set_module_info(ModuleInfo, !Info),
|
|
|
|
!:RevInstMapDeltas = [InstMapDelta | !.RevInstMapDeltas],
|
|
!:RevCases = [Case | !.RevCases]
|
|
),
|
|
|
|
simplify_switch_cases(Var, Cases0, NestedContext0, InstMap0, Common0,
|
|
!RevCases, !RevInstMapDeltas, !CanFail, !SeenNonGroundTerm, !Info).
|
|
|
|
% Create a semidet unification at the start of a singleton case
|
|
% in a can_fail switch.
|
|
% This will abort if the cons_id is existentially typed.
|
|
%
|
|
:- pred create_test_unification(prog_var::in, cons_id::in, int::in,
|
|
hlds_goal::out, instmap::in, simplify_info::in, simplify_info::out) is det.
|
|
|
|
create_test_unification(Var, ConsId, ConsArity, ExtraGoal, InstMap0, !Info) :-
|
|
simplify_info_get_var_table(!.Info, VarTable0),
|
|
simplify_info_get_module_info(!.Info, ModuleInfo),
|
|
lookup_var_type(VarTable0, Var, VarType),
|
|
type_util.get_cons_id_arg_types(ModuleInfo, VarType, ConsId, ArgTypes),
|
|
MakeArgEntry =
|
|
( pred(T::in, vte("", T, IsDummy)::out) is det :-
|
|
IsDummy = is_type_a_dummy(ModuleInfo, T)
|
|
),
|
|
list.map(MakeArgEntry, ArgTypes, ArgEntries),
|
|
list.map_foldl(add_var_entry, ArgEntries, ArgVars, VarTable0, VarTable),
|
|
simplify_info_set_var_table(VarTable, !Info),
|
|
instmap_lookup_var(InstMap0, Var, Inst0),
|
|
inst_expand(ModuleInfo, Inst0, Inst1),
|
|
get_arg_insts_det(Inst1, ConsId, ConsArity, ArgInsts),
|
|
InstToArgUnifyMode =
|
|
( pred(ArgInst::in, ArgUnifyMode::out) is det :-
|
|
ArgUnifyMode = unify_modes_li_lf_ri_rf(ArgInst, ArgInst,
|
|
free, ArgInst)
|
|
),
|
|
list.map(InstToArgUnifyMode, ArgInsts, ArgUnifyModes),
|
|
UnifyMode = unify_modes_li_lf_ri_rf(Inst0, Inst0, Inst0, Inst0),
|
|
UnifyContext = unify_context(umc_explicit, []),
|
|
Unification = deconstruct(Var, ConsId, ArgVars, ArgUnifyModes, can_fail,
|
|
cannot_cgc),
|
|
ExtraGoalExpr = unify(Var,
|
|
rhs_functor(ConsId, is_not_exist_constr, ArgVars),
|
|
UnifyMode, Unification, UnifyContext),
|
|
NonLocals = set_of_var.make_singleton(Var),
|
|
|
|
% The test can't bind any variables, so the InstMapDelta should be empty.
|
|
instmap_delta_init_reachable(InstMapDelta),
|
|
goal_info_init(NonLocals, InstMapDelta, detism_semi, purity_pure,
|
|
ExtraGoalInfo),
|
|
ExtraGoal = hlds_goal(ExtraGoalExpr, ExtraGoalInfo).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
:- end_module check_hlds.simplify.simplify_goal_switch.
|
|
%---------------------------------------------------------------------------%
|