summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Dammers <tdammers@gmail.com>2018-01-24 16:05:55 +0100
committerTobias Dammers <tdammers@gmail.com>2018-01-24 16:05:55 +0100
commit45728499292108c8f180cb3ce106228163dc8812 (patch)
tree4bd1a12c6ae9c13887c73d700a9ca718b0082da9
parent452dee3ff4f385977e56ac0fbb5adf0a90acbcac (diff)
downloadhaskell-45728499292108c8f180cb3ce106228163dc8812.tar.gz
Applying patch suggested in #11735 to improve coercionKind perf
-rw-r--r--compiler/types/Coercion.hs34
1 files changed, 18 insertions, 16 deletions
diff --git a/compiler/types/Coercion.hs b/compiler/types/Coercion.hs
index 3f83b09f67..e1a5b7cde0 100644
--- a/compiler/types/Coercion.hs
+++ b/compiler/types/Coercion.hs
@@ -1702,22 +1702,18 @@ coercionType co = case coercionKindRole co of
-- i.e. the kind of @c@ relates @t1@ and @t2@, then @coercionKind c = Pair t1 t2@.
coercionKind :: Coercion -> Pair Type
-coercionKind co = go co
+coercionKind co =
+ {-# SCC "coercionKind" #-}
+ go co
where
go (Refl _ ty) = Pair ty ty
go (TyConAppCo _ tc cos)= mkTyConApp tc <$> (sequenceA $ map go cos)
go (AppCo co1 co2) = mkAppTy <$> go co1 <*> go co2
- go (ForAllCo tv1 k_co co)
- = let Pair _ k2 = go k_co
- tv2 = setTyVarKind tv1 k2
- Pair ty1 ty2 = go co
- subst = zipTvSubst [tv1] [TyVarTy tv2 `mk_cast_ty` mkSymCo k_co]
- ty2' = substTyAddInScope subst ty2 in
- -- We need free vars of ty2 in scope to satisfy the invariant
- -- from Note [The substitution invariant]
- -- This is doing repeated substitutions and probably doesn't
- -- need to, see #11735
- mkInvForAllTy <$> Pair tv1 tv2 <*> Pair ty1 ty2'
+ go co@(ForAllCo tv1 k_co co1)
+ | isReflCo k_co = mkInvForAllTy tv1 <$> go co1
+ | otherwise = go_forall empty_subst co
+ where
+ empty_subst = mkEmptyTCvSubst (mkInScopeSet $ tyCoVarsOfCo co)
go (FunCo _ co1 co2) = mkFunTy <$> go co1 <*> go co2
go (CoVarCo cv) = coVarTypes cv
go (HoleCo h) = coVarTypes (coHoleCoVar h)
@@ -1769,10 +1765,16 @@ coercionKind co = go co
go_app (InstCo co arg) args = go_app co (arg:args)
go_app co args = piResultTys <$> go co <*> (sequenceA $ map go args)
- -- The real mkCastTy is too slow, and we can easily have nested ForAllCos.
- mk_cast_ty :: Type -> Coercion -> Type
- mk_cast_ty ty (Refl {}) = ty
- mk_cast_ty ty co = CastTy ty co
+ go_forall subst (ForAllCo tv1 k_co co)
+ = mkInvForAllTy <$> Pair tv1 tv2 <*> go_forall subst' co
+ where
+ Pair _ k2 = go k_co
+ tv2 = setTyVarKind tv1 (substTy subst k2)
+ subst' | isReflCo k_co = extendTCvInScope subst tv1
+ | otherwise = extendTvSubst (extendTCvInScope subst tv2) tv1 $
+ TyVarTy tv2 `mkCastTy` mkSymCo k_co
+ go_forall subst other_co
+ = substTy subst `pLiftSnd` go other_co
-- | Apply 'coercionKind' to multiple 'Coercion's
coercionKinds :: [Coercion] -> Pair [Type]