[project @ 2000-07-15 15:09:45 by panne]
[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         tcTyDecl1, 
9         kcConDetails, 
10         mkImplicitDataBinds, mkNewTyConRep
11     ) where
12
13 #include "HsVersions.h"
14
15 import HsSyn            ( MonoBinds(..), 
16                           TyClDecl(..), ConDecl(..), ConDetails(..), BangType(..),
17                           andMonoBindList, getBangType
18                         )
19 import RnHsSyn          ( RenamedTyClDecl, RenamedConDecl, RenamedContext )
20 import TcHsSyn          ( TcMonoBinds, idsToMonoBinds )
21 import BasicTypes       ( RecFlag(..), NewOrData(..) )
22
23 import TcMonoType       ( tcHsType, tcHsSigType, tcHsBoxedSigType, kcTyVarScope, tcClassContext,
24                           kcHsContext, kcHsSigType, mkImmutTyVars
25                         )
26 import TcEnv            ( tcExtendTyVarEnv, tcLookupTy, tcLookupValueByKey, TyThing(..), TyThingDetails(..) )
27 import TcMonad
28 import TcUnify          ( unifyKind )
29
30 import Class            ( Class, ClassContext )
31 import DataCon          ( DataCon, mkDataCon, 
32                           dataConFieldLabels, dataConId, dataConWrapId,
33                           markedStrict, notMarkedStrict, markedUnboxed, dataConRepType
34                         )
35 import MkId             ( mkDataConId, mkDataConWrapId, mkRecordSelId )
36 import FieldLabel
37 import Var              ( Id, TyVar )
38 import Name             ( Name, isLocallyDefined, OccName, NamedThing(..), nameUnique )
39 import Outputable
40 import TyCon            ( TyCon, AlgTyConFlavour(..), ArgVrcs, mkSynTyCon, mkAlgTyCon, 
41                           tyConDataConsIfAvailable, tyConTyVars,
42                           isSynTyCon, isNewTyCon
43                         )
44 import Type             ( getTyVar, tyVarsOfTypes, splitFunTy, applyTys,
45                           mkTyConApp, mkTyVarTys, mkForAllTys, mkFunTy,
46                           mkTyVarTy, splitAlgTyConApp_maybe,
47                           mkArrowKind, mkArrowKinds, boxedTypeKind,
48                           isUnboxedType, Type, ThetaType, classesOfPreds
49                         )
50 import TysWiredIn       ( unitTy )
51 import Var              ( tyVarKind )
52 import VarSet           ( intersectVarSet, isEmptyVarSet )
53 import Unique           ( unpackCStringIdKey )
54 import Util             ( equivClasses )
55 import FiniteMap        ( FiniteMap, lookupWithDefaultFM )
56 \end{code}
57
58 %************************************************************************
59 %*                                                                      *
60 \subsection{Type checking}
61 %*                                                                      *
62 %************************************************************************
63
64 \begin{code}
65 tcTyDecl1 :: RenamedTyClDecl -> TcM s (Name, TyThingDetails)
66 tcTyDecl1 (TySynonym tycon_name tyvar_names rhs src_loc)
67   = tcLookupTy tycon_name                       `thenNF_Tc` \ (ATyCon tycon) ->
68     tcExtendTyVarEnv (tyConTyVars tycon)        $
69     tcHsType rhs                                `thenTc` \ rhs_ty ->
70         -- If the RHS mentions tyvars that aren't in scope, we'll 
71         -- quantify over them.  With gla-exts that's right, but for H98
72         -- we should complain. We can now do that here without falling into
73         -- a black hole, we still do it in rnDecl (TySynonym case)
74     returnTc (tycon_name, SynTyDetails rhs_ty)
75
76 tcTyDecl1 (TyData _ context tycon_name _ con_decls _ derivings _  src_loc)
77   = tcLookupTy tycon_name                       `thenNF_Tc` \ (ATyCon tycon) ->
78     let
79         tyvars = tyConTyVars tycon
80     in
81     tcExtendTyVarEnv tyvars                             $
82
83         -- Typecheck the pieces
84     tcClassContext context                              `thenTc` \ ctxt ->
85     tc_derivs derivings                                 `thenTc` \ derived_classes ->
86     mapTc (tcConDecl tycon tyvars ctxt) con_decls       `thenTc` \ data_cons ->
87
88     returnTc (tycon_name, DataTyDetails ctxt data_cons derived_classes)
89   where
90     tc_derivs Nothing   = returnTc []
91     tc_derivs (Just ds) = mapTc tc_deriv ds
92
93     tc_deriv name = tcLookupTy name `thenTc` \ (AClass clas) ->
94                     returnTc clas
95 \end{code}
96
97 \begin{code}
98 mkNewTyConRep :: TyCon -> Type
99 -- Find the representation type for this newtype TyCon
100 -- The trick is to to deal correctly with recursive newtypes
101 -- such as      newtype T = MkT T
102
103 mkNewTyConRep tc
104   = mkForAllTys tvs (loop [] (mkTyConApp tc (mkTyVarTys tvs)))
105   where
106     tvs = tyConTyVars tc
107     loop tcs ty = case splitAlgTyConApp_maybe ty of {
108                         Nothing -> ty ;
109                         Just (tc, tys, data_cons) | not (isNewTyCon tc) -> ty
110                                                   | tc `elem` tcs       -> unitTy
111                                                   | otherwise           ->
112
113                   case splitFunTy (applyTys (dataConRepType (head data_cons)) tys) of
114                         (rep_ty, _) -> loop (tc:tcs) rep_ty
115                   }
116 \end{code}
117
118
119 %************************************************************************
120 %*                                                                      *
121 \subsection{Kind and type check constructors}
122 %*                                                                      *
123 %************************************************************************
124
125 \begin{code}
126 kcConDetails :: RenamedContext -> ConDetails Name -> TcM s ()
127 kcConDetails ex_ctxt details
128   = kcHsContext ex_ctxt         `thenTc_`
129     kc_con_details details
130   where
131     kc_con_details (VanillaCon btys)    = mapTc_ kc_bty btys
132     kc_con_details (InfixCon bty1 bty2) = mapTc_ kc_bty [bty1,bty2]
133     kc_con_details (NewCon ty _)        = kcHsSigType ty
134     kc_con_details (RecCon flds)        = mapTc_ kc_field flds
135
136     kc_field (_, bty) = kc_bty bty
137
138     kc_bty bty = kcHsSigType (getBangType bty)
139
140 tcConDecl :: TyCon -> [TyVar] -> ClassContext -> RenamedConDecl -> TcM s DataCon
141
142 tcConDecl tycon tyvars ctxt (ConDecl name wkr_name ex_tvs ex_ctxt details src_loc)
143   = tcAddSrcLoc src_loc                                 $
144     kcTyVarScope ex_tvs (kcConDetails ex_ctxt details)  `thenTc` \ ex_tv_kinds ->
145     let
146         ex_tyvars = mkImmutTyVars ex_tv_kinds
147     in
148     tcExtendTyVarEnv ex_tyvars                          $
149     tcClassContext ex_ctxt                              `thenTc` \ ex_theta ->
150     case details of
151         VanillaCon btys    -> tc_datacon ex_tyvars ex_theta btys
152         InfixCon bty1 bty2 -> tc_datacon ex_tyvars ex_theta [bty1,bty2]
153         NewCon ty mb_f     -> tc_newcon  ex_tyvars ex_theta ty mb_f
154         RecCon fields      -> tc_rec_con ex_tyvars ex_theta fields
155   where
156     tc_datacon ex_tyvars ex_theta btys
157       = let
158             arg_stricts = map getBangStrictness btys
159             tys         = map getBangType btys
160         in
161         mapTc tcHsSigType tys   `thenTc` \ arg_tys ->
162         mk_data_con ex_tyvars ex_theta arg_stricts arg_tys []
163
164     tc_newcon ex_tyvars ex_theta ty mb_f
165       = tcHsBoxedSigType ty     `thenTc` \ arg_ty ->
166             -- can't allow an unboxed type here, because we're effectively
167             -- going to remove the constructor while coercing it to a boxed type.
168         let
169           field_label =
170             case mb_f of
171               Nothing -> []
172               Just f  -> [mkFieldLabel (getName f) tycon arg_ty (head allFieldLabelTags)]
173         in            
174         mk_data_con ex_tyvars ex_theta [notMarkedStrict] [arg_ty] field_label
175
176     tc_rec_con ex_tyvars ex_theta fields
177       = checkTc (null ex_tyvars) (exRecConErr name)     `thenTc_`
178         mapTc tc_field (fields `zip` allFieldLabelTags) `thenTc` \ field_labels_s ->
179         let
180             field_labels = concat field_labels_s
181             arg_stricts = [str | (ns, bty) <- fields, 
182                                   let str = getBangStrictness bty, 
183                                   n <- ns               -- One for each.  E.g   x,y,z :: !Int
184                           ]
185         in
186         mk_data_con ex_tyvars ex_theta arg_stricts 
187                     (map fieldLabelType field_labels) field_labels
188
189     tc_field ((field_label_names, bty), tag)
190       = tcHsSigType (getBangType bty)   `thenTc` \ field_ty ->
191         returnTc [mkFieldLabel (getName name) tycon field_ty tag | name <- field_label_names]
192
193     mk_data_con ex_tyvars ex_theta arg_stricts arg_tys fields
194       = let
195            data_con = mkDataCon name arg_stricts fields
196                            tyvars (thinContext arg_tys ctxt)
197                            ex_tyvars ex_theta
198                            arg_tys
199                            tycon data_con_id data_con_wrap_id
200
201            data_con_id      = mkDataConId wkr_name data_con
202            data_con_wrap_id = mkDataConWrapId data_con
203         in
204         returnNF_Tc data_con
205
206 -- The context for a data constructor should be limited to
207 -- the type variables mentioned in the arg_tys
208 thinContext arg_tys ctxt
209   = filter in_arg_tys ctxt
210   where
211       arg_tyvars = tyVarsOfTypes arg_tys
212       in_arg_tys (clas,tys) = not $ isEmptyVarSet $ 
213                               tyVarsOfTypes tys `intersectVarSet` arg_tyvars
214
215 getBangStrictness (Banged   _) = markedStrict
216 getBangStrictness (Unbanged _) = notMarkedStrict
217 getBangStrictness (Unpacked _) = markedUnboxed
218 \end{code}
219
220
221
222 %************************************************************************
223 %*                                                                      *
224 \subsection{Generating constructor/selector bindings for data declarations}
225 %*                                                                      *
226 %************************************************************************
227
228 \begin{code}
229 mkImplicitDataBinds :: [TyCon] -> TcM s ([Id], TcMonoBinds)
230 mkImplicitDataBinds [] = returnTc ([], EmptyMonoBinds)
231 mkImplicitDataBinds (tycon : tycons) 
232   | isSynTyCon tycon = mkImplicitDataBinds tycons
233   | otherwise        = mkImplicitDataBinds_one tycon    `thenTc` \ (ids1, b1) ->
234                        mkImplicitDataBinds tycons       `thenTc` \ (ids2, b2) ->
235                        returnTc (ids1++ids2, b1 `AndMonoBinds` b2)
236
237 mkImplicitDataBinds_one tycon
238   = mapTc (mkRecordSelector tycon) groups       `thenTc` \ sel_ids ->
239     let
240         unf_ids = sel_ids ++ data_con_wrapper_ids
241         all_ids = map dataConId data_cons ++ unf_ids 
242
243         -- For the locally-defined things
244         -- we need to turn the unfoldings inside the selector Ids into bindings,
245         -- and build bindigns for the constructor wrappers
246         binds | isLocallyDefined tycon = idsToMonoBinds unf_ids
247               | otherwise              = EmptyMonoBinds
248     in  
249     returnTc (all_ids, binds)
250   where
251     data_cons = tyConDataConsIfAvailable tycon
252         -- Abstract types mean we don't bring the 
253         -- data cons into scope, which should be fine
254
255     data_con_wrapper_ids = map dataConWrapId data_cons
256
257     fields = [ (con, field) | con   <- data_cons,
258                               field <- dataConFieldLabels con
259              ]
260
261         -- groups is list of fields that share a common name
262     groups = equivClasses cmp_name fields
263     cmp_name (_, field1) (_, field2) 
264         = fieldLabelName field1 `compare` fieldLabelName field2
265 \end{code}
266
267 \begin{code}
268 mkRecordSelector tycon fields@((first_con, first_field_label) : other_fields)
269                 -- These fields all have the same name, but are from
270                 -- different constructors in the data type
271         -- Check that all the fields in the group have the same type
272         -- This check assumes that all the constructors of a given
273         -- data type use the same type variables
274   = checkTc (all (== field_ty) other_tys)
275             (fieldTypeMisMatch field_name)      `thenTc_`
276     tcLookupValueByKey unpackCStringIdKey       `thenTc` \ unpack_id ->
277     returnTc (mkRecordSelId tycon first_field_label unpack_id)
278   where
279     field_ty   = fieldLabelType first_field_label
280     field_name = fieldLabelName first_field_label
281     other_tys  = [fieldLabelType fl | (_, fl) <- other_fields]
282 \end{code}
283
284
285 Errors and contexts
286 ~~~~~~~~~~~~~~~~~~~
287 \begin{code}
288 fieldTypeMisMatch field_name
289   = sep [ptext SLIT("Declared types differ for field"), quotes (ppr field_name)]
290
291 exRecConErr name
292   = ptext SLIT("Can't combine named fields with locally-quantified type variables")
293     $$
294     (ptext SLIT("In the declaration of data constructor") <+> ppr name)
295 \end{code}