[commit: ghc] ghc-8.2: Simplify the logic for tc_hs_sig_type (208c3ec)
git at git.haskell.org
git at git.haskell.org
Wed Mar 29 23:41:39 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : ghc-8.2
Link : http://ghc.haskell.org/trac/ghc/changeset/208c3ec276f8cc0416f5279a8a3e8078a23488e2/ghc
>---------------------------------------------------------------
commit 208c3ec276f8cc0416f5279a8a3e8078a23488e2
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date: Mon Mar 27 10:05:26 2017 +0100
Simplify the logic for tc_hs_sig_type
In fixing Trac #13337, and introducing solveSomeEqualities,
Richard introduce the higher-order function tc_hs_sig_type_x,
with a solver as its argument.
It turned out that there was a much simpler way to do the
same thing, which this patch implements. Less code, easier
to grok. No change in behaviour though.
(cherry picked from commit 1e06d8b8f2aea0a06d40618c296a034f3e408ae2)
>---------------------------------------------------------------
208c3ec276f8cc0416f5279a8a3e8078a23488e2
compiler/typecheck/TcHsType.hs | 62 ++++++++++++++++++++++++++++++------------
1 file changed, 45 insertions(+), 17 deletions(-)
diff --git a/compiler/typecheck/TcHsType.hs b/compiler/typecheck/TcHsType.hs
index e5dcd7c..658a13b 100644
--- a/compiler/typecheck/TcHsType.hs
+++ b/compiler/typecheck/TcHsType.hs
@@ -212,28 +212,28 @@ tcHsSigType ctxt sig_ty
; checkValidType ctxt ty
; return ty }
--- kind-checks/desugars an 'LHsSigType' and then kind-generalizes.
+tc_hs_sig_type_and_gen :: LHsSigType Name -> Kind -> TcM Type
+-- Kind-checks/desugars an 'LHsSigType',
+-- solve equalities,
+-- and then kind-generalizes.
-- This will never emit constraints, as it uses solveEqualities interally.
-- No validity checking, but it does zonk en route to generalization
-tc_hs_sig_type_and_gen :: LHsSigType Name -> Kind -> TcM Type
-tc_hs_sig_type_and_gen sig_ty kind
- = do { ty <- tc_hs_sig_type_x solveEqualities sig_ty kind
+tc_hs_sig_type_and_gen hs_ty kind
+ = do { ty <- solveEqualities $
+ tc_hs_sig_type hs_ty kind
+ -- NB the call to solveEqualities, which unifies all those
+ -- kind variables floating about, immediately prior to
+ -- kind generalisation
; kindGeneralizeType ty }
tc_hs_sig_type :: LHsSigType Name -> Kind -> TcM Type
--- May emit constraints
+-- Kind-check/desugar a 'LHsSigType', but does not solve
+-- the equalities that arise from doing so; instead it may
+-- emit kind-equality constraints into the monad
-- No zonking or validity checking
-tc_hs_sig_type = tc_hs_sig_type_x id
-
--- Version of tc_hs_sig_type parameterized over how it should solve
--- equalities
-tc_hs_sig_type_x :: (forall a. TcM a -> TcM a) -- id or solveEqualities
- -> LHsSigType Name -> Kind
- -> TcM Type
-tc_hs_sig_type_x solve (HsIB { hsib_body = hs_ty
- , hsib_vars = sig_vars }) kind
- = do { (tkvs, ty) <- solve $
- tcImplicitTKBndrsType sig_vars $
+tc_hs_sig_type (HsIB { hsib_vars = sig_vars
+ , hsib_body = hs_ty }) kind
+ = do { (tkvs, ty) <- tcImplicitTKBndrsType sig_vars $
tc_lhs_type typeLevelMode hs_ty kind
; return (mkSpecForAllTys tkvs ty) }
@@ -332,6 +332,7 @@ tcLHsType ty = addTypeCtxt ty (tc_infer_lhs_type typeLevelMode ty)
-- | Should we generalise the kind of this type signature?
-- We *should* generalise if the type is closed
-- or if NoMonoLocalBinds is set. Otherwise, nope.
+-- See Note [Kind generalisation plan]
decideKindGeneralisationPlan :: LHsSigType Name -> TcM Bool
decideKindGeneralisationPlan sig_ty@(HsIB { hsib_closed = closed })
= do { mono_locals <- xoptM LangExt.MonoLocalBinds
@@ -340,7 +341,34 @@ decideKindGeneralisationPlan sig_ty@(HsIB { hsib_closed = closed })
(ppr sig_ty $$ text "should gen?" <+> ppr should_gen)
; return should_gen }
-{-
+{- Note [Kind generalisation plan]
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+When should we do kind-generalisation for user-written type signature?
+Answer: we use the same rule as for value bindings:
+
+ * We always kind-generalise if the type signature is closed
+ * Additionally, we attempt to generalise if we have NoMonoLocalBinds
+
+Trac #13337 shows the problem if we kind-generalise an open type (i.e.
+one that mentions in-scope tpe variable
+ foo :: forall k (a :: k) proxy. (Typeable k, Typeable a)
+ => proxy a -> String
+ foo _ = case eqT :: Maybe (k :~: Type) of
+ Nothing -> ...
+ Just Refl -> case eqT :: Maybe (a :~: Int) of ...
+
+In the expression type sig on the last line, we have (a :: k)
+but (Int :: Type). Since (:~:) is kind-homogeneous, this requires
+k ~ *, which is true in the Refl branch of the outer case.
+
+That equality will be solved if we allow it to float out to the
+implication constraint for the Refl match, bnot not if we aggressively
+attempt to solve all equalities the moment they occur; that is, when
+checking (Maybe (a :~: Int)). (NB: solveEqualities fails unless it
+solves all the kind equalities, which is the right thing at top level.)
+
+So here the right thing is simply not to do kind generalisation!
+
************************************************************************
* *
Type-checking modes
More information about the ghc-commits
mailing list