808165d1eddcbcf50e51d6e328468627ab51c6ad
[ghc-hetmet.git] / ghc / compiler / typecheck / TcRules.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[TcRules]{Typechecking transformation rules}
5
6 \begin{code}
7 module TcRules ( tcRules ) where
8
9 #include "HsVersions.h"
10
11 import HsSyn            ( HsDecl(..), RuleDecl(..), RuleBndr(..), HsTyVarBndr(..) )
12 import CoreSyn          ( CoreRule(..) )
13 import RnHsSyn          ( RenamedHsDecl )
14 import TcHsSyn          ( TypecheckedRuleDecl, mkHsLet )
15 import TcMonad
16 import TcSimplify       ( tcSimplifyToDicts, tcSimplifyAndCheck )
17 import TcType           ( zonkTcTypes, zonkTcTyVarToTyVar, newTyVarTy )
18 import TcIfaceSig       ( tcCoreExpr, tcCoreLamBndrs, tcVar )
19 import TcMonoType       ( kcTyVarScope, kcHsSigType, tcHsSigType, newSigTyVars, checkSigTyVars )
20 import TcExpr           ( tcExpr )
21 import TcEnv            ( tcExtendLocalValEnv, newLocalId,
22                           tcExtendTyVarEnv
23                         )
24 import Inst             ( LIE, emptyLIE, plusLIEs, instToId )
25 import Id               ( idType, idName, mkVanillaId )
26 import VarSet
27 import Type             ( tyVarsOfTypes, openTypeKind )
28 import Bag              ( bagToList )
29 import Outputable
30 import Util
31 \end{code}
32
33 \begin{code}
34 tcRules :: [RenamedHsDecl] -> TcM s (LIE, [TypecheckedRuleDecl])
35 tcRules decls = mapAndUnzipTc tcRule [rule | RuleD rule <- decls]       `thenTc` \ (lies, rules) ->
36                 returnTc (plusLIEs lies, rules)
37
38 tcRule (IfaceRule name vars fun args rhs src_loc)
39   = tcAddSrcLoc src_loc                 $
40     tcAddErrCtxt (ruleCtxt name)        $
41     tcVar fun                           `thenTc` \ fun' ->
42     tcCoreLamBndrs vars                 $ \ vars' ->
43     mapTc tcCoreExpr args               `thenTc` \ args' ->
44     tcCoreExpr rhs                      `thenTc` \ rhs' ->
45     returnTc (emptyLIE, IfaceRuleOut fun' (Rule name vars' args' rhs'))
46
47 tcRule (IfaceRuleOut fun rule)
48   = tcVar fun                           `thenTc` \ fun' ->
49     returnTc (emptyLIE, IfaceRuleOut fun' rule)
50
51 tcRule (HsRule name sig_tvs vars lhs rhs src_loc)
52   = tcAddSrcLoc src_loc                                 $
53     tcAddErrCtxt (ruleCtxt name)                        $
54     newTyVarTy openTypeKind                             `thenNF_Tc` \ rule_ty ->
55
56         -- Deal with the tyvars mentioned in signatures
57         -- Yuk to the UserTyVar
58     kcTyVarScope (map UserTyVar sig_tvs)
59                  (mapTc_ kcHsSigType sig_tys)   `thenTc` \ sig_tv_kinds ->
60     newSigTyVars sig_tv_kinds                   `thenNF_Tc` \ sig_tyvars ->
61     tcExtendTyVarEnv sig_tyvars                 (       
62
63                 -- Ditto forall'd variables
64         mapNF_Tc new_id vars                                    `thenNF_Tc` \ ids ->
65         tcExtendLocalValEnv [(idName id, id) | id <- ids]       $
66         
67                 -- Now LHS and RHS
68         tcExpr lhs rule_ty                                      `thenTc` \ (lhs', lhs_lie) ->
69         tcExpr rhs rule_ty                                      `thenTc` \ (rhs', rhs_lie) ->
70         
71         returnTc (ids, lhs', rhs', lhs_lie, rhs_lie)
72     )                                           `thenTc` \ (ids, lhs', rhs', lhs_lie, rhs_lie) ->
73
74                 -- Check that LHS has no overloading at all
75     tcSimplifyToDicts lhs_lie                           `thenTc` \ (lhs_dicts, lhs_binds) ->
76     checkSigTyVars sig_tyvars emptyVarSet               `thenTc_`
77
78         -- Gather the template variables and tyvars
79     let
80         tpl_ids = map instToId (bagToList lhs_dicts) ++ ids
81
82         -- IMPORTANT!  We *quantify* over any dicts that appear in the LHS
83         -- Reason: 
84         --      a) The particular dictionary isn't important, because its value
85         --         depends only on the type
86         --              e.g     gcd Int $fIntegralInt
87         --         Here we'd like to match against (gcd Int any_d) for any 'any_d'
88         --
89         --      b) We'd like to make available the dictionaries bound 
90         --         on the LHS in the RHS, so quantifying over them is good
91         --         See the 'lhs_dicts' in tcSimplifyAndCheck for the RHS
92     in
93
94         -- Gather type variables to quantify over
95         -- and turn them into real TyVars (just as in TcBinds.tcBindWithSigs)
96     zonkTcTypes (rule_ty : map idType tpl_ids)                          `thenNF_Tc` \ zonked_tys ->
97     mapTc zonkTcTyVarToTyVar (varSetElems (tyVarsOfTypes zonked_tys))   `thenTc` \ tvs ->
98
99         -- RHS can be a bit more lenient.  In particular,
100         -- we let constant dictionaries etc float outwards
101     tcSimplifyAndCheck (text "tcRule") (mkVarSet tvs)
102                        lhs_dicts rhs_lie                `thenTc` \ (lie', rhs_binds) ->
103
104     returnTc (lie', HsRule      name tvs
105                                 (map RuleBndr tpl_ids)  -- yuk
106                                 (mkHsLet lhs_binds lhs')
107                                 (mkHsLet rhs_binds rhs')
108                                 src_loc)
109   where
110     sig_tys = [t | RuleBndrSig _ t <- vars]
111
112     new_id (RuleBndr var)          = newTyVarTy openTypeKind    `thenNF_Tc` \ ty ->
113                                      returnNF_Tc (mkVanillaId var ty)
114     new_id (RuleBndrSig var rn_ty) = tcHsSigType rn_ty  `thenTc` \ ty ->
115                                      returnNF_Tc (mkVanillaId var ty)
116
117 ruleCtxt name = ptext SLIT("When checking the transformation rule") <+> 
118                 doubleQuotes (ptext name)
119 \end{code}