Files
mercury/compiler/rbmm.m
Zoltan Somogyi fbbe86b494 Make rbmm.m only a package.
compiler/rbmm.m:
compiler/rbmm.region_analysis.m:
    Move all the code (one predicate) out of rbmm.m to the new module
    rbmm.region_analysis.m, leaving it containing nothing but
    include_module declarations.

    Delete the unneeded !IO argument pair of that predicate.

compiler/mercury_compile_middle_passes.m:
    Don't pass the !IO arguments to that predicate.

compiler/notes/compiler_design.html:
    This file has not mentioned the rbmm package until now.
    Add a short description of the package itself, but since I don't
    really know what each of its component modules do, I cannot add
    even short descriptions of them.

compiler/rbmm.condition_renaming.m:
compiler/rbmm.execution_path.m:
compiler/rbmm.interproc_region_lifetime.m:
compiler/rbmm.live_region_analysis.m:
compiler/rbmm.live_variable_analysis.m:
compiler/rbmm.points_to_analysis.m:
compiler/rbmm.points_to_info.m:
compiler/rbmm.region_arguments.m:
compiler/rbmm.region_instruction.m:
compiler/rbmm.region_resurrection_renaming.m:
compiler/rbmm.region_transformation.m:
    Conform to the changes above.
2022-05-01 04:57:04 +10:00

37 lines
1.4 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Copyright (C) 2007, 2009-2010 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: rbmm.m.
%
% This package implements region-based memory management.
%
%---------------------------------------------------------------------------%
:- module transform_hlds.rbmm.
:- interface.
:- include_module add_rbmm_goal_infos.
:- include_module condition_renaming.
:- include_module execution_path.
:- include_module interproc_region_lifetime.
:- include_module live_region_analysis.
:- include_module live_variable_analysis.
:- include_module points_to_analysis.
:- include_module points_to_graph.
:- include_module points_to_info.
:- include_module region_analysis.
:- include_module region_arguments.
:- include_module region_instruction.
:- include_module region_liveness_info.
:- include_module region_resurrection_renaming.
:- include_module region_transformation.
%---------------------------------------------------------------------------%
:- end_module transform_hlds.rbmm.
%---------------------------------------------------------------------------%