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