Remove some old code.
[ghc-hetmet.git] / compiler / typecheck / TcInstDcls.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5
6 TcInstDecls: Typechecking instance declarations
7
8 \begin{code}
9 module TcInstDcls ( tcInstDecls1, tcInstDecls2 ) where
10
11 import HsSyn
12 import TcBinds
13 import TcTyClsDecls
14 import TcClassDcl
15 import TcPat( addInlinePrags )
16 import TcRnMonad
17 import TcMType
18 import TcType
19 import Inst
20 import InstEnv
21 import FamInst
22 import FamInstEnv
23 import MkCore   ( nO_METHOD_BINDING_ERROR_ID )
24 import TcDeriv
25 import TcEnv
26 import RnSource ( addTcgDUs )
27 import TcHsType
28 import TcUnify
29 import Type
30 import Coercion
31 import TyCon
32 import DataCon
33 import Class
34 import Var
35 import VarSet
36 import CoreUtils  ( mkPiTypes )
37 import CoreUnfold ( mkDFunUnfolding )
38 import CoreSyn    ( Expr(Var), DFunArg(..), CoreExpr )
39 import Id
40 import MkId
41 import Name
42 import NameSet
43 import DynFlags
44 import SrcLoc
45 import Util
46 import Outputable
47 import Bag
48 import BasicTypes
49 import HscTypes
50 import FastString
51 import Maybes   ( orElse )
52 import Data.Maybe
53 import Control.Monad
54 import Data.List
55
56 #include "HsVersions.h"
57 \end{code}
58
59 Typechecking instance declarations is done in two passes. The first
60 pass, made by @tcInstDecls1@, collects information to be used in the
61 second pass.
62
63 This pre-processed info includes the as-yet-unprocessed bindings
64 inside the instance declaration.  These are type-checked in the second
65 pass, when the class-instance envs and GVE contain all the info from
66 all the instance and value decls.  Indeed that's the reason we need
67 two passes over the instance decls.
68
69
70 Note [How instance declarations are translated]
71 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
72 Here is how we translation instance declarations into Core
73
74 Running example:
75         class C a where
76            op1, op2 :: Ix b => a -> b -> b
77            op2 = <dm-rhs>
78
79         instance C a => C [a]
80            {-# INLINE [2] op1 #-}
81            op1 = <rhs>
82 ===>
83         -- Method selectors
84         op1,op2 :: forall a. C a => forall b. Ix b => a -> b -> b
85         op1 = ...
86         op2 = ...
87
88         -- Default methods get the 'self' dictionary as argument
89         -- so they can call other methods at the same type
90         -- Default methods get the same type as their method selector
91         $dmop2 :: forall a. C a => forall b. Ix b => a -> b -> b
92         $dmop2 = /\a. \(d:C a). /\b. \(d2: Ix b). <dm-rhs>
93                -- NB: type variables 'a' and 'b' are *both* in scope in <dm-rhs>
94                -- Note [Tricky type variable scoping]
95
96         -- A top-level definition for each instance method
97         -- Here op1_i, op2_i are the "instance method Ids"
98         -- The INLINE pragma comes from the user pragma
99         {-# INLINE [2] op1_i #-}  -- From the instance decl bindings
100         op1_i, op2_i :: forall a. C a => forall b. Ix b => [a] -> b -> b
101         op1_i = /\a. \(d:C a). 
102                let this :: C [a]
103                    this = df_i a d
104                      -- Note [Subtle interaction of recursion and overlap]
105
106                    local_op1 :: forall b. Ix b => [a] -> b -> b
107                    local_op1 = <rhs>
108                      -- Source code; run the type checker on this
109                      -- NB: Type variable 'a' (but not 'b') is in scope in <rhs>
110                      -- Note [Tricky type variable scoping]
111
112                in local_op1 a d
113
114         op2_i = /\a \d:C a. $dmop2 [a] (df_i a d) 
115
116         -- The dictionary function itself
117         {-# NOINLINE CONLIKE df_i #-}   -- Never inline dictionary functions
118         df_i :: forall a. C a -> C [a]
119         df_i = /\a. \d:C a. MkC (op1_i a d) (op2_i a d)
120                 -- But see Note [Default methods in instances]
121                 -- We can't apply the type checker to the default-method call
122
123         -- Use a RULE to short-circuit applications of the class ops
124         {-# RULE "op1@C[a]" forall a, d:C a. 
125                             op1 [a] (df_i d) = op1_i a d #-}
126
127 Note [Instances and loop breakers]
128 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
129 * Note that df_i may be mutually recursive with both op1_i and op2_i.
130   It's crucial that df_i is not chosen as the loop breaker, even 
131   though op1_i has a (user-specified) INLINE pragma.
132
133 * Instead the idea is to inline df_i into op1_i, which may then select
134   methods from the MkC record, and thereby break the recursion with
135   df_i, leaving a *self*-recurisve op1_i.  (If op1_i doesn't call op at
136   the same type, it won't mention df_i, so there won't be recursion in
137   the first place.)  
138
139 * If op1_i is marked INLINE by the user there's a danger that we won't
140   inline df_i in it, and that in turn means that (since it'll be a
141   loop-breaker because df_i isn't), op1_i will ironically never be 
142   inlined.  But this is OK: the recursion breaking happens by way of
143   a RULE (the magic ClassOp rule above), and RULES work inside InlineRule
144   unfoldings. See Note [RULEs enabled in SimplGently] in SimplUtils
145
146 Note [ClassOp/DFun selection]
147 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148 One thing we see a lot is stuff like
149     op2 (df d1 d2)
150 where 'op2' is a ClassOp and 'df' is DFun.  Now, we could inline *both*
151 'op2' and 'df' to get
152      case (MkD ($cop1 d1 d2) ($cop2 d1 d2) ... of
153        MkD _ op2 _ _ _ -> op2
154 And that will reduce to ($cop2 d1 d2) which is what we wanted.
155
156 But it's tricky to make this work in practice, because it requires us to 
157 inline both 'op2' and 'df'.  But neither is keen to inline without having
158 seen the other's result; and it's very easy to get code bloat (from the 
159 big intermediate) if you inline a bit too much.
160
161 Instead we use a cunning trick.
162  * We arrange that 'df' and 'op2' NEVER inline.  
163
164  * We arrange that 'df' is ALWAYS defined in the sylised form
165       df d1 d2 = MkD ($cop1 d1 d2) ($cop2 d1 d2) ...
166
167  * We give 'df' a magical unfolding (DFunUnfolding [$cop1, $cop2, ..])
168    that lists its methods.
169
170  * We make CoreUnfold.exprIsConApp_maybe spot a DFunUnfolding and return
171    a suitable constructor application -- inlining df "on the fly" as it 
172    were.
173
174  * We give the ClassOp 'op2' a BuiltinRule that extracts the right piece
175    iff its argument satisfies exprIsConApp_maybe.  This is done in
176    MkId mkDictSelId
177
178  * We make 'df' CONLIKE, so that shared uses stil match; eg
179       let d = df d1 d2
180       in ...(op2 d)...(op1 d)...
181
182 Note [Single-method classes]
183 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
184 If the class has just one method (or, more accurately, just one element
185 of {superclasses + methods}), then we use a different strategy.
186
187    class C a where op :: a -> a
188    instance C a => C [a] where op = <blah>
189
190 We translate the class decl into a newtype, which just gives a
191 top-level axiom. The "constructor" MkC expands to a cast, as does the
192 class-op selector.
193
194    axiom Co:C a :: C a ~ (a->a)
195
196    op :: forall a. C a -> (a -> a)
197    op a d = d |> (Co:C a)
198
199    MkC :: forall a. (a->a) -> C a
200    MkC = /\a.\op. op |> (sym Co:C a)
201
202 The clever RULE stuff doesn't work now, because ($df a d) isn't
203 a constructor application, so exprIsConApp_maybe won't return 
204 Just <blah>.
205
206 Instead, we simply rely on the fact that casts are cheap:
207
208    $df :: forall a. C a => C [a]
209    {-# INLINE df #-}  -- NB: INLINE this
210    $df = /\a. \d. MkC [a] ($cop_list a d)
211        = $cop_list |> forall a. C a -> (sym (Co:C [a]))
212
213    $cop_list :: forall a. C a => [a] -> [a]
214    $cop_list = <blah>
215
216 So if we see
217    (op ($df a d))
218 we'll inline 'op' and '$df', since both are simply casts, and
219 good things happen.
220
221 Why do we use this different strategy?  Because otherwise we
222 end up with non-inlined dictionaries that look like
223     $df = $cop |> blah
224 which adds an extra indirection to every use, which seems stupid.  See
225 Trac #4138 for an example (although the regression reported there
226 wasn't due to the indirction).
227
228 There is an awkward wrinkle though: we want to be very 
229 careful when we have
230     instance C a => C [a] where
231       {-# INLINE op #-}
232       op = ...
233 then we'll get an INLINE pragma on $cop_list but it's important that
234 $cop_list only inlines when it's applied to *two* arguments (the
235 dictionary and the list argument).  So we nust not eta-expand $df
236 above.  We ensure that this doesn't happen by putting an INLINE 
237 pragma on the dfun itself; after all, it ends up being just a cast.
238
239 There is one more dark corner to the INLINE story, even more deeply 
240 buried.  Consider this (Trac #3772):
241
242     class DeepSeq a => C a where
243       gen :: Int -> a
244
245     instance C a => C [a] where
246       gen n = ...
247
248     class DeepSeq a where
249       deepSeq :: a -> b -> b
250
251     instance DeepSeq a => DeepSeq [a] where
252       {-# INLINE deepSeq #-}
253       deepSeq xs b = foldr deepSeq b xs
254
255 That gives rise to these defns:
256
257     $cdeepSeq :: DeepSeq a -> [a] -> b -> b
258     -- User INLINE( 3 args )!
259     $cdeepSeq a (d:DS a) b (x:[a]) (y:b) = ...
260
261     $fDeepSeq[] :: DeepSeq a -> DeepSeq [a]
262     -- DFun (with auto INLINE pragma)
263     $fDeepSeq[] a d = $cdeepSeq a d |> blah
264
265     $cp1 a d :: C a => DeepSep [a]
266     -- We don't want to eta-expand this, lest
267     -- $cdeepSeq gets inlined in it!
268     $cp1 a d = $fDeepSep[] a (scsel a d)
269
270     $fC[] :: C a => C [a]
271     -- Ordinary DFun
272     $fC[] a d = MkC ($cp1 a d) ($cgen a d)
273
274 Here $cp1 is the code that generates the superclass for C [a].  The
275 issue is this: we must not eta-expand $cp1 either, or else $fDeepSeq[]
276 and then $cdeepSeq will inline there, which is definitely wrong.  Like
277 on the dfun, we solve this by adding an INLINE pragma to $cp1.
278
279 Note [Subtle interaction of recursion and overlap]
280 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
281 Consider this
282   class C a where { op1,op2 :: a -> a }
283   instance C a => C [a] where
284     op1 x = op2 x ++ op2 x
285     op2 x = ...
286   instance C [Int] where
287     ...
288
289 When type-checking the C [a] instance, we need a C [a] dictionary (for
290 the call of op2).  If we look up in the instance environment, we find
291 an overlap.  And in *general* the right thing is to complain (see Note
292 [Overlapping instances] in InstEnv).  But in *this* case it's wrong to
293 complain, because we just want to delegate to the op2 of this same
294 instance.  
295
296 Why is this justified?  Because we generate a (C [a]) constraint in 
297 a context in which 'a' cannot be instantiated to anything that matches
298 other overlapping instances, or else we would not be excecuting this
299 version of op1 in the first place.
300
301 It might even be a bit disguised:
302
303   nullFail :: C [a] => [a] -> [a]
304   nullFail x = op2 x ++ op2 x
305
306   instance C a => C [a] where
307     op1 x = nullFail x
308
309 Precisely this is used in package 'regex-base', module Context.hs.
310 See the overlapping instances for RegexContext, and the fact that they
311 call 'nullFail' just like the example above.  The DoCon package also
312 does the same thing; it shows up in module Fraction.hs
313
314 Conclusion: when typechecking the methods in a C [a] instance, we want to
315 treat the 'a' as an *existential* type variable, in the sense described
316 by Note [Binding when looking up instances].  That is why isOverlappableTyVar
317 responds True to an InstSkol, which is the kind of skolem we use in
318 tcInstDecl2.
319
320
321 Note [Tricky type variable scoping]
322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
323 In our example
324         class C a where
325            op1, op2 :: Ix b => a -> b -> b
326            op2 = <dm-rhs>
327
328         instance C a => C [a]
329            {-# INLINE [2] op1 #-}
330            op1 = <rhs>
331
332 note that 'a' and 'b' are *both* in scope in <dm-rhs>, but only 'a' is
333 in scope in <rhs>.  In particular, we must make sure that 'b' is in
334 scope when typechecking <dm-rhs>.  This is achieved by subFunTys,
335 which brings appropriate tyvars into scope. This happens for both
336 <dm-rhs> and for <rhs>, but that doesn't matter: the *renamer* will have
337 complained if 'b' is mentioned in <rhs>.
338
339
340
341 %************************************************************************
342 %*                                                                      *
343 \subsection{Extracting instance decls}
344 %*                                                                      *
345 %************************************************************************
346
347 Gather up the instance declarations from their various sources
348
349 \begin{code}
350 tcInstDecls1    -- Deal with both source-code and imported instance decls
351    :: [LTyClDecl Name]          -- For deriving stuff
352    -> [LInstDecl Name]          -- Source code instance decls
353    -> [LDerivDecl Name]         -- Source code stand-alone deriving decls
354    -> TcM (TcGblEnv,            -- The full inst env
355            [InstInfo Name],     -- Source-code instance decls to process;
356                                 -- contains all dfuns for this module
357            HsValBinds Name)     -- Supporting bindings for derived instances
358
359 tcInstDecls1 tycl_decls inst_decls deriv_decls
360   = checkNoErrs $
361     do {        -- Stop if addInstInfos etc discovers any errors
362                 -- (they recover, so that we get more than one error each
363                 -- round)
364
365                 -- (1) Do class and family instance declarations
366        ; idx_tycons        <- mapAndRecoverM (tcFamInstDecl TopLevel) $
367                               filter (isFamInstDecl . unLoc) tycl_decls 
368        ; local_info_tycons <- mapAndRecoverM tcLocalInstDecl1  inst_decls
369
370        ; let { (local_info,
371                 at_tycons_s)   = unzip local_info_tycons
372              ; at_idx_tycons   = concat at_tycons_s ++ idx_tycons
373              ; implicit_things = concatMap implicitTyThings at_idx_tycons
374              ; aux_binds       = mkRecSelBinds at_idx_tycons
375              }
376
377                 -- (2) Add the tycons of indexed types and their implicit
378                 --     tythings to the global environment
379        ; tcExtendGlobalEnv (at_idx_tycons ++ implicit_things) $ do {
380
381
382                 -- Next, construct the instance environment so far, consisting
383                 -- of
384                 --   (a) local instance decls
385                 --   (b) local family instance decls
386        ; addInsts local_info         $
387          addFamInsts at_idx_tycons   $ do {
388
389                 -- (3) Compute instances from "deriving" clauses;
390                 -- This stuff computes a context for the derived instance
391                 -- decl, so it needs to know about all the instances possible
392                 -- NB: class instance declarations can contain derivings as
393                 --     part of associated data type declarations
394          failIfErrsM    -- If the addInsts stuff gave any errors, don't
395                         -- try the deriving stuff, because that may give
396                         -- more errors still
397        ; (deriv_inst_info, deriv_binds, deriv_dus, deriv_tys, deriv_ty_insts) 
398               <- tcDeriving tycl_decls inst_decls deriv_decls
399
400        -- Extend the global environment also with the generated datatypes for
401        -- the generic representation
402        ; gbl_env <- addFamInsts (map ATyCon deriv_ty_insts) $
403                       tcExtendGlobalEnv (map ATyCon (deriv_tys ++ deriv_ty_insts)) $
404                         addInsts deriv_inst_info getGblEnv
405        ; return ( addTcgDUs gbl_env deriv_dus,
406                   deriv_inst_info ++ local_info,
407                   aux_binds `plusHsValBinds` deriv_binds)
408     }}}
409
410 addInsts :: [InstInfo Name] -> TcM a -> TcM a
411 addInsts infos thing_inside
412   = tcExtendLocalInstEnv (map iSpec infos) thing_inside
413
414 addFamInsts :: [TyThing] -> TcM a -> TcM a
415 addFamInsts tycons thing_inside
416   = tcExtendLocalFamInstEnv (map mkLocalFamInstTyThing tycons) thing_inside
417   where
418     mkLocalFamInstTyThing (ATyCon tycon) = mkLocalFamInst tycon
419     mkLocalFamInstTyThing tything        = pprPanic "TcInstDcls.addFamInsts"
420                                                     (ppr tything)
421 \end{code}
422
423 \begin{code}
424 tcLocalInstDecl1 :: LInstDecl Name
425                  -> TcM (InstInfo Name, [TyThing])
426         -- A source-file instance declaration
427         -- Type-check all the stuff before the "where"
428         --
429         -- We check for respectable instance type, and context
430 tcLocalInstDecl1 (L loc (InstDecl poly_ty binds uprags ats))
431   = setSrcSpan loc                      $
432     addErrCtxt (instDeclCtxt1 poly_ty)  $
433
434     do  { is_boot <- tcIsHsBoot
435         ; checkTc (not is_boot || (isEmptyLHsBinds binds && null uprags))
436                   badBootDeclErr
437
438         ; (tyvars, theta, clas, inst_tys) <- tcHsInstHead poly_ty
439         ; checkValidInstance poly_ty tyvars theta clas inst_tys
440
441         -- Next, process any associated types.
442         ; idx_tycons <- recoverM (return []) $
443                      do { idx_tycons <- checkNoErrs $ 
444                                         mapAndRecoverM (tcFamInstDecl NotTopLevel) ats
445                         ; checkValidAndMissingATs clas (tyvars, inst_tys)
446                                                   (zip ats idx_tycons)
447                         ; return idx_tycons }
448
449         -- Finally, construct the Core representation of the instance.
450         -- (This no longer includes the associated types.)
451         ; dfun_name <- newDFunName clas inst_tys (getLoc poly_ty)
452                 -- Dfun location is that of instance *header*
453         ; overlap_flag <- getOverlapFlag
454         ; let (eq_theta,dict_theta) = partition isEqPred theta
455               theta'         = eq_theta ++ dict_theta
456               dfun           = mkDictFunId dfun_name tyvars theta' clas inst_tys
457               ispec          = mkLocalInstance dfun overlap_flag
458
459         ; return (InstInfo { iSpec  = ispec, iBinds = VanillaInst binds uprags False },
460                   idx_tycons)
461         }
462   where
463     -- We pass in the source form and the type checked form of the ATs.  We
464     -- really need the source form only to be able to produce more informative
465     -- error messages.
466     checkValidAndMissingATs :: Class
467                             -> ([TyVar], [TcType])     -- instance types
468                             -> [(LTyClDecl Name,       -- source form of AT
469                                  TyThing)]             -- Core form of AT
470                             -> TcM ()
471     checkValidAndMissingATs clas inst_tys ats
472       = do { -- Issue a warning for each class AT that is not defined in this
473              -- instance.
474            ; let class_ats   = map tyConName (classATs clas)
475                  defined_ats = listToNameSet . map (tcdName.unLoc.fst)  $ ats
476                  omitted     = filterOut (`elemNameSet` defined_ats) class_ats
477            ; warn <- doptM Opt_WarnMissingMethods
478            ; mapM_ (warnTc warn . omittedATWarn) omitted
479
480              -- Ensure that all AT indexes that correspond to class parameters
481              -- coincide with the types in the instance head.  All remaining
482              -- AT arguments must be variables.  Also raise an error for any
483              -- type instances that are not associated with this class.
484            ; mapM_ (checkIndexes clas inst_tys) ats
485            }
486
487     checkIndexes clas inst_tys (hsAT, ATyCon tycon)
488 -- !!!TODO: check that this does the Right Thing for indexed synonyms, too!
489       = checkIndexes' clas inst_tys hsAT
490                       (tyConTyVars tycon,
491                        snd . fromJust . tyConFamInst_maybe $ tycon)
492     checkIndexes _ _ _ = panic "checkIndexes"
493
494     checkIndexes' clas (instTvs, instTys) hsAT (atTvs, atTys)
495       = let atName = tcdName . unLoc $ hsAT
496         in
497         setSrcSpan (getLoc hsAT)       $
498         addErrCtxt (atInstCtxt atName) $
499         case find ((atName ==) . tyConName) (classATs clas) of
500           Nothing     -> addErrTc $ badATErr clas atName  -- not in this class
501           Just atycon ->
502                 -- The following is tricky!  We need to deal with three
503                 -- complications: (1) The AT possibly only uses a subset of
504                 -- the class parameters as indexes and those it uses may be in
505                 -- a different order; (2) the AT may have extra arguments,
506                 -- which must be type variables; and (3) variables in AT and
507                 -- instance head will be different `Name's even if their
508                 -- source lexemes are identical.
509                 --
510                 -- e.g.    class C a b c where 
511                 --           data D b a :: * -> *           -- NB (1) b a, omits c
512                 --         instance C [x] Bool Char where 
513                 --           data D Bool [x] v = MkD x [v]  -- NB (2) v
514                 --                -- NB (3) the x in 'instance C...' have differnt
515                 --                --        Names to x's in 'data D...'
516                 --
517                 -- Re (1), `poss' contains a permutation vector to extract the
518                 -- class parameters in the right order.
519                 --
520                 -- Re (2), we wrap the (permuted) class parameters in a Maybe
521                 -- type and use Nothing for any extra AT arguments.  (First
522                 -- equation of `checkIndex' below.)
523                 --
524                 -- Re (3), we replace any type variable in the AT parameters
525                 -- that has the same source lexeme as some variable in the
526                 -- instance types with the instance type variable sharing its
527                 -- source lexeme.
528                 --
529                 let poss :: [Int]
530                     -- For *associated* type families, gives the position
531                     -- of that 'TyVar' in the class argument list (0-indexed)
532                     -- e.g.  class C a b c where { type F c a :: *->* }
533                     --       Then we get Just [2,0]
534                     poss = catMaybes [ tv `elemIndex` classTyVars clas 
535                                      | tv <- tyConTyVars atycon]
536                        -- We will get Nothings for the "extra" type 
537                        -- variables in an associated data type
538                        -- e.g. class C a where { data D a :: *->* }
539                        -- here D gets arity 2 and has two tyvars
540
541                     relevantInstTys = map (instTys !!) poss
542                     instArgs        = map Just relevantInstTys ++
543                                       repeat Nothing  -- extra arguments
544                     renaming        = substSameTyVar atTvs instTvs
545                 in
546                 zipWithM_ checkIndex (substTys renaming atTys) instArgs
547
548     checkIndex ty Nothing
549       | isTyVarTy ty         = return ()
550       | otherwise            = addErrTc $ mustBeVarArgErr ty
551     checkIndex ty (Just instTy)
552       | ty `tcEqType` instTy = return ()
553       | otherwise            = addErrTc $ wrongATArgErr ty instTy
554
555     listToNameSet = addListToNameSet emptyNameSet
556
557     substSameTyVar []       _            = emptyTvSubst
558     substSameTyVar (tv:tvs) replacingTvs =
559       let replacement = case find (tv `sameLexeme`) replacingTvs of
560                         Nothing  -> mkTyVarTy tv
561                         Just rtv -> mkTyVarTy rtv
562           --
563           tv1 `sameLexeme` tv2 =
564             nameOccName (tyVarName tv1) == nameOccName (tyVarName tv2)
565       in
566       extendTvSubst (substSameTyVar tvs replacingTvs) tv replacement
567 \end{code}
568
569
570 %************************************************************************
571 %*                                                                      *
572       Type-checking instance declarations, pass 2
573 %*                                                                      *
574 %************************************************************************
575
576 \begin{code}
577 tcInstDecls2 :: [LTyClDecl Name] -> [InstInfo Name]
578              -> TcM (LHsBinds Id)
579 -- (a) From each class declaration,
580 --      generate any default-method bindings
581 -- (b) From each instance decl
582 --      generate the dfun binding
583
584 tcInstDecls2 tycl_decls inst_decls
585   = do  { -- (a) Default methods from class decls
586           let class_decls = filter (isClassDecl . unLoc) tycl_decls
587         ; dm_binds_s <- mapM tcClassDecl2 class_decls
588         ; let dm_binds = unionManyBags dm_binds_s
589                                     
590           -- (b) instance declarations
591         ; let dm_ids = collectHsBindsBinders dm_binds
592               -- Add the default method Ids (again)
593               -- See Note [Default methods and instances]
594         ; inst_binds_s <- tcExtendIdEnv dm_ids $
595                           mapM tcInstDecl2 inst_decls
596
597           -- Done
598         ; return (dm_binds `unionBags` unionManyBags inst_binds_s) }
599 \end{code}
600
601 See Note [Default methods and instances]
602 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
603 The default method Ids are already in the type environment (see Note
604 [Default method Ids and Template Haskell] in TcTyClsDcls), BUT they
605 don't have their InlinePragmas yet.  Usually that would not matter,
606 because the simplifier propagates information from binding site to
607 use.  But, unusually, when compiling instance decls we *copy* the
608 INLINE pragma from the default method to the method for that
609 particular operation (see Note [INLINE and default methods] below).
610
611 So right here in tcInstDecl2 we must re-extend the type envt with
612 the default method Ids replete with their INLINE pragmas.  Urk.
613
614 \begin{code}
615
616 tcInstDecl2 :: InstInfo Name -> TcM (LHsBinds Id)
617             -- Returns a binding for the dfun
618 tcInstDecl2 (InstInfo { iSpec = ispec, iBinds = ibinds })
619   = recoverM (return emptyLHsBinds)             $
620     setSrcSpan loc                              $
621     addErrCtxt (instDeclCtxt2 (idType dfun_id)) $ 
622     do {  -- Instantiate the instance decl with skolem constants
623        ; (inst_tyvars, dfun_theta, inst_head) <- tcSkolDFunType (idType dfun_id)
624        ; let (clas, inst_tys) = tcSplitDFunHead inst_head
625              (class_tyvars, sc_theta, _, op_items) = classBigSig clas
626              sc_theta' = substTheta (zipOpenTvSubst class_tyvars inst_tys) sc_theta
627              n_ty_args = length inst_tyvars
628              n_silent  = dfunNSilent dfun_id
629              (silent_theta, orig_theta) = splitAt n_silent dfun_theta
630
631        ; silent_ev_vars <- mapM newSilentGiven silent_theta
632        ; orig_ev_vars   <- newEvVars orig_theta
633        ; let dfun_ev_vars = silent_ev_vars ++ orig_ev_vars
634
635        ; (sc_dicts, sc_args)
636              <- mapAndUnzipM (tcSuperClass n_ty_args dfun_ev_vars) sc_theta'
637
638        -- Check that any superclasses gotten from a silent arguemnt
639        -- can be deduced from the originally-specified dfun arguments
640        ; ct_loc <- getCtLoc ScOrigin
641        ; _ <- checkConstraints skol_info inst_tyvars orig_ev_vars $
642               emitFlats $ listToBag $
643               [ mkEvVarX sc ct_loc | sc <- sc_dicts, isSilentEvVar sc ]
644
645        -- Deal with 'SPECIALISE instance' pragmas
646        -- See Note [SPECIALISE instance pragmas]
647        ; spec_info@(spec_inst_prags,_) <- tcSpecInstPrags dfun_id ibinds
648
649         -- Typecheck the methods
650        ; (meth_ids, meth_binds) 
651            <- tcExtendTyVarEnv inst_tyvars $
652                 -- The inst_tyvars scope over the 'where' part
653                 -- Those tyvars are inside the dfun_id's type, which is a bit
654                 -- bizarre, but OK so long as you realise it!
655               tcInstanceMethods dfun_id clas inst_tyvars dfun_ev_vars
656                                 inst_tys spec_info
657                                 op_items ibinds
658
659        -- Create the result bindings
660        ; self_dict <- newEvVar (ClassP clas inst_tys)
661        ; let class_tc      = classTyCon clas
662              [dict_constr] = tyConDataCons class_tc
663              dict_bind     = mkVarBind self_dict dict_rhs
664              dict_rhs      = foldl mk_app inst_constr $
665                              map HsVar sc_dicts ++ map (wrapId arg_wrapper) meth_ids
666              inst_constr   = L loc $ wrapId (mkWpTyApps inst_tys)
667                                             (dataConWrapId dict_constr)
668                      -- We don't produce a binding for the dict_constr; instead we
669                      -- rely on the simplifier to unfold this saturated application
670                      -- We do this rather than generate an HsCon directly, because
671                      -- it means that the special cases (e.g. dictionary with only one
672                      -- member) are dealt with by the common MkId.mkDataConWrapId 
673                      -- code rather than needing to be repeated here.
674
675              mk_app :: LHsExpr Id -> HsExpr Id -> LHsExpr Id
676              mk_app fun arg = L loc (HsApp fun (L loc arg))
677
678              arg_wrapper = mkWpEvVarApps dfun_ev_vars <.> mkWpTyApps (mkTyVarTys inst_tyvars)
679
680                 -- Do not inline the dfun; instead give it a magic DFunFunfolding
681                 -- See Note [ClassOp/DFun selection]
682                 -- See also note [Single-method classes]
683              dfun_id_w_fun
684                 | isNewTyCon class_tc
685                 = dfun_id `setInlinePragma` alwaysInlinePragma { inl_sat = Just 0 }
686                 | otherwise
687                 = dfun_id `setIdUnfolding`  mkDFunUnfolding dfun_ty (sc_args ++ meth_args)
688                           `setInlinePragma` dfunInlinePragma
689              meth_args = map (DFunPolyArg . Var) meth_ids
690
691              main_bind = AbsBinds { abs_tvs = inst_tyvars
692                                   , abs_ev_vars = dfun_ev_vars
693                                   , abs_exports = [(inst_tyvars, dfun_id_w_fun, self_dict,
694                                                     SpecPrags spec_inst_prags)]
695                                   , abs_ev_binds = emptyTcEvBinds
696                                   , abs_binds = unitBag dict_bind }
697
698        ; return (unitBag (L loc main_bind) `unionBags`
699                  listToBag meth_binds)
700        }
701  where
702    skol_info = InstSkol         -- See Note [Subtle interaction of recursion and overlap]
703    dfun_ty   = idType dfun_id
704    dfun_id   = instanceDFunId ispec
705    loc       = getSrcSpan dfun_id
706
707 ------------------------------
708 tcSuperClass :: Int -> [EvVar] -> PredType -> TcM (EvVar, DFunArg CoreExpr)
709 -- All superclasses should be either
710 --   (a) be one of the arguments to the dfun, of
711 --   (b) be a constant, soluble at top level
712 tcSuperClass n_ty_args ev_vars pred
713   | Just (ev, i) <- find n_ty_args ev_vars
714   = return (ev, DFunLamArg i)
715   | otherwise
716   = ASSERT2( isEmptyVarSet (tyVarsOfPred pred), ppr pred)       -- Constant!
717     do { sc_dict  <- emitWanted ScOrigin pred
718        ; return (sc_dict, DFunConstArg (Var sc_dict)) }
719   where
720     find _ [] = Nothing
721     find i (ev:evs) | pred `tcEqPred` evVarPred ev = Just (ev, i)
722                     | otherwise                    = find (i+1) evs
723
724 ------------------------------
725 tcSpecInstPrags :: DFunId -> InstBindings Name
726                 -> TcM ([Located TcSpecPrag], PragFun)
727 tcSpecInstPrags _ (NewTypeDerived {})
728   = return ([], \_ -> [])
729 tcSpecInstPrags dfun_id (VanillaInst binds uprags _)
730   = do { spec_inst_prags <- mapM (wrapLocM (tcSpecInst dfun_id)) $
731                             filter isSpecInstLSig uprags
732              -- The filter removes the pragmas for methods
733        ; return (spec_inst_prags, mkPragFun uprags binds) }
734 \end{code}
735
736 Note [Silent Superclass Arguments]
737 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
738 Consider the following (extreme) situation:
739         class C a => D a where ...
740         instance D [a] => D [a] where ...
741 Although this looks wrong (assume D [a] to prove D [a]), it is only a
742 more extreme case of what happens with recursive dictionaries.
743
744 To implement the dfun we must generate code for the superclass C [a],
745 which we can get by superclass selection from the supplied argument!
746 So we’d generate:
747        dfun :: forall a. D [a] -> D [a]
748        dfun = \d::D [a] -> MkD (scsel d) ..
749
750 However this means that if we later encounter a situation where
751 we have a [Wanted] dw::D [a] we could solve it thus:
752      dw := dfun dw
753 Although recursive, this binding would pass the TcSMonadisGoodRecEv
754 check because it appears as guarded.  But in reality, it will make a
755 bottom superclass. The trouble is that isGoodRecEv can't "see" the
756 superclass-selection inside dfun.
757
758 Our solution to this problem is to change the way â€˜dfuns’ are created
759 for instances, so that we pass as first arguments to the dfun some
760 ``silent superclass arguments’’, which are the immediate superclasses
761 of the dictionary we are trying to construct. In our example:
762        dfun :: forall a. (C [a], D [a] -> D [a]
763        dfun = \(dc::C [a]) (dd::D [a]) -> DOrd dc ...
764
765 This gives us:
766
767      -----------------------------------------------------------
768      DFun Superclass Invariant
769      ~~~~~~~~~~~~~~~~~~~~~~~~
770      In the body of a DFun, every superclass argument to the
771      returned dictionary is
772        either   * one of the arguments of the DFun,
773        or       * constant, bound at top level
774      -----------------------------------------------------------
775
776 This means that no superclass is hidden inside a dfun application, so
777 the counting argument in isGoodRecEv (more dfun calls than superclass
778 selections) works correctly.
779
780 The extra arguments required to satisfy the DFun Superclass Invariant
781 always come first, and are called the "silent" arguments.  DFun types
782 are built (only) by MkId.mkDictFunId, so that is where we decide
783 what silent arguments are to be added.
784
785 This net effect is that it is safe to treat a dfun application as
786 wrapping a dictionary constructor around its arguments (in particular,
787 a dfun never picks superclasses from the arguments under the dictionary
788 constructor).
789
790 In our example, if we had  [Wanted] dw :: D [a] we would get via the instance:
791     dw := dfun d1 d2
792     [Wanted] (d1 :: C [a])
793     [Wanted] (d2 :: D [a])
794     [Derived] (d :: D [a])
795     [Derived] (scd :: C [a])   scd  := scsel d
796     [Derived] (scd2 :: C [a])  scd2 := scsel d2
797
798 And now, though we *can* solve: 
799      d2 := dw
800 we will get an isGoodRecEv failure when we try to solve:
801     d1 := scsel d 
802  or
803     d1 := scsel d2 
804
805 Test case SCLoop tests this fix. 
806          
807 Note [SPECIALISE instance pragmas]
808 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
809 Consider
810
811    instance (Ix a, Ix b) => Ix (a,b) where
812      {-# SPECIALISE instance Ix (Int,Int) #-}
813      range (x,y) = ...
814
815 We do *not* want to make a specialised version of the dictionary
816 function.  Rather, we want specialised versions of each method.
817 Thus we should generate something like this:
818
819   $dfIx :: (Ix a, Ix x) => Ix (a,b)
820   {- DFUN [$crange, ...] -}
821   $dfIx da db = Ix ($crange da db) (...other methods...)
822
823   $dfIxPair :: (Ix a, Ix x) => Ix (a,b)
824   {- DFUN [$crangePair, ...] -}
825   $dfIxPair = Ix ($crangePair da db) (...other methods...)
826
827   $crange :: (Ix a, Ix b) -> ((a,b),(a,b)) -> [(a,b)]
828   {-# SPECIALISE $crange :: ((Int,Int),(Int,Int)) -> [(Int,Int)] #-}
829   $crange da db = <blah>
830
831   {-# RULE  range ($dfIx da db) = $crange da db #-}
832
833 Note that  
834
835   * The RULE is unaffected by the specialisation.  We don't want to
836     specialise $dfIx, because then it would need a specialised RULE
837     which is a pain.  The single RULE works fine at all specialisations.
838     See Note [How instance declarations are translated] above
839
840   * Instead, we want to specialise the *method*, $crange
841
842 In practice, rather than faking up a SPECIALISE pragama for each
843 method (which is painful, since we'd have to figure out its
844 specialised type), we call tcSpecPrag *as if* were going to specialise
845 $dfIx -- you can see that in the call to tcSpecInst.  That generates a
846 SpecPrag which, as it turns out, can be used unchanged for each method.
847 The "it turns out" bit is delicate, but it works fine!
848
849 \begin{code}
850 tcSpecInst :: Id -> Sig Name -> TcM TcSpecPrag
851 tcSpecInst dfun_id prag@(SpecInstSig hs_ty) 
852   = addErrCtxt (spec_ctxt prag) $
853     do  { let name = idName dfun_id
854         ; (tyvars, theta, clas, tys) <- tcHsInstHead hs_ty
855         ; let (_, spec_dfun_ty) = mkDictFunTy tyvars theta clas tys
856
857         ; co_fn <- tcSubType (SpecPragOrigin name) SpecInstCtxt
858                              (idType dfun_id) spec_dfun_ty
859         ; return (SpecPrag dfun_id co_fn defaultInlinePragma) }
860   where
861     spec_ctxt prag = hang (ptext (sLit "In the SPECIALISE pragma")) 2 (ppr prag)
862
863 tcSpecInst _  _ = panic "tcSpecInst"
864 \end{code}
865
866 %************************************************************************
867 %*                                                                      *
868       Type-checking an instance method
869 %*                                                                      *
870 %************************************************************************
871
872 tcInstanceMethod
873 - Make the method bindings, as a [(NonRec, HsBinds)], one per method
874 - Remembering to use fresh Name (the instance method Name) as the binder
875 - Bring the instance method Ids into scope, for the benefit of tcInstSig
876 - Use sig_fn mapping instance method Name -> instance tyvars
877 - Ditto prag_fn
878 - Use tcValBinds to do the checking
879
880 \begin{code}
881 tcInstanceMethods :: DFunId -> Class -> [TcTyVar]
882                   -> [EvVar]
883                   -> [TcType]
884                   -> ([Located TcSpecPrag], PragFun)
885                   -> [(Id, DefMeth)]
886                   -> InstBindings Name 
887                   -> TcM ([Id], [LHsBind Id])
888         -- The returned inst_meth_ids all have types starting
889         --      forall tvs. theta => ...
890 tcInstanceMethods dfun_id clas tyvars dfun_ev_vars inst_tys 
891                   (spec_inst_prags, prag_fn)
892                   op_items (VanillaInst binds _ standalone_deriv)
893   = mapAndUnzipM tc_item op_items
894   where
895     ----------------------
896     tc_item :: (Id, DefMeth) -> TcM (Id, LHsBind Id)
897     tc_item (sel_id, dm_info)
898       = case findMethodBind (idName sel_id) binds of
899             Just user_bind -> tc_body sel_id standalone_deriv user_bind
900             Nothing        -> tc_default sel_id dm_info
901
902     ----------------------
903     tc_body :: Id -> Bool -> LHsBind Name -> TcM (TcId, LHsBind Id)
904     tc_body sel_id generated_code rn_bind 
905       = add_meth_ctxt sel_id generated_code rn_bind $
906         do { (meth_id, local_meth_id) <- mkMethIds clas tyvars dfun_ev_vars 
907                                                    inst_tys sel_id
908            ; let prags = prag_fn (idName sel_id)
909            ; meth_id1 <- addInlinePrags meth_id prags
910            ; spec_prags <- tcSpecPrags meth_id1 prags
911            ; bind <- tcInstanceMethodBody InstSkol
912                           tyvars dfun_ev_vars
913                           meth_id1 local_meth_id meth_sig_fn 
914                           (mk_meth_spec_prags meth_id1 spec_prags)
915                           rn_bind 
916            ; return (meth_id1, bind) }
917
918     ----------------------
919     tc_default :: Id -> DefMeth -> TcM (TcId, LHsBind Id)
920
921     tc_default sel_id (GenDefMeth dm_name)
922       = do { meth_bind <- mkGenericDefMethBind clas inst_tys sel_id dm_name
923            ; tc_body sel_id False {- Not generated code? -} meth_bind }
924 {-
925     tc_default sel_id GenDefMeth    -- Derivable type classes stuff
926       = do { meth_bind <- mkGenericDefMethBind clas inst_tys sel_id
927            ; tc_body sel_id False {- Not generated code? -} meth_bind }
928 -}
929     tc_default sel_id NoDefMeth     -- No default method at all
930       = do { warnMissingMethod sel_id
931            ; (meth_id, _) <- mkMethIds clas tyvars dfun_ev_vars 
932                                          inst_tys sel_id
933            ; return (meth_id, mkVarBind meth_id $ 
934                               mkLHsWrap lam_wrapper error_rhs) }
935       where
936         error_rhs    = L loc $ HsApp error_fun error_msg
937         error_fun    = L loc $ wrapId (WpTyApp meth_tau) nO_METHOD_BINDING_ERROR_ID
938         error_msg    = L loc (HsLit (HsStringPrim (mkFastString error_string)))
939         meth_tau     = funResultTy (applyTys (idType sel_id) inst_tys)
940         error_string = showSDoc (hcat [ppr loc, text "|", ppr sel_id ])
941         lam_wrapper  = mkWpTyLams tyvars <.> mkWpLams dfun_ev_vars
942
943     tc_default sel_id (DefMeth dm_name) -- A polymorphic default method
944       = do {   -- Build the typechecked version directly, 
945                  -- without calling typecheck_method; 
946                  -- see Note [Default methods in instances]
947                  -- Generate   /\as.\ds. let self = df as ds
948                  --                      in $dm inst_tys self
949                  -- The 'let' is necessary only because HsSyn doesn't allow
950                  -- you to apply a function to a dictionary *expression*.
951
952            ; self_dict <- newEvVar (ClassP clas inst_tys)
953            ; let self_ev_bind = EvBind self_dict $
954                                 EvDFunApp dfun_id (mkTyVarTys tyvars) dfun_ev_vars
955
956            ; (meth_id, local_meth_id) <- mkMethIds clas tyvars dfun_ev_vars 
957                                                    inst_tys sel_id
958            ; dm_id <- tcLookupId dm_name
959            ; let dm_inline_prag = idInlinePragma dm_id
960                  rhs = HsWrap (mkWpEvVarApps [self_dict] <.> mkWpTyApps inst_tys) $
961                          HsVar dm_id 
962
963                  meth_bind = L loc $ VarBind { var_id = local_meth_id
964                                              , var_rhs = L loc rhs 
965                                              , var_inline = False }
966                  meth_id1 = meth_id `setInlinePragma` dm_inline_prag
967                             -- Copy the inline pragma (if any) from the default
968                             -- method to this version. Note [INLINE and default methods]
969                             
970                  bind = AbsBinds { abs_tvs = tyvars, abs_ev_vars =  dfun_ev_vars
971                                  , abs_exports = [( tyvars, meth_id1, local_meth_id
972                                                   , mk_meth_spec_prags meth_id1 [])]
973                                  , abs_ev_binds = EvBinds (unitBag self_ev_bind)
974                                  , abs_binds    = unitBag meth_bind }
975              -- Default methods in an instance declaration can't have their own 
976              -- INLINE or SPECIALISE pragmas. It'd be possible to allow them, but
977              -- currently they are rejected with 
978              --           "INLINE pragma lacks an accompanying binding"
979
980            ; return (meth_id1, L loc bind) } 
981
982     ----------------------
983     mk_meth_spec_prags :: Id -> [LTcSpecPrag] -> TcSpecPrags
984         -- Adapt the SPECIALISE pragmas to work for this method Id
985         -- There are two sources: 
986         --   * spec_inst_prags: {-# SPECIALISE instance :: <blah> #-}
987         --     These ones have the dfun inside, but [perhaps surprisingly] 
988         --     the correct wrapper
989         --   * spec_prags_for_me: {-# SPECIALISE op :: <blah> #-}
990     mk_meth_spec_prags meth_id spec_prags_for_me
991       = SpecPrags (spec_prags_for_me ++ 
992                    [ L loc (SpecPrag meth_id wrap inl)
993                    | L loc (SpecPrag _ wrap inl) <- spec_inst_prags])
994    
995     loc = getSrcSpan dfun_id
996     meth_sig_fn _ = Just ([],loc)       -- The 'Just' says "yes, there's a type sig"
997         -- But there are no scoped type variables from local_method_id
998         -- Only the ones from the instance decl itself, which are already
999         -- in scope.  Example:
1000         --      class C a where { op :: forall b. Eq b => ... }
1001         --      instance C [c] where { op = <rhs> }
1002         -- In <rhs>, 'c' is scope but 'b' is not!
1003
1004         -- For instance decls that come from standalone deriving clauses
1005         -- we want to print out the full source code if there's an error
1006         -- because otherwise the user won't see the code at all
1007     add_meth_ctxt sel_id generated_code rn_bind thing 
1008       | generated_code = addLandmarkErrCtxt (derivBindCtxt sel_id clas inst_tys rn_bind) thing
1009       | otherwise      = thing
1010
1011
1012 tcInstanceMethods dfun_id clas tyvars dfun_ev_vars inst_tys 
1013                   _ op_items (NewTypeDerived coi _)
1014
1015 -- Running example:
1016 --   class Show b => Foo a b where
1017 --     op :: a -> b -> b
1018 --   newtype N a = MkN (Tree [a]) 
1019 --   deriving instance (Show p, Foo Int p) => Foo Int (N p)
1020 --               -- NB: standalone deriving clause means
1021 --               --     that the contex is user-specified
1022 -- Hence op :: forall a b. Foo a b => a -> b -> b
1023 --
1024 -- We're going to make an instance like
1025 --   instance (Show p, Foo Int p) => Foo Int (N p)
1026 --      op = $copT
1027 --
1028 --   $copT :: forall p. (Show p, Foo Int p) => Int -> N p -> N p
1029 --   $copT p (d1:Show p) (d2:Foo Int p) 
1030 --     = op Int (Tree [p]) rep_d |> op_co
1031 --     where 
1032 --       rep_d :: Foo Int (Tree [p]) = ...d1...d2...
1033 --       op_co :: (Int -> Tree [p] -> Tree [p]) ~ (Int -> T p -> T p)
1034 -- We get op_co by substituting [Int/a] and [co/b] in type for op
1035 -- where co : [p] ~ T p
1036 --
1037 -- Notice that the dictionary bindings "..d1..d2.." must be generated
1038 -- by the constraint solver, since the <context> may be
1039 -- user-specified.
1040
1041   = do { rep_d_stuff <- checkConstraints InstSkol tyvars dfun_ev_vars $
1042                         emitWanted ScOrigin rep_pred
1043                          
1044        ; mapAndUnzipM (tc_item rep_d_stuff) op_items }
1045   where
1046      loc = getSrcSpan dfun_id
1047
1048      inst_tvs = fst (tcSplitForAllTys (idType dfun_id))
1049      Just (init_inst_tys, _) = snocView inst_tys
1050      rep_ty   = fst (coercionKind co)  -- [p]
1051      rep_pred = mkClassPred clas (init_inst_tys ++ [rep_ty])
1052
1053      -- co : [p] ~ T p
1054      co = substTyWith inst_tvs (mkTyVarTys tyvars) $
1055           case coi of { IdCo ty -> ty ;
1056                         ACo co  -> mkSymCoercion co }
1057
1058      ----------------
1059      tc_item :: (TcEvBinds, EvVar) -> (Id, DefMeth) -> TcM (TcId, LHsBind TcId)
1060      tc_item (rep_ev_binds, rep_d) (sel_id, _)
1061        = do { (meth_id, local_meth_id) <- mkMethIds clas tyvars dfun_ev_vars 
1062                                                     inst_tys sel_id
1063
1064             ; let meth_rhs  = wrapId (mk_op_wrapper sel_id rep_d) sel_id
1065                   meth_bind = VarBind { var_id = local_meth_id
1066                                       , var_rhs = L loc meth_rhs
1067                                       , var_inline = False }
1068
1069                   bind = AbsBinds { abs_tvs = tyvars, abs_ev_vars = dfun_ev_vars
1070                                    , abs_exports = [(tyvars, meth_id, 
1071                                                      local_meth_id, noSpecPrags)]
1072                                    , abs_ev_binds = rep_ev_binds
1073                                    , abs_binds = unitBag $ L loc meth_bind }
1074
1075             ; return (meth_id, L loc bind) }
1076
1077      ----------------
1078      mk_op_wrapper :: Id -> EvVar -> HsWrapper
1079      mk_op_wrapper sel_id rep_d 
1080        = WpCast (substTyWith sel_tvs (init_inst_tys ++ [co]) local_meth_ty)
1081          <.> WpEvApp (EvId rep_d)
1082          <.> mkWpTyApps (init_inst_tys ++ [rep_ty]) 
1083        where
1084          (sel_tvs, sel_rho) = tcSplitForAllTys (idType sel_id)
1085          (_, local_meth_ty) = tcSplitPredFunTy_maybe sel_rho
1086                               `orElse` pprPanic "tcInstanceMethods" (ppr sel_id)
1087
1088 ----------------------
1089 mkMethIds :: Class -> [TcTyVar] -> [EvVar] -> [TcType] -> Id -> TcM (TcId, TcId)
1090 mkMethIds clas tyvars dfun_ev_vars inst_tys sel_id
1091   = do  { uniq <- newUnique
1092         ; let meth_name = mkDerivedInternalName mkClassOpAuxOcc uniq sel_name
1093         ; local_meth_name <- newLocalName sel_name
1094                   -- Base the local_meth_name on the selector name, becuase
1095                   -- type errors from tcInstanceMethodBody come from here
1096
1097         ; let meth_id       = mkLocalId meth_name meth_ty
1098               local_meth_id = mkLocalId local_meth_name local_meth_ty
1099         ; return (meth_id, local_meth_id) }
1100   where
1101     local_meth_ty = instantiateMethod clas sel_id inst_tys
1102     meth_ty = mkForAllTys tyvars $ mkPiTypes dfun_ev_vars local_meth_ty
1103     sel_name = idName sel_id
1104
1105 ----------------------
1106 wrapId :: HsWrapper -> id -> HsExpr id
1107 wrapId wrapper id = mkHsWrap wrapper (HsVar id)
1108
1109 derivBindCtxt :: Id -> Class -> [Type ] -> LHsBind Name -> SDoc
1110 derivBindCtxt sel_id clas tys _bind
1111    = vcat [ ptext (sLit "When typechecking the code for ") <+> quotes (ppr sel_id)
1112           , nest 2 (ptext (sLit "in a standalone derived instance for")
1113                     <+> quotes (pprClassPred clas tys) <> colon)
1114           , nest 2 $ ptext (sLit "To see the code I am typechecking, use -ddump-deriv") ]
1115
1116 -- Too voluminous
1117 --        , nest 2 $ pprSetDepth AllTheWay $ ppr bind ]
1118
1119 warnMissingMethod :: Id -> TcM ()
1120 warnMissingMethod sel_id
1121   = do { warn <- doptM Opt_WarnMissingMethods           
1122        ; warnTc (warn  -- Warn only if -fwarn-missing-methods
1123                  && not (startsWithUnderscore (getOccName sel_id)))
1124                                         -- Don't warn about _foo methods
1125                 (ptext (sLit "No explicit method nor default method for")
1126                  <+> quotes (ppr sel_id)) }
1127 \end{code}
1128
1129 Note [Export helper functions]
1130 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1131 We arrange to export the "helper functions" of an instance declaration,
1132 so that they are not subject to preInlineUnconditionally, even if their
1133 RHS is trivial.  Reason: they are mentioned in the DFunUnfolding of
1134 the dict fun as Ids, not as CoreExprs, so we can't substitute a 
1135 non-variable for them.
1136
1137 We could change this by making DFunUnfoldings have CoreExprs, but it
1138 seems a bit simpler this way.
1139
1140 Note [Default methods in instances]
1141 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1142 Consider this
1143
1144    class Baz v x where
1145       foo :: x -> x
1146       foo y = <blah>
1147
1148    instance Baz Int Int
1149
1150 From the class decl we get
1151
1152    $dmfoo :: forall v x. Baz v x => x -> x
1153    $dmfoo y = <blah>
1154
1155 Notice that the type is ambiguous.  That's fine, though. The instance
1156 decl generates
1157
1158    $dBazIntInt = MkBaz fooIntInt
1159    fooIntInt = $dmfoo Int Int $dBazIntInt
1160
1161 BUT this does mean we must generate the dictionary translation of
1162 fooIntInt directly, rather than generating source-code and
1163 type-checking it.  That was the bug in Trac #1061. In any case it's
1164 less work to generate the translated version!
1165
1166 Note [INLINE and default methods]
1167 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1168 Default methods need special case.  They are supposed to behave rather like
1169 macros.  For exmample
1170
1171   class Foo a where
1172     op1, op2 :: Bool -> a -> a
1173
1174     {-# INLINE op1 #-}
1175     op1 b x = op2 (not b) x
1176
1177   instance Foo Int where
1178     -- op1 via default method
1179     op2 b x = <blah>
1180    
1181 The instance declaration should behave
1182
1183    just as if 'op1' had been defined with the
1184    code, and INLINE pragma, from its original
1185    definition. 
1186
1187 That is, just as if you'd written
1188
1189   instance Foo Int where
1190     op2 b x = <blah>
1191
1192     {-# INLINE op1 #-}
1193     op1 b x = op2 (not b) x
1194
1195 So for the above example we generate:
1196
1197
1198   {-# INLINE $dmop1 #-}
1199   -- $dmop1 has an InlineCompulsory unfolding
1200   $dmop1 d b x = op2 d (not b) x
1201
1202   $fFooInt = MkD $cop1 $cop2
1203
1204   {-# INLINE $cop1 #-}
1205   $cop1 = $dmop1 $fFooInt
1206
1207   $cop2 = <blah>
1208
1209 Note carefullly:
1210
1211 * We *copy* any INLINE pragma from the default method $dmop1 to the
1212   instance $cop1.  Otherwise we'll just inline the former in the
1213   latter and stop, which isn't what the user expected
1214
1215 * Regardless of its pragma, we give the default method an 
1216   unfolding with an InlineCompulsory source. That means
1217   that it'll be inlined at every use site, notably in
1218   each instance declaration, such as $cop1.  This inlining
1219   must happen even though 
1220     a) $dmop1 is not saturated in $cop1
1221     b) $cop1 itself has an INLINE pragma
1222
1223   It's vital that $dmop1 *is* inlined in this way, to allow the mutual
1224   recursion between $fooInt and $cop1 to be broken
1225
1226 * To communicate the need for an InlineCompulsory to the desugarer
1227   (which makes the Unfoldings), we use the IsDefaultMethod constructor
1228   in TcSpecPrags.
1229
1230
1231 %************************************************************************
1232 %*                                                                      *
1233 \subsection{Error messages}
1234 %*                                                                      *
1235 %************************************************************************
1236
1237 \begin{code}
1238 instDeclCtxt1 :: LHsType Name -> SDoc
1239 instDeclCtxt1 hs_inst_ty
1240   = inst_decl_ctxt (case unLoc hs_inst_ty of
1241                         HsForAllTy _ _ _ (L _ (HsPredTy pred)) -> ppr pred
1242                         HsPredTy pred                    -> ppr pred
1243                         _                                -> ppr hs_inst_ty)     -- Don't expect this
1244 instDeclCtxt2 :: Type -> SDoc
1245 instDeclCtxt2 dfun_ty
1246   = inst_decl_ctxt (ppr (mkClassPred cls tys))
1247   where
1248     (_,_,cls,tys) = tcSplitDFunTy dfun_ty
1249
1250 inst_decl_ctxt :: SDoc -> SDoc
1251 inst_decl_ctxt doc = ptext (sLit "In the instance declaration for") <+> quotes doc
1252
1253 atInstCtxt :: Name -> SDoc
1254 atInstCtxt name = ptext (sLit "In the associated type instance for") <+>
1255                   quotes (ppr name)
1256
1257 mustBeVarArgErr :: Type -> SDoc
1258 mustBeVarArgErr ty =
1259   sep [ ptext (sLit "Arguments that do not correspond to a class parameter") <+>
1260         ptext (sLit "must be variables")
1261       , ptext (sLit "Instead of a variable, found") <+> ppr ty
1262       ]
1263
1264 wrongATArgErr :: Type -> Type -> SDoc
1265 wrongATArgErr ty instTy =
1266   sep [ ptext (sLit "Type indexes must match class instance head")
1267       , ptext (sLit "Found") <+> quotes (ppr ty)
1268         <+> ptext (sLit "but expected") <+> quotes (ppr instTy)
1269       ]
1270 \end{code}