[commit: ghc] wip/nomeata-T2110: Add Case TyConAppCo to match_co (8d68e50)
git at git.haskell.org
git at git.haskell.org
Fri Jan 24 14:32:34 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nomeata-T2110
Link : http://ghc.haskell.org/trac/ghc/changeset/8d68e50ebe5087f2672aae7c22b2daab1a13692d/ghc
>---------------------------------------------------------------
commit 8d68e50ebe5087f2672aae7c22b2daab1a13692d
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Fri Jan 24 13:39:11 2014 +0000
Add Case TyConAppCo to match_co
>---------------------------------------------------------------
8d68e50ebe5087f2672aae7c22b2daab1a13692d
compiler/specialise/Rules.lhs | 25 ++++++++++++++++++++++---
1 file changed, 22 insertions(+), 3 deletions(-)
diff --git a/compiler/specialise/Rules.lhs b/compiler/specialise/Rules.lhs
index b88888c..a6593af 100644
--- a/compiler/specialise/Rules.lhs
+++ b/compiler/specialise/Rules.lhs
@@ -729,9 +729,28 @@ match_co renv subst (Refl r1 ty1) co
Refl r2 ty2
| r1 == r2 -> match_ty renv subst ty1 ty2
_ -> Nothing
-match_co _ _ co1 _
- = pprTrace "match_co: needs more cases" (ppr co1) Nothing
- -- Currently just deals with CoVarCo and Refl
+match_co renv subst (TyConAppCo r1 tc1 cos1) co2
+ = case co2 of
+ TyConAppCo r2 tc2 cos2
+ | r1 == r2 && tc1 == tc2
+ -> match_cos renv subst cos1 cos2
+ _ -> Nothing
+match_co _ _ co1 co2
+ = pprTrace "match_co: needs more cases" (ppr co1 $$ ppr co2) Nothing
+ -- Currently just deals with CoVarCo, TyConAppCo and Refl
+
+match_cos :: RuleMatchEnv
+ -> RuleSubst
+ -> [Coercion]
+ -> [Coercion]
+ -> Maybe RuleSubst
+match_cos renv subst (co1:cos1) (co2:cos2) =
+ case match_co renv subst co1 co2 of
+ Just subst' -> match_cos renv subst' cos1 cos2
+ Nothing -> Nothing
+match_cos _ subst [] [] = Just subst
+match_cos _ _ cos1 cos2 = pprTrace "match_cos: not same length" (ppr cos1 $$ ppr cos2) Nothing
+
-------------
rnMatchBndr2 :: RuleMatchEnv -> RuleSubst -> Var -> Var -> RuleMatchEnv
More information about the ghc-commits
mailing list