[project @ 2002-09-17 13:00:14 by simonpj]
[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            ( RuleDecl(..), RuleBndr(..), HsExpr(..), collectRuleBndrSigTys )
12 import CoreSyn          ( CoreRule(..) )
13 import RnHsSyn          ( RenamedRuleDecl )
14 import TcHsSyn          ( TypecheckedRuleDecl, TcExpr, mkHsLet )
15 import TcRnMonad
16 import TcSimplify       ( tcSimplifyToDicts, tcSimplifyInferCheck )
17 import TcMType          ( newTyVarTy )
18 import TcType           ( TcTyVarSet, tyVarsOfTypes, tyVarsOfType, openTypeKind )
19 import TcIfaceSig       ( tcCoreExpr, tcCoreLamBndrs, tcVar )
20 import TcMonoType       ( tcHsSigType, UserTypeCtxt(..), tcAddScopedTyVars )
21 import TcExpr           ( tcMonoExpr )
22 import TcEnv            ( tcExtendLocalValEnv )
23 import Inst             ( instToId )
24 import Id               ( idType, mkLocalId )
25 import VarSet
26 import Outputable
27 \end{code}
28
29 \begin{code}
30 tcRules :: [RenamedRuleDecl] -> TcM [TypecheckedRuleDecl]
31 tcRules decls = mappM tcRule decls
32
33 tcRule :: RenamedRuleDecl -> TcM TypecheckedRuleDecl
34 tcRule (IfaceRule name act vars fun args rhs src_loc)
35   = addSrcLoc src_loc           $
36     addErrCtxt (ruleCtxt name)  $
37     tcVar fun                           `thenM` \ fun' ->
38     tcCoreLamBndrs vars                 $ \ vars' ->
39     mappM tcCoreExpr args               `thenM` \ args' ->
40     tcCoreExpr rhs                      `thenM` \ rhs' ->
41     returnM (IfaceRuleOut fun' (Rule name act vars' args' rhs'))
42
43 tcRule (IfaceRuleOut fun rule)  -- Built-in rules come this way
44   = tcVar fun                           `thenM` \ fun' ->
45     returnM (IfaceRuleOut fun' rule)   
46
47 tcRule (HsRule name act vars lhs rhs src_loc)
48   = addSrcLoc src_loc                           $
49     addErrCtxt (ruleCtxt name)                  $
50     newTyVarTy openTypeKind                             `thenM` \ rule_ty ->
51
52         -- Deal with the tyvars mentioned in signatures
53     tcAddScopedTyVars (collectRuleBndrSigTys vars) (
54
55                 -- Ditto forall'd variables
56         mappM new_id vars                       `thenM` \ ids ->
57         tcExtendLocalValEnv ids                 $
58         
59                 -- Now LHS and RHS
60         getLIE (tcMonoExpr lhs rule_ty)         `thenM` \ (lhs', lhs_lie) ->
61         getLIE (tcMonoExpr rhs rule_ty)         `thenM` \ (rhs', rhs_lie) ->
62         
63         returnM (ids, lhs', rhs', lhs_lie, rhs_lie)
64     )                           `thenM` \ (ids, lhs', rhs', lhs_lie, rhs_lie) ->
65
66                 -- Check that LHS has no overloading at all
67     getLIE (tcSimplifyToDicts lhs_lie)  `thenM` \ (lhs_binds, lhs_dicts) ->
68
69         -- Gather the template variables and tyvars
70     let
71         tpl_ids = map instToId lhs_dicts ++ ids
72
73         -- IMPORTANT!  We *quantify* over any dicts that appear in the LHS
74         -- Reason: 
75         --      a) The particular dictionary isn't important, because its value
76         --         depends only on the type
77         --              e.g     gcd Int $fIntegralInt
78         --         Here we'd like to match against (gcd Int any_d) for any 'any_d'
79         --
80         --      b) We'd like to make available the dictionaries bound 
81         --         on the LHS in the RHS, so quantifying over them is good
82         --         See the 'lhs_dicts' in tcSimplifyAndCheck for the RHS
83
84         -- We initially quantify over any tyvars free in *either* the rule
85         -- *or* the bound variables.  The latter is important.  Consider
86         --      ss (x,(y,z)) = (x,z)
87         --      RULE:  forall v. fst (ss v) = fst v
88         -- The type of the rhs of the rule is just a, but v::(a,(b,c))
89         --
90         -- We also need to get the free tyvars of the LHS; but we do that
91         -- during zonking (see TcHsSyn.zonkRule)
92         --
93         forall_tvs = tyVarsOfTypes (rule_ty : map idType tpl_ids)
94     in
95         -- RHS can be a bit more lenient.  In particular,
96         -- we let constant dictionaries etc float outwards
97         --
98         -- NB: tcSimplifyInferCheck zonks the forall_tvs, and 
99         --     knocks out any that are constrained by the environment
100     tcSimplifyInferCheck (text "tcRule")
101                          forall_tvs
102                          lhs_dicts rhs_lie      `thenM` \ (forall_tvs1, rhs_binds) ->
103
104     returnM (HsRule name act
105                     (map RuleBndr (forall_tvs1 ++ tpl_ids))     -- yuk
106                     (mkHsLet lhs_binds lhs')
107                     (mkHsLet rhs_binds rhs')
108                     src_loc)
109   where
110     new_id (RuleBndr var)          = newTyVarTy openTypeKind                    `thenM` \ ty ->
111                                      returnM (mkLocalId var ty)
112     new_id (RuleBndrSig var rn_ty) = tcHsSigType (RuleSigCtxt var) rn_ty        `thenM` \ ty ->
113                                      returnM (mkLocalId var ty)
114
115 ruleCtxt name = ptext SLIT("When checking the transformation rule") <+> 
116                 doubleQuotes (ftext name)
117 \end{code}
118
119
120
121