04fbafb5b199dbe25cdc7f8d321bfcb38723e390
[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, tcInstDecls2 ) where
8
9 #include "HsVersions.h"
10
11 import HsSyn
12 import TcBinds          ( mkPragFun, tcPrags, badBootDeclErr )
13 import TcClassDcl       ( tcMethodBind, mkMethodBind, badMethodErr, 
14                           tcClassDecl2, getGenericInstances )
15 import TcRnMonad       
16 import TcMType          ( tcSkolSigType, checkValidTheta, checkValidInstHead, instTypeErr, 
17                           checkAmbiguity, SourceTyCtxt(..) )
18 import TcType           ( mkClassPred, tyVarsOfType, 
19                           tcSplitSigmaTy, tcSplitDFunHead, mkTyVarTys,
20                           SkolemInfo(InstSkol), tcSplitDFunTy, pprClassPred )
21 import Inst             ( tcInstClassOp, newDicts, instToId, showLIE, 
22                           getOverlapFlag, tcExtendLocalInstEnv )
23 import InstEnv          ( mkLocalInstance, instanceDFunId )
24 import TcDeriv          ( tcDeriving )
25 import TcEnv            ( InstInfo(..), InstBindings(..), 
26                           newDFunName, tcExtendIdEnv
27                         )
28 import TcHsType         ( kcHsSigType, tcHsKindedType )
29 import TcUnify          ( checkSigTyVars )
30 import TcSimplify       ( tcSimplifyCheck, tcSimplifySuperClasses )
31 import Type             ( zipOpenTvSubst, substTheta, substTys )
32 import DataCon          ( classDataCon )
33 import Class            ( classBigSig )
34 import Var              ( Id, idName, idType )
35 import MkId             ( mkDictFunId, rUNTIME_ERROR_ID )
36 import FunDeps          ( checkInstFDs )
37 import Name             ( Name, getSrcLoc )
38 import Maybe            ( catMaybes )
39 import SrcLoc           ( srcLocSpan, unLoc, noLoc, Located(..), srcSpanStart )
40 import ListSetOps       ( minusList )
41 import Outputable
42 import Bag
43 import BasicTypes       ( Activation( AlwaysActive ), InlineSpec(..) )
44 import FastString
45 \end{code}
46
47 Typechecking instance declarations is done in two passes. The first
48 pass, made by @tcInstDecls1@, collects information to be used in the
49 second pass.
50
51 This pre-processed info includes the as-yet-unprocessed bindings
52 inside the instance declaration.  These are type-checked in the second
53 pass, when the class-instance envs and GVE contain all the info from
54 all the instance and value decls.  Indeed that's the reason we need
55 two passes over the instance decls.
56
57
58 Here is the overall algorithm.
59 Assume that we have an instance declaration
60
61     instance c => k (t tvs) where b
62
63 \begin{enumerate}
64 \item
65 $LIE_c$ is the LIE for the context of class $c$
66 \item
67 $betas_bar$ is the free variables in the class method type, excluding the
68    class variable
69 \item
70 $LIE_cop$ is the LIE constraining a particular class method
71 \item
72 $tau_cop$ is the tau type of a class method
73 \item
74 $LIE_i$ is the LIE for the context of instance $i$
75 \item
76 $X$ is the instance constructor tycon
77 \item
78 $gammas_bar$ is the set of type variables of the instance
79 \item
80 $LIE_iop$ is the LIE for a particular class method instance
81 \item
82 $tau_iop$ is the tau type for this instance of a class method
83 \item
84 $alpha$ is the class variable
85 \item
86 $LIE_cop' = LIE_cop [X gammas_bar / alpha, fresh betas_bar]$
87 \item
88 $tau_cop' = tau_cop [X gammas_bar / alpha, fresh betas_bar]$
89 \end{enumerate}
90
91 ToDo: Update the list above with names actually in the code.
92
93 \begin{enumerate}
94 \item
95 First, make the LIEs for the class and instance contexts, which means
96 instantiate $thetaC [X inst_tyvars / alpha ]$, yielding LIElistC' and LIEC',
97 and make LIElistI and LIEI.
98 \item
99 Then process each method in turn.
100 \item
101 order the instance methods according to the ordering of the class methods
102 \item
103 express LIEC' in terms of LIEI, yielding $dbinds_super$ or an error
104 \item
105 Create final dictionary function from bindings generated already
106 \begin{pseudocode}
107 df = lambda inst_tyvars
108        lambda LIEI
109          let Bop1
110              Bop2
111              ...
112              Bopn
113          and dbinds_super
114               in <op1,op2,...,opn,sd1,...,sdm>
115 \end{pseudocode}
116 Here, Bop1 \ldots Bopn bind the methods op1 \ldots opn,
117 and $dbinds_super$ bind the superclass dictionaries sd1 \ldots sdm.
118 \end{enumerate}
119
120
121 %************************************************************************
122 %*                                                                      *
123 \subsection{Extracting instance decls}
124 %*                                                                      *
125 %************************************************************************
126
127 Gather up the instance declarations from their various sources
128
129 \begin{code}
130 tcInstDecls1    -- Deal with both source-code and imported instance decls
131    :: [LTyClDecl Name]          -- For deriving stuff
132    -> [LInstDecl Name]          -- Source code instance decls
133    -> TcM (TcGblEnv,            -- The full inst env
134            [InstInfo],          -- Source-code instance decls to process; 
135                                 -- contains all dfuns for this module
136            HsValBinds Name)     -- Supporting bindings for derived instances
137
138 tcInstDecls1 tycl_decls inst_decls
139   = checkNoErrs $
140         -- Stop if addInstInfos etc discovers any errors
141         -- (they recover, so that we get more than one error each round)
142
143         -- (1) Do the ordinary instance declarations
144     mappM tcLocalInstDecl1 inst_decls    `thenM` \ local_inst_infos ->
145
146     let
147         local_inst_info = catMaybes local_inst_infos
148         clas_decls      = filter (isClassDecl.unLoc) tycl_decls
149     in
150         -- (2) Instances from generic class declarations
151     getGenericInstances clas_decls      `thenM` \ generic_inst_info -> 
152
153         -- Next, construct the instance environment so far, consisting of
154         --      a) local instance decls
155         --      b) generic instances
156     addInsts local_inst_info    $
157     addInsts generic_inst_info  $
158
159         -- (3) Compute instances from "deriving" clauses; 
160         -- This stuff computes a context for the derived instance decl, so it
161         -- needs to know about all the instances possible; hence inst_env4
162     tcDeriving tycl_decls       `thenM` \ (deriv_inst_info, deriv_binds) ->
163     addInsts deriv_inst_info    $
164
165     getGblEnv                   `thenM` \ gbl_env ->
166     returnM (gbl_env, 
167              generic_inst_info ++ deriv_inst_info ++ local_inst_info,
168              deriv_binds)
169
170 addInsts :: [InstInfo] -> TcM a -> TcM a
171 addInsts infos thing_inside
172   = tcExtendLocalInstEnv (map iSpec infos) thing_inside
173 \end{code} 
174
175 \begin{code}
176 tcLocalInstDecl1 :: LInstDecl Name 
177                  -> TcM (Maybe InstInfo)        -- Nothing if there was an error
178         -- A source-file instance declaration
179         -- Type-check all the stuff before the "where"
180         --
181         -- We check for respectable instance type, and context
182         -- but only do this for non-imported instance decls.
183         -- Imported ones should have been checked already, and may indeed
184         -- contain something illegal in normal Haskell, notably
185         --      instance CCallable [Char] 
186 tcLocalInstDecl1 decl@(L loc (InstDecl poly_ty binds uprags))
187   =     -- Prime error recovery, set source location
188     recoverM (returnM Nothing)          $
189     setSrcSpan loc                      $
190     addErrCtxt (instDeclCtxt1 poly_ty)  $
191
192         -- Typecheck the instance type itself.  We can't use 
193         -- tcHsSigType, because it's not a valid user type.
194     kcHsSigType poly_ty                 `thenM` \ kinded_ty ->
195     tcHsKindedType kinded_ty            `thenM` \ poly_ty' ->
196     let
197         (tyvars, theta, tau) = tcSplitSigmaTy poly_ty'
198     in
199     checkValidTheta InstThetaCtxt theta                 `thenM_`
200     checkAmbiguity tyvars theta (tyVarsOfType tau)      `thenM_`
201     checkValidInstHead tau                              `thenM` \ (clas,inst_tys) ->
202     checkTc (checkInstFDs theta clas inst_tys)
203             (instTypeErr (pprClassPred clas inst_tys) msg)      `thenM_`
204     newDFunName clas inst_tys (srcSpanStart loc)                `thenM` \ dfun_name ->
205     getOverlapFlag                                              `thenM` \ overlap_flag ->
206     let dfun  = mkDictFunId dfun_name tyvars theta clas inst_tys
207         ispec = mkLocalInstance dfun overlap_flag
208     in
209
210     tcIsHsBoot                                          `thenM` \ is_boot ->
211     checkTc (not is_boot || (isEmptyLHsBinds binds && null uprags))
212             badBootDeclErr                              `thenM_`
213
214     returnM (Just (InstInfo { iSpec = ispec, iBinds = VanillaInst binds uprags }))
215   where
216     msg  = parens (ptext SLIT("the instance types do not agree with the functional dependencies of the class"))
217 \end{code}
218
219
220 %************************************************************************
221 %*                                                                      *
222 \subsection{Type-checking instance declarations, pass 2}
223 %*                                                                      *
224 %************************************************************************
225
226 \begin{code}
227 tcInstDecls2 :: [LTyClDecl Name] -> [InstInfo] 
228              -> TcM (LHsBinds Id, TcLclEnv)
229 -- (a) From each class declaration, 
230 --      generate any default-method bindings
231 -- (b) From each instance decl
232 --      generate the dfun binding
233
234 tcInstDecls2 tycl_decls inst_decls
235   = do  {       -- (a) Default methods from class decls
236           (dm_binds_s, dm_ids_s) <- mapAndUnzipM tcClassDecl2 $
237                                     filter (isClassDecl.unLoc) tycl_decls
238         ; tcExtendIdEnv (concat dm_ids_s)       $ do 
239     
240                 -- (b) instance declarations
241         ; inst_binds_s <- mappM tcInstDecl2 inst_decls
242
243                 -- Done
244         ; let binds = unionManyBags dm_binds_s `unionBags` 
245                       unionManyBags inst_binds_s
246         ; tcl_env <- getLclEnv          -- Default method Ids in here
247         ; returnM (binds, tcl_env) }
248 \end{code}
249
250 ======= New documentation starts here (Sept 92)  ==============
251
252 The main purpose of @tcInstDecl2@ is to return a @HsBinds@ which defines
253 the dictionary function for this instance declaration.  For example
254 \begin{verbatim}
255         instance Foo a => Foo [a] where
256                 op1 x = ...
257                 op2 y = ...
258 \end{verbatim}
259 might generate something like
260 \begin{verbatim}
261         dfun.Foo.List dFoo_a = let op1 x = ...
262                                    op2 y = ...
263                                in
264                                    Dict [op1, op2]
265 \end{verbatim}
266
267 HOWEVER, if the instance decl has no context, then it returns a
268 bigger @HsBinds@ with declarations for each method.  For example
269 \begin{verbatim}
270         instance Foo [a] where
271                 op1 x = ...
272                 op2 y = ...
273 \end{verbatim}
274 might produce
275 \begin{verbatim}
276         dfun.Foo.List a = Dict [Foo.op1.List a, Foo.op2.List a]
277         const.Foo.op1.List a x = ...
278         const.Foo.op2.List a y = ...
279 \end{verbatim}
280 This group may be mutually recursive, because (for example) there may
281 be no method supplied for op2 in which case we'll get
282 \begin{verbatim}
283         const.Foo.op2.List a = default.Foo.op2 (dfun.Foo.List a)
284 \end{verbatim}
285 that is, the default method applied to the dictionary at this type.
286
287 What we actually produce in either case is:
288
289         AbsBinds [a] [dfun_theta_dicts]
290                  [(dfun.Foo.List, d)] ++ (maybe) [(const.Foo.op1.List, op1), ...]
291                  { d = (sd1,sd2, ..., op1, op2, ...)
292                    op1 = ...
293                    op2 = ...
294                  }
295
296 The "maybe" says that we only ask AbsBinds to make global constant methods
297 if the dfun_theta is empty.
298
299                 
300 For an instance declaration, say,
301
302         instance (C1 a, C2 b) => C (T a b) where
303                 ...
304
305 where the {\em immediate} superclasses of C are D1, D2, we build a dictionary
306 function whose type is
307
308         (C1 a, C2 b, D1 (T a b), D2 (T a b)) => C (T a b)
309
310 Notice that we pass it the superclass dictionaries at the instance type; this
311 is the ``Mark Jones optimisation''.  The stuff before the "=>" here
312 is the @dfun_theta@ below.
313
314 First comes the easy case of a non-local instance decl.
315
316
317 \begin{code}
318 tcInstDecl2 :: InstInfo -> TcM (LHsBinds Id)
319
320 tcInstDecl2 (InstInfo { iSpec = ispec, iBinds = binds })
321   = let 
322         dfun_id    = instanceDFunId ispec
323         rigid_info = InstSkol dfun_id
324         inst_ty    = idType dfun_id
325     in
326          -- Prime error recovery
327     recoverM (returnM emptyLHsBinds)            $
328     setSrcSpan (srcLocSpan (getSrcLoc dfun_id)) $
329     addErrCtxt (instDeclCtxt2 (idType dfun_id)) $
330
331         -- Instantiate the instance decl with skolem constants 
332     tcSkolSigType rigid_info inst_ty    `thenM` \ (inst_tyvars', dfun_theta', inst_head') ->
333                 -- These inst_tyvars' scope over the 'where' part
334                 -- Those tyvars are inside the dfun_id's type, which is a bit
335                 -- bizarre, but OK so long as you realise it!
336     let
337         (clas, inst_tys') = tcSplitDFunHead inst_head'
338         (class_tyvars, sc_theta, _, op_items) = classBigSig clas
339
340         -- Instantiate the super-class context with inst_tys
341         sc_theta' = substTheta (zipOpenTvSubst class_tyvars inst_tys') sc_theta
342         origin    = SigOrigin rigid_info
343     in
344          -- Create dictionary Ids from the specified instance contexts.
345     newDicts InstScOrigin sc_theta'                     `thenM` \ sc_dicts ->
346     newDicts origin dfun_theta'                         `thenM` \ dfun_arg_dicts ->
347     newDicts origin [mkClassPred clas inst_tys']        `thenM` \ [this_dict] ->
348                 -- Default-method Ids may be mentioned in synthesised RHSs,
349                 -- but they'll already be in the environment.
350
351         -- Typecheck the methods
352     let         -- These insts are in scope; quite a few, eh?
353         avail_insts = [this_dict] ++ dfun_arg_dicts ++ sc_dicts
354     in
355     tcMethods origin clas inst_tyvars' 
356               dfun_theta' inst_tys' avail_insts 
357               op_items binds            `thenM` \ (meth_ids, meth_binds) ->
358
359         -- Figure out bindings for the superclass context
360         -- Don't include this_dict in the 'givens', else
361         -- sc_dicts get bound by just selecting  from this_dict!!
362     addErrCtxt superClassCtxt
363         (tcSimplifySuperClasses inst_tyvars'
364                          dfun_arg_dicts
365                          sc_dicts)      `thenM` \ sc_binds ->
366
367         -- It's possible that the superclass stuff might unified one
368         -- of the inst_tyavars' with something in the envt
369     checkSigTyVars inst_tyvars'         `thenM_`
370
371         -- Deal with 'SPECIALISE instance' pragmas 
372     let
373         specs = case binds of
374                   VanillaInst _ prags -> filter isSpecInstLSig prags
375                   other               -> []
376     in
377     tcPrags dfun_id specs                       `thenM` \ prags -> 
378     
379         -- Create the result bindings
380     let
381         dict_constr   = classDataCon clas
382         scs_and_meths = map instToId sc_dicts ++ meth_ids
383         this_dict_id  = instToId this_dict
384         inline_prag | null dfun_arg_dicts = []
385                     | otherwise = [InlinePrag (Inline AlwaysActive True)]
386                 -- Always inline the dfun; this is an experimental decision
387                 -- because it makes a big performance difference sometimes.
388                 -- Often it means we can do the method selection, and then
389                 -- inline the method as well.  Marcin's idea; see comments below.
390                 --
391                 -- BUT: don't inline it if it's a constant dictionary;
392                 -- we'll get all the benefit without inlining, and we get
393                 -- a **lot** of code duplication if we inline it
394                 --
395                 --      See Note [Inline dfuns] below
396
397         dict_rhs
398           | null scs_and_meths
399           =     -- Blatant special case for CCallable, CReturnable
400                 -- If the dictionary is empty then we should never
401                 -- select anything from it, so we make its RHS just
402                 -- emit an error message.  This in turn means that we don't
403                 -- mention the constructor, which doesn't exist for CCallable, CReturnable
404                 -- Hardly beautiful, but only three extra lines.
405             nlHsApp (noLoc $ TyApp (nlHsVar rUNTIME_ERROR_ID) 
406                                    [idType this_dict_id])
407                   (nlHsLit (HsStringPrim (mkFastString msg)))
408
409           | otherwise   -- The common case
410           = mkHsConApp dict_constr inst_tys' (map HsVar scs_and_meths)
411                 -- We don't produce a binding for the dict_constr; instead we
412                 -- rely on the simplifier to unfold this saturated application
413                 -- We do this rather than generate an HsCon directly, because
414                 -- it means that the special cases (e.g. dictionary with only one
415                 -- member) are dealt with by the common MkId.mkDataConWrapId code rather
416                 -- than needing to be repeated here.
417
418           where
419             msg = "Compiler error: bad dictionary " ++ showSDoc (ppr clas)
420
421         dict_bind  = noLoc (VarBind this_dict_id dict_rhs)
422         all_binds  = dict_bind `consBag` (sc_binds `unionBags` meth_binds)
423
424         main_bind = noLoc $ AbsBinds
425                             inst_tyvars'
426                             (map instToId dfun_arg_dicts)
427                             [(inst_tyvars', dfun_id, this_dict_id, 
428                                             inline_prag ++ prags)] 
429                             all_binds
430     in
431     showLIE (text "instance")           `thenM_`
432     returnM (unitBag main_bind)
433
434
435 tcMethods origin clas inst_tyvars' dfun_theta' inst_tys' 
436           avail_insts op_items (VanillaInst monobinds uprags)
437   =     -- Check that all the method bindings come from this class
438     let
439         sel_names = [idName sel_id | (sel_id, _) <- op_items]
440         bad_bndrs = collectHsBindBinders monobinds `minusList` sel_names
441     in
442     mappM (addErrTc . badMethodErr clas) bad_bndrs      `thenM_`
443
444         -- Make the method bindings
445     let
446         mk_method_bind = mkMethodBind origin clas inst_tys' monobinds
447     in
448     mapAndUnzipM mk_method_bind op_items        `thenM` \ (meth_insts, meth_infos) ->
449
450         -- And type check them
451         -- It's really worth making meth_insts available to the tcMethodBind
452         -- Consider     instance Monad (ST s) where
453         --                {-# INLINE (>>) #-}
454         --                (>>) = ...(>>=)...
455         -- If we don't include meth_insts, we end up with bindings like this:
456         --      rec { dict = MkD then bind ...
457         --            then = inline_me (... (GHC.Base.>>= dict) ...)
458         --            bind = ... }
459         -- The trouble is that (a) 'then' and 'dict' are mutually recursive, 
460         -- and (b) the inline_me prevents us inlining the >>= selector, which
461         -- would unravel the loop.  Result: (>>) ends up as a loop breaker, and
462         -- is not inlined across modules. Rather ironic since this does not
463         -- happen without the INLINE pragma!  
464         --
465         -- Solution: make meth_insts available, so that 'then' refers directly
466         --           to the local 'bind' rather than going via the dictionary.
467         --
468         -- BUT WATCH OUT!  If the method type mentions the class variable, then
469         -- this optimisation is not right.  Consider
470         --      class C a where
471         --        op :: Eq a => a
472         --
473         --      instance C Int where
474         --        op = op
475         -- The occurrence of 'op' on the rhs gives rise to a constraint
476         --      op at Int
477         -- The trouble is that the 'meth_inst' for op, which is 'available', also
478         -- looks like 'op at Int'.  But they are not the same.
479     let
480         prag_fn        = mkPragFun uprags
481         all_insts      = avail_insts ++ catMaybes meth_insts
482         tc_method_bind = tcMethodBind inst_tyvars' dfun_theta' all_insts prag_fn
483         meth_ids       = [meth_id | (_,meth_id,_) <- meth_infos]
484     in
485
486     mapM tc_method_bind meth_infos              `thenM` \ meth_binds_s ->
487    
488     returnM (meth_ids, unionManyBags meth_binds_s)
489
490
491 -- Derived newtype instances
492 tcMethods origin clas inst_tyvars' dfun_theta' inst_tys' 
493           avail_insts op_items (NewTypeDerived rep_tys)
494   = getInstLoc origin                           `thenM` \ inst_loc ->
495     mapAndUnzip3M (do_one inst_loc) op_items    `thenM` \ (meth_ids, meth_binds, rhs_insts) ->
496     
497     tcSimplifyCheck
498          (ptext SLIT("newtype derived instance"))
499          inst_tyvars' avail_insts rhs_insts     `thenM` \ lie_binds ->
500
501         -- I don't think we have to do the checkSigTyVars thing
502
503     returnM (meth_ids, lie_binds `unionBags` listToBag meth_binds)
504
505   where
506     do_one inst_loc (sel_id, _)
507         = -- The binding is like "op @ NewTy = op @ RepTy"
508                 -- Make the *binder*, like in mkMethodBind
509           tcInstClassOp inst_loc sel_id inst_tys'       `thenM` \ meth_inst ->
510
511                 -- Make the *occurrence on the rhs*
512           tcInstClassOp inst_loc sel_id rep_tys'        `thenM` \ rhs_inst ->
513           let
514              meth_id = instToId meth_inst
515           in
516           return (meth_id, noLoc (VarBind meth_id (nlHsVar (instToId rhs_inst))), rhs_inst)
517
518         -- Instantiate rep_tys with the relevant type variables
519         -- This looks a bit odd, because inst_tyvars' are the skolemised version
520         -- of the type variables in the instance declaration; but rep_tys doesn't
521         -- have the skolemised version, so we substitute them in here
522     rep_tys' = substTys subst rep_tys
523     subst    = zipOpenTvSubst inst_tyvars' (mkTyVarTys inst_tyvars')
524 \end{code}
525
526
527                 ------------------------------
528         [Inline dfuns] Inlining dfuns unconditionally
529                 ------------------------------
530
531 The code above unconditionally inlines dict funs.  Here's why.
532 Consider this program:
533
534     test :: Int -> Int -> Bool
535     test x y = (x,y) == (y,x) || test y x
536     -- Recursive to avoid making it inline.
537
538 This needs the (Eq (Int,Int)) instance.  If we inline that dfun
539 the code we end up with is good:
540
541     Test.$wtest =
542         \r -> case ==# [ww ww1] of wild {
543                 PrelBase.False -> Test.$wtest ww1 ww;
544                 PrelBase.True ->
545                   case ==# [ww1 ww] of wild1 {
546                     PrelBase.False -> Test.$wtest ww1 ww;
547                     PrelBase.True -> PrelBase.True [];
548                   };
549             };
550     Test.test = \r [w w1]
551             case w of w2 {
552               PrelBase.I# ww ->
553                   case w1 of w3 { PrelBase.I# ww1 -> Test.$wtest ww ww1; };
554             };
555
556 If we don't inline the dfun, the code is not nearly as good:
557
558     (==) = case PrelTup.$fEq(,) PrelBase.$fEqInt PrelBase.$fEqInt of tpl {
559               PrelBase.:DEq tpl1 tpl2 -> tpl2;
560             };
561     
562     Test.$wtest =
563         \r [ww ww1]
564             let { y = PrelBase.I#! [ww1]; } in
565             let { x = PrelBase.I#! [ww]; } in
566             let { sat_slx = PrelTup.(,)! [y x]; } in
567             let { sat_sly = PrelTup.(,)! [x y];
568             } in
569               case == sat_sly sat_slx of wild {
570                 PrelBase.False -> Test.$wtest ww1 ww;
571                 PrelBase.True -> PrelBase.True [];
572               };
573     
574     Test.test =
575         \r [w w1]
576             case w of w2 {
577               PrelBase.I# ww ->
578                   case w1 of w3 { PrelBase.I# ww1 -> Test.$wtest ww ww1; };
579             };
580
581 Why doesn't GHC inline $fEq?  Because it looks big:
582
583     PrelTup.zdfEqZ1T{-rcX-}
584         = \ @ a{-reT-} :: * @ b{-reS-} :: *
585             zddEq{-rf6-} _Ks :: {PrelBase.Eq{-23-} a{-reT-}}
586             zddEq1{-rf7-} _Ks :: {PrelBase.Eq{-23-} b{-reS-}} ->
587             let {
588               zeze{-rf0-} _Kl :: (b{-reS-} -> b{-reS-} -> PrelBase.Bool{-3c-})
589               zeze{-rf0-} = PrelBase.zeze{-01L-}@ b{-reS-} zddEq1{-rf7-} } in
590             let {
591               zeze1{-rf3-} _Kl :: (a{-reT-} -> a{-reT-} -> PrelBase.Bool{-3c-})
592               zeze1{-rf3-} = PrelBase.zeze{-01L-} @ a{-reT-} zddEq{-rf6-} } in
593             let {
594               zeze2{-reN-} :: ((a{-reT-}, b{-reS-}) -> (a{-reT-}, b{-reS-})-> PrelBase.Bool{-3c-})
595               zeze2{-reN-} = \ ds{-rf5-} _Ks :: (a{-reT-}, b{-reS-})
596                                ds1{-rf4-} _Ks :: (a{-reT-}, b{-reS-}) ->
597                              case ds{-rf5-}
598                              of wild{-reW-} _Kd { (a1{-rf2-} _Ks, a2{-reZ-} _Ks) ->
599                              case ds1{-rf4-}
600                              of wild1{-reX-} _Kd { (b1{-rf1-} _Ks, b2{-reY-} _Ks) ->
601                              PrelBase.zaza{-r4e-}
602                                (zeze1{-rf3-} a1{-rf2-} b1{-rf1-})
603                                (zeze{-rf0-} a2{-reZ-} b2{-reY-})
604                              }
605                              } } in     
606             let {
607               a1{-reR-} :: ((a{-reT-}, b{-reS-})-> (a{-reT-}, b{-reS-})-> PrelBase.Bool{-3c-})
608               a1{-reR-} = \ a2{-reV-} _Ks :: (a{-reT-}, b{-reS-})
609                             b1{-reU-} _Ks :: (a{-reT-}, b{-reS-}) ->
610                           PrelBase.not{-r6I-} (zeze2{-reN-} a2{-reV-} b1{-reU-})
611             } in
612               PrelBase.zdwZCDEq{-r8J-} @ (a{-reT-}, b{-reS-}) a1{-reR-} zeze2{-reN-})
613
614 and it's not as bad as it seems, because it's further dramatically
615 simplified: only zeze2 is extracted and its body is simplified.
616
617
618 %************************************************************************
619 %*                                                                      *
620 \subsection{Error messages}
621 %*                                                                      *
622 %************************************************************************
623
624 \begin{code}
625 instDeclCtxt1 hs_inst_ty 
626   = inst_decl_ctxt (case unLoc hs_inst_ty of
627                         HsForAllTy _ _ _ (L _ (HsPredTy pred)) -> ppr pred
628                         HsPredTy pred                    -> ppr pred
629                         other                            -> ppr hs_inst_ty)     -- Don't expect this
630 instDeclCtxt2 dfun_ty
631   = inst_decl_ctxt (ppr (mkClassPred cls tys))
632   where
633     (_,_,cls,tys) = tcSplitDFunTy dfun_ty
634
635 inst_decl_ctxt doc = ptext SLIT("In the instance declaration for") <+> quotes doc
636
637 superClassCtxt = ptext SLIT("When checking the super-classes of an instance declaration")
638 \end{code}