[project @ 2003-02-04 12:28:22 by simonpj]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcInstDcls.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcInstDecls]{Typechecking instance declarations}
5
6 \begin{code}
7 module TcInstDcls ( tcInstDecls1, tcIfaceInstDecls, 
8                     tcInstDecls2, tcAddDeclCtxt ) where
9
10 #include "HsVersions.h"
11
12
13 import CmdLineOpts      ( DynFlag(..) )
14
15 import HsSyn            ( InstDecl(..), TyClDecl(..), HsType(..),
16                           MonoBinds(..), HsExpr(..),  HsLit(..), Sig(..), HsTyVarBndr(..),
17                           andMonoBindList, collectMonoBinders, 
18                           isClassDecl, isSourceInstDecl, toHsType
19                         )
20 import RnHsSyn          ( RenamedHsBinds, RenamedInstDecl, 
21                           RenamedMonoBinds, RenamedTyClDecl, RenamedHsType, 
22                           extractHsTyVars, maybeGenericMatch
23                         )
24 import TcHsSyn          ( TcMonoBinds, mkHsConApp )
25 import TcBinds          ( tcSpecSigs )
26 import TcClassDcl       ( tcMethodBind, mkMethodBind, badMethodErr )
27 import TcRnMonad       
28 import TcMType          ( tcInstType, checkValidTheta, checkValidInstHead, instTypeErr, 
29                           checkAmbiguity, UserTypeCtxt(..), SourceTyCtxt(..) )
30 import TcType           ( mkClassPred, mkTyVarTy, tcSplitForAllTys, tyVarsOfType,
31                           tcSplitSigmaTy, getClassPredTys, tcSplitPredTy_maybe, mkTyVarTys,
32                           TyVarDetails(..)
33                         )
34 import Inst             ( InstOrigin(..), tcInstClassOp, newDicts, instToId, showLIE )
35 import TcDeriv          ( tcDeriving )
36 import TcEnv            ( tcExtendGlobalValEnv, 
37                           tcLookupClass, tcExtendTyVarEnv2,
38                           tcExtendInstEnv, tcExtendLocalInstEnv, tcLookupGlobalId,
39                           InstInfo(..), InstBindings(..), pprInstInfo, simpleInstInfoTyCon, 
40                           simpleInstInfoTy, newDFunName
41                         )
42 import PprType          ( pprClassPred )
43 import TcMonoType       ( tcHsTyVars, kcHsSigType, tcHsType, tcHsSigType )
44 import TcUnify          ( checkSigTyVars )
45 import TcSimplify       ( tcSimplifyCheck, tcSimplifyTop )
46 import HscTypes         ( DFunId )
47 import Subst            ( mkTyVarSubst, substTheta, substTy )
48 import DataCon          ( classDataCon )
49 import Class            ( Class, classBigSig )
50 import Var              ( idName, idType )
51 import NameSet          
52 import Id               ( setIdLocalExported )
53 import MkId             ( mkDictFunId, rUNTIME_ERROR_ID )
54 import FunDeps          ( checkInstFDs )
55 import Generics         ( validGenericInstanceType )
56 import Name             ( getSrcLoc )
57 import NameSet          ( unitNameSet, emptyNameSet, nameSetToList )
58 import TyCon            ( TyCon )
59 import TysWiredIn       ( genericTyCons )
60 import SrcLoc           ( SrcLoc )
61 import Unique           ( Uniquable(..) )
62 import Util             ( lengthExceeds )
63 import BasicTypes       ( NewOrData(..) )
64 import UnicodeUtil      ( stringToUtf8 )
65 import ErrUtils         ( dumpIfSet_dyn )
66 import ListSetOps       ( Assoc, emptyAssoc, plusAssoc_C, mapAssoc, 
67                           assocElts, extendAssoc_C, equivClassesByUniq, minusList
68                         )
69 import Maybe            ( catMaybes )
70 import List             ( partition )
71 import Outputable
72 import FastString
73 \end{code}
74
75 Typechecking instance declarations is done in two passes. The first
76 pass, made by @tcInstDecls1@, collects information to be used in the
77 second pass.
78
79 This pre-processed info includes the as-yet-unprocessed bindings
80 inside the instance declaration.  These are type-checked in the second
81 pass, when the class-instance envs and GVE contain all the info from
82 all the instance and value decls.  Indeed that's the reason we need
83 two passes over the instance decls.
84
85
86 Here is the overall algorithm.
87 Assume that we have an instance declaration
88
89     instance c => k (t tvs) where b
90
91 \begin{enumerate}
92 \item
93 $LIE_c$ is the LIE for the context of class $c$
94 \item
95 $betas_bar$ is the free variables in the class method type, excluding the
96    class variable
97 \item
98 $LIE_cop$ is the LIE constraining a particular class method
99 \item
100 $tau_cop$ is the tau type of a class method
101 \item
102 $LIE_i$ is the LIE for the context of instance $i$
103 \item
104 $X$ is the instance constructor tycon
105 \item
106 $gammas_bar$ is the set of type variables of the instance
107 \item
108 $LIE_iop$ is the LIE for a particular class method instance
109 \item
110 $tau_iop$ is the tau type for this instance of a class method
111 \item
112 $alpha$ is the class variable
113 \item
114 $LIE_cop' = LIE_cop [X gammas_bar / alpha, fresh betas_bar]$
115 \item
116 $tau_cop' = tau_cop [X gammas_bar / alpha, fresh betas_bar]$
117 \end{enumerate}
118
119 ToDo: Update the list above with names actually in the code.
120
121 \begin{enumerate}
122 \item
123 First, make the LIEs for the class and instance contexts, which means
124 instantiate $thetaC [X inst_tyvars / alpha ]$, yielding LIElistC' and LIEC',
125 and make LIElistI and LIEI.
126 \item
127 Then process each method in turn.
128 \item
129 order the instance methods according to the ordering of the class methods
130 \item
131 express LIEC' in terms of LIEI, yielding $dbinds_super$ or an error
132 \item
133 Create final dictionary function from bindings generated already
134 \begin{pseudocode}
135 df = lambda inst_tyvars
136        lambda LIEI
137          let Bop1
138              Bop2
139              ...
140              Bopn
141          and dbinds_super
142               in <op1,op2,...,opn,sd1,...,sdm>
143 \end{pseudocode}
144 Here, Bop1 \ldots Bopn bind the methods op1 \ldots opn,
145 and $dbinds_super$ bind the superclass dictionaries sd1 \ldots sdm.
146 \end{enumerate}
147
148
149 %************************************************************************
150 %*                                                                      *
151 \subsection{Extracting instance decls}
152 %*                                                                      *
153 %************************************************************************
154
155 Gather up the instance declarations from their various sources
156
157 \begin{code}
158 tcInstDecls1    -- Deal with both source-code and imported instance decls
159    :: [RenamedTyClDecl]         -- For deriving stuff
160    -> [RenamedInstDecl]         -- Source code instance decls
161    -> TcM (TcGblEnv,            -- The full inst env
162            [InstInfo],          -- Source-code instance decls to process; 
163                                 -- contains all dfuns for this module
164            RenamedHsBinds,      -- Supporting bindings for derived instances
165            FreeVars)            -- And the free vars of the derived code
166
167 tcInstDecls1 tycl_decls inst_decls
168   = checkNoErrs $
169         -- Stop if addInstInfos etc discovers any errors
170         -- (they recover, so that we get more than one error each round)
171     let
172       (src_inst_decls, iface_inst_decls) = partition isSourceInstDecl inst_decls
173     in
174
175         -- (0) Deal with the imported instance decls
176     tcIfaceInstDecls iface_inst_decls   `thenM` \ imp_dfuns ->
177     tcExtendInstEnv imp_dfuns           $
178
179         -- (1) Do the ordinary instance declarations
180     mappM tcLocalInstDecl1 src_inst_decls    `thenM` \ local_inst_infos ->
181
182     let
183         local_inst_info = catMaybes local_inst_infos
184         clas_decls      = filter isClassDecl tycl_decls
185     in
186         -- (2) Instances from generic class declarations
187     getGenericInstances clas_decls              `thenM` \ generic_inst_info -> 
188
189         -- Next, construct the instance environment so far, consisting of
190         --      a) imported instance decls (from this module)
191         --      b) local instance decls
192         --      c) generic instances
193     tcExtendLocalInstEnv local_inst_info        $
194     tcExtendLocalInstEnv generic_inst_info      $
195
196         -- (3) Compute instances from "deriving" clauses; 
197         --     note that we only do derivings for things in this module; 
198         --     we ignore deriving decls from interfaces!
199         -- This stuff computes a context for the derived instance decl, so it
200         -- needs to know about all the instances possible; hence inst_env4
201     tcDeriving tycl_decls                       `thenM` \ (deriv_inst_info, deriv_binds, fvs) ->
202     tcExtendLocalInstEnv deriv_inst_info        $
203
204     getGblEnv                                   `thenM` \ gbl_env ->
205     returnM (gbl_env, 
206              generic_inst_info ++ deriv_inst_info ++ local_inst_info,
207              deriv_binds, fvs)
208 \end{code} 
209
210 \begin{code}
211 tcLocalInstDecl1 :: RenamedInstDecl 
212                  -> TcM (Maybe InstInfo)        -- Nothing if there was an error
213         -- A source-file instance declaration
214         -- Type-check all the stuff before the "where"
215         --
216         -- We check for respectable instance type, and context
217         -- but only do this for non-imported instance decls.
218         -- Imported ones should have been checked already, and may indeed
219         -- contain something illegal in normal Haskell, notably
220         --      instance CCallable [Char] 
221 tcLocalInstDecl1 decl@(InstDecl poly_ty binds uprags Nothing src_loc)
222   =     -- Prime error recovery, set source location
223     recoverM (returnM Nothing)          $
224     addSrcLoc src_loc                   $
225     addErrCtxt (instDeclCtxt poly_ty)   $
226
227         -- Typecheck the instance type itself.  We can't use 
228         -- tcHsSigType, because it's not a valid user type.
229     kcHsSigType poly_ty                 `thenM_`
230     tcHsType poly_ty                    `thenM` \ poly_ty' ->
231     let
232         (tyvars, theta, tau) = tcSplitSigmaTy poly_ty'
233     in
234     checkValidTheta InstThetaCtxt theta                 `thenM_`
235     checkAmbiguity tyvars theta (tyVarsOfType tau)      `thenM_`
236     checkValidInstHead tau                              `thenM` \ (clas,inst_tys) ->
237     checkTc (checkInstFDs theta clas inst_tys)
238             (instTypeErr (pprClassPred clas inst_tys) msg)      `thenM_`
239     newDFunName clas inst_tys src_loc                           `thenM` \ dfun_name ->
240     returnM (Just (InstInfo { iDFunId = mkDictFunId dfun_name tyvars theta clas inst_tys,
241                               iBinds = VanillaInst binds uprags }))
242   where
243     msg  = parens (ptext SLIT("the instance types do not agree with the functional dependencies of the class"))
244 \end{code}
245
246 Imported instance declarations
247
248 \begin{code}
249 tcIfaceInstDecls :: [RenamedInstDecl] -> TcM [DFunId]
250 -- Deal with the instance decls, 
251 tcIfaceInstDecls decls = mappM tcIfaceInstDecl decls
252
253 tcIfaceInstDecl :: RenamedInstDecl -> TcM DFunId
254         -- An interface-file instance declaration
255         -- Should be in scope by now, because we should
256         -- have sucked in its interface-file definition
257         -- So it will be replete with its unfolding etc
258 tcIfaceInstDecl decl@(InstDecl poly_ty binds uprags (Just dfun_name) src_loc)
259   = tcLookupGlobalId dfun_name
260 \end{code}
261
262
263 %************************************************************************
264 %*                                                                      *
265 \subsection{Extracting generic instance declaration from class declarations}
266 %*                                                                      *
267 %************************************************************************
268
269 @getGenericInstances@ extracts the generic instance declarations from a class
270 declaration.  For exmaple
271
272         class C a where
273           op :: a -> a
274         
275           op{ x+y } (Inl v)   = ...
276           op{ x+y } (Inr v)   = ...
277           op{ x*y } (v :*: w) = ...
278           op{ 1   } Unit      = ...
279
280 gives rise to the instance declarations
281
282         instance C (x+y) where
283           op (Inl v)   = ...
284           op (Inr v)   = ...
285         
286         instance C (x*y) where
287           op (v :*: w) = ...
288
289         instance C 1 where
290           op Unit      = ...
291
292
293 \begin{code}
294 getGenericInstances :: [RenamedTyClDecl] -> TcM [InstInfo] 
295 getGenericInstances class_decls
296   = mappM get_generics class_decls              `thenM` \ gen_inst_infos ->
297     let
298         gen_inst_info = concat gen_inst_infos
299     in
300     if null gen_inst_info then
301         returnM []
302     else
303     getDOpts                                            `thenM`  \ dflags ->
304     ioToTcRn (dumpIfSet_dyn dflags Opt_D_dump_deriv "Generic instances" 
305                     (vcat (map pprInstInfo gen_inst_info)))     
306                                                         `thenM_`
307     returnM gen_inst_info
308
309 get_generics decl@(ClassDecl {tcdMeths = Nothing})
310   = returnM []  -- Imported class decls
311
312 get_generics decl@(ClassDecl {tcdName = class_name, tcdMeths = Just def_methods, tcdLoc = loc})
313   | null groups         
314   = returnM [] -- The comon case: no generic default methods
315
316   | otherwise   -- A source class decl with generic default methods
317   = recoverM (returnM [])                               $
318     tcAddDeclCtxt decl                                  $
319     tcLookupClass class_name                            `thenM` \ clas ->
320
321         -- Make an InstInfo out of each group
322     mappM (mkGenericInstance clas loc) groups           `thenM` \ inst_infos ->
323
324         -- Check that there is only one InstInfo for each type constructor
325         -- The main way this can fail is if you write
326         --      f {| a+b |} ... = ...
327         --      f {| x+y |} ... = ...
328         -- Then at this point we'll have an InstInfo for each
329     let
330         tc_inst_infos :: [(TyCon, InstInfo)]
331         tc_inst_infos = [(simpleInstInfoTyCon i, i) | i <- inst_infos]
332
333         bad_groups = [group | group <- equivClassesByUniq get_uniq tc_inst_infos,
334                               group `lengthExceeds` 1]
335         get_uniq (tc,_) = getUnique tc
336     in
337     mappM (addErrTc . dupGenericInsts) bad_groups       `thenM_`
338
339         -- Check that there is an InstInfo for each generic type constructor
340     let
341         missing = genericTyCons `minusList` [tc | (tc,_) <- tc_inst_infos]
342     in
343     checkTc (null missing) (missingGenericInstances missing)    `thenM_`
344
345     returnM inst_infos
346
347   where
348         -- Group the declarations by type pattern
349         groups :: [(RenamedHsType, RenamedMonoBinds)]
350         groups = assocElts (getGenericBinds def_methods)
351
352
353 ---------------------------------
354 getGenericBinds :: RenamedMonoBinds -> Assoc RenamedHsType RenamedMonoBinds
355   -- Takes a group of method bindings, finds the generic ones, and returns
356   -- them in finite map indexed by the type parameter in the definition.
357
358 getGenericBinds EmptyMonoBinds    = emptyAssoc
359 getGenericBinds (AndMonoBinds m1 m2) 
360   = plusAssoc_C AndMonoBinds (getGenericBinds m1) (getGenericBinds m2)
361
362 getGenericBinds (FunMonoBind id infixop matches loc)
363   = mapAssoc wrap (foldl add emptyAssoc matches)
364         -- Using foldl not foldr is vital, else
365         -- we reverse the order of the bindings!
366   where
367     add env match = case maybeGenericMatch match of
368                       Nothing           -> env
369                       Just (ty, match') -> extendAssoc_C (++) env (ty, [match'])
370
371     wrap ms = FunMonoBind id infixop ms loc
372
373 ---------------------------------
374 mkGenericInstance :: Class -> SrcLoc
375                   -> (RenamedHsType, RenamedMonoBinds)
376                   -> TcM InstInfo
377
378 mkGenericInstance clas loc (hs_ty, binds)
379   -- Make a generic instance declaration
380   -- For example:       instance (C a, C b) => C (a+b) where { binds }
381
382   =     -- Extract the universally quantified type variables
383     let
384         sig_tvs = map UserTyVar (nameSetToList (extractHsTyVars hs_ty))
385     in
386     tcHsTyVars sig_tvs (kcHsSigType hs_ty)      $ \ tyvars ->
387
388         -- Type-check the instance type, and check its form
389     tcHsSigType GenPatCtxt hs_ty                `thenM` \ inst_ty ->
390     checkTc (validGenericInstanceType inst_ty)
391             (badGenericInstanceType binds)      `thenM_`
392
393         -- Make the dictionary function.
394     newDFunName clas [inst_ty] loc              `thenM` \ dfun_name ->
395     let
396         inst_theta = [mkClassPred clas [mkTyVarTy tv] | tv <- tyvars]
397         dfun_id    = mkDictFunId dfun_name tyvars inst_theta clas [inst_ty]
398     in
399
400     returnM (InstInfo { iDFunId = dfun_id, iBinds = VanillaInst binds [] })
401 \end{code}
402
403
404 %************************************************************************
405 %*                                                                      *
406 \subsection{Type-checking instance declarations, pass 2}
407 %*                                                                      *
408 %************************************************************************
409
410 \begin{code}
411 tcInstDecls2 :: [InstInfo] -> TcM TcMonoBinds
412 tcInstDecls2 inst_decls
413   = mappM tcInstDecl2 inst_decls        `thenM` \ binds_s ->
414     returnM (andMonoBindList binds_s)
415 \end{code}
416
417 ======= New documentation starts here (Sept 92)  ==============
418
419 The main purpose of @tcInstDecl2@ is to return a @HsBinds@ which defines
420 the dictionary function for this instance declaration.  For example
421 \begin{verbatim}
422         instance Foo a => Foo [a] where
423                 op1 x = ...
424                 op2 y = ...
425 \end{verbatim}
426 might generate something like
427 \begin{verbatim}
428         dfun.Foo.List dFoo_a = let op1 x = ...
429                                    op2 y = ...
430                                in
431                                    Dict [op1, op2]
432 \end{verbatim}
433
434 HOWEVER, if the instance decl has no context, then it returns a
435 bigger @HsBinds@ with declarations for each method.  For example
436 \begin{verbatim}
437         instance Foo [a] where
438                 op1 x = ...
439                 op2 y = ...
440 \end{verbatim}
441 might produce
442 \begin{verbatim}
443         dfun.Foo.List a = Dict [Foo.op1.List a, Foo.op2.List a]
444         const.Foo.op1.List a x = ...
445         const.Foo.op2.List a y = ...
446 \end{verbatim}
447 This group may be mutually recursive, because (for example) there may
448 be no method supplied for op2 in which case we'll get
449 \begin{verbatim}
450         const.Foo.op2.List a = default.Foo.op2 (dfun.Foo.List a)
451 \end{verbatim}
452 that is, the default method applied to the dictionary at this type.
453
454 What we actually produce in either case is:
455
456         AbsBinds [a] [dfun_theta_dicts]
457                  [(dfun.Foo.List, d)] ++ (maybe) [(const.Foo.op1.List, op1), ...]
458                  { d = (sd1,sd2, ..., op1, op2, ...)
459                    op1 = ...
460                    op2 = ...
461                  }
462
463 The "maybe" says that we only ask AbsBinds to make global constant methods
464 if the dfun_theta is empty.
465
466                 
467 For an instance declaration, say,
468
469         instance (C1 a, C2 b) => C (T a b) where
470                 ...
471
472 where the {\em immediate} superclasses of C are D1, D2, we build a dictionary
473 function whose type is
474
475         (C1 a, C2 b, D1 (T a b), D2 (T a b)) => C (T a b)
476
477 Notice that we pass it the superclass dictionaries at the instance type; this
478 is the ``Mark Jones optimisation''.  The stuff before the "=>" here
479 is the @dfun_theta@ below.
480
481 First comes the easy case of a non-local instance decl.
482
483
484 \begin{code}
485 tcInstDecl2 :: InstInfo -> TcM TcMonoBinds
486
487 tcInstDecl2 (InstInfo { iDFunId = dfun_id, iBinds = binds })
488   =      -- Prime error recovery
489     recoverM (returnM EmptyMonoBinds)   $
490     addSrcLoc (getSrcLoc dfun_id)                               $
491     addErrCtxt (instDeclCtxt (toHsType (idType dfun_id)))       $
492     let
493         inst_ty = idType dfun_id
494         (inst_tyvars, _) = tcSplitForAllTys inst_ty
495                 -- The tyvars of the instance decl scope over the 'where' part
496                 -- Those tyvars are inside the dfun_id's type, which is a bit
497                 -- bizarre, but OK so long as you realise it!
498     in
499
500         -- Instantiate the instance decl with tc-style type variables
501     tcInstType InstTv inst_ty           `thenM` \ (inst_tyvars', dfun_theta', inst_head') ->
502     let
503         Just pred         = tcSplitPredTy_maybe inst_head'
504         (clas, inst_tys') = getClassPredTys pred
505         (class_tyvars, sc_theta, _, op_items) = classBigSig clas
506
507         -- Instantiate the super-class context with inst_tys
508         sc_theta' = substTheta (mkTyVarSubst class_tyvars inst_tys') sc_theta
509         origin    = InstanceDeclOrigin
510     in
511          -- Create dictionary Ids from the specified instance contexts.
512     newDicts origin sc_theta'           `thenM` \ sc_dicts ->
513     newDicts origin dfun_theta'         `thenM` \ dfun_arg_dicts ->
514     newDicts origin [pred]              `thenM` \ [this_dict] ->
515                 -- Default-method Ids may be mentioned in synthesised RHSs,
516                 -- but they'll already be in the environment.
517
518         ------------------
519         -- Typecheck the methods
520     let         -- These insts are in scope; quite a few, eh?
521         avail_insts = [this_dict] ++ dfun_arg_dicts ++ sc_dicts
522     in
523     tcMethods clas inst_tyvars inst_tyvars' 
524               dfun_theta' inst_tys' avail_insts 
525               op_items binds            `thenM` \ (meth_ids, meth_binds) ->
526
527         -- Figure out bindings for the superclass context
528     tcSuperClasses inst_tyvars' dfun_arg_dicts sc_dicts 
529                 `thenM` \ (zonked_inst_tyvars, sc_binds_inner, sc_binds_outer) ->
530
531         -- Deal with 'SPECIALISE instance' pragmas by making them
532         -- look like SPECIALISE pragmas for the dfun
533     let
534         uprags = case binds of
535                        VanillaInst _ uprags -> uprags
536                        other                -> []
537         spec_prags = [ SpecSig (idName dfun_id) ty loc
538                      | SpecInstSig ty loc <- uprags ]
539         xtve = inst_tyvars `zip` inst_tyvars'
540     in
541     tcExtendGlobalValEnv [dfun_id] (
542         tcExtendTyVarEnv2 xtve          $
543         tcSpecSigs spec_prags
544     )                                   `thenM` \ prag_binds ->
545
546         -- Create the result bindings
547     let
548         dict_constr   = classDataCon clas
549         scs_and_meths = map instToId sc_dicts ++ meth_ids
550         this_dict_id  = instToId this_dict
551         inlines       | null dfun_arg_dicts = emptyNameSet
552                       | otherwise           = unitNameSet (idName dfun_id)
553                 -- Always inline the dfun; this is an experimental decision
554                 -- because it makes a big performance difference sometimes.
555                 -- Often it means we can do the method selection, and then
556                 -- inline the method as well.  Marcin's idea; see comments below.
557                 --
558                 -- BUT: don't inline it if it's a constant dictionary;
559                 -- we'll get all the benefit without inlining, and we get
560                 -- a **lot** of code duplication if we inline it
561                 --
562                 --      See Note [Inline dfuns] below
563
564         dict_rhs
565           | null scs_and_meths
566           =     -- Blatant special case for CCallable, CReturnable
567                 -- If the dictionary is empty then we should never
568                 -- select anything from it, so we make its RHS just
569                 -- emit an error message.  This in turn means that we don't
570                 -- mention the constructor, which doesn't exist for CCallable, CReturnable
571                 -- Hardly beautiful, but only three extra lines.
572             HsApp (TyApp (HsVar rUNTIME_ERROR_ID) [idType this_dict_id])
573                   (HsLit (HsStringPrim (mkFastString (stringToUtf8 msg))))
574
575           | otherwise   -- The common case
576           = mkHsConApp dict_constr inst_tys' (map HsVar scs_and_meths)
577                 -- We don't produce a binding for the dict_constr; instead we
578                 -- rely on the simplifier to unfold this saturated application
579                 -- We do this rather than generate an HsCon directly, because
580                 -- it means that the special cases (e.g. dictionary with only one
581                 -- member) are dealt with by the common MkId.mkDataConWrapId code rather
582                 -- than needing to be repeated here.
583
584           where
585             msg = "Compiler error: bad dictionary " ++ showSDoc (ppr clas)
586
587         dict_bind  = VarMonoBind this_dict_id dict_rhs
588         all_binds  = sc_binds_inner `AndMonoBinds` meth_binds `AndMonoBinds` dict_bind
589
590         main_bind = AbsBinds
591                          zonked_inst_tyvars
592                          (map instToId dfun_arg_dicts)
593                          [(inst_tyvars', dfun_id, this_dict_id)] 
594                          inlines all_binds
595     in
596     showLIE "instance"          `thenM_`
597     returnM (main_bind `AndMonoBinds` prag_binds `AndMonoBinds` sc_binds_outer)
598
599
600 tcMethods clas inst_tyvars inst_tyvars' dfun_theta' inst_tys' 
601           avail_insts op_items (VanillaInst monobinds uprags)
602   =     -- Check that all the method bindings come from this class
603     let
604         sel_names = [idName sel_id | (sel_id, _) <- op_items]
605         bad_bndrs = collectMonoBinders monobinds `minusList` sel_names
606     in
607     mappM (addErrTc . badMethodErr clas) bad_bndrs      `thenM_`
608
609         -- Make the method bindings
610     let
611         mk_method_bind = mkMethodBind InstanceDeclOrigin clas inst_tys' monobinds
612     in
613     mapAndUnzipM mk_method_bind op_items        `thenM` \ (meth_insts, meth_infos) ->
614
615         -- And type check them
616         -- It's really worth making meth_insts available to the tcMethodBind
617         -- Consider     instance Monad (ST s) where
618         --                {-# INLINE (>>) #-}
619         --                (>>) = ...(>>=)...
620         -- If we don't include meth_insts, we end up with bindings like this:
621         --      rec { dict = MkD then bind ...
622         --            then = inline_me (... (GHC.Base.>>= dict) ...)
623         --            bind = ... }
624         -- The trouble is that (a) 'then' and 'dict' are mutually recursive, 
625         -- and (b) the inline_me prevents us inlining the >>= selector, which
626         -- would unravel the loop.  Result: (>>) ends up as a loop breaker, and
627         -- is not inlined across modules. Rather ironic since this does not
628         -- happen without the INLINE pragma!  
629         --
630         -- Solution: make meth_insts available, so that 'then' refers directly
631         --           to the local 'bind' rather than going via the dictionary.
632     let
633         all_insts      = avail_insts ++ catMaybes meth_insts
634         xtve           = inst_tyvars `zip` inst_tyvars'
635         tc_method_bind = tcMethodBind xtve inst_tyvars' dfun_theta' all_insts uprags 
636     in
637     mapM tc_method_bind meth_infos              `thenM` \ meth_binds_s ->
638    
639     returnM ([meth_id | (_,meth_id,_) <- meth_infos], 
640              andMonoBindList meth_binds_s)
641
642
643 -- Derived newtype instances
644 tcMethods clas inst_tyvars inst_tyvars' dfun_theta' inst_tys' 
645           avail_insts op_items (NewTypeDerived rep_tys)
646   = getInstLoc InstanceDeclOrigin               `thenM` \ inst_loc ->
647     mapAndUnzip3M (do_one inst_loc) op_items    `thenM` \ (meth_ids, meth_binds, rhs_insts) ->
648     
649     tcSimplifyCheck
650          (ptext SLIT("newtype derived instance"))
651          inst_tyvars' avail_insts rhs_insts     `thenM` \ lie_binds ->
652
653         -- I don't think we have to do the checkSigTyVars thing
654
655     returnM (meth_ids, lie_binds `AndMonoBinds` andMonoBindList meth_binds)
656
657   where
658     do_one inst_loc (sel_id, _)
659         = -- The binding is like "op @ NewTy = op @ RepTy"
660                 -- Make the *binder*, like in mkMethodBind
661           tcInstClassOp inst_loc sel_id inst_tys'       `thenM` \ meth_inst ->
662
663                 -- Make the *occurrence on the rhs*
664           tcInstClassOp inst_loc sel_id rep_tys'        `thenM` \ rhs_inst ->
665           let
666              meth_id = instToId meth_inst
667           in
668           return (meth_id, VarMonoBind meth_id (HsVar (instToId rhs_inst)), rhs_inst)
669
670         -- Instantiate rep_tys with the relevant type variables
671     rep_tys' = map (substTy subst) rep_tys
672     subst    = mkTyVarSubst inst_tyvars (mkTyVarTys inst_tyvars')
673 \end{code}
674
675 Note: [Superclass loops]
676 ~~~~~~~~~~~~~~~~~~~~~~~~~
677 We have to be very, very careful when generating superclasses, lest we
678 accidentally build a loop. Here's an example:
679
680   class S a
681
682   class S a => C a where { opc :: a -> a }
683   class S b => D b where { opd :: b -> b }
684   
685   instance C Int where
686      opc = opd
687   
688   instance D Int where
689      opd = opc
690
691 From (instance C Int) we get the constraint set {ds1:S Int, dd:D Int}
692 Simplifying, we may well get:
693         $dfCInt = :C ds1 (opd dd)
694         dd  = $dfDInt
695         ds1 = $p1 dd
696 Notice that we spot that we can extract ds1 from dd.  
697
698 Alas!  Alack! We can do the same for (instance D Int):
699
700         $dfDInt = :D ds2 (opc dc)
701         dc  = $dfCInt
702         ds2 = $p1 dc
703
704 And now we've defined the superclass in terms of itself.
705
706
707 Solution: treat the superclass context separately, and simplify it
708 all the way down to nothing on its own.  Don't toss any 'free' parts
709 out to be simplified together with other bits of context.
710 Hence the tcSimplifyTop below.
711
712 At a more basic level, don't include this_dict in the context wrt
713 which we simplify sc_dicts, else sc_dicts get bound by just selecting
714 from this_dict!!
715
716 \begin{code}
717 tcSuperClasses inst_tyvars' dfun_arg_dicts sc_dicts
718   = addErrCtxt superClassCtxt   $
719     getLIE (tcSimplifyCheck doc inst_tyvars'
720                             dfun_arg_dicts
721                             sc_dicts)           `thenM` \ (sc_binds1, sc_lie) ->
722
723         -- It's possible that the superclass stuff might have done unification
724     checkSigTyVars inst_tyvars'         `thenM` \ zonked_inst_tyvars ->
725
726         -- We must simplify this all the way down 
727         -- lest we build superclass loops
728         -- See Note [Superclass loops] above
729     tcSimplifyTop sc_lie                `thenM` \ sc_binds2 ->
730
731     returnM (zonked_inst_tyvars, sc_binds1, sc_binds2)
732
733   where
734     doc = ptext SLIT("instance declaration superclass context")
735 \end{code}
736
737
738                 ------------------------------
739         [Inline dfuns] Inlining dfuns unconditionally
740                 ------------------------------
741
742 The code above unconditionally inlines dict funs.  Here's why.
743 Consider this program:
744
745     test :: Int -> Int -> Bool
746     test x y = (x,y) == (y,x) || test y x
747     -- Recursive to avoid making it inline.
748
749 This needs the (Eq (Int,Int)) instance.  If we inline that dfun
750 the code we end up with is good:
751
752     Test.$wtest =
753         \r -> case ==# [ww ww1] of wild {
754                 PrelBase.False -> Test.$wtest ww1 ww;
755                 PrelBase.True ->
756                   case ==# [ww1 ww] of wild1 {
757                     PrelBase.False -> Test.$wtest ww1 ww;
758                     PrelBase.True -> PrelBase.True [];
759                   };
760             };
761     Test.test = \r [w w1]
762             case w of w2 {
763               PrelBase.I# ww ->
764                   case w1 of w3 { PrelBase.I# ww1 -> Test.$wtest ww ww1; };
765             };
766
767 If we don't inline the dfun, the code is not nearly as good:
768
769     (==) = case PrelTup.$fEq(,) PrelBase.$fEqInt PrelBase.$fEqInt of tpl {
770               PrelBase.:DEq tpl1 tpl2 -> tpl2;
771             };
772     
773     Test.$wtest =
774         \r [ww ww1]
775             let { y = PrelBase.I#! [ww1]; } in
776             let { x = PrelBase.I#! [ww]; } in
777             let { sat_slx = PrelTup.(,)! [y x]; } in
778             let { sat_sly = PrelTup.(,)! [x y];
779             } in
780               case == sat_sly sat_slx of wild {
781                 PrelBase.False -> Test.$wtest ww1 ww;
782                 PrelBase.True -> PrelBase.True [];
783               };
784     
785     Test.test =
786         \r [w w1]
787             case w of w2 {
788               PrelBase.I# ww ->
789                   case w1 of w3 { PrelBase.I# ww1 -> Test.$wtest ww ww1; };
790             };
791
792 Why doesn't GHC inline $fEq?  Because it looks big:
793
794     PrelTup.zdfEqZ1T{-rcX-}
795         = \ @ a{-reT-} :: * @ b{-reS-} :: *
796             zddEq{-rf6-} _Ks :: {PrelBase.Eq{-23-} a{-reT-}}
797             zddEq1{-rf7-} _Ks :: {PrelBase.Eq{-23-} b{-reS-}} ->
798             let {
799               zeze{-rf0-} _Kl :: (b{-reS-} -> b{-reS-} -> PrelBase.Bool{-3c-})
800               zeze{-rf0-} = PrelBase.zeze{-01L-}@ b{-reS-} zddEq1{-rf7-} } in
801             let {
802               zeze1{-rf3-} _Kl :: (a{-reT-} -> a{-reT-} -> PrelBase.Bool{-3c-})
803               zeze1{-rf3-} = PrelBase.zeze{-01L-} @ a{-reT-} zddEq{-rf6-} } in
804             let {
805               zeze2{-reN-} :: ((a{-reT-}, b{-reS-}) -> (a{-reT-}, b{-reS-})-> PrelBase.Bool{-3c-})
806               zeze2{-reN-} = \ ds{-rf5-} _Ks :: (a{-reT-}, b{-reS-})
807                                ds1{-rf4-} _Ks :: (a{-reT-}, b{-reS-}) ->
808                              case ds{-rf5-}
809                              of wild{-reW-} _Kd { (a1{-rf2-} _Ks, a2{-reZ-} _Ks) ->
810                              case ds1{-rf4-}
811                              of wild1{-reX-} _Kd { (b1{-rf1-} _Ks, b2{-reY-} _Ks) ->
812                              PrelBase.zaza{-r4e-}
813                                (zeze1{-rf3-} a1{-rf2-} b1{-rf1-})
814                                (zeze{-rf0-} a2{-reZ-} b2{-reY-})
815                              }
816                              } } in     
817             let {
818               a1{-reR-} :: ((a{-reT-}, b{-reS-})-> (a{-reT-}, b{-reS-})-> PrelBase.Bool{-3c-})
819               a1{-reR-} = \ a2{-reV-} _Ks :: (a{-reT-}, b{-reS-})
820                             b1{-reU-} _Ks :: (a{-reT-}, b{-reS-}) ->
821                           PrelBase.not{-r6I-} (zeze2{-reN-} a2{-reV-} b1{-reU-})
822             } in
823               PrelBase.zdwZCDEq{-r8J-} @ (a{-reT-}, b{-reS-}) a1{-reR-} zeze2{-reN-})
824
825 and it's not as bad as it seems, because it's further dramatically
826 simplified: only zeze2 is extracted and its body is simplified.
827
828
829 %************************************************************************
830 %*                                                                      *
831 \subsection{Error messages}
832 %*                                                                      *
833 %************************************************************************
834
835 \begin{code}
836 tcAddDeclCtxt decl thing_inside
837   = addSrcLoc (tcdLoc decl)     $
838     addErrCtxt ctxt     $
839     thing_inside
840   where
841      thing = case decl of
842                 ClassDecl {}              -> "class"
843                 TySynonym {}              -> "type synonym"
844                 TyData {tcdND = NewType}  -> "newtype"
845                 TyData {tcdND = DataType} -> "data type"
846
847      ctxt = hsep [ptext SLIT("In the"), text thing, 
848                   ptext SLIT("declaration for"), quotes (ppr (tcdName decl))]
849
850 instDeclCtxt inst_ty = ptext SLIT("In the instance declaration for") <+> quotes doc
851                      where
852                         doc = case inst_ty of
853                                 HsForAllTy _ _ (HsPredTy pred) -> ppr pred
854                                 HsPredTy pred                  -> ppr pred
855                                 other                          -> ppr inst_ty   -- Don't expect this
856 \end{code}
857
858 \begin{code}
859 badGenericInstanceType binds
860   = vcat [ptext SLIT("Illegal type pattern in the generic bindings"),
861           nest 4 (ppr binds)]
862
863 missingGenericInstances missing
864   = ptext SLIT("Missing type patterns for") <+> pprQuotedList missing
865           
866 dupGenericInsts tc_inst_infos
867   = vcat [ptext SLIT("More than one type pattern for a single generic type constructor:"),
868           nest 4 (vcat (map ppr_inst_ty tc_inst_infos)),
869           ptext SLIT("All the type patterns for a generic type constructor must be identical")
870     ]
871   where 
872     ppr_inst_ty (tc,inst) = ppr (simpleInstInfoTy inst)
873
874 methodCtxt     = ptext SLIT("When checking the methods of an instance declaration")
875 superClassCtxt = ptext SLIT("When checking the super-classes of an instance declaration")
876 \end{code}