c37ff49070e6cd31187e26afde44f6d641f1e644
[ghc-hetmet.git] / ghc / compiler / typecheck / TcClassDcl.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcClassDcl]{Typechecking class declarations}
5
6 \begin{code}
7 module TcClassDcl ( tcClassDecl1, tcClassDecls2, 
8                     MethodSpec, tcMethodBind, mkMethodBind, badMethodErr
9                   ) where
10
11 #include "HsVersions.h"
12
13 import HsSyn            ( TyClDecl(..), Sig(..), MonoBinds(..),
14                           HsExpr(..), HsLit(..), Pat(WildPat),
15                           mkSimpleMatch, andMonoBinds, andMonoBindList, 
16                           isClassOpSig, isPragSig, 
17                           placeHolderType
18                         )
19 import BasicTypes       ( RecFlag(..), StrictnessMark(..) )
20 import RnHsSyn          ( RenamedTyClDecl, RenamedSig,
21                           RenamedClassOpSig, RenamedMonoBinds,
22                           maybeGenericMatch
23                         )
24 import RnEnv            ( lookupSysName )
25 import TcHsSyn          ( TcMonoBinds )
26
27 import Inst             ( Inst, InstOrigin(..), instToId, newDicts, tcInstClassOp )
28 import TcEnv            ( TyThingDetails(..), 
29                           tcLookupClass, tcExtendTyVarEnv2, 
30                           tcExtendTyVarEnv
31                         )
32 import TcBinds          ( tcMonoBinds )
33 import TcMonoType       ( TcSigInfo(..), tcHsType, tcHsTheta, mkTcSig )
34 import TcSimplify       ( tcSimplifyCheck )
35 import TcUnify          ( checkSigTyVars, sigCtxt )
36 import TcMType          ( tcInstTyVars )
37 import TcType           ( Type, TyVarDetails(..), TcType, TcThetaType, TcTyVar, 
38                           mkTyVarTys, mkPredTys, mkClassPred, tcSplitSigmaTy, tcSplitFunTys,
39                           tcIsTyVarTy, tcSplitTyConApp_maybe
40                         )
41 import TcRnMonad
42 import Generics         ( mkGenericRhs )
43 import PrelInfo         ( nO_METHOD_BINDING_ERROR_ID )
44 import Class            ( classTyVars, classBigSig, classTyCon, 
45                           Class, ClassOpItem, DefMeth (..) )
46 import TyCon            ( tyConGenInfo )
47 import MkId             ( mkDictSelId, mkDataConId, mkDataConWrapId, mkDefaultMethodId )
48 import DataCon          ( mkDataCon )
49 import Id               ( Id, idType, idName, setIdLocalExported, setInlinePragma )
50 import Name             ( Name, NamedThing(..) )
51 import NameEnv          ( NameEnv, lookupNameEnv, emptyNameEnv, unitNameEnv, plusNameEnv )
52 import NameSet          ( emptyNameSet, unitNameSet )
53 import OccName          ( mkClassTyConOcc, mkClassDataConOcc, mkWorkerOcc, mkSuperDictSelOcc )
54 import Outputable
55 import Var              ( TyVar )
56 import CmdLineOpts
57 import UnicodeUtil      ( stringToUtf8 )
58 import ErrUtils         ( dumpIfSet )
59 import Util             ( count, lengthIs )
60 import Maybes           ( seqMaybe )
61 import Maybe            ( isJust )
62 import FastString
63 \end{code}
64
65
66
67 Dictionary handling
68 ~~~~~~~~~~~~~~~~~~~
69 Every class implicitly declares a new data type, corresponding to dictionaries
70 of that class. So, for example:
71
72         class (D a) => C a where
73           op1 :: a -> a
74           op2 :: forall b. Ord b => a -> b -> b
75
76 would implicitly declare
77
78         data CDict a = CDict (D a)      
79                              (a -> a)
80                              (forall b. Ord b => a -> b -> b)
81
82 (We could use a record decl, but that means changing more of the existing apparatus.
83 One step at at time!)
84
85 For classes with just one superclass+method, we use a newtype decl instead:
86
87         class C a where
88           op :: forallb. a -> b -> b
89
90 generates
91
92         newtype CDict a = CDict (forall b. a -> b -> b)
93
94 Now DictTy in Type is just a form of type synomym: 
95         DictTy c t = TyConTy CDict `AppTy` t
96
97 Death to "ExpandingDicts".
98
99
100 %************************************************************************
101 %*                                                                      *
102 \subsection{Type checking}
103 %*                                                                      *
104 %************************************************************************
105
106 \begin{code}
107
108 tcClassDecl1 :: RenamedTyClDecl -> TcM (Name, TyThingDetails)
109 tcClassDecl1 (ClassDecl {tcdCtxt = context, tcdName = class_name,
110                          tcdTyVars = tyvar_names, tcdFDs = fundeps,
111                          tcdSigs = class_sigs, tcdMeths = def_methods,
112                          tcdLoc = src_loc})
113   =     -- LOOK THINGS UP IN THE ENVIRONMENT
114     tcLookupClass class_name                            `thenM` \ clas ->
115     let
116         tyvars     = classTyVars clas
117         op_sigs    = filter isClassOpSig class_sigs
118         op_names   = [n | ClassOpSig n _ _ _ <- op_sigs]
119     in
120     tcExtendTyVarEnv tyvars                             $ 
121
122     checkDefaultBinds clas op_names def_methods   `thenM` \ mb_dm_env ->
123         
124         -- CHECK THE CONTEXT
125         -- The renamer has already checked that the context mentions
126         -- only the type variable of the class decl.
127         -- Context is already kind-checked
128     tcHsTheta context                                   `thenM` \ sc_theta ->
129
130         -- CHECK THE CLASS SIGNATURES,
131     mappM (tcClassSig clas tyvars mb_dm_env) op_sigs    `thenM` \ sig_stuff ->
132
133         -- MAKE THE CLASS DETAILS
134     lookupSysName class_name   mkClassDataConOcc        `thenM` \ datacon_name ->
135     lookupSysName datacon_name mkWorkerOcc              `thenM` \ datacon_wkr_name ->
136     mapM (lookupSysName class_name . mkSuperDictSelOcc) 
137          [1..length context]                            `thenM` \ sc_sel_names ->
138       -- We number off the superclass selectors, 1, 2, 3 etc so that we 
139       -- can construct names for the selectors.  Thus
140       --      class (C a, C b) => D a b where ...
141       -- gives superclass selectors
142       --      D_sc1, D_sc2
143       -- (We used to call them D_C, but now we can have two different
144       --  superclasses both called C!)
145     lookupSysName class_name mkClassTyConOcc    `thenM` \ tycon_name ->
146     let
147         (op_tys, op_items) = unzip sig_stuff
148         sc_tys             = mkPredTys sc_theta
149         dict_component_tys = sc_tys ++ op_tys
150         sc_sel_ids         = [mkDictSelId sc_name clas | sc_name <- sc_sel_names]
151
152         dict_con = mkDataCon datacon_name
153                              [NotMarkedStrict | _ <- dict_component_tys]
154                              [{- No labelled fields -}]
155                              tyvars
156                              [{-No context-}]
157                              [{-No existential tyvars-}] [{-Or context-}]
158                              dict_component_tys
159                              (classTyCon clas)
160                              dict_con_id dict_wrap_id
161
162         dict_con_id  = mkDataConId datacon_wkr_name dict_con
163         dict_wrap_id = mkDataConWrapId dict_con
164     in
165     returnM (class_name, ClassDetails sc_theta sc_sel_ids op_items dict_con tycon_name)
166 \end{code}
167
168 \begin{code}
169 checkDefaultBinds :: Class -> [Name] -> Maybe RenamedMonoBinds
170                   -> TcM (Maybe (NameEnv Bool))
171         -- The returned environment says
172         --      x not in env => no default method
173         --      x -> True    => generic default method
174         --      x -> False   => polymorphic default method
175
176   -- Check default bindings
177   --    a) must be for a class op for this class
178   --    b) must be all generic or all non-generic
179   -- and return a mapping from class-op to DefMeth info
180
181   -- But do all this only for source binds
182
183 checkDefaultBinds clas ops Nothing
184   = returnM Nothing
185
186 checkDefaultBinds clas ops (Just mbs)
187   = go mbs      `thenM` \ dm_env ->
188     returnM (Just dm_env)
189   where
190     go EmptyMonoBinds = returnM emptyNameEnv
191
192     go (AndMonoBinds b1 b2)
193       = go b1   `thenM` \ dm_info1 ->
194         go b2   `thenM` \ dm_info2 ->
195         returnM (dm_info1 `plusNameEnv` dm_info2)
196
197     go (FunMonoBind op _ matches loc)
198       = addSrcLoc loc                                   $
199
200         -- Check that the op is from this class
201         checkTc (op `elem` ops) (badMethodErr clas op)          `thenM_`
202
203         -- Check that all the defns ar generic, or none are
204         checkTc (all_generic || none_generic) (mixedGenericErr op)      `thenM_`
205
206         returnM (unitNameEnv op all_generic)
207       where
208         n_generic    = count (isJust . maybeGenericMatch) matches
209         none_generic = n_generic == 0
210         all_generic  = matches `lengthIs` n_generic
211 \end{code}
212
213
214 \begin{code}
215 tcClassSig :: Class                     -- ...ditto...
216            -> [TyVar]                   -- The class type variable, used for error check only
217            -> Maybe (NameEnv Bool)      -- Info about default methods; 
218                                         --      Nothing => imported class defn with no method binds
219            -> RenamedClassOpSig
220            -> TcM (Type,                -- Type of the method
221                      ClassOpItem)       -- Selector Id, default-method Id, True if explicit default binding
222
223 -- This warrants an explanation: we need to separate generic
224 -- default methods and default methods later on in the compiler
225 -- so we distinguish them in checkDefaultBinds, and pass this knowledge in the
226 -- Class.DefMeth data structure. 
227
228 tcClassSig clas clas_tyvars maybe_dm_env
229            (ClassOpSig op_name sig_dm op_ty src_loc)
230   = addSrcLoc src_loc $
231
232         -- Check the type signature.  NB that the envt *already has*
233         -- bindings for the type variables; see comments in TcTyAndClassDcls.
234     tcHsType op_ty                      `thenM` \ local_ty ->
235
236     let
237         theta = [mkClassPred clas (mkTyVarTys clas_tyvars)]
238
239         -- Build the selector id and default method id
240         sel_id = mkDictSelId op_name clas
241         DefMeth dm_name = sig_dm
242
243         dm_info = case maybe_dm_env of
244                     Nothing     -> sig_dm
245                     Just dm_env -> mk_src_dm_info dm_env
246
247         mk_src_dm_info dm_env = case lookupNameEnv dm_env op_name of
248                                    Nothing    -> NoDefMeth
249                                    Just True  -> GenDefMeth
250                                    Just False -> DefMeth dm_name
251     in
252     returnM (local_ty, (sel_id, dm_info))
253 \end{code}
254
255
256 %************************************************************************
257 %*                                                                      *
258 \subsection[Default methods]{Default methods}
259 %*                                                                      *
260 %************************************************************************
261
262 The default methods for a class are each passed a dictionary for the
263 class, so that they get access to the other methods at the same type.
264 So, given the class decl
265 \begin{verbatim}
266 class Foo a where
267         op1 :: a -> Bool
268         op2 :: Ord b => a -> b -> b -> b
269
270         op1 x = True
271         op2 x y z = if (op1 x) && (y < z) then y else z
272 \end{verbatim}
273 we get the default methods:
274 \begin{verbatim}
275 defm.Foo.op1 :: forall a. Foo a => a -> Bool
276 defm.Foo.op1 = /\a -> \dfoo -> \x -> True
277
278 defm.Foo.op2 :: forall a. Foo a => forall b. Ord b => a -> b -> b -> b
279 defm.Foo.op2 = /\ a -> \ dfoo -> /\ b -> \ dord -> \x y z ->
280                   if (op1 a dfoo x) && (< b dord y z) then y else z
281 \end{verbatim}
282
283 When we come across an instance decl, we may need to use the default
284 methods:
285 \begin{verbatim}
286 instance Foo Int where {}
287 \end{verbatim}
288 gives
289 \begin{verbatim}
290 const.Foo.Int.op1 :: Int -> Bool
291 const.Foo.Int.op1 = defm.Foo.op1 Int dfun.Foo.Int
292
293 const.Foo.Int.op2 :: forall b. Ord b => Int -> b -> b -> b
294 const.Foo.Int.op2 = defm.Foo.op2 Int dfun.Foo.Int
295
296 dfun.Foo.Int :: Foo Int
297 dfun.Foo.Int = (const.Foo.Int.op1, const.Foo.Int.op2)
298 \end{verbatim}
299 Notice that, as with method selectors above, we assume that dictionary
300 application is curried, so there's no need to mention the Ord dictionary
301 in const.Foo.Int.op2 (or the type variable).
302
303 \begin{verbatim}
304 instance Foo a => Foo [a] where {}
305
306 dfun.Foo.List :: forall a. Foo a -> Foo [a]
307 dfun.Foo.List
308   = /\ a -> \ dfoo_a ->
309     let rec
310         op1 = defm.Foo.op1 [a] dfoo_list
311         op2 = defm.Foo.op2 [a] dfoo_list
312         dfoo_list = (op1, op2)
313     in
314         dfoo_list
315 \end{verbatim}
316
317 The function @tcClassDecls2@ just arranges to apply @tcClassDecl2@ to
318 each local class decl.
319
320 \begin{code}
321 tcClassDecls2 :: [RenamedTyClDecl] -> TcM (TcMonoBinds, [Id])
322
323 tcClassDecls2 decls
324   = foldr combine
325           (returnM (EmptyMonoBinds, []))
326           [tcClassDecl2 cls_decl | cls_decl@(ClassDecl {tcdMeths = Just _}) <- decls] 
327                 -- The 'Just' picks out source ClassDecls
328   where
329     combine tc1 tc2 = tc1 `thenM` \ (binds1, ids1) ->
330                       tc2 `thenM` \ (binds2, ids2) ->
331                       returnM (binds1 `AndMonoBinds` binds2,
332                                ids1 ++ ids2)
333 \end{code}
334
335 @tcClassDecl2@ generates bindings for polymorphic default methods
336 (generic default methods have by now turned into instance declarations)
337
338 \begin{code}
339 tcClassDecl2 :: RenamedTyClDecl         -- The class declaration
340              -> TcM (TcMonoBinds, [Id])
341
342 tcClassDecl2 (ClassDecl {tcdName = class_name, tcdSigs = sigs, 
343                          tcdMeths = Just default_binds, tcdLoc = src_loc})
344   =     -- The 'Just' picks out source ClassDecls
345     recoverM (returnM (EmptyMonoBinds, []))     $ 
346     addSrcLoc src_loc                                   $
347     tcLookupClass class_name                            `thenM` \ clas ->
348
349         -- We make a separate binding for each default method.
350         -- At one time I used a single AbsBinds for all of them, thus
351         -- AbsBind [d] [dm1, dm2, dm3] { dm1 = ...; dm2 = ...; dm3 = ... }
352         -- But that desugars into
353         --      ds = \d -> (..., ..., ...)
354         --      dm1 = \d -> case ds d of (a,b,c) -> a
355         -- And since ds is big, it doesn't get inlined, so we don't get good
356         -- default methods.  Better to make separate AbsBinds for each
357     let
358         (tyvars, _, _, op_items) = classBigSig clas
359         prags                    = filter isPragSig sigs
360         tc_dm                    = tcDefMeth clas tyvars default_binds prags
361     in
362     mapAndUnzipM tc_dm op_items `thenM` \ (defm_binds, dm_ids_s) ->
363
364     returnM (andMonoBindList defm_binds, concat dm_ids_s)
365     
366
367 tcDefMeth clas tyvars binds_in prags (_, NoDefMeth)  = returnM (EmptyMonoBinds, [])
368 tcDefMeth clas tyvars binds_in prags (_, GenDefMeth) = returnM (EmptyMonoBinds, [])
369         -- Generate code for polymorphic default methods only
370         -- (Generic default methods have turned into instance decls by now.)
371         -- This is incompatible with Hugs, which expects a polymorphic 
372         -- default method for every class op, regardless of whether or not 
373         -- the programmer supplied an explicit default decl for the class.  
374         -- (If necessary we can fix that, but we don't have a convenient Id to hand.)
375
376 tcDefMeth clas tyvars binds_in prags op_item@(sel_id, DefMeth dm_name)
377   = tcInstTyVars ClsTv tyvars           `thenM` \ (clas_tyvars, inst_tys, _) ->
378     let
379         dm_ty = idType sel_id   -- Same as dict selector!
380           -- The default method's type should really come from the
381           -- iface file, since it could be usage-generalised, but this
382           -- requires altering the mess of knots in TcModule and I'm
383           -- too scared to do that.  Instead, I have disabled generalisation
384           -- of types of default methods (and dict funs) by annotating them
385           -- TyGenNever (in MkId).  Ugh!  KSW 1999-09.
386
387         theta       = [mkClassPred clas inst_tys]
388         local_dm_id = mkDefaultMethodId dm_name dm_ty
389         xtve        = tyvars `zip` clas_tyvars
390     in
391     newDicts origin theta                               `thenM` \ [this_dict] ->
392
393     mkMethodBind origin clas inst_tys binds_in op_item  `thenM` \ (dm_inst, meth_info) ->
394     getLIE (tcMethodBind xtve clas_tyvars theta 
395                          [this_dict] prags meth_info)   `thenM` \ (defm_bind, insts_needed) ->
396     
397     addErrCtxt (defltMethCtxt clas) $
398     
399         -- Check the context
400     tcSimplifyCheck
401         (ptext SLIT("class") <+> ppr clas)
402         clas_tyvars
403         [this_dict]
404         insts_needed                    `thenM` \ dict_binds ->
405
406         -- Simplification can do unification
407     checkSigTyVars clas_tyvars          `thenM` \ clas_tyvars' ->
408     
409     let
410         full_bind = AbsBinds
411                     clas_tyvars'
412                     [instToId this_dict]
413                     [(clas_tyvars', local_dm_id, instToId dm_inst)]
414                     emptyNameSet        -- No inlines (yet)
415                     (dict_binds `andMonoBinds` defm_bind)
416     in
417     returnM (full_bind, [local_dm_id])
418   where
419     origin = ClassDeclOrigin
420 \end{code}
421
422     
423
424 %************************************************************************
425 %*                                                                      *
426 \subsection{Typechecking a method}
427 %*                                                                      *
428 %************************************************************************
429
430 @tcMethodBind@ is used to type-check both default-method and
431 instance-decl method declarations.  We must type-check methods one at a
432 time, because their signatures may have different contexts and
433 tyvar sets.
434
435 \begin{code}
436 type MethodSpec = (Id,                  -- Global selector Id
437                    TcSigInfo,           -- Signature 
438                    RenamedMonoBinds)    -- Binding for the method
439
440 tcMethodBind 
441         :: [(TyVar,TcTyVar)]    -- Bindings for type environment
442         -> [TcTyVar]            -- Instantiated type variables for the
443                                 --      enclosing class/instance decl. 
444                                 --      They'll be signature tyvars, and we
445                                 --      want to check that they don't get bound
446                                 -- Always equal the range of the type envt
447         -> TcThetaType          -- Available theta; it's just used for the error message
448         -> [Inst]               -- Available from context, used to simplify constraints 
449                                 --      from the method body
450         -> [RenamedSig]         -- Pragmas (e.g. inline pragmas)
451         -> MethodSpec           -- Details of this method
452         -> TcM TcMonoBinds
453
454 tcMethodBind xtve inst_tyvars inst_theta avail_insts prags
455              (sel_id, meth_sig, meth_bind)
456   =     -- Check the bindings; first adding inst_tyvars to the envt
457         -- so that we don't quantify over them in nested places
458      tcExtendTyVarEnv2 xtve (
459         addErrCtxt (methodCtxt sel_id)          $
460         getLIE (tcMonoBinds meth_bind [meth_sig] NonRecursive)
461      )                                          `thenM` \ ((meth_bind, _, _), meth_lie) ->
462
463         -- Now do context reduction.   We simplify wrt both the local tyvars
464         -- and the ones of the class/instance decl, so that there is
465         -- no problem with
466         --      class C a where
467         --        op :: Eq a => a -> b -> a
468         --
469         -- We do this for each method independently to localise error messages
470
471      let
472         TySigInfo meth_id meth_tvs meth_theta _ local_meth_id _ _ = meth_sig
473      in
474      addErrCtxtM (sigCtxt sel_id inst_tyvars inst_theta (idType meth_id))       $
475      newDicts SignatureOrigin meth_theta        `thenM` \ meth_dicts ->
476      let
477         all_tyvars = meth_tvs ++ inst_tyvars
478         all_insts  = avail_insts ++ meth_dicts
479      in
480      tcSimplifyCheck
481          (ptext SLIT("class or instance method") <+> quotes (ppr sel_id))
482          all_tyvars all_insts meth_lie          `thenM` \ lie_binds ->
483
484      checkSigTyVars all_tyvars                  `thenM` \ all_tyvars' ->
485
486      let
487                 -- Attach inline pragmas as appropriate
488         (final_meth_id, inlines) 
489            | (InlineSig inl _ phase _ : _) <- filter is_inline prags
490            = (meth_id `setInlinePragma` phase,
491               if inl then unitNameSet (idName meth_id) else emptyNameSet)
492            | otherwise
493            = (meth_id, emptyNameSet)
494
495         is_inline (InlineSig _ name _ _) = name == idName sel_id
496         is_inline other                  = False
497
498         meth_tvs'      = take (length meth_tvs) all_tyvars'
499         poly_meth_bind = AbsBinds meth_tvs'
500                                   (map instToId meth_dicts)
501                                   [(meth_tvs', final_meth_id, local_meth_id)]
502                                   inlines
503                                   (lie_binds `andMonoBinds` meth_bind)
504      in
505      returnM poly_meth_bind
506
507
508 mkMethodBind :: InstOrigin
509              -> Class -> [TcType]       -- Class and instance types
510              -> RenamedMonoBinds        -- Method binding (pick the right one from in here)
511              -> ClassOpItem
512              -> TcM (Inst,              -- Method inst
513                      MethodSpec)
514 -- Find the binding for the specified method, or make
515 -- up a suitable default method if it isn't there
516
517 mkMethodBind origin clas inst_tys meth_binds (sel_id, dm_info)
518   = getInstLoc origin                           `thenM` \ inst_loc ->
519     tcInstClassOp inst_loc sel_id inst_tys      `thenM` \ meth_inst ->
520         -- Do not dump anything into the LIE
521     let
522         meth_id    = instToId meth_inst
523         meth_name  = idName meth_id
524     in
525         -- Figure out what method binding to use
526         -- If the user suppplied one, use it, else construct a default one
527     getSrcLocM                                  `thenM` \ loc -> 
528     (case find_bind (idName sel_id) meth_name meth_binds of
529         Just user_bind -> returnM user_bind 
530         Nothing        -> mkDefMethRhs origin clas inst_tys sel_id loc dm_info  `thenM` \ rhs ->
531                           returnM (FunMonoBind meth_name False  -- Not infix decl
532                                                 [mkSimpleMatch [] rhs placeHolderType loc] loc)
533     )                                                           `thenM` \ meth_bind ->
534
535     mkTcSig meth_id loc                 `thenM` \ meth_sig ->
536
537     returnM (meth_inst, (sel_id, meth_sig, meth_bind))
538     
539
540      -- The user didn't supply a method binding, 
541      -- so we have to make up a default binding
542      -- The RHS of a default method depends on the default-method info
543 mkDefMethRhs origin clas inst_tys sel_id loc (DefMeth dm_name)
544   =  -- An polymorphic default method
545     traceRn (text "mkDefMeth" <+> ppr dm_name)  `thenM_`
546     returnM (HsVar dm_name)
547
548 mkDefMethRhs origin clas inst_tys sel_id loc NoDefMeth
549   =     -- No default method
550         -- Warn only if -fwarn-missing-methods
551     doptM Opt_WarnMissingMethods                `thenM` \ warn -> 
552     warnTc (isInstDecl origin && warn)
553            (omittedMethodWarn sel_id)           `thenM_`
554     returnM error_rhs
555   where
556     error_rhs  = HsLam (mkSimpleMatch wild_pats simple_rhs placeHolderType loc)
557     simple_rhs = HsApp (HsVar (getName nO_METHOD_BINDING_ERROR_ID)) 
558                        (HsLit (HsStringPrim (mkFastString (stringToUtf8 error_msg))))
559     error_msg = showSDoc (hcat [ppr loc, text "|", ppr sel_id ])
560
561         -- When the type is of form t1 -> t2 -> t3
562         -- make a default method like (\ _ _ -> noMethBind "blah")
563         -- rather than simply        (noMethBind "blah")
564         -- Reason: if t1 or t2 are higher-ranked types we get n
565         --         silly ambiguity messages.
566         -- Example:     f :: (forall a. Eq a => a -> a) -> Int
567         --              f = error "urk"
568         -- Here, tcSub tries to force (error "urk") to have the right type,
569         -- thus:        f = \(x::forall a. Eq a => a->a) -> error "urk" (x t)
570         -- where 't' is fresh ty var.  This leads directly to "ambiguous t".
571         -- 
572         -- NB: technically this changes the meaning of the default-default
573         --     method slightly, because `seq` can see the lambdas.  Oh well.
574     (_,_,tau1)    = tcSplitSigmaTy (idType sel_id)
575     (_,_,tau2)    = tcSplitSigmaTy tau1
576         -- Need two splits because the  selector can have a type like
577         --      forall a. Foo a => forall b. Eq b => ...
578     (arg_tys, _) = tcSplitFunTys tau2
579     wild_pats    = [WildPat placeHolderType | ty <- arg_tys]
580
581 mkDefMethRhs origin clas inst_tys sel_id loc GenDefMeth 
582   =     -- A generic default method
583         -- If the method is defined generically, we can only do the job if the
584         -- instance declaration is for a single-parameter type class with
585         -- a type constructor applied to type arguments in the instance decl
586         --      (checkTc, so False provokes the error)
587      ASSERT( isInstDecl origin )        -- We never get here from a class decl
588
589      checkTc (isJust maybe_tycon)
590              (badGenericInstance sel_id (notSimple inst_tys))           `thenM_`
591      checkTc (isJust (tyConGenInfo tycon))
592              (badGenericInstance sel_id (notGeneric tycon))             `thenM_`
593
594      ioToTcRn (dumpIfSet opt_PprStyle_Debug "Generic RHS" stuff)        `thenM_`
595      returnM rhs
596   where
597     rhs = mkGenericRhs sel_id clas_tyvar tycon
598
599     stuff = vcat [ppr clas <+> ppr inst_tys,
600                   nest 4 (ppr sel_id <+> equals <+> ppr rhs)]
601
602           -- The tycon is only used in the generic case, and in that
603           -- case we require that the instance decl is for a single-parameter
604           -- type class with type variable arguments:
605           --    instance (...) => C (T a b)
606     clas_tyvar    = head (classTyVars clas)
607     Just tycon    = maybe_tycon
608     maybe_tycon   = case inst_tys of 
609                         [ty] -> case tcSplitTyConApp_maybe ty of
610                                   Just (tycon, arg_tys) | all tcIsTyVarTy arg_tys -> Just tycon
611                                   other                                           -> Nothing
612                         other -> Nothing
613
614 isInstDecl InstanceDeclOrigin = True
615 isInstDecl ClassDeclOrigin    = False
616 \end{code}
617
618
619 \begin{code}
620 -- The renamer just puts the selector ID as the binder in the method binding
621 -- but we must use the method name; so we substitute it here.  Crude but simple.
622 find_bind sel_name meth_name (FunMonoBind op_name fix matches loc)
623     | op_name == sel_name = Just (FunMonoBind meth_name fix matches loc)
624 find_bind sel_name meth_name (AndMonoBinds b1 b2)
625     = find_bind sel_name meth_name b1 `seqMaybe` find_bind sel_name meth_name b2
626 find_bind sel_name meth_name other  = Nothing   -- Default case
627
628  -- Find the prags for this method, and replace the
629  -- selector name with the method name
630 find_prags sel_name meth_name [] = []
631 find_prags sel_name meth_name (SpecSig name ty loc : prags) 
632      | name == sel_name = SpecSig meth_name ty loc : find_prags sel_name meth_name prags
633 find_prags sel_name meth_name (InlineSig sense name phase loc : prags)
634    | name == sel_name = InlineSig sense meth_name phase loc : find_prags sel_name meth_name prags
635 find_prags sel_name meth_name (prag:prags) = find_prags sel_name meth_name prags
636 \end{code}
637
638
639 Contexts and errors
640 ~~~~~~~~~~~~~~~~~~~
641 \begin{code}
642 defltMethCtxt clas
643   = ptext SLIT("When checking the default methods for class") <+> quotes (ppr clas)
644
645 methodCtxt sel_id
646   = ptext SLIT("In the definition for method") <+> quotes (ppr sel_id)
647
648 badMethodErr clas op
649   = hsep [ptext SLIT("Class"), quotes (ppr clas), 
650           ptext SLIT("does not have a method"), quotes (ppr op)]
651
652 omittedMethodWarn sel_id
653   = ptext SLIT("No explicit method nor default method for") <+> quotes (ppr sel_id)
654
655 badGenericInstance sel_id because
656   = sep [ptext SLIT("Can't derive generic code for") <+> quotes (ppr sel_id),
657          because]
658
659 notSimple inst_tys
660   = vcat [ptext SLIT("because the instance type(s)"), 
661           nest 2 (ppr inst_tys),
662           ptext SLIT("is not a simple type of form (T a b c)")]
663
664 notGeneric tycon
665   = vcat [ptext SLIT("because the instance type constructor") <+> quotes (ppr tycon) <+> 
666           ptext SLIT("was not compiled with -fgenerics")]
667
668 mixedGenericErr op
669   = ptext SLIT("Can't mix generic and non-generic equations for class method") <+> quotes (ppr op)
670 \end{code}