[project @ 2001-12-21 10:24:24 by simonmar]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcDeriv.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcDeriv]{Deriving}
5
6 Handles @deriving@ clauses on @data@ declarations.
7
8 \begin{code}
9 module TcDeriv ( tcDeriving ) where
10
11 #include "HsVersions.h"
12
13 import HsSyn            ( HsBinds(..), MonoBinds(..), TyClDecl(..),
14                           collectLocatedMonoBinders )
15 import RdrHsSyn         ( RdrNameMonoBinds )
16 import RnHsSyn          ( RenamedHsBinds, RenamedMonoBinds, RenamedTyClDecl, RenamedHsPred )
17 import CmdLineOpts      ( DynFlag(..), DynFlags )
18
19 import TcMonad
20 import TcEnv            ( tcSetInstEnv, newDFunName, InstInfo(..), pprInstInfo,
21                           tcLookupClass, tcLookupTyCon, tcExtendTyVarEnv
22                         )
23 import TcGenDeriv       -- Deriv stuff
24 import InstEnv          ( InstEnv, simpleDFunClassTyCon, extendInstEnv )
25 import TcMonoType       ( tcHsPred )
26 import TcSimplify       ( tcSimplifyThetas )
27
28 import RnBinds          ( rnMethodBinds, rnTopMonoBinds )
29 import RnEnv            ( bindLocatedLocalsRn )
30 import RnMonad          ( renameDerivedCode, thenRn, mapRn, returnRn )
31 import HscTypes         ( DFunId, PersistentRenamerState )
32
33 import BasicTypes       ( Fixity, NewOrData(..) )
34 import Class            ( className, classKey, classTyVars, Class )
35 import ErrUtils         ( dumpIfSet_dyn, Message )
36 import MkId             ( mkDictFunId )
37 import DataCon          ( dataConRepArgTys, isNullaryDataCon, isExistentialDataCon )
38 import PrelInfo         ( needsDataDeclCtxtClassKeys )
39 import Maybes           ( maybeToBool, catMaybes )
40 import Module           ( Module )
41 import Name             ( Name, getSrcLoc, nameUnique )
42 import RdrName          ( RdrName )
43
44 import TyCon            ( tyConTyVars, tyConDataCons, tyConArity, newTyConRep,
45                           tyConTheta, maybeTyConSingleCon, isDataTyCon,
46                           isEnumerationTyCon, TyCon
47                         )
48 import TcType           ( TcType, ThetaType, mkTyVarTys, mkTyConApp, getClassPredTys_maybe,
49                           isUnLiftedType, mkClassPred, tyVarsOfTypes, tcSplitFunTys, 
50                           tcSplitTyConApp_maybe, tcEqTypes )
51 import Var              ( TyVar, tyVarKind )
52 import VarSet           ( mkVarSet, subVarSet )
53 import PrelNames
54 import Util             ( zipWithEqual, sortLt )
55 import ListSetOps       ( removeDups,  assoc )
56 import Outputable
57 import Maybe            ( isJust )
58 import List             ( nub )
59 import FastString       ( FastString )
60 \end{code}
61
62 %************************************************************************
63 %*                                                                      *
64 \subsection[TcDeriv-intro]{Introduction to how we do deriving}
65 %*                                                                      *
66 %************************************************************************
67
68 Consider
69
70         data T a b = C1 (Foo a) (Bar b)
71                    | C2 Int (T b a)
72                    | C3 (T a a)
73                    deriving (Eq)
74
75 [NOTE: See end of these comments for what to do with 
76         data (C a, D b) => T a b = ...
77 ]
78
79 We want to come up with an instance declaration of the form
80
81         instance (Ping a, Pong b, ...) => Eq (T a b) where
82                 x == y = ...
83
84 It is pretty easy, albeit tedious, to fill in the code "...".  The
85 trick is to figure out what the context for the instance decl is,
86 namely @Ping@, @Pong@ and friends.
87
88 Let's call the context reqd for the T instance of class C at types
89 (a,b, ...)  C (T a b).  Thus:
90
91         Eq (T a b) = (Ping a, Pong b, ...)
92
93 Now we can get a (recursive) equation from the @data@ decl:
94
95         Eq (T a b) = Eq (Foo a) u Eq (Bar b)    -- From C1
96                    u Eq (T b a) u Eq Int        -- From C2
97                    u Eq (T a a)                 -- From C3
98
99 Foo and Bar may have explicit instances for @Eq@, in which case we can
100 just substitute for them.  Alternatively, either or both may have
101 their @Eq@ instances given by @deriving@ clauses, in which case they
102 form part of the system of equations.
103
104 Now all we need do is simplify and solve the equations, iterating to
105 find the least fixpoint.  Notice that the order of the arguments can
106 switch around, as here in the recursive calls to T.
107
108 Let's suppose Eq (Foo a) = Eq a, and Eq (Bar b) = Ping b.
109
110 We start with:
111
112         Eq (T a b) = {}         -- The empty set
113
114 Next iteration:
115         Eq (T a b) = Eq (Foo a) u Eq (Bar b)    -- From C1
116                    u Eq (T b a) u Eq Int        -- From C2
117                    u Eq (T a a)                 -- From C3
118
119         After simplification:
120                    = Eq a u Ping b u {} u {} u {}
121                    = Eq a u Ping b
122
123 Next iteration:
124
125         Eq (T a b) = Eq (Foo a) u Eq (Bar b)    -- From C1
126                    u Eq (T b a) u Eq Int        -- From C2
127                    u Eq (T a a)                 -- From C3
128
129         After simplification:
130                    = Eq a u Ping b
131                    u (Eq b u Ping a)
132                    u (Eq a u Ping a)
133
134                    = Eq a u Ping b u Eq b u Ping a
135
136 The next iteration gives the same result, so this is the fixpoint.  We
137 need to make a canonical form of the RHS to ensure convergence.  We do
138 this by simplifying the RHS to a form in which
139
140         - the classes constrain only tyvars
141         - the list is sorted by tyvar (major key) and then class (minor key)
142         - no duplicates, of course
143
144 So, here are the synonyms for the ``equation'' structures:
145
146 \begin{code}
147 type DerivEqn = (Name, Class, TyCon, [TyVar], DerivRhs)
148                 -- The Name is the name for the DFun we'll build
149                 -- The tyvars bind all the variables in the RHS
150
151 type DerivRhs  = ThetaType
152 type DerivSoln = DerivRhs
153 \end{code}
154
155
156 A note about contexts on data decls
157 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
158 Consider
159
160         data (RealFloat a) => Complex a = !a :+ !a deriving( Read )
161
162 We will need an instance decl like:
163
164         instance (Read a, RealFloat a) => Read (Complex a) where
165           ...
166
167 The RealFloat in the context is because the read method for Complex is bound
168 to construct a Complex, and doing that requires that the argument type is
169 in RealFloat. 
170
171 But this ain't true for Show, Eq, Ord, etc, since they don't construct
172 a Complex; they only take them apart.
173
174 Our approach: identify the offending classes, and add the data type
175 context to the instance decl.  The "offending classes" are
176
177         Read, Enum?
178
179
180 %************************************************************************
181 %*                                                                      *
182 \subsection[TcDeriv-driver]{Top-level function for \tr{derivings}}
183 %*                                                                      *
184 %************************************************************************
185
186 \begin{code}
187 tcDeriving  :: PersistentRenamerState
188             -> Module                   -- name of module under scrutiny
189             -> InstEnv                  -- What we already know about instances
190             -> (Name -> Maybe Fixity)   -- used in deriving Show and Read
191             -> [RenamedTyClDecl]        -- All type constructors
192             -> TcM ([InstInfo],         -- The generated "instance decls".
193                     RenamedHsBinds)     -- Extra generated bindings
194
195 tcDeriving prs mod inst_env get_fixity tycl_decls
196   = recoverTc (returnTc ([], EmptyBinds)) $
197
198         -- Fish the "deriving"-related information out of the TcEnv
199         -- and make the necessary "equations".
200     makeDerivEqns tycl_decls                            `thenTc` \ (ordinary_eqns, inst_info2) ->
201     
202     deriveOrdinaryStuff mod prs inst_env get_fixity 
203                         ordinary_eqns                   `thenTc` \ (inst_info1, binds) ->
204     let
205         inst_info  = inst_info2 ++ inst_info1   -- info2 usually empty
206     in
207
208     getDOptsTc                          `thenNF_Tc` \ dflags ->
209     ioToTc (dumpIfSet_dyn dflags Opt_D_dump_deriv "Derived instances" 
210                           (ddump_deriving inst_info binds))     `thenTc_`
211
212     returnTc (inst_info, binds)
213
214   where
215     ddump_deriving :: [InstInfo] -> RenamedHsBinds -> SDoc
216     ddump_deriving inst_infos extra_binds
217       = vcat (map pprInstInfo inst_infos) $$ ppr extra_binds
218
219
220 -----------------------------------------
221 deriveOrdinaryStuff mod prs inst_env_in get_fixity []   -- Short cut
222   = returnTc ([], EmptyBinds)
223
224 deriveOrdinaryStuff mod prs inst_env_in get_fixity eqns
225   =     -- Take the equation list and solve it, to deliver a list of
226         -- solutions, a.k.a. the contexts for the instance decls
227         -- required for the corresponding equations.
228     solveDerivEqns inst_env_in eqns             `thenTc` \ new_dfuns ->
229
230         -- Now augment the InstInfos, adding in the rather boring
231         -- actual-code-to-do-the-methods binds.  We may also need to
232         -- generate extra not-one-inst-decl-specific binds, notably
233         -- "con2tag" and/or "tag2con" functions.  We do these
234         -- separately.
235     gen_taggery_Names new_dfuns                 `thenTc` \ nm_alist_etc ->
236
237     tcGetEnv                                    `thenNF_Tc` \ env ->
238     getDOptsTc                                  `thenNF_Tc` \ dflags ->
239     let
240         extra_mbind_list = map gen_tag_n_con_monobind nm_alist_etc
241         extra_mbinds     = foldr AndMonoBinds EmptyMonoBinds extra_mbind_list
242         method_binds_s   = map (gen_bind get_fixity) new_dfuns
243         mbinders         = collectLocatedMonoBinders extra_mbinds
244         
245         -- Rename to get RenamedBinds.
246         -- The only tricky bit is that the extra_binds must scope over the
247         -- method bindings for the instances.
248         (rn_method_binds_s, rn_extra_binds)
249                 = renameDerivedCode dflags mod prs (
250                         bindLocatedLocalsRn (ptext (SLIT("deriving"))) mbinders $ \ _ ->
251                         rnTopMonoBinds extra_mbinds []          `thenRn` \ (rn_extra_binds, _) ->
252                         mapRn rn_meths method_binds_s           `thenRn` \ rn_method_binds_s ->
253                         returnRn (rn_method_binds_s, rn_extra_binds)
254                   )
255         new_inst_infos = zipWith gen_inst_info new_dfuns rn_method_binds_s
256     in
257     returnTc (new_inst_infos, rn_extra_binds)
258
259   where
260         -- Make a Real dfun instead of the dummy one we have so far
261     gen_inst_info :: DFunId -> RenamedMonoBinds -> InstInfo
262     gen_inst_info dfun binds
263       = InstInfo { iDFunId = dfun, iBinds = binds, iPrags = [] }
264
265     rn_meths (cls, meths) = rnMethodBinds cls [] meths `thenRn` \ (meths', _) -> 
266                             returnRn meths'     -- Ignore the free vars returned
267 \end{code}
268
269
270 %************************************************************************
271 %*                                                                      *
272 \subsection[TcDeriv-eqns]{Forming the equations}
273 %*                                                                      *
274 %************************************************************************
275
276 @makeDerivEqns@ fishes around to find the info about needed derived
277 instances.  Complicating factors:
278 \begin{itemize}
279 \item
280 We can only derive @Enum@ if the data type is an enumeration
281 type (all nullary data constructors).
282
283 \item
284 We can only derive @Ix@ if the data type is an enumeration {\em
285 or} has just one data constructor (e.g., tuples).
286 \end{itemize}
287
288 [See Appendix~E in the Haskell~1.2 report.] This code here deals w/
289 all those.
290
291 \begin{code}
292 makeDerivEqns :: [RenamedTyClDecl] 
293               -> TcM ([DerivEqn],       -- Ordinary derivings
294                       [InstInfo])       -- Special newtype derivings
295
296 makeDerivEqns tycl_decls
297   = mapAndUnzipTc mk_eqn derive_these           `thenTc` \ (maybe_ordinaries, maybe_newtypes) ->
298     returnTc (catMaybes maybe_ordinaries, catMaybes maybe_newtypes)
299   where
300     ------------------------------------------------------------------
301     derive_these :: [(NewOrData, Name, RenamedHsPred)]
302         -- Find the (nd, TyCon, Pred) pairs that must be `derived'
303         -- NB: only source-language decls have deriving, no imported ones do
304     derive_these = [ (nd, tycon, pred) 
305                    | TyData {tcdND = nd, tcdName = tycon, tcdDerivs = Just preds} <- tycl_decls,
306                      pred <- preds ]
307
308     ------------------------------------------------------------------
309     mk_eqn :: (NewOrData, Name, RenamedHsPred) -> NF_TcM (Maybe DerivEqn, Maybe InstInfo)
310         -- We swizzle the tyvars and datacons out of the tycon
311         -- to make the rest of the equation
312
313     mk_eqn (new_or_data, tycon_name, pred)
314       = tcLookupTyCon tycon_name                `thenNF_Tc` \ tycon ->
315         tcAddSrcLoc (getSrcLoc tycon)           $
316         tcAddErrCtxt (derivCtxt tycon)          $
317         tcExtendTyVarEnv (tyConTyVars tycon)    $       -- Deriving preds may (now) mention
318                                                         -- the type variables for the type constructor
319         tcHsPred pred                           `thenTc` \ pred' ->
320         case getClassPredTys_maybe pred' of
321            Nothing          -> bale_out (malformedPredErr tycon pred)
322            Just (clas, tys) -> mk_eqn_help new_or_data tycon clas tys
323
324     ------------------------------------------------------------------
325     mk_eqn_help DataType tycon clas tys
326       | Just err <- chk_out clas tycon tys
327       = bale_out (derivingThingErr clas tys tycon tyvars err)
328       | otherwise 
329       = new_dfun_name clas tycon         `thenNF_Tc` \ dfun_name ->
330         returnNF_Tc (Just (dfun_name, clas, tycon, tyvars, constraints), Nothing)
331       where
332         tyvars    = tyConTyVars tycon
333         data_cons = tyConDataCons tycon
334         constraints = extra_constraints ++ 
335                       [ mkClassPred clas [arg_ty] 
336                       | data_con <- tyConDataCons tycon,
337                         arg_ty   <- dataConRepArgTys data_con,  
338                                 -- Use the same type variables
339                                 -- as the type constructor,
340                                 -- hence no need to instantiate
341                         not (isUnLiftedType arg_ty)     -- No constraints for unlifted types?
342                       ]
343
344         
345          -- "extra_constraints": see notes above about contexts on data decls
346         extra_constraints | offensive_class = tyConTheta tycon
347                           | otherwise       = []
348         
349         offensive_class = classKey clas `elem` needsDataDeclCtxtClassKeys
350
351
352     mk_eqn_help NewType tycon clas tys
353       = doptsTc Opt_GlasgowExts                 `thenTc` \ gla_exts ->
354         if can_derive_via_isomorphism && (gla_exts || standard_instance) then
355                 -- Go ahead and use the isomorphism
356            new_dfun_name clas tycon             `thenNF_Tc` \ dfun_name ->
357            returnTc (Nothing, Just (NewTypeDerived (mk_dfun dfun_name)))
358         else
359            if standard_instance then
360                 mk_eqn_help DataType tycon clas []      -- Go via bale-out route
361            else
362                 bale_out cant_derive_err
363       where
364         -- Here is the plan for newtype derivings.  We see
365         --        newtype T a1...an = T (t ak...an) deriving (C1...Cm)
366         -- where aj...an do not occur free in t, and the Ci are *partial applications* of
367         -- classes with the last parameter missing
368         --
369         -- We generate the instances
370         --       instance Ci (t ak...aj) => Ci (T a1...aj)
371         -- where T a1...aj is the partial application of the LHS of the correct kind
372         --
373         -- Running example: newtype T s a = MkT (ST s a) deriving( Monad )
374
375         kind = tyVarKind (last (classTyVars clas))
376                 -- Kind of the thing we want to instance
377                 --   e.g. argument kind of Monad, *->*
378
379         (arg_kinds, _) = tcSplitFunTys kind
380         n_args_to_drop = length arg_kinds       
381                 -- Want to drop 1 arg from (T s a) and (ST s a)
382                 -- to get       instance Monad (ST s) => Monad (T s)
383
384         (tyvars, rep_ty)           = newTyConRep tycon
385         maybe_rep_app              = tcSplitTyConApp_maybe rep_ty       
386         Just (rep_tc, rep_ty_args) = maybe_rep_app
387
388         n_tyvars_to_keep = tyConArity tycon  - n_args_to_drop
389         tyvars_to_drop   = drop n_tyvars_to_keep tyvars
390         tyvars_to_keep   = take n_tyvars_to_keep tyvars
391
392         n_args_to_keep = tyConArity rep_tc - n_args_to_drop
393         args_to_drop   = drop n_args_to_keep rep_ty_args
394         args_to_keep   = take n_args_to_keep rep_ty_args
395
396         ctxt_pred = mkClassPred clas (tys ++ [mkTyConApp rep_tc args_to_keep])
397
398         mk_dfun dfun_name = mkDictFunId dfun_name clas tyvars 
399                                                   (tys ++ [mkTyConApp tycon (mkTyVarTys tyvars_to_keep)] )
400                                                   [ctxt_pred]
401
402         -- We can only do this newtype deriving thing if:
403         standard_instance = null tys && classKey clas `elem` derivableClassKeys
404
405         can_derive_via_isomorphism
406            =  not (clas `hasKey` readClassKey)  -- Never derive Read,Show this way
407            && not (clas `hasKey` showClassKey)
408            && n_tyvars_to_keep >= 0             -- Well kinded; 
409                                                 -- eg not: newtype T = T Int deriving( Monad )
410            && isJust maybe_rep_app              -- The rep type is a type constructor app
411            && n_args_to_keep   >= 0             -- Well kinded: 
412                                                 -- eg not: newtype T a = T Int deriving( Monad )
413            && eta_ok                            -- Eta reduction works
414
415         -- Check that eta reduction is OK
416         --      (a) the dropped-off args are identical
417         --      (b) the remaining type args mention 
418         --          only the remaining type variables
419         eta_ok = (args_to_drop `tcEqTypes` mkTyVarTys tyvars_to_drop)
420               && (tyVarsOfTypes args_to_keep `subVarSet` mkVarSet tyvars_to_keep) 
421
422         cant_derive_err = derivingThingErr clas tys tycon tyvars_to_keep
423                                            SLIT("too hard for cunning newtype deriving")
424
425
426     bale_out err = addErrTc err `thenNF_Tc_` returnNF_Tc (Nothing, Nothing) 
427
428     ------------------------------------------------------------------
429     chk_out :: Class -> TyCon -> [TcType] -> Maybe FastString
430     chk_out clas tycon tys
431         | not (null tys)                                                = Just non_std_why
432         | not (getUnique clas `elem` derivableClassKeys)                = Just non_std_why
433         | clas `hasKey` enumClassKey    && not is_enumeration           = Just nullary_why
434         | clas `hasKey` boundedClassKey && not is_enumeration_or_single = Just single_nullary_why
435         | clas `hasKey` ixClassKey      && not is_enumeration_or_single = Just single_nullary_why
436         | null data_cons                                                = Just no_cons_why
437         | any isExistentialDataCon data_cons                            = Just existential_why     
438         | otherwise                                                     = Nothing
439         where
440             data_cons = tyConDataCons tycon
441             is_enumeration = isEnumerationTyCon tycon
442             is_single_con  = maybeToBool (maybeTyConSingleCon tycon)
443             is_enumeration_or_single = is_enumeration || is_single_con
444
445     single_nullary_why = SLIT("one constructor data type or type with all nullary constructors expected")
446     nullary_why        = SLIT("data type with all nullary constructors expected")
447     no_cons_why        = SLIT("type has no data constructors")
448     non_std_why        = SLIT("not a derivable class")
449     existential_why    = SLIT("it has existentially-quantified constructor(s)")
450
451 new_dfun_name clas tycon        -- Just a simple wrapper
452   = newDFunName clas [mkTyConApp tycon []] (getSrcLoc tycon)
453         -- The type passed to newDFunName is only used to generate
454         -- a suitable string; hence the empty type arg list
455 \end{code}
456
457 %************************************************************************
458 %*                                                                      *
459 \subsection[TcDeriv-fixpoint]{Finding the fixed point of \tr{deriving} equations}
460 %*                                                                      *
461 %************************************************************************
462
463 A ``solution'' (to one of the equations) is a list of (k,TyVarTy tv)
464 terms, which is the final correct RHS for the corresponding original
465 equation.
466 \begin{itemize}
467 \item
468 Each (k,TyVarTy tv) in a solution constrains only a type
469 variable, tv.
470
471 \item
472 The (k,TyVarTy tv) pairs in a solution are canonically
473 ordered by sorting on type varible, tv, (major key) and then class, k,
474 (minor key)
475 \end{itemize}
476
477 \begin{code}
478 solveDerivEqns :: InstEnv
479                -> [DerivEqn]
480                -> TcM [DFunId]  -- Solns in same order as eqns.
481                                 -- This bunch is Absolutely minimal...
482
483 solveDerivEqns inst_env_in orig_eqns
484   = iterateDeriv initial_solutions
485   where
486         -- The initial solutions for the equations claim that each
487         -- instance has an empty context; this solution is certainly
488         -- in canonical form.
489     initial_solutions :: [DerivSoln]
490     initial_solutions = [ [] | _ <- orig_eqns ]
491
492     ------------------------------------------------------------------
493         -- iterateDeriv calculates the next batch of solutions,
494         -- compares it with the current one; finishes if they are the
495         -- same, otherwise recurses with the new solutions.
496         -- It fails if any iteration fails
497     iterateDeriv :: [DerivSoln] ->TcM [DFunId]
498     iterateDeriv current_solns
499       = checkNoErrsTc (iterateOnce current_solns)
500                                                 `thenTc` \ (new_dfuns, new_solns) ->
501         if (current_solns == new_solns) then
502             returnTc new_dfuns
503         else
504             iterateDeriv new_solns
505
506     ------------------------------------------------------------------
507     iterateOnce current_solns
508       =     -- Extend the inst info from the explicit instance decls
509             -- with the current set of solutions, giving a
510         getDOptsTc                              `thenNF_Tc` \ dflags ->
511         let (new_dfuns, inst_env) =
512                 add_solns dflags inst_env_in orig_eqns current_solns
513         in
514             -- Simplify each RHS
515         tcSetInstEnv inst_env (
516           listTc [ tcAddSrcLoc (getSrcLoc tc)   $
517                    tcAddErrCtxt (derivCtxt tc)  $
518                    tcSimplifyThetas deriv_rhs
519                  | (_, _,tc,_,deriv_rhs) <- orig_eqns ]  
520         )                                       `thenTc` \ next_solns ->
521
522             -- Canonicalise the solutions, so they compare nicely
523         let canonicalised_next_solns = [ sortLt (<) next_soln | next_soln <- next_solns ]
524         in
525         returnTc (new_dfuns, canonicalised_next_solns)
526 \end{code}
527
528 \begin{code}
529 add_solns :: DynFlags
530           -> InstEnv                            -- The global, non-derived ones
531           -> [DerivEqn] -> [DerivSoln]
532           -> ([DFunId], InstEnv)
533     -- the eqns and solns move "in lockstep"; we have the eqns
534     -- because we need the LHS info for addClassInstance.
535
536 add_solns dflags inst_env_in eqns solns
537   = (new_dfuns, inst_env)
538     where
539       new_dfuns     = zipWithEqual "add_solns" mk_deriv_dfun eqns solns
540       (inst_env, _) = extendInstEnv dflags inst_env_in new_dfuns
541         -- Ignore the errors about duplicate instances.
542         -- We don't want repeated error messages
543         -- They'll appear later, when we do the top-level extendInstEnvs
544
545       mk_deriv_dfun (dfun_name, clas, tycon, tyvars, _) theta
546         = mkDictFunId dfun_name clas tyvars 
547                       [mkTyConApp tycon (mkTyVarTys tyvars)] 
548                       theta
549 \end{code}
550
551 %************************************************************************
552 %*                                                                      *
553 \subsection[TcDeriv-normal-binds]{Bindings for the various classes}
554 %*                                                                      *
555 %************************************************************************
556
557 After all the trouble to figure out the required context for the
558 derived instance declarations, all that's left is to chug along to
559 produce them.  They will then be shoved into @tcInstDecls2@, which
560 will do all its usual business.
561
562 There are lots of possibilities for code to generate.  Here are
563 various general remarks.
564
565 PRINCIPLES:
566 \begin{itemize}
567 \item
568 We want derived instances of @Eq@ and @Ord@ (both v common) to be
569 ``you-couldn't-do-better-by-hand'' efficient.
570
571 \item
572 Deriving @Show@---also pretty common--- should also be reasonable good code.
573
574 \item
575 Deriving for the other classes isn't that common or that big a deal.
576 \end{itemize}
577
578 PRAGMATICS:
579
580 \begin{itemize}
581 \item
582 Deriving @Ord@ is done mostly with the 1.3 @compare@ method.
583
584 \item
585 Deriving @Eq@ also uses @compare@, if we're deriving @Ord@, too.
586
587 \item
588 We {\em normally} generate code only for the non-defaulted methods;
589 there are some exceptions for @Eq@ and (especially) @Ord@...
590
591 \item
592 Sometimes we use a @_con2tag_<tycon>@ function, which returns a data
593 constructor's numeric (@Int#@) tag.  These are generated by
594 @gen_tag_n_con_binds@, and the heuristic for deciding if one of
595 these is around is given by @hasCon2TagFun@.
596
597 The examples under the different sections below will make this
598 clearer.
599
600 \item
601 Much less often (really just for deriving @Ix@), we use a
602 @_tag2con_<tycon>@ function.  See the examples.
603
604 \item
605 We use the renamer!!!  Reason: we're supposed to be
606 producing @RenamedMonoBinds@ for the methods, but that means
607 producing correctly-uniquified code on the fly.  This is entirely
608 possible (the @TcM@ monad has a @UniqueSupply@), but it is painful.
609 So, instead, we produce @RdrNameMonoBinds@ then heave 'em through
610 the renamer.  What a great hack!
611 \end{itemize}
612
613 \begin{code}
614 -- Generate the method bindings for the required instance
615 -- (paired with class name, as we need that when renaming
616 --  the method binds)
617 gen_bind :: (Name -> Maybe Fixity) -> DFunId -> (Name, RdrNameMonoBinds)
618 gen_bind get_fixity dfun
619   = (cls_nm, binds)
620   where
621     cls_nm        = className clas
622     (clas, tycon) = simpleDFunClassTyCon dfun
623
624     binds = assoc "gen_bind:bad derived class" gen_list 
625                   (nameUnique cls_nm) tycon
626
627     gen_list = [(eqClassKey,      gen_Eq_binds)
628                ,(ordClassKey,     gen_Ord_binds)
629                ,(enumClassKey,    gen_Enum_binds)
630                ,(boundedClassKey, gen_Bounded_binds)
631                ,(ixClassKey,      gen_Ix_binds)
632                ,(showClassKey,    gen_Show_binds get_fixity)
633                ,(readClassKey,    gen_Read_binds get_fixity)
634                ]
635 \end{code}
636
637
638 %************************************************************************
639 %*                                                                      *
640 \subsection[TcDeriv-taggery-Names]{What con2tag/tag2con functions are available?}
641 %*                                                                      *
642 %************************************************************************
643
644
645 data Foo ... = ...
646
647 con2tag_Foo :: Foo ... -> Int#
648 tag2con_Foo :: Int -> Foo ...   -- easier if Int, not Int#
649 maxtag_Foo  :: Int              -- ditto (NB: not unlifted)
650
651
652 We have a @con2tag@ function for a tycon if:
653 \begin{itemize}
654 \item
655 We're deriving @Eq@ and the tycon has nullary data constructors.
656
657 \item
658 Or: we're deriving @Ord@ (unless single-constructor), @Enum@, @Ix@
659 (enum type only????)
660 \end{itemize}
661
662 We have a @tag2con@ function for a tycon if:
663 \begin{itemize}
664 \item
665 We're deriving @Enum@, or @Ix@ (enum type only???)
666 \end{itemize}
667
668 If we have a @tag2con@ function, we also generate a @maxtag@ constant.
669
670 \begin{code}
671 gen_taggery_Names :: [DFunId]
672                   -> TcM [(RdrName,     -- for an assoc list
673                            TyCon,       -- related tycon
674                            TagThingWanted)]
675
676 gen_taggery_Names dfuns
677   = foldlTc do_con2tag []           tycons_of_interest `thenTc` \ names_so_far ->
678     foldlTc do_tag2con names_so_far tycons_of_interest
679   where
680     all_CTs = map simpleDFunClassTyCon dfuns
681     all_tycons              = map snd all_CTs
682     (tycons_of_interest, _) = removeDups compare all_tycons
683     
684     do_con2tag acc_Names tycon
685       | isDataTyCon tycon &&
686         ((we_are_deriving eqClassKey tycon
687             && any isNullaryDataCon (tyConDataCons tycon))
688          || (we_are_deriving ordClassKey  tycon
689             && not (maybeToBool (maybeTyConSingleCon tycon)))
690          || (we_are_deriving enumClassKey tycon)
691          || (we_are_deriving ixClassKey   tycon))
692         
693       = returnTc ((con2tag_RDR tycon, tycon, GenCon2Tag)
694                    : acc_Names)
695       | otherwise
696       = returnTc acc_Names
697
698     do_tag2con acc_Names tycon
699       | isDataTyCon tycon &&
700          (we_are_deriving enumClassKey tycon ||
701           we_are_deriving ixClassKey   tycon
702           && isEnumerationTyCon tycon)
703       = returnTc ( (tag2con_RDR tycon, tycon, GenTag2Con)
704                  : (maxtag_RDR  tycon, tycon, GenMaxTag)
705                  : acc_Names)
706       | otherwise
707       = returnTc acc_Names
708
709     we_are_deriving clas_key tycon
710       = is_in_eqns clas_key tycon all_CTs
711       where
712         is_in_eqns clas_key tycon [] = False
713         is_in_eqns clas_key tycon ((c,t):cts)
714           =  (clas_key == classKey c && tycon == t)
715           || is_in_eqns clas_key tycon cts
716 \end{code}
717
718 \begin{code}
719 derivingThingErr clas tys tycon tyvars why
720   = sep [hsep [ptext SLIT("Can't make a derived instance of"), quotes (ppr pred)],
721          parens (ptext why)]
722   where
723     pred = mkClassPred clas (tys ++ [mkTyConApp tycon (mkTyVarTys tyvars)])
724
725 malformedPredErr tycon pred = ptext SLIT("Illegal deriving item") <+> ppr pred
726
727 derivCtxt tycon
728   = ptext SLIT("When deriving classes for") <+> quotes (ppr tycon)
729 \end{code}
730