mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-16 22:35:41 +00:00
Estimated hours taken: 80
Branches: main
Speed up the compiler's handling of code that constructs large ground terms
by specializing the treatment of such code.
This diff reduces the compilation time for training_cars_full.m from 106.9
seconds to 30.3 seconds on alys, my laptop. The time on tools/speedtest
stays pretty much the same.
compiler/hlds_goal.m:
Record the classification of from_ground_term scopes as purely
constructing terms, purely deconstructing them or something other.
Fix an old potential bug: variables inside the construct_how fields
of unifications weren't being renamed along with other variables.
This is a bug if any part of the compiler later looks at those
variables. (I am not sure whether or not this happens.)
compiler/superhomogenous.m:
Provisionally mark newly constructed static terms as being
from_ground_term_construct. Mode checking will either confirm this
or change the scope kind.
compiler/options.m:
compiler/handle_options.m:
Add a new option, from_ground_term_threshold, that allows the user to
set the boundary between ground terms that get scopes and ground terms
do not. I plan to experiment with different settings later.
compiler/modes.m:
Make this classification. For scopes that construct ground terms,
use a specialized algorithm that avoids quadratic behavior.
(It does not access the unify_inst_table, which is where the
factor of N other than the length of the goal list came from.)
The total size of the instmap_deltas, if printed out, still looks like
O(N^2) in size, but due to structure sharing it needs only O(N) memory.
For scopes that construct ground terms, set the determinism information
so that det_analysis.m doesn't have to traverse such scopes.
When handling disjunctions, check whether some nonlocals of the
disjunctions are constructed by from_ground_term_construct scopes.
For any such nonlocals, set their insts to just ground, throwing away
the precise information we have about exactly what function symbols
they and ALL their subterms are bound to. This is HUGE win, since
it allows us avoid spending a lot of time building a huge merge_inst
table, which later passes of the compiler (e.g. equiv_type_hlds) would
then have to spend similarly huge times traversing.
This approach does have a down side. If lots of arms of a disjunction
bind a nonlocal to a large ground term, but a few bind it to a SMALL
ground term, a term below the from_ground_term_threshold, this
optimization won't kick in. That could be one purpose of the new
option. It isn't documented yet; I will seek feedback about its
usefulness first.
compiler/modecheck_unify.m:
Handle the three different kinds of right hand sides separately.
This yields a small speedup, because now we don't test rhs_vars and
rhs_functors (the common right hand sides) for a special case
(goals containing "any" insts) that is applicable only to
rhs_lambda_goals.
compiler/unique_modes.m:
Don't traverse scopes that construct ground terms, since modes.m has
already done everything that needs to be done.
compiler/det_analysis.m:
Don't traverse scopes that construct ground terms, since modes.m has
already done the needed work.
compiler/instmap.m:
Add a new predicate for use by modes.m.
Many predicate names in this module were quite uninformative; give them
informative names.
compiler/polymorphism.m:
If this pass invalidates the from_ground_term_construct invariants,
then mark the relevant scope as from_ground_term_other.
Delete two unused access predicates.
compiler/equiv_type_hlds.m:
Don't traverse scopes that construct ground terms, since modes.m
ensures that their instmap deltas do not contain typed insts, and
thus the scope cannot contain types that need to be expanded.
Convert some predicates to single clauses.
compiler/goal_form.m:
compiler/goal_util.m:
In predicates that test goals for various properties, don't traverse
scopes that construct ground terms when the outcome of the test
is the same for all such scopes.
Convert some predicates to single clauses.
compiler/simplify.m:
Do not look for common structs in from_ground_term_construct scopes,
both because this speeds up the compiler, and because retaining
references to ground terms is in fact a pessimization, not an
optimization. This is because (a) those references need to be stored in
stack slots across calls, and (b) the C code generators ensure that
the cells representing ground terms will be shared as needed.
If all arms of a switch are from_ground_term_construct scopes,
do not merge the instmap_deltas from those arms, since this is
both time-consuming (even after the other changes in this diff)
and extremely unlikely to improve the instmap_delta.
Disable common_struct in from_ground_term_construct scopes,
since for these scopes, it is actually a pessimization.
Do not delete from_ground_term_construct scopes, since many
compiler passes can now use them.
Do some manual deforestation, break up some large predicates,
and give better names to some.
compiler/liveness.m
Special-case the handling from_ground_term_construct scopes. This
allows us to traverse them just once instead of three times, and this
traversal is simpler and faster than any of the three.
In some traversals, we were switching on the goal type twice; once
in e.g. detect_liveness_in_goal_2, and once by calling
goal_expr_has_subgoals. Eliminate the double switching by merging
the relevant predicates. (The double-switching structure was easier
to work with before we had multi-cons-id switches.)
compiler/typecheck.m:
Move a lookup after a test, so we don't have to do it if the test
fails.
Provide a specialized mode for a predicate. This should allow the
compiler to eliminate an argument and a test in the common case.
Note a possible chance for a speedup.
compiler/typecheck_info.m:
Don't apply empty substitutions to the types of a possibly very large
set of variables.
compiler/quantification.m:
Don't quantify from_ground_term_construct scopes. They are created
correctly quantified, and any compiler pass that invalidates that
quantification also removes the from_ground_term_construct mark.
Don't apply empty renamings to a possibly very large set of variables.
Move the code for handling scopes to its own predicate, to avoid
overwhelming the code that handles other kinds of goals. Even from
this, factor out the renaming code, since it is needed only for
some kinds of scopes.
Make some predicate names better reflect what the predicate does.
compiler/pd_cost.m:
For from_ground_term_construct scopes, instead of computing their cost
by adding up the costs of the goals inside, make their cost a constant,
since binding a variable to a static term takes constant time.
compiler/pd_info.m:
Add prefixes on field names to avoid ambiguities.
compiler/add_heap_ops.m:
compiler/add_trail_ops.m:
compiler/closure_analysis.m:
compiler/constraint.m:
compiler/cse_detection.m:
compiler/dead_proc_elim.m:
compiler/deep_profiling.m:
compiler/deforest.m:
compiler/delay_construct.m:
compiler/delay_partial_inst.m:
compiler/dep_par_conj.m:
compiler/distance_granularity.m:
compiler/exception_analysis.m:
compiler/follow_code.m:
compiler/follow_vars.m:
compiler/format_call.m:
compiler/granularity.m:
compiler/higher_order.m:
compiler/implicit_parallelism.m:
compiler/inlining.m:
compiler/interval.m:
compiler/lambda.m:
compiler/lco.m:
compiler/live_vars.m:
compiler/loop_inv.m:
compiler/middle_rec.m:
compiler/mode_util.m:
compiler/parallel_to_plain_conj.m:
compiler/saved_vars.m:
compiler/stm_expand.m:
compiler/store_alloc.m:
compiler/stratify.m:
compiler/structure_reuse.direct.detect_garbage.m:
compiler/structure_reuse.lbu.m:
compiler/structure_sharing.analysis.m:
compiler/switch_detection.analysis.m:
compiler/trail_analysis.m:
compiler/term_pass1.m:
compiler/tupling.m:
compiler/unneeded_code.m:
compiler/untupling.m:
compiler/unused_args.m:
These passes have nothing to do in from_ground_term_construct scopes,
so don't traverse them.
In some modules (e.g. dead_proc_elim), some traversals had to be kept.
In loop_inv.m, replace a code structure that updated accumulators
with functions (which prevented the natural use of state variables),
that in lots of places reconstructed the term it had just
deconstructed, and obscured the identical handling of different kinds
of goals, with a structure based on predicates, state variables and
shared code for different goal types where possible.
In store_alloc.m, avoid some double switching on the same value.
In stratify.m, unneeded_code.m and unused_args.m, rename predicates
to avoid ambiguities.
compiler/goal_path.m:
compiler/goal_util.m:
compiler/implementation_defined_literals.m:
compiler/intermode.m:
compiler/mark_static_terms.m:
compiler/ml_code_gen.m:
compiler/mode_ordering.m:
compiler/ordering_mode_constraints.m:
compiler/prop_mode_constraints.m:
compiler/purity.m:
compiler/rbmm.actual_region_arguments.m:
compiler/rbmm.add_rbmm_goal_infos.m:
compiler/rbmm.condition_renaming.m:
compiler/rbmm.execution_path.m:
compiler/rbmm.region_transformation.m:
compiler/structure_reuse.direct.choose_reuse.m:
compiler/structure_reuse.indirect.m:
compiler/structure_reuse.lfu.m:
compiler/structure_reuse.versions.m:
compiler/term_const_build.m:
compiler/term_traversal.m:
compiler/unused_imports.m:
Mark places where we cannot (yet) special case
from_ground_term_construct scopes.
In structure_reuse.lfu.m, turn nested if-then-elses into a switch in.
compiler/size_prof.m:
Turn from_ground_term_construct scopes into from_ground_term_other
scopes, since in term size profiling grades, we need to attach sizes to
terms.
Give predicates better names.
compiler/*.m:
Minor changes to conform to the changes above.
compiler/make_hlds_passes.m:
With -S, print statistics after the third pass over items, since
this is the time-consuming one.
compiler/mercury_compile.m:
Conform to the new names of some predicates.
When declining to output a HLDS dump because it would be identical to
the previous dump, don't confuse the user either by being silent about
the decision, or by leaving an old dump laying around that could be
mistaken for a new one.
tools/binary:
tools/binary_step:
Bring these tools up to date.
compiler/Mmakefile:
Add an int3s target for use by the new code in the tools. The
Mmakefiles in the other directories with Mercury code already have
such a target.
compiler/notes/allocation.html:
Fix an out-of-date reference.
tests/debugger/polymorphic_ground_term.{m,inp,exp}:
New test case to check whether liveness.m handles typeinfo liveness
of ground terms correctly.
tests/debugger/Mmakefile:
Enable the new test case.
tests/debugger/polymorphic_output.{m,exp}:
Fix tab/space mixup.
1226 lines
51 KiB
Mathematica
1226 lines
51 KiB
Mathematica
%-----------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%-----------------------------------------------------------------------------%
|
|
% Copyright (C) 2000-2008 The University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU General
|
|
% Public License - see the file COPYING in the Mercury distribution.
|
|
%-----------------------------------------------------------------------------%
|
|
%
|
|
% File: unneeded_code.m.
|
|
% Author: zs.
|
|
%
|
|
% This module implements two related source-to-source transforms,
|
|
% both of which focus on goals that produce some variables, where these
|
|
% variables are not always required by the following computation.
|
|
%
|
|
% If there are no computation paths on which the variables produced by a goal
|
|
% may be needed, then the first transform deletes that goal.
|
|
%
|
|
% If the variables produced by a goal may be needed on some but not all
|
|
% computation paths, then the second transform moves that goal to the starts
|
|
% of those computation paths, thus avoiding the cost of executing the goal
|
|
% on all other computation paths. (This is related to the concept of partial
|
|
% redundancy elimination (PRE) for imperative languages.)
|
|
%
|
|
% Mercury has two constructs that make it possible for a variable to be needed
|
|
% on some computation paths but not others: switches and if-then-elses.
|
|
%
|
|
% In the case of switches, the alternative computation paths are those
|
|
% corresponding to the possible values of the switched-on variable, and
|
|
% not just the switch arms. Even if all switch arms need a variable, it
|
|
% is an optimization to copy the code generating that variable to the starts of
|
|
% all the switch arms if the switch is can_fail, i.e. there are some function
|
|
% symbols that the switched-on variable can be bound to that do not have arms.
|
|
%
|
|
% In the case of if-then-elses, the alternatives are the then part and
|
|
% the else part. Any variable needed by the condition is needed in both those
|
|
% computation paths.
|
|
%
|
|
% From the point of view of this transform, disjunctions are not branched
|
|
% control structures, because entering a disjunct does not preclude later
|
|
% entering another disjunct. Any variable needed by any disjunct must therefore
|
|
% be produced before control enters the disjunction. (In theory, a disjunct
|
|
% that cannot fail in a model_semi disjunction prevents entry to the following
|
|
% disjuncts, but any such following disjuncts will have been removed long ago
|
|
% by simplification.)
|
|
%
|
|
% Note that by avoiding the execution of a goal that appears in the original
|
|
% source code of the program, both these transforms can in general change the
|
|
% operational semantics of the program. Therefore a goal can only be eliminated
|
|
% or moved if the goal is has no observable effect except the result it
|
|
% generates (i.e is pure, cannot fail, cannot loop, cannot raise an exception),
|
|
% which is usually true only of goals composed entirely of builtins, or if
|
|
% the semantics options explicitly permit the change in the operational
|
|
% semantics, which will usually be an improvement (e.g. avoiding an infinite
|
|
% loop or an unnecessary exception).
|
|
%
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- module transform_hlds.unneeded_code.
|
|
:- interface.
|
|
|
|
:- import_module hlds.hlds_module.
|
|
:- import_module hlds.hlds_pred.
|
|
|
|
:- import_module io.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_process_proc_msg(pred_id::in, proc_id::in,
|
|
proc_info::in, proc_info::out, module_info::in, module_info::out,
|
|
io::di, io::uo) is det.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
:- import_module check_hlds.goal_path.
|
|
:- import_module check_hlds.inst_match.
|
|
:- import_module check_hlds.mode_util.
|
|
:- import_module hlds.goal_form.
|
|
:- import_module hlds.hlds_goal.
|
|
:- import_module hlds.hlds_out.
|
|
:- import_module hlds.instmap.
|
|
:- import_module hlds.quantification.
|
|
:- import_module libs.compiler_util.
|
|
:- import_module libs.globals.
|
|
:- import_module libs.options.
|
|
:- import_module mdbcomp.program_representation.
|
|
:- import_module parse_tree.prog_data.
|
|
|
|
:- import_module assoc_list.
|
|
:- import_module bool.
|
|
:- import_module cord.
|
|
:- import_module int.
|
|
:- import_module list.
|
|
:- import_module map.
|
|
:- import_module maybe.
|
|
:- import_module pair.
|
|
:- import_module set.
|
|
:- import_module string.
|
|
:- import_module svmap.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
% The branch_alts and branch_point types record the information the
|
|
% transform needs to know about a particular branched control
|
|
% structure: where it is, what kind it is, and how many alternatives
|
|
% it has.
|
|
%
|
|
:- type branch_point
|
|
---> branch_point(
|
|
goal_path, % The position of the branch point.
|
|
branch_alts % What kind of goal the branch point
|
|
% is, and many branches it has.
|
|
% Note that the second argument is a
|
|
% function of the first.
|
|
).
|
|
|
|
:- type branch_alts
|
|
---> alt_ite % If-then-elses always have two alternatives:
|
|
% the then branch (numbered 1) and the else branch
|
|
% (numbered 2).
|
|
|
|
; alt_switch(maybe(int)).
|
|
% The number of alternatives in a switch is equal
|
|
% to the number of function symbols in the type of
|
|
% the switched-on variable. This number is given by
|
|
% the argument integer, if present; if the argument
|
|
% is "no", then the number of function symbols in
|
|
% the type is effectively infinite (this can happen
|
|
% for builtin types such as "int"). If the switch
|
|
% cannot_fail, then this will be equal to the
|
|
% number of cases; if the switch can_fail, there
|
|
% will be strictly fewer cases than this.
|
|
|
|
% The location type identifies one arm of a branched control structure.
|
|
% The branched control structure id is a branch_point instead of a
|
|
% simple goal_path because without the branch_alts info, the
|
|
% transformation cannot tell if a given set of branches of a branched
|
|
% control structure covers all possible execution paths or not.
|
|
%
|
|
:- type location
|
|
---> location(
|
|
branch_point, % To which branched control structure
|
|
% does the location belong.
|
|
int % The branch within that control structure.
|
|
).
|
|
|
|
% The where_needed_map type maps each variable to the set of
|
|
% computation branches where it is needed. If a variable is needed
|
|
% everywhere, then the computation producing it cannot be eliminated
|
|
% or moved. If it is not needed at all, its producer can be eliminated.
|
|
% If it is needed on some but not all branches, then the producer
|
|
% can be moved to the starts of those branches.
|
|
%
|
|
% The set of branches to whose starts the producer can be moved
|
|
% is represented as a map from the id of the branched control
|
|
% structure to the set of branch numbers within that branched control
|
|
% structure. If the branched control structure at goal path gp is
|
|
% mapped to a set including N, then the producer of that variable
|
|
% may be moved to the start of the goal with goal path <gp>;sN;
|
|
% (if the control structure is a switch) or <gp>;t; or <gp>;e;
|
|
% (if the control structure is an if-then-else).
|
|
%
|
|
% Since <gp>;sN; is conjoined with e.g. <gp>;sN;<gp2>;sM;
|
|
% it would be a mode error (variable having two conjoined producers)
|
|
% for the transformed code to have the producer of some variable
|
|
% inserted at the start of both those goals. It is therefore an
|
|
% invariant that a where_needed structure mapping gp to N
|
|
% will not contain any keys whose goal_path includes <gp>;sN;
|
|
% or its if-then-else equivalent.
|
|
%
|
|
% An example:
|
|
%
|
|
% % switch on X at goal path gp
|
|
% ( % s1
|
|
% X = a,
|
|
% ... code that needs Y and Z ...
|
|
% ; % s2
|
|
% X = b,
|
|
% ( Y = f ->
|
|
% ... code that needs only Z ...
|
|
% ;
|
|
% ... code that does not need Y or Z ...
|
|
% )
|
|
% )
|
|
%
|
|
% X is needed everywhere, since even if X is bound to c, its value must
|
|
% be tested.
|
|
%
|
|
% Y is needed everywhere iff the type of X contains only a and b,
|
|
% otherwise it is needed only in the <gp>;s1; and <gp>;s2; switch arms.
|
|
%
|
|
% Z is needed in <gp>;s1; and <gp>;s2;t; but is not needed in the
|
|
% <gp>;s2;e; else arm. Therefore the where_needed_branches map for Z
|
|
% will map gp to 1 and <gp>;s2; to 1.
|
|
%
|
|
:- type where_needed_map == map(prog_var, where_needed).
|
|
|
|
:- type where_needed
|
|
---> everywhere
|
|
; branches(where_needed_branches).
|
|
|
|
:- type where_needed_branches == map(branch_point, set(int)).
|
|
|
|
% The refined_goal_map structure maps branch goals to the list of
|
|
% producers that should be moved to the start of that branch.
|
|
% The order is important, since some of the producers in such a list
|
|
% may depend on variables produced by other goals that precede them
|
|
% in the list.
|
|
|
|
:- type refined_goal_map == map(pair(goal_path, int), list(hlds_goal)).
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
unneeded_process_proc_msg(PredId, ProcId, !ProcInfo, !ModuleInfo, !IO) :-
|
|
% The transformation considers every nonlocal variable of a goal
|
|
% that is bound on entry to be consumed by that goal. If the nonlocal set
|
|
% contains any such variables that are not actually needed by the goal,
|
|
% then the transformation will not be as effective as it could be.
|
|
% Therefore we preprocess the procedure body to ensure that the nonlocals
|
|
% sets are accurate reflections of the true needs of goals.
|
|
|
|
globals.io_lookup_bool_option(very_verbose, VeryVerbose, !IO),
|
|
(
|
|
VeryVerbose = yes,
|
|
io.write_string("% Removing dead code in ", !IO),
|
|
hlds_out.write_pred_proc_id_pair(!.ModuleInfo, PredId, ProcId, !IO),
|
|
io.write_string(" ...\n", !IO),
|
|
unneeded_pre_process_proc(!ProcInfo),
|
|
unneeded_process_proc(!ProcInfo, !ModuleInfo, PredId, 1, Successful),
|
|
(
|
|
Successful = yes,
|
|
io.write_string("% done.\n", !IO)
|
|
;
|
|
Successful = no,
|
|
io.write_string("% none found.\n", !IO)
|
|
)
|
|
;
|
|
VeryVerbose = no,
|
|
unneeded_pre_process_proc(!ProcInfo),
|
|
unneeded_process_proc(!ProcInfo, !ModuleInfo, PredId, 1, _)
|
|
).
|
|
|
|
:- pred unneeded_pre_process_proc(proc_info::in, proc_info::out) is det.
|
|
|
|
unneeded_pre_process_proc(!ProcInfo) :-
|
|
proc_info_get_headvars(!.ProcInfo, HeadVars),
|
|
proc_info_get_goal(!.ProcInfo, Goal0),
|
|
proc_info_get_varset(!.ProcInfo, VarSet0),
|
|
proc_info_get_vartypes(!.ProcInfo, VarTypes0),
|
|
proc_info_get_rtti_varmaps(!.ProcInfo, RttiVarMaps0),
|
|
implicitly_quantify_clause_body(HeadVars, _Warnings, Goal0, Goal,
|
|
VarSet0, VarSet, VarTypes0, VarTypes, RttiVarMaps0, RttiVarMaps),
|
|
proc_info_set_goal(Goal, !ProcInfo),
|
|
proc_info_set_varset(VarSet, !ProcInfo),
|
|
proc_info_set_vartypes(VarTypes, !ProcInfo),
|
|
proc_info_set_rtti_varmaps(RttiVarMaps, !ProcInfo).
|
|
|
|
% The source-to-source transform operates in two phases.
|
|
%
|
|
% The first phase traverses the procedure body, keeping track of which
|
|
% variables are needed where. When it finds a goal that can be deleted,
|
|
% it deletes it by replacing it with the goal `true'. When it finds a goal
|
|
% that can be moved, it does the same, but also records in the RefinedGoalsMap
|
|
% that the deleted goal must later be inserted at the starts of the branches
|
|
% where its outputs may be needed, and accordingly notes that its own inputs
|
|
% are needed in those branches.
|
|
%
|
|
% The second phase traverses the modified problem body, and inserts the
|
|
% goals in the RefinedGoalsMap at the starts of the indicated branches.
|
|
% This phase identified the indicated branches by the goal_path annotations
|
|
% on their parents. These may be out of date since the first phase will have
|
|
% deleted some goals, but since neither phase modifies the goal_path annotation
|
|
% on a goal once that goal has been inserted into the RefinedGoalsMap,
|
|
% this does not matter.
|
|
%
|
|
% Neither phase traverses the internals of a goal that has been moved.
|
|
% To make sure that such goals are optimized whenever possible, the algorithm
|
|
% invokes itself recursively whenever it was able to successfully (delete or)
|
|
% move a goal. This cannot lead to infinite recursion, since each iteration
|
|
% will strictly reduce the number of computation paths on which a subgoal
|
|
% of the procedure body is executed. Since both the number of subgoals and
|
|
% computation paths are finite, the recursion must end.
|
|
|
|
:- type option_values
|
|
---> option_values(
|
|
fully_strict :: bool,
|
|
reorder_conj :: bool,
|
|
copy_limit :: int,
|
|
debug :: bool
|
|
).
|
|
|
|
:- pred unneeded_process_proc(proc_info::in, proc_info::out,
|
|
module_info::in, module_info::out, pred_id::in, int::in, bool::out) is det.
|
|
|
|
unneeded_process_proc(!ProcInfo, !ModuleInfo, PredId, Pass, Successful) :-
|
|
fill_goal_path_slots(!.ModuleInfo, !ProcInfo),
|
|
proc_info_get_goal(!.ProcInfo, Goal0),
|
|
proc_info_get_varset(!.ProcInfo, VarSet0),
|
|
proc_info_get_vartypes(!.ProcInfo, VarTypes0),
|
|
proc_info_get_initial_instmap(!.ProcInfo, !.ModuleInfo, InitInstMap),
|
|
Goal0 = hlds_goal(_, GoalInfo0),
|
|
InstMapDelta = goal_info_get_instmap_delta(GoalInfo0),
|
|
instmap.apply_instmap_delta(InitInstMap, InstMapDelta, FinalInstMap),
|
|
proc_info_instantiated_head_vars(!.ModuleInfo, !.ProcInfo, NeededVarsList),
|
|
map.init(WhereNeededMap0),
|
|
NeededEverywhere = (pred(Var::in, NeededMap0::in, NeededMap::out) is det :-
|
|
map.det_insert(NeededMap0, Var, everywhere, NeededMap)
|
|
),
|
|
list.foldl(NeededEverywhere, NeededVarsList,
|
|
WhereNeededMap0, WhereNeededMap1),
|
|
module_info_get_globals(!.ModuleInfo, Globals),
|
|
globals.lookup_bool_option(Globals, reorder_conj, ReorderConj),
|
|
globals.lookup_bool_option(Globals, fully_strict, FullyStrict),
|
|
globals.lookup_int_option(Globals, unneeded_code_copy_limit, Limit),
|
|
globals.lookup_bool_option(Globals, unneeded_code_debug, Debug),
|
|
Options = option_values(FullyStrict, ReorderConj, Limit, Debug),
|
|
(
|
|
Debug = no
|
|
;
|
|
Debug = yes,
|
|
trace [io(!IO)] (
|
|
module_info_pred_info(!.ModuleInfo, PredId, PredInfo),
|
|
PredName = pred_info_name(PredInfo),
|
|
globals.lookup_accumulating_option(Globals,
|
|
unneeded_code_debug_pred_name, DebugPredNames),
|
|
(
|
|
DebugPredNames = [],
|
|
io.format("%% Starting unneededed code pass %d\n",
|
|
[i(Pass)], !IO)
|
|
;
|
|
DebugPredNames = [_ | _],
|
|
( list.member(PredName, DebugPredNames) ->
|
|
io.format("%% Starting unneededed code pass %d\n",
|
|
[i(Pass)], !IO),
|
|
AppendVarNums = yes,
|
|
hlds_out.write_goal(Goal0, !.ModuleInfo, VarSet0,
|
|
AppendVarNums, 0, ".\n", !IO)
|
|
;
|
|
true
|
|
)
|
|
)
|
|
)
|
|
),
|
|
unneeded_process_goal(Goal0, Goal1, InitInstMap, FinalInstMap, VarTypes0,
|
|
!.ModuleInfo, Options, WhereNeededMap1, _, map.init, RefinedGoals1,
|
|
no, Changed),
|
|
unneeded_refine_goal(Goal1, Goal2, RefinedGoals1, RefinedGoals),
|
|
expect(map.is_empty(RefinedGoals),
|
|
this_file, "unneeded_process_proc: goal reattachment unsuccessful"),
|
|
(
|
|
Changed = yes,
|
|
% We need to fix up the goal_info by recalculating the nonlocal vars
|
|
% and the non-atomic instmap deltas.
|
|
proc_info_get_headvars(!.ProcInfo, HeadVars),
|
|
proc_info_get_inst_varset(!.ProcInfo, InstVarSet),
|
|
proc_info_get_rtti_varmaps(!.ProcInfo, RttiVarMaps0),
|
|
implicitly_quantify_clause_body(HeadVars, _Warnings,
|
|
Goal2, Goal3, VarSet0, VarSet, VarTypes0, VarTypes,
|
|
RttiVarMaps0, RttiVarMaps),
|
|
recompute_instmap_delta(do_not_recompute_atomic_instmap_deltas,
|
|
Goal3, Goal, VarTypes, InstVarSet, InitInstMap, !ModuleInfo),
|
|
proc_info_set_goal(Goal, !ProcInfo),
|
|
proc_info_set_varset(VarSet, !ProcInfo),
|
|
proc_info_set_vartypes(VarTypes, !ProcInfo),
|
|
proc_info_set_rtti_varmaps(RttiVarMaps, !ProcInfo),
|
|
( Pass > 3 ->
|
|
true
|
|
;
|
|
unneeded_process_proc(!ProcInfo, !ModuleInfo, PredId, Pass + 1, _)
|
|
),
|
|
Successful = yes
|
|
;
|
|
Changed = no,
|
|
Successful = no
|
|
).
|
|
|
|
:- pred unneeded_process_goal(hlds_goal::in, hlds_goal::out,
|
|
instmap::in, instmap::in, vartypes::in, module_info::in, option_values::in,
|
|
where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_goal(Goal0, Goal, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, !WhereNeededMap, !RefinedGoals, !Changed) :-
|
|
can_eliminate_or_move(Goal0, InitInstMap, FinalInstMap,
|
|
VarTypes, ModuleInfo, Options, !.WhereNeededMap, WhereInfo),
|
|
(
|
|
WhereInfo = everywhere,
|
|
unneeded_process_goal_internal(Goal0, Goal, InitInstMap, FinalInstMap,
|
|
VarTypes, ModuleInfo, Options, !WhereNeededMap, !RefinedGoals,
|
|
!Changed)
|
|
;
|
|
WhereInfo = branches(Branches),
|
|
demand_inputs(Goal0, ModuleInfo, InitInstMap, WhereInfo,
|
|
!WhereNeededMap),
|
|
map.to_assoc_list(Branches, BranchList),
|
|
list.foldl(insert_branch_into_refined_goals(Goal0), BranchList,
|
|
!RefinedGoals),
|
|
Goal = true_goal,
|
|
!:Changed = yes,
|
|
|
|
Debug = Options ^ debug,
|
|
(
|
|
Debug = no
|
|
;
|
|
Debug = yes,
|
|
Goal0 = hlds_goal(_GoalExpr0, GoalInfo0),
|
|
GoalPath0 = goal_info_get_goal_path(GoalInfo0),
|
|
GoalPathStr0 = goal_path_to_string(GoalPath0),
|
|
trace [io(!IO)] (
|
|
io.format("unneeded code at goal path %s\n", [s(GoalPathStr0)],
|
|
!IO)
|
|
)
|
|
)
|
|
),
|
|
undemand_virgin_outputs(Goal0, ModuleInfo, InitInstMap, !WhereNeededMap),
|
|
( goal_get_purity(Goal) = purity_impure ->
|
|
% By saying that all vars that are live before the impure goal are
|
|
% needed everywhere, we prevent the movement of the goals producing
|
|
% those vars across the impure goal.
|
|
%
|
|
% This code requires compound goals containing impure code
|
|
% to also be marked impure.
|
|
map.map_values(demand_var_everywhere, !WhereNeededMap)
|
|
;
|
|
true
|
|
).
|
|
|
|
:- pred insert_branch_into_refined_goals(hlds_goal::in,
|
|
pair(branch_point, set(int))::in,
|
|
refined_goal_map::in, refined_goal_map::out) is det.
|
|
|
|
insert_branch_into_refined_goals(Goal, BranchPoint - BranchNumSet,
|
|
!RefinedGoals) :-
|
|
BranchPoint = branch_point(GoalPath, _),
|
|
set.to_sorted_list(BranchNumSet, BranchNums),
|
|
list.foldl(insert_branch_arm_into_refined_goals(Goal, GoalPath),
|
|
BranchNums, !RefinedGoals).
|
|
|
|
:- pred insert_branch_arm_into_refined_goals(hlds_goal::in, goal_path::in,
|
|
int::in, refined_goal_map::in, refined_goal_map::out) is det.
|
|
|
|
insert_branch_arm_into_refined_goals(Goal, GoalPath, BranchNum,
|
|
!RefinedGoals) :-
|
|
Key = GoalPath - BranchNum,
|
|
( map.search(!.RefinedGoals, Key, Goals0) ->
|
|
Goals = [Goal | Goals0],
|
|
map.det_update(!.RefinedGoals, Key, Goals, !:RefinedGoals)
|
|
;
|
|
map.det_insert(!.RefinedGoals, Key, [Goal], !:RefinedGoals)
|
|
).
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- pred can_eliminate_or_move(hlds_goal::in, instmap::in,
|
|
instmap::in, vartypes::in, module_info::in, option_values::in,
|
|
where_needed_map::in, where_needed::out) is det.
|
|
|
|
can_eliminate_or_move(Goal, InitInstMap, FinalInstMap, VarTypes, ModuleInfo,
|
|
Options, WhereNeededMap, !:WhereInfo) :-
|
|
instmap_changed_vars(InitInstMap, FinalInstMap, VarTypes, ModuleInfo,
|
|
ChangedVarSet),
|
|
set.to_sorted_list(ChangedVarSet, ChangedVars),
|
|
map.init(Empty),
|
|
!:WhereInfo = branches(Empty),
|
|
Goal = hlds_goal(_, GoalInfo),
|
|
CurrentPath = goal_info_get_goal_path(GoalInfo),
|
|
list.foldl(collect_where_needed(CurrentPath, WhereNeededMap), ChangedVars,
|
|
!WhereInfo),
|
|
adjust_where_needed(Goal, Options, !WhereInfo).
|
|
|
|
:- pred collect_where_needed(goal_path::in, where_needed_map::in, prog_var::in,
|
|
where_needed::in, where_needed::out) is det.
|
|
|
|
collect_where_needed(CurrentPath, WhereNeededMap, ChangedVar, !WhereInfo) :-
|
|
( map.search(WhereNeededMap, ChangedVar, Where) ->
|
|
where_needed_upper_bound(CurrentPath, Where, !WhereInfo)
|
|
;
|
|
true
|
|
).
|
|
|
|
% This is the predicate responsible for ensuring that the act of optimizing
|
|
% away the execution of a goal on some or all computation paths changes the
|
|
% operational semantics only in ways that are explicitly permitted by the
|
|
% programmer.
|
|
%
|
|
:- pred adjust_where_needed(hlds_goal::in, option_values::in,
|
|
where_needed::in, where_needed::out) is det.
|
|
|
|
adjust_where_needed(Goal, Options, !WhereInfo) :-
|
|
(
|
|
Goal = hlds_goal(GoalExpr, GoalInfo),
|
|
(
|
|
% Do not move goals that can fail, since doing so can cause
|
|
% execution to reach goals it shouldn't, and those goals may have
|
|
% undesirable behavior (e.g. infinite loops).
|
|
Detism = goal_info_get_determinism(GoalInfo),
|
|
detism_is_moveable(Detism, no)
|
|
;
|
|
% Do not move impure or semipure goals, since their ordering
|
|
% wrt other such goals must be preserved.
|
|
goal_info_get_purity(GoalInfo) \= purity_pure
|
|
;
|
|
% With --fully-strict, we cannot optimize away infinite loops
|
|
% or exceptions.
|
|
Options ^ fully_strict = yes,
|
|
goal_can_loop_or_throw(Goal)
|
|
;
|
|
% With --no-reorder-conj, we cannot move infinite loops or
|
|
% exceptions, but we can delete them.
|
|
Options ^ reorder_conj = no,
|
|
goal_can_loop_or_throw(Goal),
|
|
!.WhereInfo = branches(BranchMap),
|
|
\+ map.is_empty(BranchMap)
|
|
;
|
|
% Do not delete the `true' goal, since deleting it is a no-op,
|
|
% and thus does *not* strictly reduce the number of computation
|
|
% paths on which a subgoal of the procedure body is executed.
|
|
GoalExpr = true_goal_expr
|
|
;
|
|
!.WhereInfo = branches(BranchMap),
|
|
map.values(BranchMap, BranchArms),
|
|
list.map(set.count, BranchArms, BranchArmCounts),
|
|
BranchArmCount = list.foldl(int.plus, BranchArmCounts, 0),
|
|
BranchArmCount > Options ^ copy_limit
|
|
|
|
% We may also want to add other space time tradeoffs. E.g. if
|
|
% profiling shows that Goal is required in 10 branches that
|
|
% account for 99% of all executions and is not required in 5
|
|
% branches that account for the remaining 1%, and Goal itself
|
|
% is sufficiently cheap to execute, then not moving Goal may cost
|
|
% a small slowdown in 1% of cases but avoid 9 extra copies of Goal.
|
|
% Due to better instruction cache behavior, not moving Goal
|
|
% may in fact yield faster code after all.
|
|
)
|
|
->
|
|
!:WhereInfo = everywhere
|
|
;
|
|
true
|
|
).
|
|
|
|
:- pred detism_is_moveable(determinism::in, bool::out) is det.
|
|
|
|
detism_is_moveable(detism_det, yes).
|
|
detism_is_moveable(detism_semi, no).
|
|
detism_is_moveable(detism_non, no).
|
|
detism_is_moveable(detism_multi, yes).
|
|
detism_is_moveable(detism_erroneous, no).
|
|
detism_is_moveable(detism_failure, no).
|
|
detism_is_moveable(detism_cc_non, no).
|
|
detism_is_moveable(detism_cc_multi, yes).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred demand_inputs(hlds_goal::in, module_info::in,
|
|
instmap::in, where_needed::in,
|
|
where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, WhereNeeded, !WhereNeededMap) :-
|
|
Goal = hlds_goal(_, GoalInfo),
|
|
NonLocalSet = goal_info_get_nonlocals(GoalInfo),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo),
|
|
set.to_sorted_list(NonLocalSet, NonLocals),
|
|
list.filter(nonlocal_may_be_input(ModuleInfo, InitInstMap), NonLocals,
|
|
Inputs),
|
|
list.foldl(demand_var(GoalPath, WhereNeeded), Inputs, !WhereNeededMap).
|
|
|
|
:- pred nonlocal_may_be_input(module_info::in, instmap::in,
|
|
prog_var::in) is semidet.
|
|
|
|
nonlocal_may_be_input(ModuleInfo, InstMap, Var) :-
|
|
instmap_lookup_var(InstMap, Var, Inst),
|
|
inst_is_bound(ModuleInfo, Inst).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred undemand_virgin_outputs(hlds_goal::in, module_info::in,
|
|
instmap::in, where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
undemand_virgin_outputs(Goal, ModuleInfo, InstMap, !WhereNeededMap) :-
|
|
Goal = hlds_goal(_, GoalInfo),
|
|
NonLocalSet = goal_info_get_nonlocals(GoalInfo),
|
|
set.to_sorted_list(NonLocalSet, NonLocals),
|
|
list.filter(nonlocal_is_virgin_output(ModuleInfo, InstMap), NonLocals,
|
|
VirginOutputs),
|
|
list.foldl(undemand_var, VirginOutputs, !WhereNeededMap).
|
|
|
|
:- pred nonlocal_is_virgin_output(module_info::in, instmap::in,
|
|
prog_var::in) is semidet.
|
|
|
|
nonlocal_is_virgin_output(ModuleInfo, InstMap, Var) :-
|
|
instmap_lookup_var(InstMap, Var, Inst),
|
|
\+ inst_is_bound(ModuleInfo, Inst).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred demand_var(goal_path::in, where_needed::in,
|
|
prog_var::in, where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
demand_var(CurrentPath, WhereNeeded, Var, !WhereNeededMap) :-
|
|
( map.search(!.WhereNeededMap, Var, Where0) ->
|
|
where_needed_upper_bound(CurrentPath, WhereNeeded, Where0, Where),
|
|
svmap.det_update(Var, Where, !WhereNeededMap)
|
|
;
|
|
svmap.det_insert(Var, WhereNeeded, !WhereNeededMap)
|
|
).
|
|
|
|
:- pred undemand_var(prog_var::in,
|
|
where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
undemand_var(Var, WhereNeededMap0, WhereNeededMap) :-
|
|
map.delete(WhereNeededMap0, Var, WhereNeededMap).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred demand_var_everywhere(prog_var::in, where_needed::in,
|
|
where_needed::out) is det.
|
|
|
|
demand_var_everywhere(_Var, _WhereNeeded0, everywhere).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_process_goal_internal(hlds_goal::in, hlds_goal::out,
|
|
instmap::in, instmap::in, vartypes::in, module_info::in,
|
|
option_values::in, where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_goal_internal(Goal0, Goal, InitInstMap, FinalInstMap,
|
|
VarTypes, ModuleInfo, Options, !WhereNeededMap, !RefinedGoals,
|
|
!Changed) :-
|
|
Goal0 = hlds_goal(GoalExpr0, GoalInfo0),
|
|
(
|
|
GoalExpr0 = unify(_, _, _, _, _),
|
|
Goal = Goal0,
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, everywhere,
|
|
!WhereNeededMap)
|
|
;
|
|
GoalExpr0 = plain_call(_, _, _, _, _, _),
|
|
Goal = Goal0,
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, everywhere,
|
|
!WhereNeededMap)
|
|
;
|
|
GoalExpr0 = generic_call(_, _, _, _),
|
|
Goal = Goal0,
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, everywhere,
|
|
!WhereNeededMap)
|
|
;
|
|
GoalExpr0 = call_foreign_proc(_, _, _, _, _, _, _),
|
|
Goal = Goal0,
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, everywhere,
|
|
!WhereNeededMap)
|
|
;
|
|
GoalExpr0 = conj(ConjType, Conjuncts0),
|
|
(
|
|
ConjType = plain_conj,
|
|
unneeded_process_conj(Conjuncts0, Conjuncts,
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options,
|
|
!WhereNeededMap, !RefinedGoals, !Changed),
|
|
GoalExpr = conj(plain_conj, Conjuncts),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
ConjType = parallel_conj,
|
|
Goal = Goal0,
|
|
demand_inputs(Goal, ModuleInfo, InitInstMap, everywhere,
|
|
!WhereNeededMap)
|
|
)
|
|
;
|
|
GoalExpr0 = switch(SwitchVar, CanFail, Cases0),
|
|
(
|
|
Cases0 = [case(_, _, hlds_goal(_, FirstCaseGoalInfo)) | _],
|
|
FirstCaseGoalPath = goal_info_get_goal_path(FirstCaseGoalInfo),
|
|
FirstCaseLastStep = goal_path_get_last(FirstCaseGoalPath),
|
|
FirstCaseLastStep = step_switch(_, MaybeNumAltPrime)
|
|
->
|
|
MaybeNumAlt = MaybeNumAltPrime
|
|
;
|
|
unexpected(this_file,
|
|
"unneeded_process_goal_internal: switch count")
|
|
),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
BranchPoint = branch_point(GoalPath, alt_switch(MaybeNumAlt)),
|
|
map.map_values(demand_var_everywhere, !WhereNeededMap),
|
|
map.init(BranchNeededMap0),
|
|
unneeded_process_cases(Cases0, Cases, BranchPoint, 1,
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options, GoalPath,
|
|
!.WhereNeededMap, BranchNeededMap0, BranchNeededMap, !RefinedGoals,
|
|
!Changed),
|
|
merge_where_needed_maps(GoalPath, !.WhereNeededMap,
|
|
BranchNeededMap, !:WhereNeededMap),
|
|
demand_var(GoalPath, everywhere, SwitchVar, !WhereNeededMap),
|
|
GoalExpr = switch(SwitchVar, CanFail, Cases),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = disj(Disjuncts0),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
map.map_values(demand_var_everywhere, !WhereNeededMap),
|
|
unneeded_process_disj(Disjuncts0, Disjuncts, InitInstMap, FinalInstMap,
|
|
VarTypes, ModuleInfo, Options, GoalPath,
|
|
!.WhereNeededMap, !.WhereNeededMap, !:WhereNeededMap,
|
|
!RefinedGoals, !Changed),
|
|
GoalExpr = disj(Disjuncts),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = if_then_else(Quant, Cond0, Then0, Else0),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
BranchPoint = branch_point(GoalPath, alt_ite),
|
|
map.map_values(demand_var_everywhere, !WhereNeededMap),
|
|
unneeded_process_ite(Cond0, Cond, Then0, Then, Else0, Else,
|
|
BranchPoint, InitInstMap, FinalInstMap, VarTypes, ModuleInfo,
|
|
Options, GoalPath, !WhereNeededMap, !RefinedGoals, !Changed),
|
|
GoalExpr = if_then_else(Quant, Cond, Then, Else),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = negation(NegGoal0),
|
|
unneeded_process_goal(NegGoal0, NegGoal, InitInstMap, FinalInstMap,
|
|
VarTypes, ModuleInfo, Options,
|
|
!WhereNeededMap, !RefinedGoals, !Changed),
|
|
GoalExpr = negation(NegGoal),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = scope(Reason, SomeGoal0),
|
|
( Reason = from_ground_term(_, from_ground_term_construct) ->
|
|
Goal = Goal0
|
|
;
|
|
unneeded_process_goal(SomeGoal0, SomeGoal,
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options,
|
|
!WhereNeededMap, !RefinedGoals, !Changed),
|
|
GoalExpr = scope(Reason, SomeGoal),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
)
|
|
;
|
|
GoalExpr0 = shorthand(_),
|
|
% These should have been expanded out by now.
|
|
unexpected(this_file, "unneeded_process_goal_internal: shorthand")
|
|
).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- type bracketed_goal
|
|
---> bracketed_goal(hlds_goal, instmap, instmap).
|
|
|
|
:- pred unneeded_process_conj(list(hlds_goal)::in, list(hlds_goal)::out,
|
|
instmap::in, instmap::in, vartypes::in, module_info::in,
|
|
option_values::in, where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_conj(Goals0, Goals, InitInstMap, _FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, !WhereNeededMap, !RefinedGoals, !Changed) :-
|
|
build_bracketed_conj(Goals0, InitInstMap, BracketedGoals),
|
|
list.reverse(BracketedGoals, RevBracketedGoals),
|
|
unneeded_process_rev_bracketed_conj(RevBracketedGoals, RevGoals, VarTypes,
|
|
ModuleInfo, Options, !WhereNeededMap, !RefinedGoals, !Changed),
|
|
list.reverse(RevGoals, Goals).
|
|
|
|
:- pred build_bracketed_conj(list(hlds_goal)::in, instmap::in,
|
|
list(bracketed_goal)::out) is det.
|
|
|
|
build_bracketed_conj([], _, []).
|
|
build_bracketed_conj([Goal | Goals], InitInstMap, BracketedGoals) :-
|
|
( instmap_is_unreachable(InitInstMap) ->
|
|
BracketedGoals = []
|
|
;
|
|
Goal = hlds_goal(_, GoalInfo),
|
|
InstMapDelta = goal_info_get_instmap_delta(GoalInfo),
|
|
instmap.apply_instmap_delta(InitInstMap, InstMapDelta, FinalInstMap),
|
|
build_bracketed_conj(Goals, FinalInstMap, BracketedTail),
|
|
BracketedGoal = bracketed_goal(Goal, InitInstMap, FinalInstMap),
|
|
BracketedGoals = [BracketedGoal | BracketedTail]
|
|
).
|
|
|
|
:- pred unneeded_process_rev_bracketed_conj(list(bracketed_goal)::in,
|
|
list(hlds_goal)::out, vartypes::in, module_info::in, option_values::in,
|
|
where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_rev_bracketed_conj([], [], _, _, _,
|
|
!WhereNeededMap, !RefinedGoals, !Changed).
|
|
unneeded_process_rev_bracketed_conj([BracketedGoal | BracketedGoals], Goals,
|
|
VarTypes, ModuleInfo, Options, !WhereNeededMap, !RefinedGoals,
|
|
!Changed) :-
|
|
BracketedGoal = bracketed_goal(Goal0, InitInstMap, FinalInstMap),
|
|
unneeded_process_goal(Goal0, Goal1, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, !WhereNeededMap, !RefinedGoals, !Changed),
|
|
unneeded_process_rev_bracketed_conj(BracketedGoals, Goals1, VarTypes,
|
|
ModuleInfo, Options, !WhereNeededMap, !RefinedGoals, !Changed),
|
|
( Goal1 = hlds_goal(true_goal_expr, _) ->
|
|
Goals = Goals1
|
|
;
|
|
Goals = [Goal1 | Goals1]
|
|
).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_process_disj(list(hlds_goal)::in, list(hlds_goal)::out,
|
|
instmap::in, instmap::in, vartypes::in, module_info::in,
|
|
option_values::in, goal_path::in,
|
|
where_needed_map::in, where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_disj([], [], _, _, _, _, _, _, _,
|
|
!WhereNeededMap, !RefinedGoals, !Changed).
|
|
unneeded_process_disj([Goal0 | Goals0], [Goal | Goals],
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options, CurrentPath,
|
|
StartWhereNeededMap, !WhereNeededMap, !RefinedGoals, !Changed) :-
|
|
unneeded_process_goal(Goal0, Goal, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, StartWhereNeededMap, WhereNeededMapFirst,
|
|
!RefinedGoals, !Changed),
|
|
map.to_assoc_list(WhereNeededMapFirst, WhereNeededList),
|
|
add_where_needed_list(WhereNeededList, CurrentPath, !WhereNeededMap),
|
|
unneeded_process_disj(Goals0, Goals, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, CurrentPath, StartWhereNeededMap,
|
|
!WhereNeededMap, !RefinedGoals, !Changed).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_process_cases(list(case)::in, list(case)::out,
|
|
branch_point::in, int::in, instmap::in, instmap::in, vartypes::in,
|
|
module_info::in, option_values::in, goal_path::in, where_needed_map::in,
|
|
where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out,
|
|
bool::in, bool::out) is det.
|
|
|
|
unneeded_process_cases([], [], _, _, _, _, _, _, _, _, _,
|
|
!WhereNeededMap, !RefinedGoals, !Changed).
|
|
unneeded_process_cases([Case0 | Cases0], [Case | Cases],
|
|
BranchPoint, BranchNum, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, CurrentPath, StartWhereNeededMap,
|
|
!WhereNeededMap, !RefinedGoals, !Changed) :-
|
|
Case0 = case(MainConsId, OtherConsIds, Goal0),
|
|
unneeded_process_goal(Goal0, Goal, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, StartWhereNeededMap, WhereNeededMapFirst,
|
|
!RefinedGoals, !Changed),
|
|
Case = case(MainConsId, OtherConsIds, Goal),
|
|
map.to_assoc_list(WhereNeededMapFirst, WhereNeededList),
|
|
add_alt_start(WhereNeededList, BranchPoint, BranchNum, CurrentPath,
|
|
!WhereNeededMap),
|
|
unneeded_process_cases(Cases0, Cases, BranchPoint, BranchNum + 1,
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options, CurrentPath,
|
|
StartWhereNeededMap, !WhereNeededMap, !RefinedGoals, !Changed).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_process_ite(hlds_goal::in, hlds_goal::out,
|
|
hlds_goal::in, hlds_goal::out, hlds_goal::in, hlds_goal::out,
|
|
branch_point::in, instmap::in, instmap::in, vartypes::in,
|
|
module_info::in, option_values::in, goal_path::in,
|
|
where_needed_map::in, where_needed_map::out,
|
|
refined_goal_map::in, refined_goal_map::out, bool::in, bool::out) is det.
|
|
|
|
unneeded_process_ite(Cond0, Cond, Then0, Then, Else0, Else, BranchPoint,
|
|
InitInstMap, FinalInstMap, VarTypes, ModuleInfo, Options,
|
|
CurrentPath, !WhereNeededMap, !RefinedGoals, !Changed) :-
|
|
Cond0 = hlds_goal(_, CondInfo0),
|
|
InstMapDelta = goal_info_get_instmap_delta(CondInfo0),
|
|
instmap.apply_instmap_delta(InitInstMap, InstMapDelta, InstMapCond),
|
|
|
|
unneeded_process_goal(Else0, Else, InitInstMap, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, !.WhereNeededMap, WhereNeededMapElse,
|
|
!RefinedGoals, !Changed),
|
|
unneeded_process_goal(Then0, Then, InstMapCond, FinalInstMap, VarTypes,
|
|
ModuleInfo, Options, !.WhereNeededMap, WhereNeededMapThen,
|
|
!RefinedGoals, !Changed),
|
|
|
|
map.init(BranchNeededMap0),
|
|
map.to_assoc_list(WhereNeededMapElse, WhereNeededListElse),
|
|
add_alt_start(WhereNeededListElse, BranchPoint, 2,
|
|
CurrentPath, BranchNeededMap0, BranchNeededMap1),
|
|
map.to_assoc_list(WhereNeededMapThen, WhereNeededListThen),
|
|
add_alt_start(WhereNeededListThen, BranchPoint, 1,
|
|
CurrentPath, BranchNeededMap1, BranchNeededMap),
|
|
merge_where_needed_maps(CurrentPath,
|
|
!.WhereNeededMap, BranchNeededMap, WhereNeededMapCond),
|
|
|
|
unneeded_process_goal(Cond0, Cond, InitInstMap, InstMapCond,
|
|
VarTypes, ModuleInfo, Options, WhereNeededMapCond,
|
|
!:WhereNeededMap, !RefinedGoals, !Changed).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
% Merge two where_needed_maps, so that if var V is needed at branch B
|
|
% in the resulting where_needed_map iff it is needed there in one of
|
|
% the input maps.
|
|
%
|
|
:- pred merge_where_needed_maps(goal_path::in,
|
|
where_needed_map::in, where_needed_map::in, where_needed_map::out)
|
|
is det.
|
|
|
|
merge_where_needed_maps(CurrentPath,
|
|
WhereNeededMap1, WhereNeededMap2, WhereNeededMap) :-
|
|
map.to_assoc_list(WhereNeededMap1, WhereNeededList1),
|
|
add_where_needed_list(WhereNeededList1, CurrentPath,
|
|
WhereNeededMap2, WhereNeededMap).
|
|
|
|
:- pred add_where_needed_list(assoc_list(prog_var, where_needed)::in,
|
|
goal_path::in, where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
add_where_needed_list([], _, !WhereNeededMap).
|
|
add_where_needed_list([Var - BranchWhere | WhereNeededList],
|
|
CurrentPath, !WhereNeededMap) :-
|
|
( map.search(!.WhereNeededMap, Var, OldWhere) ->
|
|
where_needed_upper_bound(CurrentPath, BranchWhere, OldWhere,
|
|
CombinedWhere),
|
|
svmap.det_update(Var, CombinedWhere, !WhereNeededMap)
|
|
;
|
|
svmap.det_insert(Var, BranchWhere, !WhereNeededMap)
|
|
),
|
|
add_where_needed_list(WhereNeededList, CurrentPath,
|
|
!WhereNeededMap).
|
|
|
|
% Given a where_needed_map, add to it the where_needed information for the
|
|
% start of an alternative in a branched goal. This source is important,
|
|
% because if the analysis *at the start of an alternative* says that the
|
|
% variable is needed everywhere, the scope of this "everywhere" is only
|
|
% that alternative.
|
|
%
|
|
:- pred add_alt_start(assoc_list(prog_var, where_needed)::in,
|
|
branch_point::in, int::in, goal_path::in,
|
|
where_needed_map::in, where_needed_map::out) is det.
|
|
|
|
add_alt_start([], _, _, _, !WhereNeededMap).
|
|
add_alt_start([Var - BranchWhere0 | WhereNeededList],
|
|
BranchPoint, BranchNum, CurrentPath, !WhereNeededMap) :-
|
|
(
|
|
BranchWhere0 = everywhere,
|
|
map.init(Empty),
|
|
set.singleton_set(BranchNumSet, BranchNum),
|
|
map.det_insert(Empty, BranchPoint, BranchNumSet, BranchMap),
|
|
BranchWhere = branches(BranchMap)
|
|
;
|
|
BranchWhere0 = branches(_),
|
|
BranchWhere = BranchWhere0
|
|
),
|
|
( map.search(!.WhereNeededMap, Var, OldWhere) ->
|
|
where_needed_upper_bound(CurrentPath, BranchWhere, OldWhere,
|
|
CombinedWhere),
|
|
svmap.det_update(Var, CombinedWhere, !WhereNeededMap)
|
|
;
|
|
svmap.det_insert(Var, BranchWhere, !WhereNeededMap)
|
|
),
|
|
add_alt_start(WhereNeededList, BranchPoint, BranchNum,
|
|
CurrentPath, !WhereNeededMap).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pred unneeded_refine_goal(hlds_goal::in, hlds_goal::out,
|
|
refined_goal_map::in, refined_goal_map::out) is det.
|
|
|
|
unneeded_refine_goal(Goal0, Goal, !RefinedGoals) :-
|
|
Goal0 = hlds_goal(GoalExpr0, GoalInfo0),
|
|
(
|
|
( GoalExpr0 = unify(_, _, _, _, _)
|
|
; GoalExpr0 = plain_call(_, _, _, _, _, _)
|
|
; GoalExpr0 = generic_call(_, _, _, _)
|
|
; GoalExpr0 = call_foreign_proc(_, _, _, _, _, _, _)
|
|
),
|
|
Goal = Goal0
|
|
;
|
|
GoalExpr0 = conj(ConjType, Conjuncts0),
|
|
(
|
|
ConjType = plain_conj,
|
|
unneeded_refine_conj(Conjuncts0, Conjuncts, !RefinedGoals),
|
|
GoalExpr = conj(ConjType, Conjuncts),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
ConjType = parallel_conj,
|
|
Goal = Goal0
|
|
)
|
|
;
|
|
GoalExpr0 = switch(SwitchVar, CanFail, Cases0),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
unneeded_refine_cases(Cases0, Cases, !RefinedGoals, GoalPath, 1),
|
|
GoalExpr = switch(SwitchVar, CanFail, Cases),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = disj(Disjuncts0),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
unneeded_refine_disj(Disjuncts0, Disjuncts, !RefinedGoals,
|
|
GoalPath, 1),
|
|
GoalExpr = disj(Disjuncts),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = if_then_else(Quant, Cond0, Then0, Else0),
|
|
GoalPath = goal_info_get_goal_path(GoalInfo0),
|
|
unneeded_refine_ite(Cond0, Cond, Then0, Then, Else0, Else,
|
|
!RefinedGoals, GoalPath),
|
|
GoalExpr = if_then_else(Quant, Cond, Then, Else),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = negation(NegGoal0),
|
|
unneeded_refine_goal(NegGoal0, NegGoal, !RefinedGoals),
|
|
GoalExpr = negation(NegGoal),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
;
|
|
GoalExpr0 = scope(Reason, SomeGoal0),
|
|
( Reason = from_ground_term(_, from_ground_term_construct) ->
|
|
Goal = Goal0
|
|
;
|
|
unneeded_refine_goal(SomeGoal0, SomeGoal, !RefinedGoals),
|
|
GoalExpr = scope(Reason, SomeGoal),
|
|
Goal = hlds_goal(GoalExpr, GoalInfo0)
|
|
)
|
|
;
|
|
GoalExpr0 = shorthand(_),
|
|
unexpected(this_file, "unneeded_refine_goal: shorthand")
|
|
).
|
|
|
|
:- pred unneeded_refine_conj(list(hlds_goal)::in, list(hlds_goal)::out,
|
|
refined_goal_map::in, refined_goal_map::out) is det.
|
|
|
|
unneeded_refine_conj([], [], !RefinedGoals).
|
|
unneeded_refine_conj([Goal0 | Goals0], Goals, !RefinedGoals) :-
|
|
unneeded_refine_goal(Goal0, HeadGoal, !RefinedGoals),
|
|
unneeded_refine_conj(Goals0, TailGoals, !RefinedGoals),
|
|
( HeadGoal = hlds_goal(conj(plain_conj, HeadGoals), _) ->
|
|
Goals = HeadGoals ++ TailGoals
|
|
;
|
|
Goals = [HeadGoal | TailGoals]
|
|
).
|
|
|
|
:- pred unneeded_refine_cases(list(case)::in, list(case)::out,
|
|
refined_goal_map::in, refined_goal_map::out,
|
|
goal_path::in, int::in) is det.
|
|
|
|
unneeded_refine_cases([], [], !RefinedGoals, _, _).
|
|
unneeded_refine_cases([Case0 | Cases0], [Case | Cases], !RefinedGoals,
|
|
GoalPath, BranchNum) :-
|
|
Case0 = case(MainConsId, OtherConsIds, Goal0),
|
|
unneeded_refine_goal(Goal0, Goal1, !RefinedGoals),
|
|
( map.search(!.RefinedGoals, GoalPath - BranchNum, ToInsertGoals) ->
|
|
insert_refine_goals(ToInsertGoals, Goal1, Goal),
|
|
svmap.delete(GoalPath - BranchNum, !RefinedGoals)
|
|
;
|
|
Goal = Goal1
|
|
),
|
|
Case = case(MainConsId, OtherConsIds, Goal),
|
|
unneeded_refine_cases(Cases0, Cases, !RefinedGoals,
|
|
GoalPath, BranchNum + 1).
|
|
|
|
:- pred unneeded_refine_disj(list(hlds_goal)::in, list(hlds_goal)::out,
|
|
refined_goal_map::in, refined_goal_map::out,
|
|
goal_path::in, int::in) is det.
|
|
|
|
unneeded_refine_disj([], [], !RefinedGoals, _, _).
|
|
unneeded_refine_disj([Goal0 | Goals0], [Goal | Goals], !RefinedGoals,
|
|
GoalPath, BranchNum) :-
|
|
unneeded_refine_goal(Goal0, Goal1, !RefinedGoals),
|
|
( map.search(!.RefinedGoals, GoalPath - BranchNum, ToInsertGoals) ->
|
|
insert_refine_goals(ToInsertGoals, Goal1, Goal),
|
|
svmap.delete(GoalPath - BranchNum, !RefinedGoals)
|
|
;
|
|
Goal = Goal1
|
|
),
|
|
unneeded_refine_disj(Goals0, Goals, !RefinedGoals, GoalPath,
|
|
BranchNum + 1).
|
|
|
|
:- pred unneeded_refine_ite(hlds_goal::in, hlds_goal::out,
|
|
hlds_goal::in, hlds_goal::out, hlds_goal::in, hlds_goal::out,
|
|
refined_goal_map::in, refined_goal_map::out, goal_path::in) is det.
|
|
|
|
unneeded_refine_ite(Cond0, Cond, Then0, Then, Else0, Else,
|
|
!RefinedGoals, GoalPath) :-
|
|
unneeded_refine_goal(Cond0, Cond, !RefinedGoals),
|
|
unneeded_refine_goal(Then0, Then1, !RefinedGoals),
|
|
unneeded_refine_goal(Else0, Else1, !RefinedGoals),
|
|
|
|
( map.search(!.RefinedGoals, GoalPath - 1, ToInsertGoalsThen) ->
|
|
insert_refine_goals(ToInsertGoalsThen, Then1, Then),
|
|
svmap.delete(GoalPath - 1, !RefinedGoals)
|
|
;
|
|
Then = Then1
|
|
),
|
|
( map.search(!.RefinedGoals, GoalPath - 2, ToInsertGoalsElse) ->
|
|
insert_refine_goals(ToInsertGoalsElse, Else1, Else),
|
|
svmap.delete(GoalPath - 2, !RefinedGoals)
|
|
;
|
|
Else = Else1
|
|
).
|
|
|
|
:- pred insert_refine_goals(list(hlds_goal)::in, hlds_goal::in,
|
|
hlds_goal::out) is det.
|
|
|
|
insert_refine_goals(ToInsertGoals, Goal0, Goal) :-
|
|
list.append(ToInsertGoals, [Goal0], Conj),
|
|
% XXX GoalInfo0
|
|
Goal0 = hlds_goal(_, GoalInfo0),
|
|
conj_list_to_goal(Conj, GoalInfo0, Goal).
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
% Given two sets of requirements about where a goal is needed, return
|
|
% a single requirement that contains all the demands. The main purpose
|
|
% of this predicate is to discover when the union of two sets of
|
|
% requirements (e.g. branch sets {b1,b2} and {b3} covers all
|
|
% computation paths.
|
|
%
|
|
:- pred where_needed_upper_bound(goal_path::in,
|
|
where_needed::in, where_needed::in, where_needed::out) is det.
|
|
|
|
where_needed_upper_bound(CurrentPath,
|
|
WhereNeededA, WhereNeededB, WhereNeeded) :-
|
|
(
|
|
WhereNeededA = everywhere,
|
|
WhereNeeded = everywhere
|
|
;
|
|
WhereNeededA = branches(BranchesA),
|
|
(
|
|
WhereNeededB = everywhere,
|
|
WhereNeeded = everywhere
|
|
;
|
|
WhereNeededB = branches(BranchesB),
|
|
where_needed_branches_upper_bound(CurrentPath,
|
|
BranchesA, BranchesB, WhereNeeded)
|
|
)
|
|
).
|
|
|
|
:- pred where_needed_branches_upper_bound(goal_path::in,
|
|
where_needed_branches::in, where_needed_branches::in, where_needed::out)
|
|
is det.
|
|
|
|
where_needed_branches_upper_bound(CurrentPath, BranchesA, BranchesB,
|
|
WhereNeeded) :-
|
|
% Should select smaller map to convert to list.
|
|
map.to_assoc_list(BranchesA, BranchesList),
|
|
where_needed_branches_upper_bound_2(CurrentPath,
|
|
BranchesList, BranchesB, WhereNeeded).
|
|
|
|
:- pred where_needed_branches_upper_bound_2(goal_path::in,
|
|
assoc_list(branch_point, set(int))::in, where_needed_branches::in,
|
|
where_needed::out) is det.
|
|
|
|
where_needed_branches_upper_bound_2(_, [],
|
|
Branches, branches(Branches)).
|
|
where_needed_branches_upper_bound_2(CurrentPath, [First | Rest],
|
|
Branches0, WhereNeeded) :-
|
|
First = BranchPoint - NewAlts,
|
|
( map.search(Branches0, BranchPoint, OldAlts) ->
|
|
set.union(OldAlts, NewAlts, Alts),
|
|
BranchPoint = branch_point(GoalPath, BranchAlts),
|
|
( branch_point_is_complete(BranchAlts, Alts) ->
|
|
(
|
|
get_parent_branch_point(GoalPath,
|
|
ParentGoalInitialPath, ParentGoalPathStep,
|
|
ParentBranchAlt, ParentBranchNum),
|
|
ParentGoalPath = goal_path_add_at_end(ParentGoalInitialPath,
|
|
ParentGoalPathStep),
|
|
\+ goal_path_inside(ParentGoalPath, CurrentPath)
|
|
->
|
|
map.delete(Branches0, BranchPoint, Branches1),
|
|
ParentBranchPoint = branch_point(ParentGoalInitialPath,
|
|
ParentBranchAlt),
|
|
set.singleton_set(ParentAlts, ParentBranchNum),
|
|
where_needed_branches_upper_bound_2(CurrentPath,
|
|
[ParentBranchPoint - ParentAlts | Rest], Branches1,
|
|
WhereNeeded)
|
|
;
|
|
WhereNeeded = everywhere
|
|
)
|
|
;
|
|
map.det_update(Branches0, BranchPoint, Alts, Branches1),
|
|
where_needed_branches_upper_bound_2(CurrentPath,
|
|
Rest, Branches1, WhereNeeded)
|
|
)
|
|
;
|
|
map.det_insert(Branches0, BranchPoint, NewAlts, Branches1),
|
|
where_needed_branches_upper_bound_2(CurrentPath, Rest,
|
|
Branches1, WhereNeeded)
|
|
).
|
|
|
|
:- pred get_parent_branch_point(goal_path::in, goal_path::out,
|
|
goal_path_step::out, branch_alts::out, int::out) is semidet.
|
|
|
|
get_parent_branch_point(GoalPath, ParentPath, ParentStep,
|
|
BranchAlt, BranchNum) :-
|
|
goal_path_remove_last(GoalPath, InitialPath, LastStep),
|
|
(
|
|
LastStep = step_switch(Arm, MaybeNumAlts),
|
|
ParentPath = InitialPath,
|
|
ParentStep = LastStep,
|
|
BranchAlt = alt_switch(MaybeNumAlts),
|
|
BranchNum = Arm
|
|
;
|
|
LastStep = step_ite_then,
|
|
ParentPath = InitialPath,
|
|
ParentStep = LastStep,
|
|
BranchAlt = alt_ite,
|
|
BranchNum = 1
|
|
;
|
|
LastStep = step_ite_else,
|
|
ParentPath = InitialPath,
|
|
ParentStep = LastStep,
|
|
BranchAlt = alt_ite,
|
|
BranchNum = 2
|
|
;
|
|
( LastStep = step_ite_cond
|
|
; LastStep = step_neg
|
|
; LastStep = step_scope(_)
|
|
; LastStep = step_conj(_)
|
|
; LastStep = step_disj(_)
|
|
; LastStep = step_first
|
|
; LastStep = step_later
|
|
),
|
|
get_parent_branch_point(InitialPath, ParentPath, ParentStep,
|
|
BranchAlt, BranchNum)
|
|
).
|
|
|
|
:- pred branch_point_is_complete(branch_alts::in, set(int)::in) is semidet.
|
|
|
|
branch_point_is_complete(alt_ite, Alts) :-
|
|
set.count(Alts, NumAlts),
|
|
NumAlts = 2.
|
|
branch_point_is_complete(alt_switch(yes(NumFunctors)), Alts) :-
|
|
set.count(Alts, NumAlts),
|
|
NumAlts = NumFunctors.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- func this_file = string.
|
|
|
|
this_file = "unneeded_code.m".
|
|
|
|
%---------------------------------------------------------------------------%
|
|
:- end_module unneeded_code.
|
|
%---------------------------------------------------------------------------%
|