Files
mercury/compiler/pd_debug.m
Julien Fischer 459847a064 Move the univ, maybe, pair and unit types from std_util into their own
Estimated hours taken: 18
Branches: main

Move the univ, maybe, pair and unit types from std_util into their own
modules.  std_util still contains the general purpose higher-order programming
constructs.

library/std_util.m:
	Move univ, maybe, pair and unit (plus any other related types
	and procedures) into their own modules.

library/maybe.m:
	New module.  This contains the maybe and maybe_error types and
	the associated procedures.

library/pair.m:
	New module.  This contains the pair type and associated procedures.

library/unit.m:
	New module. This contains the types unit/0 and unit/1.

library/univ.m:
	New module. This contains the univ type and associated procedures.

library/library.m:
	Add the new modules.

library/private_builtin.m:
	Update the declaration of the type_ctor_info struct for univ.

runtime/mercury.h:
	Update the declaration for the type_ctor_info struct for univ.

runtime/mercury_mcpp.h:
runtime/mercury_hlc_types.h:
	Update the definition of MR_Univ.

runtime/mercury_init.h:
	Fix a comment: ML_type_name is now exported from type_desc.m.

compiler/mlds_to_il.m:
	Update the the name of the module that defines univs (which are
	handled specially by the il code generator.)

library/*.m:
compiler/*.m:
browser/*.m:
mdbcomp/*.m:
profiler/*.m:
deep_profiler/*.m:
	Conform to the above changes.  Import the new modules where they
	are needed; don't import std_util where it isn't needed.

	Fix formatting in lots of modules.  Delete duplicate module
	imports.

tests/*:
	Update the test suite to confrom to the above changes.
2006-03-29 08:09:58 +00:00

245 lines
8.6 KiB
Mathematica

%-----------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%-----------------------------------------------------------------------------%
% Copyright (C) 1998-2006 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: pd_debug_m
% Main author: stayl.
%
% Debugging routines for partial deduction.
%
%-----------------------------------------------------------------------------%
:- module transform_hlds.pd_debug.
:- interface.
:- import_module hlds.hlds_goal.
:- import_module hlds.hlds_pred.
:- import_module parse_tree.prog_data.
:- import_module transform_hlds.pd_info.
:- import_module io.
:- import_module list.
:- import_module string.
%-----------------------------------------------------------------------------%
:- pred pd_debug_do_io(pred(io, io)::pred(di, uo) is det,
io::di, io::uo) is det.
:- pred pd_debug_output_goal(pd_info::in, string::in, hlds_goal::in,
io::di, io::uo) is det.
:- pred pd_debug_search_version_result(pd_info::in, maybe_version::in,
io::di, io::uo) is det.
:- pred pd_debug_register_version(pd_info::in, pred_proc_id::in,
version_info::in, io::di, io::uo) is det.
:- pred pd_debug_write_instmap(pd_info::in, io::di, io::uo) is det.
:- pred pd_debug_message(string::in, list(string.poly_type)::in,
io::di, io::uo) is det.
:- pred pd_debug_message(prog_context::in, string::in,
list(string.poly_type)::in, io::di, io::uo) is det.
:- pred pd_debug_write(T::in, io::di, io::uo) is det.
:- pred pd_debug_write_pred_proc_id_list(pd_info::in, list(pred_proc_id)::in,
io::di, io::uo) is det.
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- implementation.
:- import_module hlds.goal_util.
:- import_module hlds.hlds_module.
:- import_module hlds.hlds_out.
:- import_module hlds.instmap.
:- import_module hlds.instmap.
:- import_module libs.globals.
:- import_module libs.options.
:- import_module parse_tree.mercury_to_mercury.
:- import_module parse_tree.prog_out.
:- import_module bool.
:- import_module pair.
:- import_module set.
%-----------------------------------------------------------------------------%
pd_debug_do_io(Pred, !IO) :-
globals.io_lookup_bool_option(debug_pd, DoDebug, !IO),
(
DoDebug = yes,
call(Pred, !IO),
io.flush_output(!IO)
;
DoDebug = no
).
%-----------------------------------------------------------------------------%
pd_debug_search_version_result(PDInfo, MaybeVersion, !IO) :-
pd_info_get_module_info(PDInfo, ModuleInfo),
pd_debug_do_io(pd_debug_search_version_result_2(ModuleInfo, MaybeVersion),
!IO).
:- pred pd_debug_search_version_result_2(module_info::in, maybe_version::in,
io::di, io::uo) is det.
pd_debug_search_version_result_2(ModuleInfo, MaybeVersion, !IO) :-
(
MaybeVersion = no_version,
io.write_string("Specialised version not found.\n", !IO)
;
MaybeVersion = version(exact, _, _, _, _),
io.write_string("Exact match found.\n", !IO)
;
MaybeVersion = version(more_general, PredProcId, Version,
_, _),
io.write_string("More general version.\n", !IO),
pd_debug_output_version(ModuleInfo, PredProcId, Version, no, !IO)
).
%-----------------------------------------------------------------------------%
pd_debug_register_version(PDInfo, PredProcId, Version, !IO) :-
pd_info_get_module_info(PDInfo, ModuleInfo),
pd_debug_do_io(
pd_debug_register_version_2(ModuleInfo, PredProcId, Version), !IO).
:- pred pd_debug_register_version_2(module_info::in, pred_proc_id::in,
version_info::in, io::di, io::uo) is det.
pd_debug_register_version_2(ModuleInfo, PredProcId, Version, !IO) :-
io.write_string("Registering version:\n", !IO),
pd_debug_output_version(ModuleInfo, PredProcId, Version, no, !IO).
%-----------------------------------------------------------------------------%
:- pred pd_debug_output_version(module_info::in, pred_proc_id::in,
version_info::in, bool::in, io::di, io::uo) is det.
pd_debug_output_version(ModuleInfo, PredProcId, Version, WriteUnfoldedGoal,
!IO) :-
Version = version_info(Goal - GoalInfo, _, Args, _, InstMap,
InitialCost, CostDelta, Parents, _),
PredName = predicate_name(ModuleInfo, PredId),
io.write_string(PredName, !IO),
io.write_string(": (PredProcId :", !IO),
PredProcId = proc(PredId, ProcId),
pred_id_to_int(PredId, PredInt),
proc_id_to_int(ProcId, ProcInt),
io.write_int(PredInt, !IO),
io.write_string("-", !IO),
io.write_int(ProcInt, !IO),
io.write_string(")", !IO),
io.nl(!IO),
io.write_string(" initial cost: ", !IO),
io.write_int(InitialCost, !IO),
io.nl(!IO),
io.write_string(" cost delta: ", !IO),
io.write_int(CostDelta, !IO),
io.nl(!IO),
goal_info_get_nonlocals(GoalInfo, NonLocals),
module_info_pred_proc_info(ModuleInfo, PredId, ProcId, _, ProcInfo),
proc_info_get_varset(ProcInfo, VarSet),
instmap_restrict(NonLocals, InstMap, InstMap1),
io.write_string(" args: ", !IO),
mercury_output_vars(Args, VarSet, yes, !IO),
io.nl(!IO),
hlds_out.write_instmap(InstMap1, VarSet, yes, 1, !IO),
io.nl(!IO),
hlds_out.write_goal(Goal - GoalInfo, ModuleInfo, VarSet, yes, 1, "\n",
!IO),
io.nl(!IO),
io.write_string("Parents: ", !IO),
set.to_sorted_list(Parents, ParentsList),
io.write_list(ParentsList, ", ",
pd_debug_write_pred_proc_id(ModuleInfo), !IO),
io.nl(!IO),
(
WriteUnfoldedGoal = yes,
proc_info_get_goal(ProcInfo, ProcGoal),
io.write_string("Unfolded goal\n", !IO),
hlds_out.write_goal(ProcGoal, ModuleInfo, VarSet, yes, 1, "\n", !IO),
io.nl(!IO)
;
WriteUnfoldedGoal = no
).
%-----------------------------------------------------------------------------%
pd_debug_write_instmap(PDInfo, !IO) :-
pd_info_get_instmap(PDInfo, InstMap),
pd_info_get_proc_info(PDInfo, ProcInfo),
proc_info_get_varset(ProcInfo, VarSet),
pd_debug_do_io(hlds_out.write_instmap(InstMap, VarSet, yes, 1), !IO).
%-----------------------------------------------------------------------------%
pd_debug_write_pred_proc_id_list(PDInfo, PredProcIds, !IO) :-
pd_info_get_module_info(PDInfo, ModuleInfo),
pd_debug_do_io(
pd_debug_write_pred_proc_id_list_2(ModuleInfo, PredProcIds),
!IO).
:- pred pd_debug_write_pred_proc_id_list_2(module_info::in,
list(pred_proc_id)::in, io::di, io::uo) is det.
pd_debug_write_pred_proc_id_list_2(ModuleInfo, PredProcIds, !IO) :-
io.write_list(PredProcIds, ", ",
pd_debug_write_pred_proc_id(ModuleInfo), !IO).
:- pred pd_debug_write_pred_proc_id(module_info::in, pred_proc_id::in,
io::di, io::uo) is det.
pd_debug_write_pred_proc_id(ModuleInfo, proc(PredId, ProcId), !IO) :-
hlds_out.write_pred_proc_id(ModuleInfo, PredId, ProcId, !IO).
%-----------------------------------------------------------------------------%
pd_debug_output_goal(PDInfo, Msg, Goal, !IO) :-
pd_debug_do_io(pd_debug_output_goal_2(PDInfo, Msg, Goal), !IO).
:- pred pd_debug_output_goal_2(pd_info::in, string::in, hlds_goal::in,
io::di, io::uo) is det.
pd_debug_output_goal_2(PDInfo, Msg, GoalExpr - GoalInfo, !IO) :-
pd_info_get_proc_info(PDInfo, ProcInfo),
proc_info_get_varset(ProcInfo, VarSet),
pd_info_get_instmap(PDInfo, InstMap),
pd_info_get_module_info(PDInfo, ModuleInfo),
io.write_string(Msg, !IO),
goal_util.goal_vars(GoalExpr - GoalInfo, Vars),
instmap_restrict(Vars, InstMap, InstMap1),
hlds_out.write_instmap(InstMap1, VarSet, yes, 1, !IO),
io.nl(!IO),
hlds_out.write_goal(GoalExpr - GoalInfo, ModuleInfo, VarSet,
yes, 1, "\n", !IO),
io.nl(!IO),
io.flush_output(!IO).
%-----------------------------------------------------------------------------%
pd_debug_message(Fmt, Args, !IO) :-
pd_debug_do_io(io.format(Fmt, Args), !IO).
pd_debug_message(Context, Fmt, Args, !IO) :-
pd_debug_do_io(prog_out.write_context(Context), !IO),
pd_debug_do_io(io.format(Fmt, Args), !IO).
%-----------------------------------------------------------------------------%
pd_debug_write(Thing, !IO) :-
pd_debug_do_io(io.write(Thing), !IO).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%