181f8301173c1a4077787fad6f20e1faccd31252
[ghc-hetmet.git] / ghc / compiler / typecheck / TcTyDecls.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1996-1998
3 %
4 \section[TcTyDecls]{Typecheck type declarations}
5
6 \begin{code}
7 module TcTyDecls (
8         tcTyDecl, kcTyDecl, 
9         tcConDecl,
10         mkDataBinds
11     ) where
12
13 #include "HsVersions.h"
14
15 import HsSyn            ( MonoBinds(..), 
16                           TyClDecl(..), ConDecl(..), ConDetails(..), BangType(..),
17                           andMonoBindList
18                         )
19 import RnHsSyn          ( RenamedTyClDecl, RenamedConDecl )
20 import TcHsSyn          ( TcMonoBinds )
21 import BasicTypes       ( RecFlag(..), NewOrData(..), StrictnessMark(..) )
22
23 import TcMonoType       ( tcExtendTopTyVarScope, tcExtendTyVarScope, 
24                           tcHsTypeKind, tcHsType, tcHsTopType, tcHsTopBoxedType,
25                           tcContext
26                         )
27 import TcType           ( zonkTcTyVarToTyVar, zonkTcThetaType )
28 import TcEnv            ( tcLookupTy, TcTyThing(..) )
29 import TcMonad
30 import TcUnify          ( unifyKind )
31
32 import Class            ( Class )
33 import DataCon          ( DataCon, dataConSig, mkDataCon, isNullaryDataCon,
34                           dataConFieldLabels, dataConId
35                         )
36 import MkId             ( mkDataConId, mkRecordSelId )
37 import Id               ( getIdUnfolding )
38 import CoreUnfold       ( getUnfoldingTemplate )
39 import FieldLabel
40 import Var              ( Id, TyVar )
41 import Name             ( isLocallyDefined, OccName, NamedThing(..) )
42 import Outputable
43 import TyCon            ( TyCon, mkSynTyCon, mkAlgTyCon, isAlgTyCon, 
44                           isSynTyCon, tyConDataCons
45                         )
46 import Type             ( getTyVar, tyVarsOfTypes,
47                           mkTyConApp, mkTyVarTys, mkForAllTys, mkFunTy,
48                           mkTyVarTy,
49                           mkArrowKind, mkArrowKinds, boxedTypeKind,
50                           isUnboxedType, Type, ThetaType
51                         )
52 import Var              ( tyVarKind )
53 import VarSet           ( intersectVarSet, isEmptyVarSet )
54 import Util             ( equivClasses )
55 \end{code}
56
57 %************************************************************************
58 %*                                                                      *
59 \subsection{Kind checking}
60 %*                                                                      *
61 %************************************************************************
62
63 \begin{code}
64 kcTyDecl :: RenamedTyClDecl -> TcM s ()
65
66 kcTyDecl (TySynonym name tyvar_names rhs src_loc)
67   = tcLookupTy name                             `thenNF_Tc` \ (kind, _, _) ->
68     tcExtendTopTyVarScope kind tyvar_names      $ \ _ result_kind ->
69     tcHsTypeKind rhs                            `thenTc` \ (rhs_kind, _) ->
70     unifyKind result_kind rhs_kind
71
72 kcTyDecl (TyData _ context tycon_name tyvar_names con_decls _ _ src_loc)
73   = tcLookupTy tycon_name                       `thenNF_Tc` \ (kind, _, _) ->
74     tcExtendTopTyVarScope kind tyvar_names      $ \ result_kind _ ->
75     tcContext context                           `thenTc_` 
76     mapTc kcConDecl con_decls                   `thenTc_`
77     returnTc ()
78
79 kcConDecl (ConDecl _ ex_tvs ex_ctxt details loc)
80   = tcAddSrcLoc loc                     (
81     tcExtendTyVarScope ex_tvs           ( \ tyvars -> 
82     tcContext ex_ctxt                   `thenTc_`
83     kc_con details                      `thenTc_`
84     returnTc ()
85     ))
86   where
87     kc_con (VanillaCon btys)    = mapTc kc_bty btys             `thenTc_` returnTc ()
88     kc_con (InfixCon bty1 bty2) = mapTc kc_bty [bty1,bty2]      `thenTc_` returnTc ()
89     kc_con (NewCon ty)          = tcHsType ty                   `thenTc_` returnTc ()
90     kc_con (RecCon flds)        = mapTc kc_field flds           `thenTc_` returnTc ()
91
92     kc_bty (Banged ty)   = tcHsType ty
93     kc_bty (Unbanged ty) = tcHsType ty
94
95     kc_field (_, bty)    = kc_bty bty
96 \end{code}
97
98
99 %************************************************************************
100 %*                                                                      *
101 \subsection{Type checking}
102 %*                                                                      *
103 %************************************************************************
104
105 \begin{code}
106 tcTyDecl :: RecFlag -> RenamedTyClDecl -> TcM s TyCon
107
108 tcTyDecl is_rec (TySynonym tycon_name tyvar_names rhs src_loc)
109   = tcLookupTy tycon_name                               `thenNF_Tc` \ (tycon_kind, Just arity, _) ->
110     tcExtendTopTyVarScope tycon_kind tyvar_names        $ \ tyvars _ ->
111     tcHsTopType rhs                                     `thenTc` \ rhs_ty ->
112     let
113         -- Construct the tycon
114         tycon = mkSynTyCon tycon_name tycon_kind arity tyvars rhs_ty
115     in
116     returnTc tycon
117
118
119 tcTyDecl is_rec (TyData data_or_new context tycon_name tyvar_names con_decls derivings pragmas src_loc)
120   =     -- Lookup the pieces
121     tcLookupTy tycon_name                               `thenNF_Tc` \ (tycon_kind, _, ATyCon rec_tycon) ->
122     tcExtendTopTyVarScope tycon_kind tyvar_names        $ \ tyvars _ ->
123
124         -- Typecheck the pieces
125     tcContext context                                   `thenTc` \ ctxt ->
126     mapTc (tcConDecl rec_tycon tyvars ctxt) con_decls   `thenTc` \ data_cons ->
127     tc_derivs derivings                                 `thenTc` \ derived_classes ->
128
129     let
130         -- Construct the tycon
131         real_data_or_new = case data_or_new of
132                                 NewType -> NewType
133                                 DataType | all isNullaryDataCon data_cons -> EnumType
134                                          | otherwise                      -> DataType
135
136         tycon = mkAlgTyCon tycon_name tycon_kind tyvars ctxt
137                            data_cons
138                            derived_classes
139                            Nothing              -- Not a dictionary
140                            real_data_or_new is_rec
141     in
142     returnTc tycon
143   where
144         tc_derivs Nothing   = returnTc []
145         tc_derivs (Just ds) = mapTc tc_deriv ds
146
147         tc_deriv name = tcLookupTy name `thenTc` \ (_, _, AClass clas) ->
148                         returnTc clas
149 \end{code}
150
151
152 %************************************************************************
153 %*                                                                      *
154 \subsection{Type check constructors}
155 %*                                                                      *
156 %************************************************************************
157
158 \begin{code}
159 tcConDecl :: TyCon -> [TyVar] -> ThetaType -> RenamedConDecl -> TcM s DataCon
160
161 tcConDecl tycon tyvars ctxt (ConDecl name ex_tvs ex_ctxt details src_loc)
162   = tcAddSrcLoc src_loc                 $
163     tcExtendTyVarScope ex_tvs           $ \ ex_tyvars -> 
164     tcContext ex_ctxt                   `thenTc` \ ex_theta ->
165     tc_con_decl_help tycon tyvars ctxt name ex_tyvars ex_theta details
166
167 tc_con_decl_help tycon tyvars ctxt name ex_tyvars ex_theta details
168   = case details of
169         VanillaCon btys    -> tc_datacon btys
170         InfixCon bty1 bty2 -> tc_datacon [bty1,bty2]
171         NewCon ty          -> tc_newcon ty
172         RecCon fields      -> tc_rec_con fields
173   where
174     tc_datacon btys
175       = let
176             arg_stricts = map get_strictness btys
177             tys         = map get_pty btys
178         in
179         mapTc tcHsTopType tys `thenTc` \ arg_tys ->
180         mk_data_con arg_stricts arg_tys []
181
182     tc_newcon ty 
183       = tcHsTopBoxedType ty     `thenTc` \ arg_ty ->
184             -- can't allow an unboxed type here, because we're effectively
185             -- going to remove the constructor while coercing it to a boxed type.
186         mk_data_con [NotMarkedStrict] [arg_ty] []
187
188     tc_rec_con fields
189       = checkTc (null ex_tyvars) (exRecConErr name)         `thenTc_`
190         mapTc tc_field fields   `thenTc` \ field_label_infos_s ->
191         let
192             field_label_infos = concat field_label_infos_s
193             arg_stricts       = [strict | (_, _, strict) <- field_label_infos]
194             arg_tys           = [ty     | (_, ty, _)     <- field_label_infos]
195
196             field_labels      = [ mkFieldLabel (getName name) ty tag 
197                               | ((name, ty, _), tag) <- field_label_infos `zip` allFieldLabelTags ]
198         in
199         mk_data_con arg_stricts arg_tys field_labels
200
201     tc_field (field_label_names, bty)
202       = tcHsTopType (get_pty bty)       `thenTc` \ field_ty ->
203         returnTc [(name, field_ty, get_strictness bty) | name <- field_label_names]
204
205     mk_data_con arg_stricts arg_tys fields
206       =         -- Now we've checked all the field types we must
207                 -- zonk the existential tyvars to finish the kind
208                 -- inference on their kinds, and commit them to being
209                 -- immutable type variables.  (The top-level tyvars are
210                 -- already fixed, by the preceding kind-inference pass.)
211         mapNF_Tc zonkTcTyVarToTyVar ex_tyvars   `thenNF_Tc` \ ex_tyvars' ->
212         zonkTcThetaType ex_theta                `thenNF_Tc` \ ex_theta' ->
213         let
214            data_con = mkDataCon name arg_stricts fields
215                            tyvars (thinContext arg_tys ctxt)
216                            ex_tyvars' ex_theta'
217                            arg_tys
218                            tycon data_con_id
219            data_con_id = mkDataConId data_con
220         in
221         returnNF_Tc data_con
222
223 -- The context for a data constructor should be limited to
224 -- the type variables mentioned in the arg_tys
225 thinContext arg_tys ctxt
226   = filter in_arg_tys ctxt
227   where
228       arg_tyvars = tyVarsOfTypes arg_tys
229       in_arg_tys (clas,tys) = not $ isEmptyVarSet $ 
230                               tyVarsOfTypes tys `intersectVarSet` arg_tyvars
231   
232 get_strictness (Banged   _) = MarkedStrict
233 get_strictness (Unbanged _) = NotMarkedStrict
234
235 get_pty (Banged ty)   = ty
236 get_pty (Unbanged ty) = ty
237 \end{code}
238
239
240
241 %************************************************************************
242 %*                                                                      *
243 \subsection{Generating constructor/selector bindings for data declarations}
244 %*                                                                      *
245 %************************************************************************
246
247 \begin{code}
248 mkDataBinds :: [TyCon] -> TcM s ([Id], TcMonoBinds)
249 mkDataBinds [] = returnTc ([], EmptyMonoBinds)
250 mkDataBinds (tycon : tycons) 
251   | isSynTyCon tycon = mkDataBinds tycons
252   | otherwise        = mkDataBinds_one tycon    `thenTc` \ (ids1, b1) ->
253                        mkDataBinds tycons       `thenTc` \ (ids2, b2) ->
254                        returnTc (ids1++ids2, b1 `AndMonoBinds` b2)
255
256 mkDataBinds_one tycon
257   = ASSERT( isAlgTyCon tycon )
258     mapTc (mkRecordSelector tycon) groups       `thenTc` \ sel_ids ->
259     let
260         data_ids = map dataConId data_cons ++ sel_ids
261
262         -- For the locally-defined things
263         -- we need to turn the unfoldings inside the Ids into bindings,
264         binds = [ CoreMonoBind data_id (getUnfoldingTemplate (getIdUnfolding data_id))
265                 | data_id <- data_ids, isLocallyDefined data_id
266                 ]
267     in  
268     returnTc (data_ids, andMonoBindList binds)
269   where
270     data_cons = tyConDataCons tycon
271     fields = [ (con, field) | con   <- data_cons,
272                               field <- dataConFieldLabels con
273              ]
274
275         -- groups is list of fields that share a common name
276     groups = equivClasses cmp_name fields
277     cmp_name (_, field1) (_, field2) 
278         = fieldLabelName field1 `compare` fieldLabelName field2
279 \end{code}
280
281 \begin{code}
282 mkRecordSelector tycon fields@((first_con, first_field_label) : other_fields)
283                 -- These fields all have the same name, but are from
284                 -- different constructors in the data type
285         -- Check that all the fields in the group have the same type
286         -- This check assumes that all the constructors of a given
287         -- data type use the same type variables
288   = checkTc (all (== field_ty) other_tys)
289             (fieldTypeMisMatch field_name)      `thenTc_`
290     returnTc selector_id
291   where
292     field_ty   = fieldLabelType first_field_label
293     field_name = fieldLabelName first_field_label
294     other_tys  = [fieldLabelType fl | (_, fl) <- other_fields]
295     (tyvars, _, _, _, _, _) = dataConSig first_con
296     data_ty  = mkTyConApp tycon (mkTyVarTys tyvars)
297     -- tyvars of first_con may be free in field_ty
298     -- Now build the selector
299
300     selector_ty :: Type
301     selector_ty  = mkForAllTys tyvars $ 
302                    mkFunTy data_ty $
303                    field_ty
304       
305     selector_id :: Id
306     selector_id = mkRecordSelId first_field_label selector_ty
307 \end{code}
308
309
310 Errors and contexts
311 ~~~~~~~~~~~~~~~~~~~
312 \begin{code}
313 fieldTypeMisMatch field_name
314   = sep [ptext SLIT("Declared types differ for field"), quotes (ppr field_name)]
315
316 exRecConErr name
317   = ptext SLIT("Can't combine named fields with locally-quantified type variables")
318     $$
319     (ptext SLIT("In the declaration of data constructor") <+> ppr name)
320 \end{code}