[m-rev.] diff: typecheck speedup

Zoltan Somogyi zs at unimelb.edu.au
Tue Apr 24 12:15:01 AEST 2012


Avoid some redundant work in typechecking. This diff speeds up tools/speedtest
by about 2.5%.

compiler/typeclasses.m:
	Do not perform context reduction for typeclass checking if the current
	context has no typeclass constraints.

	Iterate over lists of constraints using det code, not nondet.
	Move the predicate concerned next to the one place where it is used.
	Give it a more meaningful name.

	Use the new capability in typecheck_info.m.

compiler/typecheck_info.m:
	Provide a predicate for setting several fields of a type_assign at
	once.

Zoltan.

cvs diff: Diffing .
cvs diff: Diffing analysis
cvs diff: Diffing bindist
cvs diff: Diffing boehm_gc
cvs diff: Diffing boehm_gc/Mac_files
cvs diff: Diffing boehm_gc/cord
cvs diff: Diffing boehm_gc/cord/private
cvs diff: Diffing boehm_gc/doc
cvs diff: Diffing boehm_gc/extra
cvs diff: Diffing boehm_gc/include
cvs diff: Diffing boehm_gc/include/extra
cvs diff: Diffing boehm_gc/include/private
cvs diff: Diffing boehm_gc/libatomic_ops
cvs diff: Diffing boehm_gc/libatomic_ops/doc
cvs diff: Diffing boehm_gc/libatomic_ops/src
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/armcc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/gcc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/hpc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/ibmc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/icc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/msftc
cvs diff: Diffing boehm_gc/libatomic_ops/src/atomic_ops/sysdeps/sunc
cvs diff: Diffing boehm_gc/libatomic_ops/tests
cvs diff: Diffing boehm_gc/libatomic_ops-1.2
cvs diff: Diffing boehm_gc/libatomic_ops-1.2/doc
cvs diff: Diffing boehm_gc/libatomic_ops-1.2/src
cvs diff: Diffing boehm_gc/libatomic_ops-1.2/src/atomic_ops
cvs diff: Diffing boehm_gc/libatomic_ops-1.2/src/atomic_ops/sysdeps
cvs diff: Diffing boehm_gc/libatomic_ops-1.2/tests
cvs diff: Diffing boehm_gc/m4
cvs diff: Diffing boehm_gc/tests
cvs diff: Diffing browser
cvs diff: Diffing bytecode
cvs diff: Diffing compiler
Index: compiler/typecheck_info.m
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/compiler/typecheck_info.m,v
retrieving revision 1.37
diff -u -b -r1.37 typecheck_info.m
--- compiler/typecheck_info.m	18 Apr 2012 02:25:00 -0000	1.37
+++ compiler/typecheck_info.m	23 Apr 2012 09:51:07 -0000
@@ -280,6 +280,10 @@
 :- pred type_assign_set_constraint_map(constraint_map::in,
     type_assign::in, type_assign::out) is det.
 
+:- pred type_assign_set_reduce_results(tsubst::in, tvarset::in,
+    hlds_constraints::in, constraint_proof_map::in, constraint_map::in,
+    type_assign::in, type_assign::out) is det.
+
 %-----------------------------------------------------------------------------%
 
 :- type args_type_assign_set == list(args_type_assign).
@@ -678,13 +682,31 @@
 type_assign_get_constraint_proofs(TA, TA ^ constraint_proofs).
 type_assign_get_constraint_map(TA, TA ^ constraint_map).
 
-type_assign_set_var_types(X, TA, TA ^ var_types := X).
-type_assign_set_typevarset(X, TA, TA ^ type_varset := X).
-type_assign_set_head_type_params(X, TA, TA ^ head_type_params := X).
-type_assign_set_type_bindings(X, TA, TA ^ type_bindings := X).
-type_assign_set_typeclass_constraints(X, TA, TA ^ class_constraints := X).
-type_assign_set_constraint_proofs(X, TA, TA ^ constraint_proofs := X).
-type_assign_set_constraint_map(X, TA, TA ^ constraint_map := X).
+type_assign_set_var_types(VarTypes, !TA) :-
+    !TA ^ var_types := VarTypes.
+type_assign_set_typevarset(TVarSet, !TA) :-
+    !TA ^ type_varset := TVarSet.
+type_assign_set_head_type_params(HeadTypeParams, !TA) :-
+    !TA ^ head_type_params := HeadTypeParams.
+type_assign_set_type_bindings(TypeBindings, !TA) :-
+    !TA ^ type_bindings := TypeBindings.
+type_assign_set_typeclass_constraints(Constraints, !TA) :-
+    !TA ^ class_constraints := Constraints.
+type_assign_set_constraint_proofs(Proofs, !TA) :-
+    !TA ^ constraint_proofs := Proofs.
+type_assign_set_constraint_map(ConstraintMap, !TA) :-
+    !TA ^ constraint_map := ConstraintMap.
+
+type_assign_set_reduce_results(Bindings, TVarSet, Constraints, Proofs,
+        ConstraintMap, !TA) :-
+    % This should allocate just one new type_assign, whereas separate calls
+    % to the predicates above to set each of these fields would allocate
+    % several.
+    !TA ^ type_bindings := Bindings,
+    !TA ^ type_varset := TVarSet,
+    !TA ^ class_constraints := Constraints,
+    !TA ^ constraint_proofs := Proofs,
+    !TA ^ constraint_map := ConstraintMap.
 
 %-----------------------------------------------------------------------------%
 
Index: compiler/typeclasses.m
===================================================================
RCS file: /home/mercury/mercury1/repository/mercury/compiler/typeclasses.m,v
retrieving revision 1.30
diff -u -b -r1.30 typeclasses.m
--- compiler/typeclasses.m	18 Apr 2012 02:25:00 -0000	1.30
+++ compiler/typeclasses.m	23 Apr 2012 10:07:36 -0000
@@ -140,32 +140,83 @@
 
 reduce_type_assign_context(ClassTable, InstanceTable, !.TypeAssign,
         !TypeAssignSet, !UnsatTypeAssignSet) :-
+    type_assign_get_typeclass_constraints(!.TypeAssign, Constraints0),
+    (
+        % Optimize the common case of no typeclass constraints at all.
+        Constraints0 =
+            hlds_constraints(Unproven0, Assumed0, Redundant0, Ancestors0),
+        Unproven0 = [],
+        Assumed0 = [],
+        map.is_empty(Redundant0),
+        map.is_empty(Ancestors0)
+    ->
+        !:TypeAssignSet = !.TypeAssignSet ++ [!.TypeAssign]
+    ;
     type_assign_get_head_type_params(!.TypeAssign, HeadTypeParams),
     type_assign_get_type_bindings(!.TypeAssign, Bindings0),
-    type_assign_get_typeclass_constraints(!.TypeAssign, Constraints0),
     type_assign_get_typevarset(!.TypeAssign, TVarSet0),
     type_assign_get_constraint_proofs(!.TypeAssign, Proofs0),
     type_assign_get_constraint_map(!.TypeAssign, ConstraintMap0),
 
-    typeclasses.reduce_context_by_rule_application(ClassTable, InstanceTable,
+        reduce_context_by_rule_application(ClassTable, InstanceTable,
         HeadTypeParams, Bindings0, Bindings, TVarSet0, TVarSet,
         Proofs0, Proofs, ConstraintMap0, ConstraintMap,
         Constraints0, Constraints),
 
-    type_assign_set_type_bindings(Bindings, !TypeAssign),
-    type_assign_set_typeclass_constraints(Constraints, !TypeAssign),
-    type_assign_set_typevarset(TVarSet, !TypeAssign),
-    type_assign_set_constraint_proofs(Proofs, !TypeAssign),
-    type_assign_set_constraint_map(ConstraintMap, !TypeAssign),
+        type_assign_set_reduce_results(Bindings, TVarSet, Constraints,
+            Proofs, ConstraintMap, !TypeAssign),
+
 
-    ( check_satisfiability(Constraints ^ hcs_unproven, HeadTypeParams) ->
+        Unproven = Constraints ^ hcs_unproven,
+        ( all_constraints_are_satisfiable(Unproven, HeadTypeParams) ->
         !:TypeAssignSet = !.TypeAssignSet ++ [!.TypeAssign]
     ;
         % Remember the unsatisfiable type_assign_set so we can produce more
         % specific error messages.
-        list.cons(!.TypeAssign, !UnsatTypeAssignSet)
+            !:UnsatTypeAssignSet = [!.TypeAssign | !.UnsatTypeAssignSet]
+        )
     ).
 
+    % all_constraints_are_satisfiable(Constraints, HeadTypeParams):
+    %
+    % Check that all of the constraints are satisfiable. Fail if any are
+    % definitely not satisfiable.
+    %
+    % We disallow ground constraints for which there are no matching instance
+    % rules, even though the module system means that it would make sense
+    % to allow them: even if there is no instance declaration visible
+    % in the current module, there may be one visible in the caller. The reason
+    % we disallow them is that in practice allowing this causes type inference
+    % to let too many errors slip through, with the error diagnosis being
+    % too far removed from the real cause of the error. Note that ground
+    % constraints *are* allowed if you declare them, since we removed declared
+    % constraints before checking satisfiability.
+    %
+    % Similarly, for constraints on head type params (universally quantified
+    % type vars in this pred's type decl, or existentially quantified type vars
+    % in type decls for callees), we know that the head type params can
+    % never get bound. This means that if the constraint wasn't an assumed
+    % constraint and can't be eliminated by instance rule or class rule
+    % application, then we can report an error now, rather than later.
+    % (For non-head-type-param type variables, we need to wait, in case
+    % the type variable gets bound to a type for which there is a valid
+    % instance declaration.)
+    %
+    % So a constraint is considered satisfiable iff it contains at least one
+    % type variable that is not in the head type params.
+    %
+:- pred all_constraints_are_satisfiable(list(hlds_constraint)::in,
+    head_type_params::in) is semidet.
+
+all_constraints_are_satisfiable([], _).
+all_constraints_are_satisfiable([Constraint | Constraints], HeadTypeParams) :-
+    Constraint = hlds_constraint(_Ids, _ClassName, Types),
+    some [TVar] (
+        type_list_contains_var(Types, TVar),
+        not list.member(TVar, HeadTypeParams)
+    ),
+    all_constraints_are_satisfiable(Constraints, HeadTypeParams).
+
 reduce_context_by_rule_application(ClassTable, InstanceTable, HeadTypeParams,
         !Bindings, !TVarSet, !Proofs, !ConstraintMap, !Constraints) :-
     reduce_context_by_rule_application_2(ClassTable, InstanceTable,
@@ -700,48 +751,6 @@
     map.set(Constraint, superclass(Descendant), !Proofs),
     add_superclass_proofs(Descendant, Descendants, !Proofs).
 
-    % check_satisfiability(Constraints, HeadTypeParams):
-    %
-    % Check that all of the constraints are satisfiable. Fail if any are
-    % definitely not satisfiable.
-    %
-    % We disallow ground constraints for which there are no matching instance
-    % rules, even though the module system means that it would make sense
-    % to allow them: even if there is no instance declaration visible
-    % in the current module, there may be one visible in the caller. The reason
-    % we disallow them is that in practice allowing this causes type inference
-    % to let too many errors slip through, with the error diagnosis being
-    % too far removed from the real cause of the error. Note that ground
-    % constraints *are* allowed if you declare them, since we removed declared
-    % constraints before checking satisfiability.
-    %
-    % Similarly, for constraints on head type params (universally quantified
-    % type vars in this pred's type decl, or existentially quantified type vars
-    % in type decls for callees), we know that the head type params can
-    % never get bound. This means that if the constraint wasn't an assumed
-    % constraint and can't be eliminated by instance rule or class rule
-    % application, then we can report an error now, rather than later.
-    % (For non-head-type-param type variables, we need to wait, in case
-    % the type variable gets bound to a type for which there is a valid
-    % instance declaration.)
-    %
-    % So a constraint is considered satisfiable iff it contains at least one
-    % type variable that is not in the head type params.
-    %
-:- pred check_satisfiability(list(hlds_constraint)::in, head_type_params::in)
-    is semidet.
-
-check_satisfiability(Constraints, HeadTypeParams) :-
-    all [Constraint] (
-        list.member(Constraint, Constraints)
-    =>
-        (
-            Constraint = hlds_constraint(_Ids, _ClassName, Types),
-            type_list_contains_var(Types, TVar),
-            not list.member(TVar, HeadTypeParams)
-        )
-    ).
-
 %-----------------------------------------------------------------------------%
 :- end_module check_hlds.typeclasses.
 %-----------------------------------------------------------------------------%
cvs diff: Diffing compiler/notes
cvs diff: Diffing deep_profiler
cvs diff: Diffing deep_profiler/notes
cvs diff: Diffing doc
cvs diff: Diffing extras
cvs diff: Diffing extras/base64
cvs diff: Diffing extras/cgi
cvs diff: Diffing extras/complex_numbers
cvs diff: Diffing extras/complex_numbers/samples
cvs diff: Diffing extras/complex_numbers/tests
cvs diff: Diffing extras/curs
cvs diff: Diffing extras/curs/samples
cvs diff: Diffing extras/curses
cvs diff: Diffing extras/curses/sample
cvs diff: Diffing extras/dynamic_linking
cvs diff: Diffing extras/error
cvs diff: Diffing extras/fixed
cvs diff: Diffing extras/gator
cvs diff: Diffing extras/gator/generations
cvs diff: Diffing extras/gator/generations/1
cvs diff: Diffing extras/graphics
cvs diff: Diffing extras/graphics/easyx
cvs diff: Diffing extras/graphics/easyx/samples
cvs diff: Diffing extras/graphics/mercury_allegro
cvs diff: Diffing extras/graphics/mercury_allegro/examples
cvs diff: Diffing extras/graphics/mercury_allegro/samples
cvs diff: Diffing extras/graphics/mercury_allegro/samples/demo
cvs diff: Diffing extras/graphics/mercury_allegro/samples/mandel
cvs diff: Diffing extras/graphics/mercury_allegro/samples/pendulum2
cvs diff: Diffing extras/graphics/mercury_allegro/samples/speed
cvs diff: Diffing extras/graphics/mercury_cairo
cvs diff: Diffing extras/graphics/mercury_cairo/samples
cvs diff: Diffing extras/graphics/mercury_cairo/samples/data
cvs diff: Diffing extras/graphics/mercury_cairo/tutorial
cvs diff: Diffing extras/graphics/mercury_glfw
cvs diff: Diffing extras/graphics/mercury_glfw/samples
cvs diff: Diffing extras/graphics/mercury_glut
cvs diff: Diffing extras/graphics/mercury_opengl
cvs diff: Diffing extras/graphics/mercury_tcltk
cvs diff: Diffing extras/graphics/samples
cvs diff: Diffing extras/graphics/samples/calc
cvs diff: Diffing extras/graphics/samples/gears
cvs diff: Diffing extras/graphics/samples/maze
cvs diff: Diffing extras/graphics/samples/pent
cvs diff: Diffing extras/lazy_evaluation
cvs diff: Diffing extras/lex
cvs diff: Diffing extras/lex/samples
cvs diff: Diffing extras/lex/tests
cvs diff: Diffing extras/log4m
cvs diff: Diffing extras/logged_output
cvs diff: Diffing extras/monte
cvs diff: Diffing extras/moose
cvs diff: Diffing extras/moose/samples
cvs diff: Diffing extras/moose/tests
cvs diff: Diffing extras/mopenssl
cvs diff: Diffing extras/morphine
cvs diff: Diffing extras/morphine/non-regression-tests
cvs diff: Diffing extras/morphine/scripts
cvs diff: Diffing extras/morphine/source
cvs diff: Diffing extras/net
cvs diff: Diffing extras/odbc
cvs diff: Diffing extras/posix
cvs diff: Diffing extras/posix/samples
cvs diff: Diffing extras/quickcheck
cvs diff: Diffing extras/quickcheck/tutes
cvs diff: Diffing extras/references
cvs diff: Diffing extras/references/samples
cvs diff: Diffing extras/references/tests
cvs diff: Diffing extras/solver_types
cvs diff: Diffing extras/solver_types/library
cvs diff: Diffing extras/trailed_update
cvs diff: Diffing extras/trailed_update/samples
cvs diff: Diffing extras/trailed_update/tests
cvs diff: Diffing extras/windows_installer_generator
cvs diff: Diffing extras/windows_installer_generator/sample
cvs diff: Diffing extras/windows_installer_generator/sample/images
cvs diff: Diffing extras/xml
cvs diff: Diffing extras/xml/samples
cvs diff: Diffing extras/xml_stylesheets
cvs diff: Diffing java
cvs diff: Diffing java/runtime
cvs diff: Diffing library
cvs diff: Diffing m4
cvs diff: Diffing mdbcomp
cvs diff: Diffing profiler
cvs diff: Diffing robdd
cvs diff: Diffing runtime
cvs diff: Diffing runtime/GETOPT
cvs diff: Diffing runtime/machdeps
cvs diff: Diffing samples
cvs diff: Diffing samples/appengine
cvs diff: Diffing samples/appengine/war
cvs diff: Diffing samples/appengine/war/WEB-INF
cvs diff: Diffing samples/c_interface
cvs diff: Diffing samples/c_interface/c_calls_mercury
cvs diff: Diffing samples/c_interface/cplusplus_calls_mercury
cvs diff: Diffing samples/c_interface/mercury_calls_c
cvs diff: Diffing samples/c_interface/mercury_calls_cplusplus
cvs diff: Diffing samples/c_interface/mercury_calls_fortran
cvs diff: Diffing samples/c_interface/simpler_c_calls_mercury
cvs diff: Diffing samples/c_interface/simpler_cplusplus_calls_mercury
cvs diff: Diffing samples/c_interface/standalone_c
cvs diff: Diffing samples/concurrency
cvs diff: Diffing samples/concurrency/dining_philosophers
cvs diff: Diffing samples/concurrency/midimon
cvs diff: Diffing samples/diff
cvs diff: Diffing samples/java_interface
cvs diff: Diffing samples/java_interface/java_calls_mercury
cvs diff: Diffing samples/java_interface/mercury_calls_java
cvs diff: Diffing samples/lazy_list
cvs diff: Diffing samples/muz
cvs diff: Diffing samples/rot13
cvs diff: Diffing samples/solutions
cvs diff: Diffing samples/solver_types
cvs diff: Diffing samples/tests
cvs diff: Diffing samples/tests/c_interface
cvs diff: Diffing samples/tests/c_interface/c_calls_mercury
cvs diff: Diffing samples/tests/c_interface/cplusplus_calls_mercury
cvs diff: Diffing samples/tests/c_interface/mercury_calls_c
cvs diff: Diffing samples/tests/c_interface/mercury_calls_cplusplus
cvs diff: Diffing samples/tests/c_interface/mercury_calls_fortran
cvs diff: Diffing samples/tests/c_interface/simpler_c_calls_mercury
cvs diff: Diffing samples/tests/c_interface/simpler_cplusplus_calls_mercury
cvs diff: Diffing samples/tests/diff
cvs diff: Diffing samples/tests/muz
cvs diff: Diffing samples/tests/rot13
cvs diff: Diffing samples/tests/solutions
cvs diff: Diffing samples/tests/toplevel
cvs diff: Diffing scripts
cvs diff: Diffing slice
cvs diff: Diffing ssdb
cvs diff: Diffing tests
cvs diff: Diffing tests/analysis
cvs diff: Diffing tests/analysis/ctgc
cvs diff: Diffing tests/analysis/excp
cvs diff: Diffing tests/analysis/ext
cvs diff: Diffing tests/analysis/sharing
cvs diff: Diffing tests/analysis/table
cvs diff: Diffing tests/analysis/trail
cvs diff: Diffing tests/analysis/unused_args
cvs diff: Diffing tests/benchmarks
cvs diff: Diffing tests/debugger
cvs diff: Diffing tests/debugger/declarative
cvs diff: Diffing tests/dppd
cvs diff: Diffing tests/feedback
cvs diff: Diffing tests/feedback/mandelbrot
cvs diff: Diffing tests/feedback/mmc
cvs diff: Diffing tests/general
cvs diff: Diffing tests/general/accumulator
cvs diff: Diffing tests/general/string_format
cvs diff: Diffing tests/general/structure_reuse
cvs diff: Diffing tests/grade_subdirs
cvs diff: Diffing tests/hard_coded
cvs diff: Diffing tests/hard_coded/exceptions
cvs diff: Diffing tests/hard_coded/purity
cvs diff: Diffing tests/hard_coded/sub-modules
cvs diff: Diffing tests/hard_coded/typeclasses
cvs diff: Diffing tests/invalid
cvs diff: Diffing tests/invalid/purity
cvs diff: Diffing tests/misc_tests
cvs diff: Diffing tests/mmc_make
cvs diff: Diffing tests/mmc_make/lib
cvs diff: Diffing tests/par_conj
cvs diff: Diffing tests/recompilation
cvs diff: Diffing tests/stm
cvs diff: Diffing tests/stm/orig
cvs diff: Diffing tests/stm/orig/stm-compiler
cvs diff: Diffing tests/stm/orig/stm-compiler/test1
cvs diff: Diffing tests/stm/orig/stm-compiler/test10
cvs diff: Diffing tests/stm/orig/stm-compiler/test2
cvs diff: Diffing tests/stm/orig/stm-compiler/test3
cvs diff: Diffing tests/stm/orig/stm-compiler/test4
cvs diff: Diffing tests/stm/orig/stm-compiler/test5
cvs diff: Diffing tests/stm/orig/stm-compiler/test6
cvs diff: Diffing tests/stm/orig/stm-compiler/test7
cvs diff: Diffing tests/stm/orig/stm-compiler/test8
cvs diff: Diffing tests/stm/orig/stm-compiler/test9
cvs diff: Diffing tests/stm/orig/stm-compiler-par
cvs diff: Diffing tests/stm/orig/stm-compiler-par/bm1
cvs diff: Diffing tests/stm/orig/stm-compiler-par/bm2
cvs diff: Diffing tests/stm/orig/stm-compiler-par/stmqueue
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test1
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test10
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test11
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test2
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test3
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test4
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test5
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test6
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test7
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test8
cvs diff: Diffing tests/stm/orig/stm-compiler-par/test9
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test1
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test2
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test3
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test4
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test5
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test6
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test7
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test8
cvs diff: Diffing tests/stm/orig/stm-compiler-par-asm_fast/test9
cvs diff: Diffing tests/tabling
cvs diff: Diffing tests/term
cvs diff: Diffing tests/trailing
cvs diff: Diffing tests/valid
cvs diff: Diffing tests/warnings
cvs diff: Diffing tools
cvs diff: Diffing trace
cvs diff: Diffing util
cvs diff: Diffing vim
cvs diff: Diffing vim/after
cvs diff: Diffing vim/ftplugin
cvs diff: Diffing vim/syntax
--------------------------------------------------------------------------
mercury-reviews mailing list
Post messages to:       mercury-reviews at csse.unimelb.edu.au
Administrative Queries: owner-mercury-reviews at csse.unimelb.edu.au
Subscriptions:          mercury-reviews-request at csse.unimelb.edu.au
--------------------------------------------------------------------------



More information about the reviews mailing list